zigbee2mqtt-frontend 0.6.105 → 0.6.106

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.
@@ -75,7 +75,7 @@ and limitations under the License.
75
75
  * by Pedro Ladaria <pedro.ladaria@gmail.com>
76
76
  * https://github.com/pladaria/reconnecting-websocket
77
77
  * License MIT
78
- */var dWe=function(){if(typeof WebSocket!="undefined")return WebSocket},cWe=function(e){return typeof e!="undefined"&&!!e&&e.CLOSING===2},pl={maxReconnectionDelay:1e4,minReconnectionDelay:1e3+Math.random()*4e3,minUptime:5e3,reconnectionDelayGrowFactor:1.3,connectionTimeout:4e3,maxRetries:1/0,maxEnqueuedMessages:1/0,startClosed:!1,debug:!1},hWe=function(){function e(t,r,n){var a=this;n===void 0&&(n={}),this._listeners={error:[],message:[],open:[],close:[]},this._retryCount=-1,this._shouldReconnect=!0,this._connectLock=!1,this._binaryType="blob",this._closeCalled=!1,this._messageQueue=[],this.onclose=null,this.onerror=null,this.onmessage=null,this.onopen=null,this._handleOpen=function(i){a._debug("open event");var o=a._options.minUptime,s=o===void 0?pl.minUptime:o;clearTimeout(a._connectTimeout),a._uptimeTimeout=setTimeout(function(){return a._acceptOpen()},s),a._ws.binaryType=a._binaryType,a._messageQueue.forEach(function(l){return a._ws.send(l)}),a._messageQueue=[],a.onopen&&a.onopen(i),a._listeners.open.forEach(function(l){return a._callEventListener(i,l)})},this._handleMessage=function(i){a._debug("message event"),a.onmessage&&a.onmessage(i),a._listeners.message.forEach(function(o){return a._callEventListener(i,o)})},this._handleError=function(i){a._debug("error event",i.message),a._disconnect(void 0,i.message==="TIMEOUT"?"timeout":void 0),a.onerror&&a.onerror(i),a._debug("exec error listeners"),a._listeners.error.forEach(function(o){return a._callEventListener(i,o)}),a._connect()},this._handleClose=function(i){a._debug("close event"),a._clearTimeouts(),a._shouldReconnect&&a._connect(),a.onclose&&a.onclose(i),a._listeners.close.forEach(function(o){return a._callEventListener(i,o)})},this._url=t,this._protocols=r,this._options=n,this._options.startClosed&&(this._shouldReconnect=!1),this._connect()}return Object.defineProperty(e,"CONNECTING",{get:function(){return 0},enumerable:!0,configurable:!0}),Object.defineProperty(e,"OPEN",{get:function(){return 1},enumerable:!0,configurable:!0}),Object.defineProperty(e,"CLOSING",{get:function(){return 2},enumerable:!0,configurable:!0}),Object.defineProperty(e,"CLOSED",{get:function(){return 3},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"CONNECTING",{get:function(){return e.CONNECTING},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"OPEN",{get:function(){return e.OPEN},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"CLOSING",{get:function(){return e.CLOSING},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"CLOSED",{get:function(){return e.CLOSED},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"binaryType",{get:function(){return this._ws?this._ws.binaryType:this._binaryType},set:function(t){this._binaryType=t,this._ws&&(this._ws.binaryType=t)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"retryCount",{get:function(){return Math.max(this._retryCount,0)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"bufferedAmount",{get:function(){var t=this._messageQueue.reduce(function(r,n){return typeof n=="string"?r+=n.length:n instanceof Blob?r+=n.size:r+=n.byteLength,r},0);return t+(this._ws?this._ws.bufferedAmount:0)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"extensions",{get:function(){return this._ws?this._ws.extensions:""},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"protocol",{get:function(){return this._ws?this._ws.protocol:""},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"readyState",{get:function(){return this._ws?this._ws.readyState:this._options.startClosed?e.CLOSED:e.CONNECTING},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"url",{get:function(){return this._ws?this._ws.url:""},enumerable:!0,configurable:!0}),e.prototype.close=function(t,r){if(t===void 0&&(t=1e3),this._closeCalled=!0,this._shouldReconnect=!1,this._clearTimeouts(),!this._ws){this._debug("close enqueued: no ws instance");return}if(this._ws.readyState===this.CLOSED){this._debug("close: already closed");return}this._ws.close(t,r)},e.prototype.reconnect=function(t,r){this._shouldReconnect=!0,this._closeCalled=!1,this._retryCount=-1,!this._ws||this._ws.readyState===this.CLOSED?this._connect():(this._disconnect(t,r),this._connect())},e.prototype.send=function(t){if(this._ws&&this._ws.readyState===this.OPEN)this._debug("send",t),this._ws.send(t);else{var r=this._options.maxEnqueuedMessages,n=r===void 0?pl.maxEnqueuedMessages:r;this._messageQueue.length<n&&(this._debug("enqueue",t),this._messageQueue.push(t))}},e.prototype.addEventListener=function(t,r){this._listeners[t]&&this._listeners[t].push(r)},e.prototype.dispatchEvent=function(t){var r,n,a=this._listeners[t.type];if(a)try{for(var i=iWe(a),o=i.next();!o.done;o=i.next()){var s=o.value;this._callEventListener(t,s)}}catch(l){r={error:l}}finally{try{o&&!o.done&&(n=i.return)&&n.call(i)}finally{if(r)throw r.error}}return!0},e.prototype.removeEventListener=function(t,r){this._listeners[t]&&(this._listeners[t]=this._listeners[t].filter(function(n){return n!==r}))},e.prototype._debug=function(){for(var t=[],r=0;r<arguments.length;r++)t[r]=arguments[r];this._options.debug&&console.log.apply(console,sWe(["RWS>"],t))},e.prototype._getNextDelay=function(){var t=this._options,r=t.reconnectionDelayGrowFactor,n=r===void 0?pl.reconnectionDelayGrowFactor:r,a=t.minReconnectionDelay,i=a===void 0?pl.minReconnectionDelay:a,o=t.maxReconnectionDelay,s=o===void 0?pl.maxReconnectionDelay:o,l=0;return this._retryCount>0&&(l=i*Math.pow(n,this._retryCount-1),l>s&&(l=s)),this._debug("next delay",l),l},e.prototype._wait=function(){var t=this;return new Promise(function(r){setTimeout(r,t._getNextDelay())})},e.prototype._getNextUrl=function(t){if(typeof t=="string")return Promise.resolve(t);if(typeof t=="function"){var r=t();if(typeof r=="string")return Promise.resolve(r);if(r.then)return r}throw Error("Invalid URL")},e.prototype._connect=function(){var t=this;if(!(this._connectLock||!this._shouldReconnect)){this._connectLock=!0;var r=this._options,n=r.maxRetries,a=n===void 0?pl.maxRetries:n,i=r.connectionTimeout,o=i===void 0?pl.connectionTimeout:i,s=r.WebSocket,l=s===void 0?dWe():s;if(this._retryCount>=a){this._debug("max retries reached",this._retryCount,">=",a);return}if(this._retryCount++,this._debug("connect",this._retryCount),this._removeListeners(),!cWe(l))throw Error("No valid WebSocket class provided");this._wait().then(function(){return t._getNextUrl(t._url)}).then(function(d){t._closeCalled||(t._debug("connect",{url:d,protocols:t._protocols}),t._ws=t._protocols?new l(d,t._protocols):new l(d),t._ws.binaryType=t._binaryType,t._connectLock=!1,t._addListeners(),t._connectTimeout=setTimeout(function(){return t._handleTimeout()},o))})}},e.prototype._handleTimeout=function(){this._debug("timeout event"),this._handleError(new lWe(Error("TIMEOUT"),this))},e.prototype._disconnect=function(t,r){if(t===void 0&&(t=1e3),this._clearTimeouts(),!!this._ws){this._removeListeners();try{this._ws.close(t,r),this._handleClose(new uWe(t,r,this))}catch{}}},e.prototype._acceptOpen=function(){this._debug("accept open"),this._retryCount=0},e.prototype._callEventListener=function(t,r){"handleEvent"in r?r.handleEvent(t):r(t)},e.prototype._removeListeners=function(){!this._ws||(this._debug("removeListeners"),this._ws.removeEventListener("open",this._handleOpen),this._ws.removeEventListener("close",this._handleClose),this._ws.removeEventListener("message",this._handleMessage),this._ws.removeEventListener("error",this._handleError))},e.prototype._addListeners=function(){!this._ws||(this._debug("addListeners"),this._ws.addEventListener("open",this._handleOpen),this._ws.addEventListener("close",this._handleClose),this._ws.addEventListener("message",this._handleMessage),this._ws.addEventListener("error",this._handleError))},e.prototype._clearTimeouts=function(){clearTimeout(this._connectTimeout),clearTimeout(this._uptimeTimeout)},e}();function R5(e,t){for(var r in t)e[r]=t[r];return e}function mWe(e){var t=[];function r(a){for(var i=[],o=0;o<t.length;o++)t[o]===a?a=null:i.push(t[o]);t=i}function n(a,i,o){e=i?a:R5(R5({},e),a);for(var s=t,l=0;l<s.length;l++)s[l](e,o)}return e=e||{},{action:function(a){function i(o){n(o,!1,a)}return function(){for(var o=arguments,s=[e],l=0;l<arguments.length;l++)s.push(o[l]);var d=a.apply(this,s);if(d!=null)return d.then?d.then(i):i(d)}},setState:n,subscribe:function(a){return t.push(a),function(){r(a)}},unsubscribe:r,getState:function(){return e}}}const fWe={},pWe={},gWe=[],vWe=!1,yWe=!1,_We=!1,bWe={links:[],nodes:[]},wWe=!1,SWe=[],AWe="online",TWe={},kWe={configSchema:{properties:{},required:[]},config:{advanced:{}}},CWe=[],EWe=[],IWe="light",DWe={},xWe={},OWe=!1,MWe="";var Q9={devices:fWe,deviceStates:pWe,touchlinkDevices:gWe,touchlinkScanInProgress:vWe,touchlinkIdentifyInProgress:yWe,touchlinkResetInProgress:_We,networkGraph:bWe,networkGraphIsLoading:wWe,groups:SWe,bridgeState:AWe,bridgeConfig:TWe,bridgeInfo:kWe,logs:CWe,extensions:EWe,theme:IWe,missingTranslations:DWe,availability:xWe,prepearingBackup:OWe,backup:MWe};const RWe=Nze();Q9.theme=RWe;const ir=mWe(Q9);var LWe=yu,PWe=function(){try{var e=LWe(Object,"defineProperty");return e({},"",{}),e}catch{}}(),Z9=PWe,L5=Z9;function $We(e,t,r){t=="__proto__"&&L5?L5(e,t,{configurable:!0,enumerable:!0,value:r,writable:!0}):e[t]=r}var gp=$We;function zWe(e,t,r,n){for(var a=-1,i=e==null?0:e.length;++a<i;){var o=e[a];t(n,o,r(o),e)}return n}var NWe=zWe;function FWe(e){return function(t,r,n){for(var a=-1,i=Object(t),o=n(t),s=o.length;s--;){var l=o[e?s:++a];if(r(i[l],l,i)===!1)break}return t}}var BWe=FWe,WWe=BWe,HWe=WWe(),Y9=HWe,jWe=Y9,UWe=fp;function VWe(e,t){return e&&jWe(e,t,UWe)}var GWe=VWe,qWe=bu;function KWe(e,t){return function(r,n){if(r==null)return r;if(!qWe(r))return e(r,n);for(var a=r.length,i=t?a:-1,o=Object(r);(t?i--:++i<a)&&n(o[i],i,o)!==!1;);return r}}var QWe=KWe,ZWe=GWe,YWe=QWe,XWe=YWe(ZWe),jx=XWe,JWe=jx;function eHe(e,t,r,n){return JWe(e,function(a,i,o){t(n,a,r(a),o)}),n}var tHe=eHe,rHe=fw,nHe=Wx,aHe=1,iHe=2;function oHe(e,t,r,n){var a=r.length,i=a,o=!n;if(e==null)return!i;for(e=Object(e);a--;){var s=r[a];if(o&&s[2]?s[1]!==e[s[0]]:!(s[0]in e))return!1}for(;++a<i;){s=r[a];var l=s[0],d=e[l],u=s[1];if(o&&s[2]){if(d===void 0&&!(l in e))return!1}else{var c=new rHe;if(n)var h=n(d,u,l,e,t,c);if(!(h===void 0?nHe(u,d,aHe|iHe,n,c):h))return!1}}return!0}var sHe=oHe,lHe=fa;function uHe(e){return e===e&&!lHe(e)}var X9=uHe,dHe=X9,cHe=fp;function hHe(e){for(var t=cHe(e),r=t.length;r--;){var n=t[r],a=e[n];t[r]=[n,a,dHe(a)]}return t}var mHe=hHe;function fHe(e,t){return function(r){return r==null?!1:r[e]===t&&(t!==void 0||e in Object(r))}}var J9=fHe,pHe=sHe,gHe=mHe,vHe=J9;function yHe(e){var t=gHe(e);return t.length==1&&t[0][2]?vHe(t[0][0],t[0][1]):function(r){return r===e||pHe(r,e,t)}}var _He=yHe,bHe=tn,wHe=Fc,SHe=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,AHe=/^\w*$/;function THe(e,t){if(bHe(e))return!1;var r=typeof e;return r=="number"||r=="symbol"||r=="boolean"||e==null||wHe(e)?!0:AHe.test(e)||!SHe.test(e)||t!=null&&e in Object(t)}var Ux=THe,eG=$x,kHe="Expected a function";function Vx(e,t){if(typeof e!="function"||t!=null&&typeof t!="function")throw new TypeError(kHe);var r=function(){var n=arguments,a=t?t.apply(this,n):n[0],i=r.cache;if(i.has(a))return i.get(a);var o=e.apply(this,n);return r.cache=i.set(a,o)||i,o};return r.cache=new(Vx.Cache||eG),r}Vx.Cache=eG;var CHe=Vx,EHe=CHe,IHe=500;function DHe(e){var t=EHe(e,function(n){return r.size===IHe&&r.clear(),n}),r=t.cache;return t}var xHe=DHe,OHe=xHe,MHe=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,RHe=/\\(\\)?/g,LHe=OHe(function(e){var t=[];return e.charCodeAt(0)===46&&t.push(""),e.replace(MHe,function(r,n,a,i){t.push(a?i.replace(RHe,"$1"):n||r)}),t}),tG=LHe;function PHe(e,t){for(var r=-1,n=e==null?0:e.length,a=Array(n);++r<n;)a[r]=t(e[r],r,e);return a}var Qs=PHe,P5=Nc,$He=Qs,zHe=tn,NHe=Fc,FHe=1/0,$5=P5?P5.prototype:void 0,z5=$5?$5.toString:void 0;function rG(e){if(typeof e=="string")return e;if(zHe(e))return $He(e,rG)+"";if(NHe(e))return z5?z5.call(e):"";var t=e+"";return t=="0"&&1/e==-FHe?"-0":t}var BHe=rG,WHe=BHe;function HHe(e){return e==null?"":WHe(e)}var wu=HHe,jHe=tn,UHe=Ux,VHe=tG,GHe=wu;function qHe(e,t){return jHe(e)?e:UHe(e,t)?[e]:VHe(GHe(e))}var bw=qHe,KHe=Fc,QHe=1/0;function ZHe(e){if(typeof e=="string"||KHe(e))return e;var t=e+"";return t=="0"&&1/e==-QHe?"-0":t}var Gc=ZHe,YHe=bw,XHe=Gc;function JHe(e,t){t=YHe(t,e);for(var r=0,n=t.length;e!=null&&r<n;)e=e[XHe(t[r++])];return r&&r==n?e:void 0}var ww=JHe,e4e=ww;function t4e(e,t,r){var n=e==null?void 0:e4e(e,t);return n===void 0?r:n}var cc=t4e;function r4e(e,t){return e!=null&&t in Object(e)}var n4e=r4e,a4e=bw,i4e=mp,o4e=tn,s4e=vw,l4e=Bx,u4e=Gc;function d4e(e,t,r){t=a4e(t,e);for(var n=-1,a=t.length,i=!1;++n<a;){var o=u4e(t[n]);if(!(i=e!=null&&r(e,o)))break;e=e[o]}return i||++n!=a?i:(a=e==null?0:e.length,!!a&&l4e(a)&&s4e(o,a)&&(o4e(e)||i4e(e)))}var c4e=d4e,h4e=n4e,m4e=c4e;function f4e(e,t){return e!=null&&m4e(e,t,h4e)}var nG=f4e,p4e=Wx,g4e=cc,v4e=nG,y4e=Ux,_4e=X9,b4e=J9,w4e=Gc,S4e=1,A4e=2;function T4e(e,t){return y4e(e)&&_4e(t)?b4e(w4e(e),t):function(r){var n=g4e(r,e);return n===void 0&&n===t?v4e(r,e):p4e(t,n,S4e|A4e)}}var k4e=T4e;function C4e(e){return e}var vp=C4e;function E4e(e){return function(t){return t==null?void 0:t[e]}}var I4e=E4e,D4e=ww;function x4e(e){return function(t){return D4e(t,e)}}var O4e=x4e,M4e=I4e,R4e=O4e,L4e=Ux,P4e=Gc;function $4e(e){return L4e(e)?M4e(P4e(e)):R4e(e)}var z4e=$4e,N4e=_He,F4e=k4e,B4e=vp,W4e=tn,H4e=z4e;function j4e(e){return typeof e=="function"?e:e==null?B4e:typeof e=="object"?W4e(e)?F4e(e[0],e[1]):N4e(e):H4e(e)}var aG=j4e,U4e=NWe,V4e=tHe,G4e=aG,q4e=tn;function K4e(e,t){return function(r,n){var a=q4e(r)?U4e:V4e,i=t?t():{};return a(r,e,G4e(n),i)}}var iG=K4e,Q4e=gp,Z4e=iG,Y4e=Z4e(function(e,t,r){Q4e(e,r,t)}),X4e=Y4e;const J4e=100,YS="z2m-token-v2",N5="z2m-auth-v2",eje=4401,F5="/availability",tje=[/MQTT publish/],rje=e=>e.level!==void 0&&e.message!==void 0,nje=e=>e.status!==void 0,B5=e=>{let t="",r="";switch(rje(e)?(t=e.message,r=e.level):nje(e)&&e.status==="error"&&(r="error",t=e.error),r){case"error":case"warning":ac.NotificationManager.error(t);break;case"info":ac.NotificationManager.success(t);break}},W5=250;class aje{constructor(t){this.requests=new Map,this.transactionNumber=1,this.send=(r,n={})=>{if(console.debug("Calling API",{topic:r,payload:n}),r.startsWith("bridge/request/")){const a=`${this.transactionRndPrefix}-${this.transactionNumber++}`,i=new Promise((o,s)=>{this.requests.set(a,[o,s])});return this.socket.send(q3({topic:r,payload:He(Se({},n),{transaction:a})})),i}else return this.socket.send(q3({topic:r,payload:n})),Promise.resolve()},this.urlProvider=async()=>{const r=new URL(this.url);let n=so.getItem(YS);return!!so.getItem(N5)&&(n||(n=prompt("Enter your z2m admin token"),n&&so.setItem(YS,n)),r.searchParams.append("token",n)),r.toString()},this.processDeviceStateMessage=K3(r=>{let{deviceStates:n}=ir.getState();r.forEach(a=>{n=He(Se({},n),{[a.topic]:Se(Se({},n[a.topic]),a.payload)})}),ir.setState({deviceStates:n})},{trailing:!0,maxWait:W5}),this.processBridgeMessage=r=>{switch(r.topic){case"bridge/config":ir.setState({bridgeConfig:r.payload});break;case"bridge/info":ir.setState({bridgeInfo:r.payload});break;case"bridge/state":ir.setState({bridgeState:r.payload});break;case"bridge/devices":ir.setState({devices:X4e(r.payload,"ieee_address")});break;case"bridge/groups":ir.setState({groups:r.payload});break;case"bridge/extensions":ir.setState({extensions:r.payload});break;case"bridge/logging":{const{logs:a}=ir.getState(),i=[...a.slice(-J4e)];i.push(He(Se({},r.payload),{timestamp:new Date})),ir.setState({logs:i});const o=r.payload;tje.every(s=>!s.test(o.message))&&B5(o)}break;case"bridge/response/networkmap":{const a=r.payload,i={networkGraphIsLoading:!1};if(a.status==="ok"){const o=Mze(a.data.value);i.networkGraph=o}ir.setState(i)}break;case"bridge/response/touchlink/scan":{const{status:a,data:i}=r.payload,o={touchlinkScanInProgress:!1};a==="ok"&&(o.touchlinkDevices=i.found),ir.setState(o)}break;case"bridge/response/touchlink/identify":ir.setState({touchlinkIdentifyInProgress:!1});break;case"bridge/response/touchlink/factory_reset":ir.setState({touchlinkResetInProgress:!1});break;case"bridge/response/backup":const{data:{zip:n}}=r.payload;ir.setState({backup:n,prepearingBackup:!1});break}r.topic.startsWith("bridge/response/")&&(B5(r.payload),this.resolvePromises(r.payload))},this.processAvailabilityMessage=K3(r=>{let{availability:n}=ir.getState();r.forEach(a=>{const i=a.topic.split(F5,1)[0];n=He(Se({},n),{[i]:a.payload})}),ir.setState({availability:n})},{trailing:!0,maxWait:W5}),this.onClose=r=>{r.code===eje&&(so.setItem(N5,!0),so.remove(YS),ac.NotificationManager.error("Unauthorized"),setTimeout(()=>{window.location.reload()},1e3))},this.onMessage=r=>{let n={};try{n=JSON.parse(r.data),n.topic.endsWith(F5)?this.processAvailabilityMessage(n):n.topic.startsWith("bridge/")?this.processBridgeMessage(n):this.processDeviceStateMessage(n)}catch(a){ac.NotificationManager.error(a.message),console.error(r.data)}},this.url=t,this.transactionRndPrefix=Rx(5)}connect(){this.socket=new hWe(this.urlProvider),this.socket.addEventListener("message",this.onMessage),this.socket.addEventListener("close",this.onClose)}resolvePromises(t){const{transaction:r,status:n}=t;if(r!==void 0&&this.requests.has(r)){const[a,i]=this.requests.get(r);n==="ok"||n===void 0?a():i(),this.requests.delete(r)}}}const ije=`${window.location.host}${document.location.pathname}api`,zt=new aje(`${Lze()?"wss":"ws"}://${ije}`);var oje={setPermitJoin(e,t=!0,r,n=254){return zt.send("bridge/request/permit_join",{value:t,time:n,device:r==null?void 0:r.friendly_name})},updateBridgeConfig(e,t){return zt.send("bridge/request/options",{options:t})},restartBridge(e){return zt.send("bridge/request/restart",{})},requestBackup(e){return ir.setState({prepearingBackup:!0}),zt.send("bridge/request/backup")}},sje={renameDevice:(e,t,r,n)=>zt.send("bridge/request/device/rename",{from:t,to:r,homeassistant_rename:n}),removeDevice:(e,t,r,n)=>zt.send("bridge/request/device/remove",{id:t,force:r,block:n}),configureDevice:(e,t)=>zt.send("bridge/request/device/configure",{id:t}),setDeviceOptions:(e,t,r)=>zt.send("bridge/request/device/options",{id:t,options:r}),setDeviceDescription:(e,t,r)=>zt.send("bridge/request/device/options",{id:t,options:{description:r}}),readDeviceAttributes(e,t,r,n,a,i){return zt.send(`${XS(t,r)}/set`,{read:{cluster:n,attributes:a,options:i}})},writeDeviceAttributes(e,t,r,n,a,i){const o={};return a.forEach(s=>{o[s.attribute]=s.value}),zt.send(`${XS(t,r)}/set`,{write:{cluster:n,payload:o,options:i}})},executeCommand(e,t,r,n,a,i){return zt.send(`${XS(t,r)}/set`,{command:{cluster:n,command:a,payload:i}})}},lje={createGroup:(e,t,r)=>{const n={friendly_name:t};return r&&(n.id=r),zt.send("bridge/request/group/add",n)},removeGroup:(e,t)=>zt.send("bridge/request/group/remove",{id:t}),addDeviceToGroup:(e,t,r)=>zt.send("bridge/request/group/members/add",{group:r,device:t}),removeDeviceFromGroup:(e,t,r)=>zt.send("bridge/request/group/members/remove",{device:t,group:r}),renameGroup:(e,t,r)=>zt.send("bridge/request/group/rename",{from:t,to:r})},uje={setStateValue(e,t,r,n){return zt.send(`${t}/set`,{[r]:n})},setDeviceState(e,t,r){return zt.send(`${t}/set`,r)},getDeviceState(e,t,r){return zt.send(`${t}/get`,r)}},dje={checkOTA:(e,t)=>zt.send("bridge/request/device/ota_update/check",{id:t}),updateOTA:(e,t)=>zt.send("bridge/request/device/ota_update/update",{id:t})};const H5=(e,t)=>zt.send(`bridge/request/device/${e}`,t);var cje={addBind:(e,t)=>H5("bind",t),removeBind:(e,t)=>H5("unbind",t)},hje={touchlinkScan(e){return ir.setState({touchlinkScanInProgress:!0,touchlinkDevices:[]}),zt.send("bridge/request/touchlink/scan",{value:!0})},touchlinkIdentify(e,t){return ir.setState({touchlinkIdentifyInProgress:!0}),zt.send("bridge/request/touchlink/identify",t)},touchlinkReset(e,t){return ir.setState({touchlinkResetInProgress:!0}),zt.send("bridge/request/touchlink/factory_reset",t)}},mje={updateExtensionCode:(e,t)=>{const{extensions:r}=ir.getState(),n=r.filter(a=>a.name!==t.name).concat([t]);return ir.setState({extensions:n}),Promise.resolve()},saveExtensionCode:(e,t)=>zt.send("bridge/request/extension/save",t),removeExtension:(e,t)=>{const{extensions:r}=ir.getState(),n=r.filter(a=>a.name!==t.name);return ir.setState({extensions:n}),zt.send("bridge/request/extension/remove",{name:t.name})}},fje={sceneStore(e,t,r,n){return zt.send(`${t}/set`,{scene_store:Se({ID:r.id},r.name&&{name:r.name})})},sceneRecall(e,t,r,n){return zt.send(`${t}/set`,{scene_recall:r})},sceneRemove(e,t,r,n){return zt.send(`${t}/set`,{scene_remove:r})},sceneRemoveAll(e,t,r){return zt.send(`${t}/set`,{scene_remove_all:""})}};const XS=(e,t)=>t?`${e}/${t}`:e,Br=e=>He(Se(Se(Se(Se(Se(Se(Se(Se(Se({},oje),sje),lje),uje),dje),cje),hje),mje),fje),{networkMapRequest:t=>(e.setState({networkGraphIsLoading:!0,networkGraph:{nodes:[],links:[]}}),zt.send("bridge/request/networkmap",{type:"raw",routes:!1})),exportState(t){return w9(t,"state.json"),Promise.resolve()},configureReport(t,r,n){return zt.send("bridge/request/device/configure_reporting",Se({id:r},n))},setTheme(t,r){return Fze(r),e.setState({theme:r}),Promise.resolve()},clearLogs(t){return e.setState({logs:[]}),Promise.resolve()}});function yp(e){return x("div",{className:"modal-header",children:e.children})}function _p(e){return x("div",{className:"modal-body",children:e.children})}function bp(e){return x("div",{className:"modal-footer",children:e.children})}class pje extends q.Component{constructor(t){super(t),this.el=document.createElement("div"),"modal-backdrop fade show".split(" ").forEach(r=>this.el.classList.add(r))}componentDidMount(){document.body.appendChild(this.el)}componentWillUnmount(){document.body.removeChild(this.el)}render(){return Hd.createPortal(this.props.children,this.el)}}const wp=({isOpen:e,children:t})=>(le.exports.useEffect(()=>{e?document.body.classList.add("modal-open"):document.body.classList.remove("modal-open")},[e]),e?de("div",{className:"modal show overflow-scroll",style:{display:"block"},children:[x("div",{className:"modal-dialog",children:x("div",{className:"modal-content",children:t})}),x(pje,{})]}):null),gje=hi.create(e=>{const{onConfirmHandler:t}=e,{t:r}=Ct("common"),n=vu();return de(wp,{isOpen:n.visible,children:[x(yp,{children:x("h3",{children:r("confirmation")})}),x(_p,{children:r("dialog_confirmation_prompt")}),de(bp,{children:[x("button",{type:"button",className:"btn btn-secondary",onClick:n.remove,children:r("common:close")}),x("button",{type:"button",className:"btn btn-primary",onClick:()=>{t(),n.remove()},children:r("common:ok")})]})]})});function yt(e){const l=e,{children:t,item:r,onClick:n,prompt:a}=l,i=Mt(l,["children","item","onClick","prompt"]),o=()=>{n&&n(r)},s=()=>{a?hi.show(gje,{onConfirmHandler:o}):n&&n(r)};return x("button",He(Se({type:"button"},i),{onClick:s,children:t}))}function vje(e,t){var r,n=1;e==null&&(e=0),t==null&&(t=0);function a(){var i,o=r.length,s,l=0,d=0;for(i=0;i<o;++i)s=r[i],l+=s.x,d+=s.y;for(l=(l/o-e)*n,d=(d/o-t)*n,i=0;i<o;++i)s=r[i],s.x-=l,s.y-=d}return a.initialize=function(i){r=i},a.x=function(i){return arguments.length?(e=+i,a):e},a.y=function(i){return arguments.length?(t=+i,a):t},a.strength=function(i){return arguments.length?(n=+i,a):n},a}function yje(e){const t=+this._x.call(null,e),r=+this._y.call(null,e);return oG(this.cover(t,r),t,r,e)}function oG(e,t,r,n){if(isNaN(t)||isNaN(r))return e;var a,i=e._root,o={data:n},s=e._x0,l=e._y0,d=e._x1,u=e._y1,c,h,m,f,g,v,y,b;if(!i)return e._root=o,e;for(;i.length;)if((g=t>=(c=(s+d)/2))?s=c:d=c,(v=r>=(h=(l+u)/2))?l=h:u=h,a=i,!(i=i[y=v<<1|g]))return a[y]=o,e;if(m=+e._x.call(null,i.data),f=+e._y.call(null,i.data),t===m&&r===f)return o.next=i,a?a[y]=o:e._root=o,e;do a=a?a[y]=new Array(4):e._root=new Array(4),(g=t>=(c=(s+d)/2))?s=c:d=c,(v=r>=(h=(l+u)/2))?l=h:u=h;while((y=v<<1|g)===(b=(f>=h)<<1|m>=c));return a[b]=i,a[y]=o,e}function _je(e){var t,r,n=e.length,a,i,o=new Array(n),s=new Array(n),l=1/0,d=1/0,u=-1/0,c=-1/0;for(r=0;r<n;++r)isNaN(a=+this._x.call(null,t=e[r]))||isNaN(i=+this._y.call(null,t))||(o[r]=a,s[r]=i,a<l&&(l=a),a>u&&(u=a),i<d&&(d=i),i>c&&(c=i));if(l>u||d>c)return this;for(this.cover(l,d).cover(u,c),r=0;r<n;++r)oG(this,o[r],s[r],e[r]);return this}function bje(e,t){if(isNaN(e=+e)||isNaN(t=+t))return this;var r=this._x0,n=this._y0,a=this._x1,i=this._y1;if(isNaN(r))a=(r=Math.floor(e))+1,i=(n=Math.floor(t))+1;else{for(var o=a-r||1,s=this._root,l,d;r>e||e>=a||n>t||t>=i;)switch(d=(t<n)<<1|e<r,l=new Array(4),l[d]=s,s=l,o*=2,d){case 0:a=r+o,i=n+o;break;case 1:r=a-o,i=n+o;break;case 2:a=r+o,n=i-o;break;case 3:r=a-o,n=i-o;break}this._root&&this._root.length&&(this._root=s)}return this._x0=r,this._y0=n,this._x1=a,this._y1=i,this}function wje(){var e=[];return this.visit(function(t){if(!t.length)do e.push(t.data);while(t=t.next)}),e}function Sje(e){return arguments.length?this.cover(+e[0][0],+e[0][1]).cover(+e[1][0],+e[1][1]):isNaN(this._x0)?void 0:[[this._x0,this._y0],[this._x1,this._y1]]}function Tn(e,t,r,n,a){this.node=e,this.x0=t,this.y0=r,this.x1=n,this.y1=a}function Aje(e,t,r){var n,a=this._x0,i=this._y0,o,s,l,d,u=this._x1,c=this._y1,h=[],m=this._root,f,g;for(m&&h.push(new Tn(m,a,i,u,c)),r==null?r=1/0:(a=e-r,i=t-r,u=e+r,c=t+r,r*=r);f=h.pop();)if(!(!(m=f.node)||(o=f.x0)>u||(s=f.y0)>c||(l=f.x1)<a||(d=f.y1)<i))if(m.length){var v=(o+l)/2,y=(s+d)/2;h.push(new Tn(m[3],v,y,l,d),new Tn(m[2],o,y,v,d),new Tn(m[1],v,s,l,y),new Tn(m[0],o,s,v,y)),(g=(t>=y)<<1|e>=v)&&(f=h[h.length-1],h[h.length-1]=h[h.length-1-g],h[h.length-1-g]=f)}else{var b=e-+this._x.call(null,m.data),S=t-+this._y.call(null,m.data),w=b*b+S*S;if(w<r){var _=Math.sqrt(r=w);a=e-_,i=t-_,u=e+_,c=t+_,n=m.data}}return n}function Tje(e){if(isNaN(u=+this._x.call(null,e))||isNaN(c=+this._y.call(null,e)))return this;var t,r=this._root,n,a,i,o=this._x0,s=this._y0,l=this._x1,d=this._y1,u,c,h,m,f,g,v,y;if(!r)return this;if(r.length)for(;;){if((f=u>=(h=(o+l)/2))?o=h:l=h,(g=c>=(m=(s+d)/2))?s=m:d=m,t=r,!(r=r[v=g<<1|f]))return this;if(!r.length)break;(t[v+1&3]||t[v+2&3]||t[v+3&3])&&(n=t,y=v)}for(;r.data!==e;)if(a=r,!(r=r.next))return this;return(i=r.next)&&delete r.next,a?(i?a.next=i:delete a.next,this):t?(i?t[v]=i:delete t[v],(r=t[0]||t[1]||t[2]||t[3])&&r===(t[3]||t[2]||t[1]||t[0])&&!r.length&&(n?n[y]=r:this._root=r),this):(this._root=i,this)}function kje(e){for(var t=0,r=e.length;t<r;++t)this.remove(e[t]);return this}function Cje(){return this._root}function Eje(){var e=0;return this.visit(function(t){if(!t.length)do++e;while(t=t.next)}),e}function Ije(e){var t=[],r,n=this._root,a,i,o,s,l;for(n&&t.push(new Tn(n,this._x0,this._y0,this._x1,this._y1));r=t.pop();)if(!e(n=r.node,i=r.x0,o=r.y0,s=r.x1,l=r.y1)&&n.length){var d=(i+s)/2,u=(o+l)/2;(a=n[3])&&t.push(new Tn(a,d,u,s,l)),(a=n[2])&&t.push(new Tn(a,i,u,d,l)),(a=n[1])&&t.push(new Tn(a,d,o,s,u)),(a=n[0])&&t.push(new Tn(a,i,o,d,u))}return this}function Dje(e){var t=[],r=[],n;for(this._root&&t.push(new Tn(this._root,this._x0,this._y0,this._x1,this._y1));n=t.pop();){var a=n.node;if(a.length){var i,o=n.x0,s=n.y0,l=n.x1,d=n.y1,u=(o+l)/2,c=(s+d)/2;(i=a[0])&&t.push(new Tn(i,o,s,u,c)),(i=a[1])&&t.push(new Tn(i,u,s,l,c)),(i=a[2])&&t.push(new Tn(i,o,c,u,d)),(i=a[3])&&t.push(new Tn(i,u,c,l,d))}r.push(n)}for(;n=r.pop();)e(n.node,n.x0,n.y0,n.x1,n.y1);return this}function xje(e){return e[0]}function Oje(e){return arguments.length?(this._x=e,this):this._x}function Mje(e){return e[1]}function Rje(e){return arguments.length?(this._y=e,this):this._y}function sG(e,t,r){var n=new Gx(t==null?xje:t,r==null?Mje:r,NaN,NaN,NaN,NaN);return e==null?n:n.addAll(e)}function Gx(e,t,r,n,a,i){this._x=e,this._y=t,this._x0=r,this._y0=n,this._x1=a,this._y1=i,this._root=void 0}function j5(e){for(var t={data:e.data},r=t;e=e.next;)r=r.next={data:e.data};return t}var Rn=sG.prototype=Gx.prototype;Rn.copy=function(){var e=new Gx(this._x,this._y,this._x0,this._y0,this._x1,this._y1),t=this._root,r,n;if(!t)return e;if(!t.length)return e._root=j5(t),e;for(r=[{source:t,target:e._root=new Array(4)}];t=r.pop();)for(var a=0;a<4;++a)(n=t.source[a])&&(n.length?r.push({source:n,target:t.target[a]=new Array(4)}):t.target[a]=j5(n));return e};Rn.add=yje;Rn.addAll=_je;Rn.cover=bje;Rn.data=wje;Rn.extent=Sje;Rn.find=Aje;Rn.remove=Tje;Rn.removeAll=kje;Rn.root=Cje;Rn.size=Eje;Rn.visit=Ije;Rn.visitAfter=Dje;Rn.x=Oje;Rn.y=Rje;function aa(e){return function(){return e}}function b_(e){return(e()-.5)*1e-6}function Lje(e){return e.x+e.vx}function Pje(e){return e.y+e.vy}function $je(e){var t,r,n,a=1,i=1;typeof e!="function"&&(e=aa(e==null?1:+e));function o(){for(var d,u=t.length,c,h,m,f,g,v,y=0;y<i;++y)for(c=sG(t,Lje,Pje).visitAfter(s),d=0;d<u;++d)h=t[d],g=r[h.index],v=g*g,m=h.x+h.vx,f=h.y+h.vy,c.visit(b);function b(S,w,_,A,I){var k=S.data,C=S.r,T=g+C;if(k){if(k.index>h.index){var O=m-k.x-k.vx,D=f-k.y-k.vy,M=O*O+D*D;M<T*T&&(O===0&&(O=b_(n),M+=O*O),D===0&&(D=b_(n),M+=D*D),M=(T-(M=Math.sqrt(M)))/M*a,h.vx+=(O*=M)*(T=(C*=C)/(v+C)),h.vy+=(D*=M)*T,k.vx-=O*(T=1-T),k.vy-=D*T)}return}return w>m+T||A<m-T||_>f+T||I<f-T}}function s(d){if(d.data)return d.r=r[d.data.index];for(var u=d.r=0;u<4;++u)d[u]&&d[u].r>d.r&&(d.r=d[u].r)}function l(){if(!!t){var d,u=t.length,c;for(r=new Array(u),d=0;d<u;++d)c=t[d],r[c.index]=+e(c,d,t)}}return o.initialize=function(d,u){t=d,n=u,l()},o.iterations=function(d){return arguments.length?(i=+d,o):i},o.strength=function(d){return arguments.length?(a=+d,o):a},o.radius=function(d){return arguments.length?(e=typeof d=="function"?d:aa(+d),l(),o):e},o}function zje(e){return e.index}function U5(e,t){var r=e.get(t);if(!r)throw new Error("node not found: "+t);return r}function Nje(e){var t=zje,r=c,n,a=aa(30),i,o,s,l,d,u=1;e==null&&(e=[]);function c(v){return 1/Math.min(s[v.source.index],s[v.target.index])}function h(v){for(var y=0,b=e.length;y<u;++y)for(var S=0,w,_,A,I,k,C,T;S<b;++S)w=e[S],_=w.source,A=w.target,I=A.x+A.vx-_.x-_.vx||b_(d),k=A.y+A.vy-_.y-_.vy||b_(d),C=Math.sqrt(I*I+k*k),C=(C-i[S])/C*v*n[S],I*=C,k*=C,A.vx-=I*(T=l[S]),A.vy-=k*T,_.vx+=I*(T=1-T),_.vy+=k*T}function m(){if(!!o){var v,y=o.length,b=e.length,S=new Map(o.map((_,A)=>[t(_,A,o),_])),w;for(v=0,s=new Array(y);v<b;++v)w=e[v],w.index=v,typeof w.source!="object"&&(w.source=U5(S,w.source)),typeof w.target!="object"&&(w.target=U5(S,w.target)),s[w.source.index]=(s[w.source.index]||0)+1,s[w.target.index]=(s[w.target.index]||0)+1;for(v=0,l=new Array(b);v<b;++v)w=e[v],l[v]=s[w.source.index]/(s[w.source.index]+s[w.target.index]);n=new Array(b),f(),i=new Array(b),g()}}function f(){if(!!o)for(var v=0,y=e.length;v<y;++v)n[v]=+r(e[v],v,e)}function g(){if(!!o)for(var v=0,y=e.length;v<y;++v)i[v]=+a(e[v],v,e)}return h.initialize=function(v,y){o=v,d=y,m()},h.links=function(v){return arguments.length?(e=v,m(),h):e},h.id=function(v){return arguments.length?(t=v,h):t},h.iterations=function(v){return arguments.length?(u=+v,h):u},h.strength=function(v){return arguments.length?(r=typeof v=="function"?v:aa(+v),f(),h):r},h.distance=function(v){return arguments.length?(a=typeof v=="function"?v:aa(+v),g(),h):a},h}var hc=0,nm=0,Ph=0,lG=1e3,w_,am,S_=0,tu=0,Sw=0,lf=typeof performance=="object"&&performance.now?performance:Date,uG=typeof window=="object"&&window.requestAnimationFrame?window.requestAnimationFrame.bind(window):function(e){setTimeout(e,17)};function qx(){return tu||(uG(Fje),tu=lf.now()+Sw)}function Fje(){tu=0}function A_(){this._call=this._time=this._next=null}A_.prototype=Kx.prototype={constructor:A_,restart:function(e,t,r){if(typeof e!="function")throw new TypeError("callback is not a function");r=(r==null?qx():+r)+(t==null?0:+t),!this._next&&am!==this&&(am?am._next=this:w_=this,am=this),this._call=e,this._time=r,uC()},stop:function(){this._call&&(this._call=null,this._time=1/0,uC())}};function Kx(e,t,r){var n=new A_;return n.restart(e,t,r),n}function Bje(){qx(),++hc;for(var e=w_,t;e;)(t=tu-e._time)>=0&&e._call.call(void 0,t),e=e._next;--hc}function V5(){tu=(S_=lf.now())+Sw,hc=nm=0;try{Bje()}finally{hc=0,Hje(),tu=0}}function Wje(){var e=lf.now(),t=e-S_;t>lG&&(Sw-=t,S_=e)}function Hje(){for(var e,t=w_,r,n=1/0;t;)t._call?(n>t._time&&(n=t._time),e=t,t=t._next):(r=t._next,t._next=null,t=e?e._next=r:w_=r);am=e,uC(n)}function uC(e){if(!hc){nm&&(nm=clearTimeout(nm));var t=e-tu;t>24?(e<1/0&&(nm=setTimeout(V5,e-lf.now()-Sw)),Ph&&(Ph=clearInterval(Ph))):(Ph||(S_=lf.now(),Ph=setInterval(Wje,lG)),hc=1,uG(V5))}}function G5(e,t,r){var n=new A_;return t=t==null?0:+t,n.restart(a=>{n.stop(),e(a+t)},t,r),n}const jje=1664525,Uje=1013904223,q5=4294967296;function Vje(){let e=1;return()=>(e=(jje*e+Uje)%q5)/q5}var Gje=10,qje=Math.PI*(3-Math.sqrt(5));function Kje(e){var t,r=1,n=.001,a=1-Math.pow(n,1/300),i=0,o=.6,s=new Map,l=Kx(c),d=hp("tick","end"),u=Vje();e==null&&(e=[]);function c(){h(),d.call("tick",t),r<n&&(l.stop(),d.call("end",t))}function h(g){var v,y=e.length,b;g===void 0&&(g=1);for(var S=0;S<g;++S)for(r+=(i-r)*a,s.forEach(function(w){w(r)}),v=0;v<y;++v)b=e[v],b.fx==null?b.x+=b.vx*=o:(b.x=b.fx,b.vx=0),b.fy==null?b.y+=b.vy*=o:(b.y=b.fy,b.vy=0);return t}function m(){for(var g=0,v=e.length,y;g<v;++g){if(y=e[g],y.index=g,y.fx!=null&&(y.x=y.fx),y.fy!=null&&(y.y=y.fy),isNaN(y.x)||isNaN(y.y)){var b=Gje*Math.sqrt(.5+g),S=g*qje;y.x=b*Math.cos(S),y.y=b*Math.sin(S)}(isNaN(y.vx)||isNaN(y.vy))&&(y.vx=y.vy=0)}}function f(g){return g.initialize&&g.initialize(e,u),g}return m(),t={tick:h,restart:function(){return l.restart(c),t},stop:function(){return l.stop(),t},nodes:function(g){return arguments.length?(e=g,m(),s.forEach(f),t):e},alpha:function(g){return arguments.length?(r=+g,t):r},alphaMin:function(g){return arguments.length?(n=+g,t):n},alphaDecay:function(g){return arguments.length?(a=+g,t):+a},alphaTarget:function(g){return arguments.length?(i=+g,t):i},velocityDecay:function(g){return arguments.length?(o=1-g,t):1-o},randomSource:function(g){return arguments.length?(u=g,s.forEach(f),t):u},force:function(g,v){return arguments.length>1?(v==null?s.delete(g):s.set(g,f(v)),t):s.get(g)},find:function(g,v,y){var b=0,S=e.length,w,_,A,I,k;for(y==null?y=1/0:y*=y,b=0;b<S;++b)I=e[b],w=g-I.x,_=v-I.y,A=w*w+_*_,A<y&&(k=I,y=A);return k},on:function(g,v){return arguments.length>1?(d.on(g,v),t):d.on(g)}}}function Qje(e){var t=aa(.1),r,n,a;typeof e!="function"&&(e=aa(e==null?0:+e));function i(s){for(var l=0,d=r.length,u;l<d;++l)u=r[l],u.vx+=(a[l]-u.x)*n[l]*s}function o(){if(!!r){var s,l=r.length;for(n=new Array(l),a=new Array(l),s=0;s<l;++s)n[s]=isNaN(a[s]=+e(r[s],s,r))?0:+t(r[s],s,r)}}return i.initialize=function(s){r=s,o()},i.strength=function(s){return arguments.length?(t=typeof s=="function"?s:aa(+s),o(),i):t},i.x=function(s){return arguments.length?(e=typeof s=="function"?s:aa(+s),o(),i):e},i}function Zje(e){var t=aa(.1),r,n,a;typeof e!="function"&&(e=aa(e==null?0:+e));function i(s){for(var l=0,d=r.length,u;l<d;++l)u=r[l],u.vy+=(a[l]-u.y)*n[l]*s}function o(){if(!!r){var s,l=r.length;for(n=new Array(l),a=new Array(l),s=0;s<l;++s)n[s]=isNaN(a[s]=+e(r[s],s,r))?0:+t(r[s],s,r)}}return i.initialize=function(s){r=s,o()},i.strength=function(s){return arguments.length?(t=typeof s=="function"?s:aa(+s),o(),i):t},i.y=function(s){return arguments.length?(e=typeof s=="function"?s:aa(+s),o(),i):e},i}function K5(e){return function(){return e}}function Yje(e){var t=+this._x.call(null,e),r=+this._y.call(null,e);return dG(this.cover(t,r),t,r,e)}function dG(e,t,r,n){if(isNaN(t)||isNaN(r))return e;var a,i=e._root,o={data:n},s=e._x0,l=e._y0,d=e._x1,u=e._y1,c,h,m,f,g,v,y,b;if(!i)return e._root=o,e;for(;i.length;)if((g=t>=(c=(s+d)/2))?s=c:d=c,(v=r>=(h=(l+u)/2))?l=h:u=h,a=i,!(i=i[y=v<<1|g]))return a[y]=o,e;if(m=+e._x.call(null,i.data),f=+e._y.call(null,i.data),t===m&&r===f)return o.next=i,a?a[y]=o:e._root=o,e;do a=a?a[y]=new Array(4):e._root=new Array(4),(g=t>=(c=(s+d)/2))?s=c:d=c,(v=r>=(h=(l+u)/2))?l=h:u=h;while((y=v<<1|g)===(b=(f>=h)<<1|m>=c));return a[b]=i,a[y]=o,e}function Xje(e){var t,r,n=e.length,a,i,o=new Array(n),s=new Array(n),l=1/0,d=1/0,u=-1/0,c=-1/0;for(r=0;r<n;++r)isNaN(a=+this._x.call(null,t=e[r]))||isNaN(i=+this._y.call(null,t))||(o[r]=a,s[r]=i,a<l&&(l=a),a>u&&(u=a),i<d&&(d=i),i>c&&(c=i));if(l>u||d>c)return this;for(this.cover(l,d).cover(u,c),r=0;r<n;++r)dG(this,o[r],s[r],e[r]);return this}function Jje(e,t){if(isNaN(e=+e)||isNaN(t=+t))return this;var r=this._x0,n=this._y0,a=this._x1,i=this._y1;if(isNaN(r))a=(r=Math.floor(e))+1,i=(n=Math.floor(t))+1;else{for(var o=a-r,s=this._root,l,d;r>e||e>=a||n>t||t>=i;)switch(d=(t<n)<<1|e<r,l=new Array(4),l[d]=s,s=l,o*=2,d){case 0:a=r+o,i=n+o;break;case 1:r=a-o,i=n+o;break;case 2:a=r+o,n=i-o;break;case 3:r=a-o,n=i-o;break}this._root&&this._root.length&&(this._root=s)}return this._x0=r,this._y0=n,this._x1=a,this._y1=i,this}function e8e(){var e=[];return this.visit(function(t){if(!t.length)do e.push(t.data);while(t=t.next)}),e}function t8e(e){return arguments.length?this.cover(+e[0][0],+e[0][1]).cover(+e[1][0],+e[1][1]):isNaN(this._x0)?void 0:[[this._x0,this._y0],[this._x1,this._y1]]}function kn(e,t,r,n,a){this.node=e,this.x0=t,this.y0=r,this.x1=n,this.y1=a}function r8e(e,t,r){var n,a=this._x0,i=this._y0,o,s,l,d,u=this._x1,c=this._y1,h=[],m=this._root,f,g;for(m&&h.push(new kn(m,a,i,u,c)),r==null?r=1/0:(a=e-r,i=t-r,u=e+r,c=t+r,r*=r);f=h.pop();)if(!(!(m=f.node)||(o=f.x0)>u||(s=f.y0)>c||(l=f.x1)<a||(d=f.y1)<i))if(m.length){var v=(o+l)/2,y=(s+d)/2;h.push(new kn(m[3],v,y,l,d),new kn(m[2],o,y,v,d),new kn(m[1],v,s,l,y),new kn(m[0],o,s,v,y)),(g=(t>=y)<<1|e>=v)&&(f=h[h.length-1],h[h.length-1]=h[h.length-1-g],h[h.length-1-g]=f)}else{var b=e-+this._x.call(null,m.data),S=t-+this._y.call(null,m.data),w=b*b+S*S;if(w<r){var _=Math.sqrt(r=w);a=e-_,i=t-_,u=e+_,c=t+_,n=m.data}}return n}function n8e(e){if(isNaN(u=+this._x.call(null,e))||isNaN(c=+this._y.call(null,e)))return this;var t,r=this._root,n,a,i,o=this._x0,s=this._y0,l=this._x1,d=this._y1,u,c,h,m,f,g,v,y;if(!r)return this;if(r.length)for(;;){if((f=u>=(h=(o+l)/2))?o=h:l=h,(g=c>=(m=(s+d)/2))?s=m:d=m,t=r,!(r=r[v=g<<1|f]))return this;if(!r.length)break;(t[v+1&3]||t[v+2&3]||t[v+3&3])&&(n=t,y=v)}for(;r.data!==e;)if(a=r,!(r=r.next))return this;return(i=r.next)&&delete r.next,a?(i?a.next=i:delete a.next,this):t?(i?t[v]=i:delete t[v],(r=t[0]||t[1]||t[2]||t[3])&&r===(t[3]||t[2]||t[1]||t[0])&&!r.length&&(n?n[y]=r:this._root=r),this):(this._root=i,this)}function a8e(e){for(var t=0,r=e.length;t<r;++t)this.remove(e[t]);return this}function i8e(){return this._root}function o8e(){var e=0;return this.visit(function(t){if(!t.length)do++e;while(t=t.next)}),e}function s8e(e){var t=[],r,n=this._root,a,i,o,s,l;for(n&&t.push(new kn(n,this._x0,this._y0,this._x1,this._y1));r=t.pop();)if(!e(n=r.node,i=r.x0,o=r.y0,s=r.x1,l=r.y1)&&n.length){var d=(i+s)/2,u=(o+l)/2;(a=n[3])&&t.push(new kn(a,d,u,s,l)),(a=n[2])&&t.push(new kn(a,i,u,d,l)),(a=n[1])&&t.push(new kn(a,d,o,s,u)),(a=n[0])&&t.push(new kn(a,i,o,d,u))}return this}function l8e(e){var t=[],r=[],n;for(this._root&&t.push(new kn(this._root,this._x0,this._y0,this._x1,this._y1));n=t.pop();){var a=n.node;if(a.length){var i,o=n.x0,s=n.y0,l=n.x1,d=n.y1,u=(o+l)/2,c=(s+d)/2;(i=a[0])&&t.push(new kn(i,o,s,u,c)),(i=a[1])&&t.push(new kn(i,u,s,l,c)),(i=a[2])&&t.push(new kn(i,o,c,u,d)),(i=a[3])&&t.push(new kn(i,u,c,l,d))}r.push(n)}for(;n=r.pop();)e(n.node,n.x0,n.y0,n.x1,n.y1);return this}function u8e(e){return e[0]}function d8e(e){return arguments.length?(this._x=e,this):this._x}function c8e(e){return e[1]}function h8e(e){return arguments.length?(this._y=e,this):this._y}function cG(e,t,r){var n=new Qx(t==null?u8e:t,r==null?c8e:r,NaN,NaN,NaN,NaN);return e==null?n:n.addAll(e)}function Qx(e,t,r,n,a,i){this._x=e,this._y=t,this._x0=r,this._y0=n,this._x1=a,this._y1=i,this._root=void 0}function Q5(e){for(var t={data:e.data},r=t;e=e.next;)r=r.next={data:e.data};return t}var Ln=cG.prototype=Qx.prototype;Ln.copy=function(){var e=new Qx(this._x,this._y,this._x0,this._y0,this._x1,this._y1),t=this._root,r,n;if(!t)return e;if(!t.length)return e._root=Q5(t),e;for(r=[{source:t,target:e._root=new Array(4)}];t=r.pop();)for(var a=0;a<4;++a)(n=t.source[a])&&(n.length?r.push({source:n,target:t.target[a]=new Array(4)}):t.target[a]=Q5(n));return e};Ln.add=Yje;Ln.addAll=Xje;Ln.cover=Jje;Ln.data=e8e;Ln.extent=t8e;Ln.find=r8e;Ln.remove=n8e;Ln.removeAll=a8e;Ln.root=i8e;Ln.size=o8e;Ln.visit=s8e;Ln.visitAfter=l8e;Ln.x=d8e;Ln.y=h8e;function m8e(){var e,t,r,n=0,a,i,o,s=K5(-30),l,d=1,u=1/0,c=.81;function h(){return(Math.random()-.5)*1e-6}function m(S){return S.x}function f(S){return S.y}i=function(){return function(S){return S%13===0}};function g(S){var w,_=e.length;for((!a||o(n,e))&&(a=cG(e,m,f).visitAfter(y),e.update.push(n)),r=S,w=0;w<_;++w)t=e[w],a.visit(b);++n}function v(){if(!!e){n=0,e.update=[],o=i(),a=null;var S,w=e.length,_;for(l=new Array(w),S=0;S<w;++S)_=e[S],l[_.index]=+s(_,S,e)}}function y(S){var w=0,_,A,I=0,k,C,T;if(S.length){for(k=C=T=0;T<4;++T)(_=S[T])&&(A=Math.abs(_.value))&&(w+=_.value,I+=A,k+=A*_.x,C+=A*_.y);S.x=k/I,S.y=C/I}else{_=S,_.x=_.data.x,_.y=_.data.y;do w+=l[_.data.index];while(_=_.next)}S.value=w}function b(S,w,_,A){if(!S.value)return!0;var I=S.x-t.x,k=S.y-t.y,C=A-w,T=I*I+k*k;if(C*C/c<T)return T<u&&(I===0&&(I=h(),T+=I*I),k===0&&(k=h(),T+=k*k),T<d&&(T=Math.sqrt(d*T)),t.vx+=I*S.value*r/T,t.vy+=k*S.value*r/T),!0;if(S.length||T>=u)return;(S.data!==t||S.next)&&(I===0&&(I=h(),T+=I*I),k===0&&(k=h(),T+=k*k),T<d&&(T=Math.sqrt(d*T)));do S.data!==t&&(I=S.data.x-t.x,k=S.data.y-t.y,T=I*I+k*k,I===0&&(I=h(),T+=I*I),k===0&&(k=h(),T+=k*k),T<d&&(T=Math.sqrt(d*T)),C=l[S.data.index]*r/T,t.vx+=I*C,t.vy+=k*C);while(S=S.next)}return g.initialize=function(S){e=S,v()},g.strength=function(S){return arguments.length?(s=typeof S=="function"?S:K5(+S),v(),g):s},g.distanceMin=function(S){return arguments.length?(d=S*S,g):Math.sqrt(d)},g.distanceMax=function(S){return arguments.length?(u=S*S,g):Math.sqrt(u)},g.theta=function(S){return arguments.length?(c=S*S,g):Math.sqrt(c)},g.update=function(S){return arguments.length?(i=S,o=i(),g):i},g}function Zx(e,t,r){e.prototype=t.prototype=r,r.constructor=e}function hG(e,t){var r=Object.create(e.prototype);for(var n in t)r[n]=t[n];return r}function Sp(){}var uf=.7,T_=1/uf,Gd="\\s*([+-]?\\d+)\\s*",df="\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)\\s*",Pi="\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)%\\s*",f8e=/^#([0-9a-f]{3,8})$/,p8e=new RegExp(`^rgb\\(${Gd},${Gd},${Gd}\\)$`),g8e=new RegExp(`^rgb\\(${Pi},${Pi},${Pi}\\)$`),v8e=new RegExp(`^rgba\\(${Gd},${Gd},${Gd},${df}\\)$`),y8e=new RegExp(`^rgba\\(${Pi},${Pi},${Pi},${df}\\)$`),_8e=new RegExp(`^hsl\\(${df},${Pi},${Pi}\\)$`),b8e=new RegExp(`^hsla\\(${df},${Pi},${Pi},${df}\\)$`),Z5={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074};Zx(Sp,cf,{copy(e){return Object.assign(new this.constructor,this,e)},displayable(){return this.rgb().displayable()},hex:Y5,formatHex:Y5,formatHex8:w8e,formatHsl:S8e,formatRgb:X5,toString:X5});function Y5(){return this.rgb().formatHex()}function w8e(){return this.rgb().formatHex8()}function S8e(){return mG(this).formatHsl()}function X5(){return this.rgb().formatRgb()}function cf(e){var t,r;return e=(e+"").trim().toLowerCase(),(t=f8e.exec(e))?(r=t[1].length,t=parseInt(t[1],16),r===6?J5(t):r===3?new Hn(t>>8&15|t>>4&240,t>>4&15|t&240,(t&15)<<4|t&15,1):r===8?Zg(t>>24&255,t>>16&255,t>>8&255,(t&255)/255):r===4?Zg(t>>12&15|t>>8&240,t>>8&15|t>>4&240,t>>4&15|t&240,((t&15)<<4|t&15)/255):null):(t=p8e.exec(e))?new Hn(t[1],t[2],t[3],1):(t=g8e.exec(e))?new Hn(t[1]*255/100,t[2]*255/100,t[3]*255/100,1):(t=v8e.exec(e))?Zg(t[1],t[2],t[3],t[4]):(t=y8e.exec(e))?Zg(t[1]*255/100,t[2]*255/100,t[3]*255/100,t[4]):(t=_8e.exec(e))?rF(t[1],t[2]/100,t[3]/100,1):(t=b8e.exec(e))?rF(t[1],t[2]/100,t[3]/100,t[4]):Z5.hasOwnProperty(e)?J5(Z5[e]):e==="transparent"?new Hn(NaN,NaN,NaN,0):null}function J5(e){return new Hn(e>>16&255,e>>8&255,e&255,1)}function Zg(e,t,r,n){return n<=0&&(e=t=r=NaN),new Hn(e,t,r,n)}function A8e(e){return e instanceof Sp||(e=cf(e)),e?(e=e.rgb(),new Hn(e.r,e.g,e.b,e.opacity)):new Hn}function dC(e,t,r,n){return arguments.length===1?A8e(e):new Hn(e,t,r,n==null?1:n)}function Hn(e,t,r,n){this.r=+e,this.g=+t,this.b=+r,this.opacity=+n}Zx(Hn,dC,hG(Sp,{brighter(e){return e=e==null?T_:Math.pow(T_,e),new Hn(this.r*e,this.g*e,this.b*e,this.opacity)},darker(e){return e=e==null?uf:Math.pow(uf,e),new Hn(this.r*e,this.g*e,this.b*e,this.opacity)},rgb(){return this},clamp(){return new Hn(Bl(this.r),Bl(this.g),Bl(this.b),k_(this.opacity))},displayable(){return-.5<=this.r&&this.r<255.5&&-.5<=this.g&&this.g<255.5&&-.5<=this.b&&this.b<255.5&&0<=this.opacity&&this.opacity<=1},hex:eF,formatHex:eF,formatHex8:T8e,formatRgb:tF,toString:tF}));function eF(){return`#${Ll(this.r)}${Ll(this.g)}${Ll(this.b)}`}function T8e(){return`#${Ll(this.r)}${Ll(this.g)}${Ll(this.b)}${Ll((isNaN(this.opacity)?1:this.opacity)*255)}`}function tF(){const e=k_(this.opacity);return`${e===1?"rgb(":"rgba("}${Bl(this.r)}, ${Bl(this.g)}, ${Bl(this.b)}${e===1?")":`, ${e})`}`}function k_(e){return isNaN(e)?1:Math.max(0,Math.min(1,e))}function Bl(e){return Math.max(0,Math.min(255,Math.round(e)||0))}function Ll(e){return e=Bl(e),(e<16?"0":"")+e.toString(16)}function rF(e,t,r,n){return n<=0?e=t=r=NaN:r<=0||r>=1?e=t=NaN:t<=0&&(e=NaN),new oi(e,t,r,n)}function mG(e){if(e instanceof oi)return new oi(e.h,e.s,e.l,e.opacity);if(e instanceof Sp||(e=cf(e)),!e)return new oi;if(e instanceof oi)return e;e=e.rgb();var t=e.r/255,r=e.g/255,n=e.b/255,a=Math.min(t,r,n),i=Math.max(t,r,n),o=NaN,s=i-a,l=(i+a)/2;return s?(t===i?o=(r-n)/s+(r<n)*6:r===i?o=(n-t)/s+2:o=(t-r)/s+4,s/=l<.5?i+a:2-i-a,o*=60):s=l>0&&l<1?0:o,new oi(o,s,l,e.opacity)}function k8e(e,t,r,n){return arguments.length===1?mG(e):new oi(e,t,r,n==null?1:n)}function oi(e,t,r,n){this.h=+e,this.s=+t,this.l=+r,this.opacity=+n}Zx(oi,k8e,hG(Sp,{brighter(e){return e=e==null?T_:Math.pow(T_,e),new oi(this.h,this.s,this.l*e,this.opacity)},darker(e){return e=e==null?uf:Math.pow(uf,e),new oi(this.h,this.s,this.l*e,this.opacity)},rgb(){var e=this.h%360+(this.h<0)*360,t=isNaN(e)||isNaN(this.s)?0:this.s,r=this.l,n=r+(r<.5?r:1-r)*t,a=2*r-n;return new Hn(JS(e>=240?e-240:e+120,a,n),JS(e,a,n),JS(e<120?e+240:e-120,a,n),this.opacity)},clamp(){return new oi(nF(this.h),Yg(this.s),Yg(this.l),k_(this.opacity))},displayable(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1},formatHsl(){const e=k_(this.opacity);return`${e===1?"hsl(":"hsla("}${nF(this.h)}, ${Yg(this.s)*100}%, ${Yg(this.l)*100}%${e===1?")":`, ${e})`}`}}));function nF(e){return e=(e||0)%360,e<0?e+360:e}function Yg(e){return Math.max(0,Math.min(1,e||0))}function JS(e,t,r){return(e<60?t+(r-t)*e/60:e<180?r:e<240?t+(r-t)*(240-e)/60:t)*255}var fG=e=>()=>e;function C8e(e,t){return function(r){return e+r*t}}function E8e(e,t,r){return e=Math.pow(e,r),t=Math.pow(t,r)-e,r=1/r,function(n){return Math.pow(e+n*t,r)}}function I8e(e){return(e=+e)==1?pG:function(t,r){return r-t?E8e(t,r,e):fG(isNaN(t)?r:t)}}function pG(e,t){var r=t-e;return r?C8e(e,r):fG(isNaN(e)?t:e)}var aF=function e(t){var r=I8e(t);function n(a,i){var o=r((a=dC(a)).r,(i=dC(i)).r),s=r(a.g,i.g),l=r(a.b,i.b),d=pG(a.opacity,i.opacity);return function(u){return a.r=o(u),a.g=s(u),a.b=l(u),a.opacity=d(u),a+""}}return n.gamma=e,n}(1);function ts(e,t){return e=+e,t=+t,function(r){return e*(1-r)+t*r}}var cC=/[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g,eA=new RegExp(cC.source,"g");function D8e(e){return function(){return e}}function x8e(e){return function(t){return e(t)+""}}function O8e(e,t){var r=cC.lastIndex=eA.lastIndex=0,n,a,i,o=-1,s=[],l=[];for(e=e+"",t=t+"";(n=cC.exec(e))&&(a=eA.exec(t));)(i=a.index)>r&&(i=t.slice(r,i),s[o]?s[o]+=i:s[++o]=i),(n=n[0])===(a=a[0])?s[o]?s[o]+=a:s[++o]=a:(s[++o]=null,l.push({i:o,x:ts(n,a)})),r=eA.lastIndex;return r<t.length&&(i=t.slice(r),s[o]?s[o]+=i:s[++o]=i),s.length<2?l[0]?x8e(l[0].x):D8e(t):(t=l.length,function(d){for(var u=0,c;u<t;++u)s[(c=l[u]).i]=c.x(d);return s.join("")})}var iF=180/Math.PI,hC={translateX:0,translateY:0,rotate:0,skewX:0,scaleX:1,scaleY:1};function gG(e,t,r,n,a,i){var o,s,l;return(o=Math.sqrt(e*e+t*t))&&(e/=o,t/=o),(l=e*r+t*n)&&(r-=e*l,n-=t*l),(s=Math.sqrt(r*r+n*n))&&(r/=s,n/=s,l/=s),e*n<t*r&&(e=-e,t=-t,l=-l,o=-o),{translateX:a,translateY:i,rotate:Math.atan2(t,e)*iF,skewX:Math.atan(l)*iF,scaleX:o,scaleY:s}}var Xg;function M8e(e){const t=new(typeof DOMMatrix=="function"?DOMMatrix:WebKitCSSMatrix)(e+"");return t.isIdentity?hC:gG(t.a,t.b,t.c,t.d,t.e,t.f)}function R8e(e){return e==null||(Xg||(Xg=document.createElementNS("http://www.w3.org/2000/svg","g")),Xg.setAttribute("transform",e),!(e=Xg.transform.baseVal.consolidate()))?hC:(e=e.matrix,gG(e.a,e.b,e.c,e.d,e.e,e.f))}function vG(e,t,r,n){function a(d){return d.length?d.pop()+" ":""}function i(d,u,c,h,m,f){if(d!==c||u!==h){var g=m.push("translate(",null,t,null,r);f.push({i:g-4,x:ts(d,c)},{i:g-2,x:ts(u,h)})}else(c||h)&&m.push("translate("+c+t+h+r)}function o(d,u,c,h){d!==u?(d-u>180?u+=360:u-d>180&&(d+=360),h.push({i:c.push(a(c)+"rotate(",null,n)-2,x:ts(d,u)})):u&&c.push(a(c)+"rotate("+u+n)}function s(d,u,c,h){d!==u?h.push({i:c.push(a(c)+"skewX(",null,n)-2,x:ts(d,u)}):u&&c.push(a(c)+"skewX("+u+n)}function l(d,u,c,h,m,f){if(d!==c||u!==h){var g=m.push(a(m)+"scale(",null,",",null,")");f.push({i:g-4,x:ts(d,c)},{i:g-2,x:ts(u,h)})}else(c!==1||h!==1)&&m.push(a(m)+"scale("+c+","+h+")")}return function(d,u){var c=[],h=[];return d=e(d),u=e(u),i(d.translateX,d.translateY,u.translateX,u.translateY,c,h),o(d.rotate,u.rotate,c,h),s(d.skewX,u.skewX,c,h),l(d.scaleX,d.scaleY,u.scaleX,u.scaleY,c,h),d=u=null,function(m){for(var f=-1,g=h.length,v;++f<g;)c[(v=h[f]).i]=v.x(m);return c.join("")}}}var L8e=vG(M8e,"px, ","px)","deg)"),P8e=vG(R8e,", ",")",")"),$8e=1e-12;function oF(e){return((e=Math.exp(e))+1/e)/2}function z8e(e){return((e=Math.exp(e))-1/e)/2}function N8e(e){return((e=Math.exp(2*e))-1)/(e+1)}var F8e=function e(t,r,n){function a(i,o){var s=i[0],l=i[1],d=i[2],u=o[0],c=o[1],h=o[2],m=u-s,f=c-l,g=m*m+f*f,v,y;if(g<$8e)y=Math.log(h/d)/t,v=function(I){return[s+I*m,l+I*f,d*Math.exp(t*I*y)]};else{var b=Math.sqrt(g),S=(h*h-d*d+n*g)/(2*d*r*b),w=(h*h-d*d-n*g)/(2*h*r*b),_=Math.log(Math.sqrt(S*S+1)-S),A=Math.log(Math.sqrt(w*w+1)-w);y=(A-_)/t,v=function(I){var k=I*y,C=oF(_),T=d/(r*b)*(C*N8e(t*k+_)-z8e(_));return[s+T*m,l+T*f,d*C/oF(t*k+_)]}}return v.duration=y*1e3*t/Math.SQRT2,v}return a.rho=function(i){var o=Math.max(.001,+i),s=o*o,l=s*s;return e(o,s,l)},a}(Math.SQRT2,2,4),B8e=hp("start","end","cancel","interrupt"),W8e=[],yG=0,sF=1,mC=2,Uv=3,lF=4,fC=5,Vv=6;function Aw(e,t,r,n,a,i){var o=e.__transition;if(!o)e.__transition={};else if(r in o)return;H8e(e,r,{name:t,index:n,group:a,on:B8e,tween:W8e,time:i.time,delay:i.delay,duration:i.duration,ease:i.ease,timer:null,state:yG})}function Yx(e,t){var r=vi(e,t);if(r.state>yG)throw new Error("too late; already scheduled");return r}function Ui(e,t){var r=vi(e,t);if(r.state>Uv)throw new Error("too late; already running");return r}function vi(e,t){var r=e.__transition;if(!r||!(r=r[t]))throw new Error("transition not found");return r}function H8e(e,t,r){var n=e.__transition,a;n[t]=r,r.timer=Kx(i,0,r.time);function i(d){r.state=sF,r.timer.restart(o,r.delay,r.time),r.delay<=d&&o(d-r.delay)}function o(d){var u,c,h,m;if(r.state!==sF)return l();for(u in n)if(m=n[u],m.name===r.name){if(m.state===Uv)return G5(o);m.state===lF?(m.state=Vv,m.timer.stop(),m.on.call("interrupt",e,e.__data__,m.index,m.group),delete n[u]):+u<t&&(m.state=Vv,m.timer.stop(),m.on.call("cancel",e,e.__data__,m.index,m.group),delete n[u])}if(G5(function(){r.state===Uv&&(r.state=lF,r.timer.restart(s,r.delay,r.time),s(d))}),r.state=mC,r.on.call("start",e,e.__data__,r.index,r.group),r.state===mC){for(r.state=Uv,a=new Array(h=r.tween.length),u=0,c=-1;u<h;++u)(m=r.tween[u].value.call(e,e.__data__,r.index,r.group))&&(a[++c]=m);a.length=c+1}}function s(d){for(var u=d<r.duration?r.ease.call(null,d/r.duration):(r.timer.restart(l),r.state=fC,1),c=-1,h=a.length;++c<h;)a[c].call(e,u);r.state===fC&&(r.on.call("end",e,e.__data__,r.index,r.group),l())}function l(){r.state=Vv,r.timer.stop(),delete n[t];for(var d in n)return;delete e.__transition}}function Gv(e,t){var r=e.__transition,n,a,i=!0,o;if(!!r){t=t==null?null:t+"";for(o in r){if((n=r[o]).name!==t){i=!1;continue}a=n.state>mC&&n.state<fC,n.state=Vv,n.timer.stop(),n.on.call(a?"interrupt":"cancel",e,e.__data__,n.index,n.group),delete r[o]}i&&delete e.__transition}}function j8e(e){return this.each(function(){Gv(this,e)})}function U8e(e,t){var r,n;return function(){var a=Ui(this,e),i=a.tween;if(i!==r){n=r=i;for(var o=0,s=n.length;o<s;++o)if(n[o].name===t){n=n.slice(),n.splice(o,1);break}}a.tween=n}}function V8e(e,t,r){var n,a;if(typeof r!="function")throw new Error;return function(){var i=Ui(this,e),o=i.tween;if(o!==n){a=(n=o).slice();for(var s={name:t,value:r},l=0,d=a.length;l<d;++l)if(a[l].name===t){a[l]=s;break}l===d&&a.push(s)}i.tween=a}}function G8e(e,t){var r=this._id;if(e+="",arguments.length<2){for(var n=vi(this.node(),r).tween,a=0,i=n.length,o;a<i;++a)if((o=n[a]).name===e)return o.value;return null}return this.each((t==null?U8e:V8e)(r,e,t))}function Xx(e,t,r){var n=e._id;return e.each(function(){var a=Ui(this,n);(a.value||(a.value={}))[t]=r.apply(this,arguments)}),function(a){return vi(a,n).value[t]}}function _G(e,t){var r;return(typeof t=="number"?ts:t instanceof cf?aF:(r=cf(t))?(t=r,aF):O8e)(e,t)}function q8e(e){return function(){this.removeAttribute(e)}}function K8e(e){return function(){this.removeAttributeNS(e.space,e.local)}}function Q8e(e,t,r){var n,a=r+"",i;return function(){var o=this.getAttribute(e);return o===a?null:o===n?i:i=t(n=o,r)}}function Z8e(e,t,r){var n,a=r+"",i;return function(){var o=this.getAttributeNS(e.space,e.local);return o===a?null:o===n?i:i=t(n=o,r)}}function Y8e(e,t,r){var n,a,i;return function(){var o,s=r(this),l;return s==null?void this.removeAttribute(e):(o=this.getAttribute(e),l=s+"",o===l?null:o===n&&l===a?i:(a=l,i=t(n=o,s)))}}function X8e(e,t,r){var n,a,i;return function(){var o,s=r(this),l;return s==null?void this.removeAttributeNS(e.space,e.local):(o=this.getAttributeNS(e.space,e.local),l=s+"",o===l?null:o===n&&l===a?i:(a=l,i=t(n=o,s)))}}function J8e(e,t){var r=lw(e),n=r==="transform"?P8e:_G;return this.attrTween(e,typeof t=="function"?(r.local?X8e:Y8e)(r,n,Xx(this,"attr."+e,t)):t==null?(r.local?K8e:q8e)(r):(r.local?Z8e:Q8e)(r,n,t))}function eUe(e,t){return function(r){this.setAttribute(e,t.call(this,r))}}function tUe(e,t){return function(r){this.setAttributeNS(e.space,e.local,t.call(this,r))}}function rUe(e,t){var r,n;function a(){var i=t.apply(this,arguments);return i!==n&&(r=(n=i)&&tUe(e,i)),r}return a._value=t,a}function nUe(e,t){var r,n;function a(){var i=t.apply(this,arguments);return i!==n&&(r=(n=i)&&eUe(e,i)),r}return a._value=t,a}function aUe(e,t){var r="attr."+e;if(arguments.length<2)return(r=this.tween(r))&&r._value;if(t==null)return this.tween(r,null);if(typeof t!="function")throw new Error;var n=lw(e);return this.tween(r,(n.local?rUe:nUe)(n,t))}function iUe(e,t){return function(){Yx(this,e).delay=+t.apply(this,arguments)}}function oUe(e,t){return t=+t,function(){Yx(this,e).delay=t}}function sUe(e){var t=this._id;return arguments.length?this.each((typeof e=="function"?iUe:oUe)(t,e)):vi(this.node(),t).delay}function lUe(e,t){return function(){Ui(this,e).duration=+t.apply(this,arguments)}}function uUe(e,t){return t=+t,function(){Ui(this,e).duration=t}}function dUe(e){var t=this._id;return arguments.length?this.each((typeof e=="function"?lUe:uUe)(t,e)):vi(this.node(),t).duration}function cUe(e,t){if(typeof t!="function")throw new Error;return function(){Ui(this,e).ease=t}}function hUe(e){var t=this._id;return arguments.length?this.each(cUe(t,e)):vi(this.node(),t).ease}function mUe(e,t){return function(){var r=t.apply(this,arguments);if(typeof r!="function")throw new Error;Ui(this,e).ease=r}}function fUe(e){if(typeof e!="function")throw new Error;return this.each(mUe(this._id,e))}function pUe(e){typeof e!="function"&&(e=a9(e));for(var t=this._groups,r=t.length,n=new Array(r),a=0;a<r;++a)for(var i=t[a],o=i.length,s=n[a]=[],l,d=0;d<o;++d)(l=i[d])&&e.call(l,l.__data__,d,i)&&s.push(l);return new So(n,this._parents,this._name,this._id)}function gUe(e){if(e._id!==this._id)throw new Error;for(var t=this._groups,r=e._groups,n=t.length,a=r.length,i=Math.min(n,a),o=new Array(n),s=0;s<i;++s)for(var l=t[s],d=r[s],u=l.length,c=o[s]=new Array(u),h,m=0;m<u;++m)(h=l[m]||d[m])&&(c[m]=h);for(;s<n;++s)o[s]=t[s];return new So(o,this._parents,this._name,this._id)}function vUe(e){return(e+"").trim().split(/^|\s+/).every(function(t){var r=t.indexOf(".");return r>=0&&(t=t.slice(0,r)),!t||t==="start"})}function yUe(e,t,r){var n,a,i=vUe(t)?Yx:Ui;return function(){var o=i(this,e),s=o.on;s!==n&&(a=(n=s).copy()).on(t,r),o.on=a}}function _Ue(e,t){var r=this._id;return arguments.length<2?vi(this.node(),r).on.on(e):this.each(yUe(r,e,t))}function bUe(e){return function(){var t=this.parentNode;for(var r in this.__transition)if(+r!==e)return;t&&t.removeChild(this)}}function wUe(){return this.on("end.remove",bUe(this._id))}function SUe(e){var t=this._name,r=this._id;typeof e!="function"&&(e=xx(e));for(var n=this._groups,a=n.length,i=new Array(a),o=0;o<a;++o)for(var s=n[o],l=s.length,d=i[o]=new Array(l),u,c,h=0;h<l;++h)(u=s[h])&&(c=e.call(u,u.__data__,h,s))&&("__data__"in u&&(c.__data__=u.__data__),d[h]=c,Aw(d[h],t,r,h,d,vi(u,r)));return new So(i,this._parents,t,r)}function AUe(e){var t=this._name,r=this._id;typeof e!="function"&&(e=n9(e));for(var n=this._groups,a=n.length,i=[],o=[],s=0;s<a;++s)for(var l=n[s],d=l.length,u,c=0;c<d;++c)if(u=l[c]){for(var h=e.call(u,u.__data__,c,l),m,f=vi(u,r),g=0,v=h.length;g<v;++g)(m=h[g])&&Aw(m,t,r,g,h,f);i.push(h),o.push(u)}return new So(i,o,t,r)}var TUe=dp.prototype.constructor;function kUe(){return new TUe(this._groups,this._parents)}function CUe(e,t){var r,n,a;return function(){var i=dc(this,e),o=(this.style.removeProperty(e),dc(this,e));return i===o?null:i===r&&o===n?a:a=t(r=i,n=o)}}function bG(e){return function(){this.style.removeProperty(e)}}function EUe(e,t,r){var n,a=r+"",i;return function(){var o=dc(this,e);return o===a?null:o===n?i:i=t(n=o,r)}}function IUe(e,t,r){var n,a,i;return function(){var o=dc(this,e),s=r(this),l=s+"";return s==null&&(l=s=(this.style.removeProperty(e),dc(this,e))),o===l?null:o===n&&l===a?i:(a=l,i=t(n=o,s))}}function DUe(e,t){var r,n,a,i="style."+t,o="end."+i,s;return function(){var l=Ui(this,e),d=l.on,u=l.value[i]==null?s||(s=bG(t)):void 0;(d!==r||a!==u)&&(n=(r=d).copy()).on(o,a=u),l.on=n}}function xUe(e,t,r){var n=(e+="")=="transform"?L8e:_G;return t==null?this.styleTween(e,CUe(e,n)).on("end.style."+e,bG(e)):typeof t=="function"?this.styleTween(e,IUe(e,n,Xx(this,"style."+e,t))).each(DUe(this._id,e)):this.styleTween(e,EUe(e,n,t),r).on("end.style."+e,null)}function OUe(e,t,r){return function(n){this.style.setProperty(e,t.call(this,n),r)}}function MUe(e,t,r){var n,a;function i(){var o=t.apply(this,arguments);return o!==a&&(n=(a=o)&&OUe(e,o,r)),n}return i._value=t,i}function RUe(e,t,r){var n="style."+(e+="");if(arguments.length<2)return(n=this.tween(n))&&n._value;if(t==null)return this.tween(n,null);if(typeof t!="function")throw new Error;return this.tween(n,MUe(e,t,r==null?"":r))}function LUe(e){return function(){this.textContent=e}}function PUe(e){return function(){var t=e(this);this.textContent=t==null?"":t}}function $Ue(e){return this.tween("text",typeof e=="function"?PUe(Xx(this,"text",e)):LUe(e==null?"":e+""))}function zUe(e){return function(t){this.textContent=e.call(this,t)}}function NUe(e){var t,r;function n(){var a=e.apply(this,arguments);return a!==r&&(t=(r=a)&&zUe(a)),t}return n._value=e,n}function FUe(e){var t="text";if(arguments.length<1)return(t=this.tween(t))&&t._value;if(e==null)return this.tween(t,null);if(typeof e!="function")throw new Error;return this.tween(t,NUe(e))}function BUe(){for(var e=this._name,t=this._id,r=wG(),n=this._groups,a=n.length,i=0;i<a;++i)for(var o=n[i],s=o.length,l,d=0;d<s;++d)if(l=o[d]){var u=vi(l,t);Aw(l,e,r,d,o,{time:u.time+u.delay+u.duration,delay:0,duration:u.duration,ease:u.ease})}return new So(n,this._parents,e,r)}function WUe(){var e,t,r=this,n=r._id,a=r.size();return new Promise(function(i,o){var s={value:o},l={value:function(){--a===0&&i()}};r.each(function(){var d=Ui(this,n),u=d.on;u!==e&&(t=(e=u).copy(),t._.cancel.push(s),t._.interrupt.push(s),t._.end.push(l)),d.on=t}),a===0&&i()})}var HUe=0;function So(e,t,r,n){this._groups=e,this._parents=t,this._name=r,this._id=n}function wG(){return++HUe}var Xi=dp.prototype;So.prototype={constructor:So,select:SUe,selectAll:AUe,selectChild:Xi.selectChild,selectChildren:Xi.selectChildren,filter:pUe,merge:gUe,selection:kUe,transition:BUe,call:Xi.call,nodes:Xi.nodes,node:Xi.node,size:Xi.size,empty:Xi.empty,each:Xi.each,on:_Ue,attr:J8e,attrTween:aUe,style:xUe,styleTween:RUe,text:$Ue,textTween:FUe,remove:wUe,tween:G8e,delay:sUe,duration:dUe,ease:hUe,easeVarying:fUe,end:WUe,[Symbol.iterator]:Xi[Symbol.iterator]};function jUe(e){return((e*=2)<=1?e*e*e:(e-=2)*e*e+2)/2}var UUe={time:null,delay:0,duration:250,ease:jUe};function VUe(e,t){for(var r;!(r=e.__transition)||!(r=r[t]);)if(!(e=e.parentNode))throw new Error(`transition ${t} not found`);return r}function GUe(e){var t,r;e instanceof So?(t=e._id,e=e._name):(t=wG(),(r=UUe).time=qx(),e=e==null?null:e+"");for(var n=this._groups,a=n.length,i=0;i<a;++i)for(var o=n[i],s=o.length,l,d=0;d<s;++d)(l=o[d])&&Aw(l,e,t,d,o,r||VUe(l,t));return new So(n,this._parents,e,t)}dp.prototype.interrupt=j8e;dp.prototype.transition=GUe;var Jg=e=>()=>e;function qUe(e,{sourceEvent:t,target:r,transform:n,dispatch:a}){Object.defineProperties(this,{type:{value:e,enumerable:!0,configurable:!0},sourceEvent:{value:t,enumerable:!0,configurable:!0},target:{value:r,enumerable:!0,configurable:!0},transform:{value:n,enumerable:!0,configurable:!0},_:{value:a}})}function ms(e,t,r){this.k=e,this.x=t,this.y=r}ms.prototype={constructor:ms,scale:function(e){return e===1?this:new ms(this.k*e,this.x,this.y)},translate:function(e,t){return e===0&t===0?this:new ms(this.k,this.x+this.k*e,this.y+this.k*t)},apply:function(e){return[e[0]*this.k+this.x,e[1]*this.k+this.y]},applyX:function(e){return e*this.k+this.x},applyY:function(e){return e*this.k+this.y},invert:function(e){return[(e[0]-this.x)/this.k,(e[1]-this.y)/this.k]},invertX:function(e){return(e-this.x)/this.k},invertY:function(e){return(e-this.y)/this.k},rescaleX:function(e){return e.copy().domain(e.range().map(this.invertX,this).map(e.invert,e))},rescaleY:function(e){return e.copy().domain(e.range().map(this.invertY,this).map(e.invert,e))},toString:function(){return"translate("+this.x+","+this.y+") scale("+this.k+")"}};var Jx=new ms(1,0,0);function tA(e){e.stopImmediatePropagation()}function $h(e){e.preventDefault(),e.stopImmediatePropagation()}function KUe(e){return(!e.ctrlKey||e.type==="wheel")&&!e.button}function QUe(){var e=this;return e instanceof SVGElement?(e=e.ownerSVGElement||e,e.hasAttribute("viewBox")?(e=e.viewBox.baseVal,[[e.x,e.y],[e.x+e.width,e.y+e.height]]):[[0,0],[e.width.baseVal.value,e.height.baseVal.value]]):[[0,0],[e.clientWidth,e.clientHeight]]}function uF(){return this.__zoom||Jx}function ZUe(e){return-e.deltaY*(e.deltaMode===1?.05:e.deltaMode?1:.002)*(e.ctrlKey?10:1)}function YUe(){return navigator.maxTouchPoints||"ontouchstart"in this}function XUe(e,t,r){var n=e.invertX(t[0][0])-r[0][0],a=e.invertX(t[1][0])-r[1][0],i=e.invertY(t[0][1])-r[0][1],o=e.invertY(t[1][1])-r[1][1];return e.translate(a>n?(n+a)/2:Math.min(0,n)||Math.max(0,a),o>i?(i+o)/2:Math.min(0,i)||Math.max(0,o))}function JUe(){var e=KUe,t=QUe,r=XUe,n=ZUe,a=YUe,i=[0,1/0],o=[[-1/0,-1/0],[1/0,1/0]],s=250,l=F8e,d=hp("start","zoom","end"),u,c,h,m=500,f=150,g=0,v=10;function y(E){E.property("__zoom",uF).on("wheel.zoom",k,{passive:!1}).on("mousedown.zoom",C).on("dblclick.zoom",T).filter(a).on("touchstart.zoom",O).on("touchmove.zoom",D).on("touchend.zoom touchcancel.zoom",M).style("-webkit-tap-highlight-color","rgba(0,0,0,0)")}y.transform=function(E,L,P,j){var H=E.selection?E.selection():E;H.property("__zoom",uF),E!==H?_(E,L,P,j):H.interrupt().each(function(){A(this,arguments).event(j).start().zoom(null,typeof L=="function"?L.apply(this,arguments):L).end()})},y.scaleBy=function(E,L,P,j){y.scaleTo(E,function(){var H=this.__zoom.k,$=typeof L=="function"?L.apply(this,arguments):L;return H*$},P,j)},y.scaleTo=function(E,L,P,j){y.transform(E,function(){var H=t.apply(this,arguments),$=this.__zoom,B=P==null?w(H):typeof P=="function"?P.apply(this,arguments):P,z=$.invert(B),F=typeof L=="function"?L.apply(this,arguments):L;return r(S(b($,F),B,z),H,o)},P,j)},y.translateBy=function(E,L,P,j){y.transform(E,function(){return r(this.__zoom.translate(typeof L=="function"?L.apply(this,arguments):L,typeof P=="function"?P.apply(this,arguments):P),t.apply(this,arguments),o)},null,j)},y.translateTo=function(E,L,P,j,H){y.transform(E,function(){var $=t.apply(this,arguments),B=this.__zoom,z=j==null?w($):typeof j=="function"?j.apply(this,arguments):j;return r(Jx.translate(z[0],z[1]).scale(B.k).translate(typeof L=="function"?-L.apply(this,arguments):-L,typeof P=="function"?-P.apply(this,arguments):-P),$,o)},j,H)};function b(E,L){return L=Math.max(i[0],Math.min(i[1],L)),L===E.k?E:new ms(L,E.x,E.y)}function S(E,L,P){var j=L[0]-P[0]*E.k,H=L[1]-P[1]*E.k;return j===E.x&&H===E.y?E:new ms(E.k,j,H)}function w(E){return[(+E[0][0]+ +E[1][0])/2,(+E[0][1]+ +E[1][1])/2]}function _(E,L,P,j){E.on("start.zoom",function(){A(this,arguments).event(j).start()}).on("interrupt.zoom end.zoom",function(){A(this,arguments).event(j).end()}).tween("zoom",function(){var H=this,$=arguments,B=A(H,$).event(j),z=t.apply(H,$),F=P==null?w(z):typeof P=="function"?P.apply(H,$):P,V=Math.max(z[1][0]-z[0][0],z[1][1]-z[0][1]),K=H.__zoom,Z=typeof L=="function"?L.apply(H,$):L,ue=l(K.invert(F).concat(V/K.k),Z.invert(F).concat(V/Z.k));return function(fe){if(fe===1)fe=Z;else{var ye=ue(fe),De=V/ye[2];fe=new ms(De,F[0]-ye[0]*De,F[1]-ye[1]*De)}B.zoom(null,fe)}})}function A(E,L,P){return!P&&E.__zooming||new I(E,L)}function I(E,L){this.that=E,this.args=L,this.active=0,this.sourceEvent=null,this.extent=t.apply(E,L),this.taps=0}I.prototype={event:function(E){return E&&(this.sourceEvent=E),this},start:function(){return++this.active===1&&(this.that.__zooming=this,this.emit("start")),this},zoom:function(E,L){return this.mouse&&E!=="mouse"&&(this.mouse[1]=L.invert(this.mouse[0])),this.touch0&&E!=="touch"&&(this.touch0[1]=L.invert(this.touch0[0])),this.touch1&&E!=="touch"&&(this.touch1[1]=L.invert(this.touch1[0])),this.that.__zoom=L,this.emit("zoom"),this},end:function(){return--this.active===0&&(delete this.that.__zooming,this.emit("end")),this},emit:function(E){var L=Bn(this.that).datum();d.call(E,this.that,new qUe(E,{sourceEvent:this.sourceEvent,target:y,type:E,transform:this.that.__zoom,dispatch:d}),L)}};function k(E,...L){if(!e.apply(this,arguments))return;var P=A(this,L).event(E),j=this.__zoom,H=Math.max(i[0],Math.min(i[1],j.k*Math.pow(2,n.apply(this,arguments)))),$=no(E);if(P.wheel)(P.mouse[0][0]!==$[0]||P.mouse[0][1]!==$[1])&&(P.mouse[1]=j.invert(P.mouse[0]=$)),clearTimeout(P.wheel);else{if(j.k===H)return;P.mouse=[$,j.invert($)],Gv(this),P.start()}$h(E),P.wheel=setTimeout(B,f),P.zoom("mouse",r(S(b(j,H),P.mouse[0],P.mouse[1]),P.extent,o));function B(){P.wheel=null,P.end()}}function C(E,...L){if(h||!e.apply(this,arguments))return;var P=E.currentTarget,j=A(this,L,!0).event(E),H=Bn(E.view).on("mousemove.zoom",F,!0).on("mouseup.zoom",V,!0),$=no(E,P),B=E.clientX,z=E.clientY;x9(E.view),tA(E),j.mouse=[$,this.__zoom.invert($)],Gv(this),j.start();function F(K){if($h(K),!j.moved){var Z=K.clientX-B,ue=K.clientY-z;j.moved=Z*Z+ue*ue>g}j.event(K).zoom("mouse",r(S(j.that.__zoom,j.mouse[0]=no(K,P),j.mouse[1]),j.extent,o))}function V(K){H.on("mousemove.zoom mouseup.zoom",null),O9(K.view,j.moved),$h(K),j.event(K).end()}}function T(E,...L){if(!!e.apply(this,arguments)){var P=this.__zoom,j=no(E.changedTouches?E.changedTouches[0]:E,this),H=P.invert(j),$=P.k*(E.shiftKey?.5:2),B=r(S(b(P,$),j,H),t.apply(this,L),o);$h(E),s>0?Bn(this).transition().duration(s).call(_,B,j,E):Bn(this).call(y.transform,B,j,E)}}function O(E,...L){if(!!e.apply(this,arguments)){var P=E.touches,j=P.length,H=A(this,L,E.changedTouches.length===j).event(E),$,B,z,F;for(tA(E),B=0;B<j;++B)z=P[B],F=no(z,this),F=[F,this.__zoom.invert(F),z.identifier],H.touch0?!H.touch1&&H.touch0[2]!==F[2]&&(H.touch1=F,H.taps=0):(H.touch0=F,$=!0,H.taps=1+!!u);u&&(u=clearTimeout(u)),$&&(H.taps<2&&(c=F[0],u=setTimeout(function(){u=null},m)),Gv(this),H.start())}}function D(E,...L){if(!!this.__zooming){var P=A(this,L).event(E),j=E.changedTouches,H=j.length,$,B,z,F;for($h(E),$=0;$<H;++$)B=j[$],z=no(B,this),P.touch0&&P.touch0[2]===B.identifier?P.touch0[0]=z:P.touch1&&P.touch1[2]===B.identifier&&(P.touch1[0]=z);if(B=P.that.__zoom,P.touch1){var V=P.touch0[0],K=P.touch0[1],Z=P.touch1[0],ue=P.touch1[1],fe=(fe=Z[0]-V[0])*fe+(fe=Z[1]-V[1])*fe,ye=(ye=ue[0]-K[0])*ye+(ye=ue[1]-K[1])*ye;B=b(B,Math.sqrt(fe/ye)),z=[(V[0]+Z[0])/2,(V[1]+Z[1])/2],F=[(K[0]+ue[0])/2,(K[1]+ue[1])/2]}else if(P.touch0)z=P.touch0[0],F=P.touch0[1];else return;P.zoom("touch",r(S(B,z,F),P.extent,o))}}function M(E,...L){if(!!this.__zooming){var P=A(this,L).event(E),j=E.changedTouches,H=j.length,$,B;for(tA(E),h&&clearTimeout(h),h=setTimeout(function(){h=null},m),$=0;$<H;++$)B=j[$],P.touch0&&P.touch0[2]===B.identifier?delete P.touch0:P.touch1&&P.touch1[2]===B.identifier&&delete P.touch1;if(P.touch1&&!P.touch0&&(P.touch0=P.touch1,delete P.touch1),P.touch0)P.touch0[1]=this.__zoom.invert(P.touch0[0]);else if(P.end(),P.taps===2&&(B=no(B,this),Math.hypot(c[0]-B[0],c[1]-B[1])<v)){var z=Bn(this).on("dblclick.zoom");z&&z.apply(this,arguments)}}}return y.wheelDelta=function(E){return arguments.length?(n=typeof E=="function"?E:Jg(+E),y):n},y.filter=function(E){return arguments.length?(e=typeof E=="function"?E:Jg(!!E),y):e},y.touchable=function(E){return arguments.length?(a=typeof E=="function"?E:Jg(!!E),y):a},y.extent=function(E){return arguments.length?(t=typeof E=="function"?E:Jg([[+E[0][0],+E[0][1]],[+E[1][0],+E[1][1]]]),y):t},y.scaleExtent=function(E){return arguments.length?(i[0]=+E[0],i[1]=+E[1],y):[i[0],i[1]]},y.translateExtent=function(E){return arguments.length?(o[0][0]=+E[0][0],o[1][0]=+E[1][0],o[0][1]=+E[0][1],o[1][1]=+E[1][1],y):[[o[0][0],o[0][1]],[o[1][0],o[1][1]]]},y.constrain=function(E){return arguments.length?(r=E,y):r},y.duration=function(E){return arguments.length?(s=+E,y):s},y.interpolate=function(E){return arguments.length?(l=E,y):l},y.on=function(){var E=d.on.apply(d,arguments);return E===d?y:E},y.clickDistance=function(E){return arguments.length?(g=(E=+E)*E,y):Math.sqrt(g)},y.tapDistance=function(E){return arguments.length?(v=+E,y):v},y}const eVe=[{title:"IsParent",relationship:hs.NeigbhorIsParent},{title:"IsAChild",relationship:hs.NeigbhorIsAChild},{title:"IsASibling",relationship:hs.NeigbhorIsASibling},{title:"NoneOfTheAbove",relationship:hs.NoneOfTheAbove}],SG=()=>de("div",{className:"d-flex align-items-center",children:[x("span",{children:"Loading, please wait."}),x("div",{className:"spinner-border me-2"})]});function tVe(e,t,r,n){for(var a=e.length,i=r+(n?1:-1);n?i--:++i<a;)if(t(e[i],i,e))return i;return-1}var rVe=tVe;function nVe(e){return e!==e}var aVe=nVe;function iVe(e,t,r){for(var n=r-1,a=e.length;++n<a;)if(e[n]===t)return n;return-1}var oVe=iVe,sVe=rVe,lVe=aVe,uVe=oVe;function dVe(e,t,r){return t===t?uVe(e,t,r):sVe(e,lVe,r)}var AG=dVe,cVe=AG;function hVe(e,t){var r=e==null?0:e.length;return!!r&&cVe(e,t,0)>-1}var e2=hVe;function mVe(e,t,r){for(var n=-1,a=e==null?0:e.length;++n<a;)if(r(t,e[n]))return!0;return!1}var t2=mVe,fVe=pw,pVe=e2,gVe=t2,vVe=Qs,yVe=_u,dF=gw,_Ve=Math.min;function bVe(e,t,r){for(var n=r?gVe:pVe,a=e[0].length,i=e.length,o=i,s=Array(i),l=1/0,d=[];o--;){var u=e[o];o&&t&&(u=vVe(u,yVe(t))),l=_Ve(u.length,l),s[o]=!r&&(t||a>=120&&u.length>=120)?new fVe(o&&u):void 0}u=e[0];var c=-1,h=s[0];e:for(;++c<a&&d.length<l;){var m=u[c],f=t?t(m):m;if(m=r||m!==0?m:0,!(h?dF(h,f):n(d,f,r))){for(o=i;--o;){var g=s[o];if(!(g?dF(g,f):n(e[o],f,r)))continue e}h&&h.push(f),d.push(m)}}return d}var TG=bVe;function wVe(e,t,r){switch(r.length){case 0:return e.call(t);case 1:return e.call(t,r[0]);case 2:return e.call(t,r[0],r[1]);case 3:return e.call(t,r[0],r[1],r[2])}return e.apply(t,r)}var kG=wVe,SVe=kG,cF=Math.max;function AVe(e,t,r){return t=cF(t===void 0?e.length-1:t,0),function(){for(var n=arguments,a=-1,i=cF(n.length-t,0),o=Array(i);++a<i;)o[a]=n[t+a];a=-1;for(var s=Array(t+1);++a<t;)s[a]=n[a];return s[t]=r(o),SVe(e,this,s)}}var CG=AVe;function TVe(e){return function(){return e}}var kVe=TVe,CVe=kVe,hF=Z9,EVe=vp,IVe=hF?function(e,t){return hF(e,"toString",{configurable:!0,enumerable:!1,value:CVe(t),writable:!0})}:EVe,DVe=IVe,xVe=800,OVe=16,MVe=Date.now;function RVe(e){var t=0,r=0;return function(){var n=MVe(),a=OVe-(n-r);if(r=n,a>0){if(++t>=xVe)return arguments[0]}else t=0;return e.apply(void 0,arguments)}}var LVe=RVe,PVe=DVe,$Ve=LVe,zVe=$Ve(PVe),EG=zVe,NVe=vp,FVe=CG,BVe=EG;function WVe(e,t){return BVe(FVe(e,t,NVe),e+"")}var Zs=WVe,HVe=bu,jVe=gi;function UVe(e){return jVe(e)&&HVe(e)}var Tw=UVe,VVe=Tw;function GVe(e){return VVe(e)?e:[]}var IG=GVe,qVe=Qs,KVe=TG,QVe=Zs,ZVe=IG,YVe=QVe(function(e){var t=qVe(e,ZVe);return t.length&&t[0]===e[0]?KVe(t):[]}),pC=YVe;const DG=[hs.NeigbhorIsAChild,hs.NeigbhorIsParent],XVe=e=>e.linkType==="Router2Router"?1:DG.includes(e.relationship)?.5:0,JVe=[...DG,hs.NeigbhorIsASibling],zh=100,e7e={BrokenLink:5*zh,Router2Router:2.5*zh,Coordinator2Router:2.5*zh,Coordinator2EndDevice:zh,EndDevice2Router:zh},t7e=e=>{var t;return(t=e7e[e.linkType])!=null?t:250},r7e=(e,t)=>{const r=e.source,n=e.target,[a,i]=t.apply([r.x,r.y]),[o,s]=t.apply([n.x,n.y]);return`M ${a} ${i} L ${o} ${s}`},n7e=({transform:e,node:t,link:r,linkLabel:n,links:a})=>{a.forEach(i=>{const[o,s]=e.apply([i.source.x,i.source.y]),[l,d]=e.apply([i.target.x,i.target.y]);i.x=(l+o)/2,i.y=(d+s)/2}),r.attr("d",i=>r7e(i,e)),n.attr("x",({source:i,target:o})=>e.applyX((i.x+o.x)/2)).attr("y",({source:i,target:o})=>e.applyY((i.y+o.y)/2)),t.attr("transform",i=>{const[l,d]=e.apply([i.x,i.y]);return`translate(${l-16}, ${d-16})`})},a7e=({networkGraph:e,links:t,selectedNode:r,node:n,link:a,linkLabel:i})=>{const o=new Set;e.nodes.forEach(d=>o.add(d.ieeeAddr+","+d.ieeeAddr)),t.forEach(d=>o.add(d.source.ieeeAddr+","+d.target.ieeeAddr));const s=(d,u)=>o.has(d.ieeeAddr+","+u.ieeeAddr),l=d=>(d==null?void 0:d.source)===r||(d==null?void 0:d.target)===r?1:.15;r?(n.style("opacity",d=>s(r,d)||s(d,r)?1:.15),a.style("stroke-opacity",l),i.style("opacity",l)):(n.style("opacity",1),a.style("stroke-opacity",1),i.style("opacity",1))};class i7e extends le.exports.Component{constructor(){super(...arguments),this.ref=le.exports.createRef(),this.svgRef=le.exports.createRef(),this.simulation=Kje(),this.state={width:0,height:0,visibleLinks:JVe,legendIsVisible:!0},this.transform=Jx,this.updateNodes=()=>{var m;const{networkGraph:t}=this.props,{visibleLinks:r,selectedNode:n,width:a,height:i}=this.state,o=Bn(this.svgRef.current),s=o.selectAll(`.${wr.node}`),l=o.selectAll(`.${wr.link}`),d=o.selectAll(`.${wr.linkLabel}`),u=t.links.filter(f=>pC(r,f.relationships).length);this.simulation.nodes(t.nodes.concat(u)),(m=this.simulation.force("link"))==null||m.links(u),this.simulation.on("tick",()=>n7e({transform:this.transform,node:s,link:l,linkLabel:d,links:u}));const c=o.selectAll(".everything");JUe().extent([[0,0],[a,i]]).scaleExtent([1/10,8]).on("zoom",({transform:f})=>{c.attr("transform",f)})(o),a7e({networkGraph:t,links:u,selectedNode:n,node:s,link:l,linkLabel:d}),s.on("click",(f,g)=>{this.setState({selectedNode:n?null:g})}),this.simulation.alphaTarget(.03).restart()},this.initPage=()=>{const{width:t,height:r}=this.ref.current.getBoundingClientRect();this.setState({width:t,height:r}),this.updateForces(t,r)},this.onRequestClick=()=>{const{networkMapRequest:t}=this.props;t()},this.onLinkTypeFilterChange=t=>{const{visibleLinks:r}=this.state,{checked:n,value:a}=t.target,i=parseInt(a,10);let o=[...r];n?o.push(i):o=o.filter(s=>s!==i),this.setState({visibleLinks:o})}}updateForces(t,r){this.simulation=this.simulation.force("link",Nje().id(n=>n.ieeeAddr).distance(t7e).strength(XVe)).force("charge",m8e().strength(-700)).force("collisionForce",$je()).force("center",vje(t/2,r/2)).force("x",Qje().strength(.1)).force("y",Zje().strength(.2))}componentDidMount(){setTimeout(this.initPage,200)}componentDidUpdate(){this.updateNodes()}renderMap(){const{width:t,height:r,visibleLinks:n}=this.state,{networkGraph:a,deviceStates:i,devices:o,availability:s}=this.props,l=a.links.filter(d=>pC(n,d.relationships).length>0);return x("svg",{ref:this.svgRef,viewBox:`0 0 ${t} ${r}`,children:de("g",{className:"everything",children:[x(L$e,{links:l}),x(aWe,{root:this.svgRef.current,nodes:a.nodes,simulation:this.simulation,deviceStates:i,devices:o,availability:s})]})})}renderMessage(){const{networkGraphIsLoading:t,t:r}=this.props;return x("div",{className:"h-100 d-flex justify-content-center align-items-center",children:t?de("div",{children:[x(SG,{}),x("div",{children:r("loading")})]}):x(yt,{onClick:this.onRequestClick,className:"btn btn-primary d-block",children:r("load")})})}renderMapControls(){const{visibleLinks:t}=this.state;return de("div",{className:wr.controls,children:[eVe.map(r=>de("div",{className:"form-check form-check-inline",children:[x("input",{onChange:this.onLinkTypeFilterChange,className:"form-check-input",type:"checkbox",id:r.title,value:r.relationship,checked:t.includes(r.relationship)}),x("label",{className:"form-check-label",htmlFor:r.title,children:r.title})]},r.title)),x("div",{className:"btn-group btn-group-sm",role:"group",children:x(yt,{title:"Refresh data",className:"btn btn-primary",onClick:this.onRequestClick,children:x("i",{className:"fa fa-sync"})})})]})}renderHelp(){const{t}=this.props,{legendIsVisible:r}=this.state;return de("div",{className:et("fixed-bottom",{"d-none":!r}),onClick:()=>this.setState({legendIsVisible:!1}),children:[de("div",{className:et(wr.node,wr.Coordinator),children:[x("svg",{width:"28",height:"28",viewBox:"0 0 28 28",children:x("polygon",{points:V9(5,5,14)})})," ",t("help_is_coordinator")]}),x("div",{className:et(wr.node,wr.EndDevice),children:t("help_end_device_description")}),x("div",{className:et(wr.node,wr.Router),children:t("help_router_description")}),x("div",{children:t("help_coordinator_link_description")}),x("div",{children:t("help_router_links_description")}),x("div",{children:t("help_lqi_description")}),x("div",{children:t("hide")})]})}render(){const{networkGraph:t}=this.props;return de("div",{className:wr.container,ref:this.ref,children:[t.nodes.length?de(le.exports.Fragment,{children:[this.renderMapControls()," ",this.renderMap()]}):this.renderMessage(),this.renderHelp()]})}}const o7e=["networkGraph","networkGraphIsLoading","deviceStates","devices","availability"],s7e=Mn("map")($r(o7e,Br)(i7e));function ev(e){return e.charAt(0)==="/"}function rA(e,t){for(var r=t,n=r+1,a=e.length;n<a;r+=1,n+=1)e[r]=e[n];e.pop()}function l7e(e,t){t===void 0&&(t="");var r=e&&e.split("/")||[],n=t&&t.split("/")||[],a=e&&ev(e),i=t&&ev(t),o=a||i;if(e&&ev(e)?n=r:r.length&&(n.pop(),n=n.concat(r)),!n.length)return"/";var s;if(n.length){var l=n[n.length-1];s=l==="."||l===".."||l===""}else s=!1;for(var d=0,u=n.length;u>=0;u--){var c=n[u];c==="."?rA(n,u):c===".."?(rA(n,u),d++):d&&(rA(n,u),d--)}if(!o)for(;d--;d)n.unshift("..");o&&n[0]!==""&&(!n[0]||!ev(n[0]))&&n.unshift("");var h=n.join("/");return s&&h.substr(-1)!=="/"&&(h+="/"),h}function mF(e){return e.valueOf?e.valueOf():Object.prototype.valueOf.call(e)}function qv(e,t){if(e===t)return!0;if(e==null||t==null)return!1;if(Array.isArray(e))return Array.isArray(t)&&e.length===t.length&&e.every(function(a,i){return qv(a,t[i])});if(typeof e=="object"||typeof t=="object"){var r=mF(e),n=mF(t);return r!==e||n!==t?qv(r,n):Object.keys(Object.assign({},e,t)).every(function(a){return qv(e[a],t[a])})}return!1}var u7e=!0,nA="Invariant failed";function Po(e,t){if(!e){if(u7e)throw new Error(nA);var r=typeof t=="function"?t():t,n=r?nA+": "+r:nA;throw new Error(n)}}function Em(e){return e.charAt(0)==="/"?e:"/"+e}function fF(e){return e.charAt(0)==="/"?e.substr(1):e}function d7e(e,t){return e.toLowerCase().indexOf(t.toLowerCase())===0&&"/?#".indexOf(e.charAt(t.length))!==-1}function xG(e,t){return d7e(e,t)?e.substr(t.length):e}function OG(e){return e.charAt(e.length-1)==="/"?e.slice(0,-1):e}function c7e(e){var t=e||"/",r="",n="",a=t.indexOf("#");a!==-1&&(n=t.substr(a),t=t.substr(0,a));var i=t.indexOf("?");return i!==-1&&(r=t.substr(i),t=t.substr(0,i)),{pathname:t,search:r==="?"?"":r,hash:n==="#"?"":n}}function Nn(e){var t=e.pathname,r=e.search,n=e.hash,a=t||"/";return r&&r!=="?"&&(a+=r.charAt(0)==="?"?r:"?"+r),n&&n!=="#"&&(a+=n.charAt(0)==="#"?n:"#"+n),a}function Cn(e,t,r,n){var a;typeof e=="string"?(a=c7e(e),a.state=t):(a=Mr({},e),a.pathname===void 0&&(a.pathname=""),a.search?a.search.charAt(0)!=="?"&&(a.search="?"+a.search):a.search="",a.hash?a.hash.charAt(0)!=="#"&&(a.hash="#"+a.hash):a.hash="",t!==void 0&&a.state===void 0&&(a.state=t));try{a.pathname=decodeURI(a.pathname)}catch(i){throw i instanceof URIError?new URIError('Pathname "'+a.pathname+'" could not be decoded. This is likely caused by an invalid percent-encoding.'):i}return r&&(a.key=r),n?a.pathname?a.pathname.charAt(0)!=="/"&&(a.pathname=l7e(a.pathname,n.pathname)):a.pathname=n.pathname:a.pathname||(a.pathname="/"),a}function h7e(e,t){return e.pathname===t.pathname&&e.search===t.search&&e.hash===t.hash&&e.key===t.key&&qv(e.state,t.state)}function r2(){var e=null;function t(o){return e=o,function(){e===o&&(e=null)}}function r(o,s,l,d){if(e!=null){var u=typeof e=="function"?e(o,s):e;typeof u=="string"?typeof l=="function"?l(u,d):d(!0):d(u!==!1)}else d(!0)}var n=[];function a(o){var s=!0;function l(){s&&o.apply(void 0,arguments)}return n.push(l),function(){s=!1,n=n.filter(function(d){return d!==l})}}function i(){for(var o=arguments.length,s=new Array(o),l=0;l<o;l++)s[l]=arguments[l];n.forEach(function(d){return d.apply(void 0,s)})}return{setPrompt:t,confirmTransitionTo:r,appendListener:a,notifyListeners:i}}var MG=!!(typeof window!="undefined"&&window.document&&window.document.createElement);function RG(e,t){t(window.confirm(e))}function m7e(){var e=window.navigator.userAgent;return(e.indexOf("Android 2.")!==-1||e.indexOf("Android 4.0")!==-1)&&e.indexOf("Mobile Safari")!==-1&&e.indexOf("Chrome")===-1&&e.indexOf("Windows Phone")===-1?!1:window.history&&"pushState"in window.history}function f7e(){return window.navigator.userAgent.indexOf("Trident")===-1}function p7e(){return window.navigator.userAgent.indexOf("Firefox")===-1}function g7e(e){return e.state===void 0&&navigator.userAgent.indexOf("CriOS")===-1}var pF="popstate",gF="hashchange";function vF(){try{return window.history.state||{}}catch{return{}}}function v7e(e){e===void 0&&(e={}),MG||Po(!1);var t=window.history,r=m7e(),n=!f7e(),a=e,i=a.forceRefresh,o=i===void 0?!1:i,s=a.getUserConfirmation,l=s===void 0?RG:s,d=a.keyLength,u=d===void 0?6:d,c=e.basename?OG(Em(e.basename)):"";function h($){var B=$||{},z=B.key,F=B.state,V=window.location,K=V.pathname,Z=V.search,ue=V.hash,fe=K+Z+ue;return c&&(fe=xG(fe,c)),Cn(fe,F,z)}function m(){return Math.random().toString(36).substr(2,u)}var f=r2();function g($){Mr(H,$),H.length=t.length,f.notifyListeners(H.location,H.action)}function v($){g7e($)||S(h($.state))}function y(){S(h(vF()))}var b=!1;function S($){if(b)b=!1,g();else{var B="POP";f.confirmTransitionTo($,B,l,function(z){z?g({action:B,location:$}):w($)})}}function w($){var B=H.location,z=A.indexOf(B.key);z===-1&&(z=0);var F=A.indexOf($.key);F===-1&&(F=0);var V=z-F;V&&(b=!0,T(V))}var _=h(vF()),A=[_.key];function I($){return c+Nn($)}function k($,B){var z="PUSH",F=Cn($,B,m(),H.location);f.confirmTransitionTo(F,z,l,function(V){if(!!V){var K=I(F),Z=F.key,ue=F.state;if(r)if(t.pushState({key:Z,state:ue},null,K),o)window.location.href=K;else{var fe=A.indexOf(H.location.key),ye=A.slice(0,fe+1);ye.push(F.key),A=ye,g({action:z,location:F})}else window.location.href=K}})}function C($,B){var z="REPLACE",F=Cn($,B,m(),H.location);f.confirmTransitionTo(F,z,l,function(V){if(!!V){var K=I(F),Z=F.key,ue=F.state;if(r)if(t.replaceState({key:Z,state:ue},null,K),o)window.location.replace(K);else{var fe=A.indexOf(H.location.key);fe!==-1&&(A[fe]=F.key),g({action:z,location:F})}else window.location.replace(K)}})}function T($){t.go($)}function O(){T(-1)}function D(){T(1)}var M=0;function E($){M+=$,M===1&&$===1?(window.addEventListener(pF,v),n&&window.addEventListener(gF,y)):M===0&&(window.removeEventListener(pF,v),n&&window.removeEventListener(gF,y))}var L=!1;function P($){$===void 0&&($=!1);var B=f.setPrompt($);return L||(E(1),L=!0),function(){return L&&(L=!1,E(-1)),B()}}function j($){var B=f.appendListener($);return E(1),function(){E(-1),B()}}var H={length:t.length,action:"POP",location:_,createHref:I,push:k,replace:C,go:T,goBack:O,goForward:D,block:P,listen:j};return H}var yF="hashchange",y7e={hashbang:{encodePath:function(t){return t.charAt(0)==="!"?t:"!/"+fF(t)},decodePath:function(t){return t.charAt(0)==="!"?t.substr(1):t}},noslash:{encodePath:fF,decodePath:Em},slash:{encodePath:Em,decodePath:Em}};function LG(e){var t=e.indexOf("#");return t===-1?e:e.slice(0,t)}function Nh(){var e=window.location.href,t=e.indexOf("#");return t===-1?"":e.substring(t+1)}function _7e(e){window.location.hash=e}function aA(e){window.location.replace(LG(window.location.href)+"#"+e)}function b7e(e){e===void 0&&(e={}),MG||Po(!1);var t=window.history;p7e();var r=e,n=r.getUserConfirmation,a=n===void 0?RG:n,i=r.hashType,o=i===void 0?"slash":i,s=e.basename?OG(Em(e.basename)):"",l=y7e[o],d=l.encodePath,u=l.decodePath;function c(){var B=u(Nh());return s&&(B=xG(B,s)),Cn(B)}var h=r2();function m(B){Mr($,B),$.length=t.length,h.notifyListeners($.location,$.action)}var f=!1,g=null;function v(B,z){return B.pathname===z.pathname&&B.search===z.search&&B.hash===z.hash}function y(){var B=Nh(),z=d(B);if(B!==z)aA(z);else{var F=c(),V=$.location;if(!f&&v(V,F)||g===Nn(F))return;g=null,b(F)}}function b(B){if(f)f=!1,m();else{var z="POP";h.confirmTransitionTo(B,z,a,function(F){F?m({action:z,location:B}):S(B)})}}function S(B){var z=$.location,F=I.lastIndexOf(Nn(z));F===-1&&(F=0);var V=I.lastIndexOf(Nn(B));V===-1&&(V=0);var K=F-V;K&&(f=!0,O(K))}var w=Nh(),_=d(w);w!==_&&aA(_);var A=c(),I=[Nn(A)];function k(B){var z=document.querySelector("base"),F="";return z&&z.getAttribute("href")&&(F=LG(window.location.href)),F+"#"+d(s+Nn(B))}function C(B,z){var F="PUSH",V=Cn(B,void 0,void 0,$.location);h.confirmTransitionTo(V,F,a,function(K){if(!!K){var Z=Nn(V),ue=d(s+Z),fe=Nh()!==ue;if(fe){g=Z,_7e(ue);var ye=I.lastIndexOf(Nn($.location)),De=I.slice(0,ye+1);De.push(Z),I=De,m({action:F,location:V})}else m()}})}function T(B,z){var F="REPLACE",V=Cn(B,void 0,void 0,$.location);h.confirmTransitionTo(V,F,a,function(K){if(!!K){var Z=Nn(V),ue=d(s+Z),fe=Nh()!==ue;fe&&(g=Z,aA(ue));var ye=I.indexOf(Nn($.location));ye!==-1&&(I[ye]=Z),m({action:F,location:V})}})}function O(B){t.go(B)}function D(){O(-1)}function M(){O(1)}var E=0;function L(B){E+=B,E===1&&B===1?window.addEventListener(yF,y):E===0&&window.removeEventListener(yF,y)}var P=!1;function j(B){B===void 0&&(B=!1);var z=h.setPrompt(B);return P||(L(1),P=!0),function(){return P&&(P=!1,L(-1)),z()}}function H(B){var z=h.appendListener(B);return L(1),function(){L(-1),z()}}var $={length:t.length,action:"POP",location:A,createHref:k,push:C,replace:T,go:O,goBack:D,goForward:M,block:j,listen:H};return $}function _F(e,t,r){return Math.min(Math.max(e,t),r)}function w7e(e){e===void 0&&(e={});var t=e,r=t.getUserConfirmation,n=t.initialEntries,a=n===void 0?["/"]:n,i=t.initialIndex,o=i===void 0?0:i,s=t.keyLength,l=s===void 0?6:s,d=r2();function u(k){Mr(I,k),I.length=I.entries.length,d.notifyListeners(I.location,I.action)}function c(){return Math.random().toString(36).substr(2,l)}var h=_F(o,0,a.length-1),m=a.map(function(k){return typeof k=="string"?Cn(k,void 0,c()):Cn(k,void 0,k.key||c())}),f=Nn;function g(k,C){var T="PUSH",O=Cn(k,C,c(),I.location);d.confirmTransitionTo(O,T,r,function(D){if(!!D){var M=I.index,E=M+1,L=I.entries.slice(0);L.length>E?L.splice(E,L.length-E,O):L.push(O),u({action:T,location:O,index:E,entries:L})}})}function v(k,C){var T="REPLACE",O=Cn(k,C,c(),I.location);d.confirmTransitionTo(O,T,r,function(D){!D||(I.entries[I.index]=O,u({action:T,location:O}))})}function y(k){var C=_F(I.index+k,0,I.entries.length-1),T="POP",O=I.entries[C];d.confirmTransitionTo(O,T,r,function(D){D?u({action:T,location:O,index:C}):u()})}function b(){y(-1)}function S(){y(1)}function w(k){var C=I.index+k;return C>=0&&C<I.entries.length}function _(k){return k===void 0&&(k=!1),d.setPrompt(k)}function A(k){return d.appendListener(k)}var I={length:m.length,action:"POP",location:m[h],index:h,entries:m,createHref:f,push:g,replace:v,go:y,goBack:b,goForward:S,canGo:w,block:_,listen:A};return I}var iA=1073741823,bF=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:{};function S7e(){var e="__global_unique_id__";return bF[e]=(bF[e]||0)+1}function A7e(e,t){return e===t?e!==0||1/e===1/t:e!==e&&t!==t}function T7e(e){var t=[];return{on:function(n){t.push(n)},off:function(n){t=t.filter(function(a){return a!==n})},get:function(){return e},set:function(n,a){e=n,t.forEach(function(i){return i(e,a)})}}}function k7e(e){return Array.isArray(e)?e[0]:e}function C7e(e,t){var r,n,a="__create-react-context-"+S7e()+"__",i=function(s){Dn(l,s);function l(){var u;return u=s.apply(this,arguments)||this,u.emitter=T7e(u.props.value),u}var d=l.prototype;return d.getChildContext=function(){var c;return c={},c[a]=this.emitter,c},d.componentWillReceiveProps=function(c){if(this.props.value!==c.value){var h=this.props.value,m=c.value,f;A7e(h,m)?f=0:(f=typeof t=="function"?t(h,m):iA,f|=0,f!==0&&this.emitter.set(c.value,f))}},d.render=function(){return this.props.children},l}(le.exports.Component);i.childContextTypes=(r={},r[a]=At.object.isRequired,r);var o=function(s){Dn(l,s);function l(){var u;return u=s.apply(this,arguments)||this,u.state={value:u.getValue()},u.onUpdate=function(c,h){var m=u.observedBits|0;(m&h)!==0&&u.setState({value:u.getValue()})},u}var d=l.prototype;return d.componentWillReceiveProps=function(c){var h=c.observedBits;this.observedBits=h==null?iA:h},d.componentDidMount=function(){this.context[a]&&this.context[a].on(this.onUpdate);var c=this.props.observedBits;this.observedBits=c==null?iA:c},d.componentWillUnmount=function(){this.context[a]&&this.context[a].off(this.onUpdate)},d.getValue=function(){return this.context[a]?this.context[a].get():e},d.render=function(){return k7e(this.props.children)(this.state.value)},l}(le.exports.Component);return o.contextTypes=(n={},n[a]=At.object,n),{Provider:i,Consumer:o}}var E7e=q.createContext||C7e,qc={exports:{}},I7e=Array.isArray||function(e){return Object.prototype.toString.call(e)=="[object Array]"},C_=I7e;qc.exports=zG;qc.exports.parse=n2;qc.exports.compile=x7e;qc.exports.tokensToFunction=PG;qc.exports.tokensToRegExp=$G;var D7e=new RegExp(["(\\\\.)","([\\/.])?(?:(?:\\:(\\w+)(?:\\(((?:\\\\.|[^\\\\()])+)\\))?|\\(((?:\\\\.|[^\\\\()])+)\\))([+*?])?|(\\*))"].join("|"),"g");function n2(e,t){for(var r=[],n=0,a=0,i="",o=t&&t.delimiter||"/",s;(s=D7e.exec(e))!=null;){var l=s[0],d=s[1],u=s.index;if(i+=e.slice(a,u),a=u+l.length,d){i+=d[1];continue}var c=e[a],h=s[2],m=s[3],f=s[4],g=s[5],v=s[6],y=s[7];i&&(r.push(i),i="");var b=h!=null&&c!=null&&c!==h,S=v==="+"||v==="*",w=v==="?"||v==="*",_=s[2]||o,A=f||g;r.push({name:m||n++,prefix:h||"",delimiter:_,optional:w,repeat:S,partial:b,asterisk:!!y,pattern:A?R7e(A):y?".*":"[^"+Kv(_)+"]+?"})}return a<e.length&&(i+=e.substr(a)),i&&r.push(i),r}function x7e(e,t){return PG(n2(e,t),t)}function O7e(e){return encodeURI(e).replace(/[\/?#]/g,function(t){return"%"+t.charCodeAt(0).toString(16).toUpperCase()})}function M7e(e){return encodeURI(e).replace(/[?#]/g,function(t){return"%"+t.charCodeAt(0).toString(16).toUpperCase()})}function PG(e,t){for(var r=new Array(e.length),n=0;n<e.length;n++)typeof e[n]=="object"&&(r[n]=new RegExp("^(?:"+e[n].pattern+")$",i2(t)));return function(a,i){for(var o="",s=a||{},l=i||{},d=l.pretty?O7e:encodeURIComponent,u=0;u<e.length;u++){var c=e[u];if(typeof c=="string"){o+=c;continue}var h=s[c.name],m;if(h==null)if(c.optional){c.partial&&(o+=c.prefix);continue}else throw new TypeError('Expected "'+c.name+'" to be defined');if(C_(h)){if(!c.repeat)throw new TypeError('Expected "'+c.name+'" to not repeat, but received `'+JSON.stringify(h)+"`");if(h.length===0){if(c.optional)continue;throw new TypeError('Expected "'+c.name+'" to not be empty')}for(var f=0;f<h.length;f++){if(m=d(h[f]),!r[u].test(m))throw new TypeError('Expected all "'+c.name+'" to match "'+c.pattern+'", but received `'+JSON.stringify(m)+"`");o+=(f===0?c.prefix:c.delimiter)+m}continue}if(m=c.asterisk?M7e(h):d(h),!r[u].test(m))throw new TypeError('Expected "'+c.name+'" to match "'+c.pattern+'", but received "'+m+'"');o+=c.prefix+m}return o}}function Kv(e){return e.replace(/([.+*?=^!:${}()[\]|\/\\])/g,"\\$1")}function R7e(e){return e.replace(/([=!:$\/()])/g,"\\$1")}function a2(e,t){return e.keys=t,e}function i2(e){return e&&e.sensitive?"":"i"}function L7e(e,t){var r=e.source.match(/\((?!\?)/g);if(r)for(var n=0;n<r.length;n++)t.push({name:n,prefix:null,delimiter:null,optional:!1,repeat:!1,partial:!1,asterisk:!1,pattern:null});return a2(e,t)}function P7e(e,t,r){for(var n=[],a=0;a<e.length;a++)n.push(zG(e[a],t,r).source);var i=new RegExp("(?:"+n.join("|")+")",i2(r));return a2(i,t)}function $7e(e,t,r){return $G(n2(e,r),t,r)}function $G(e,t,r){C_(t)||(r=t||r,t=[]),r=r||{};for(var n=r.strict,a=r.end!==!1,i="",o=0;o<e.length;o++){var s=e[o];if(typeof s=="string")i+=Kv(s);else{var l=Kv(s.prefix),d="(?:"+s.pattern+")";t.push(s),s.repeat&&(d+="(?:"+l+d+")*"),s.optional?s.partial?d=l+"("+d+")?":d="(?:"+l+"("+d+"))?":d=l+"("+d+")",i+=d}}var u=Kv(r.delimiter||"/"),c=i.slice(-u.length)===u;return n||(i=(c?i.slice(0,-u.length):i)+"(?:"+u+"(?=$))?"),a?i+="$":i+=n&&c?"":"(?="+u+"|$)",a2(new RegExp("^"+i,i2(r)),t)}function zG(e,t,r){return C_(t)||(r=t||r,t=[]),r=r||{},e instanceof RegExp?L7e(e,t):C_(e)?P7e(e,t,r):$7e(e,t,r)}var NG=qc.exports,E_={exports:{}},rr={};/** @license React v16.13.1
78
+ */var dWe=function(){if(typeof WebSocket!="undefined")return WebSocket},cWe=function(e){return typeof e!="undefined"&&!!e&&e.CLOSING===2},pl={maxReconnectionDelay:1e4,minReconnectionDelay:1e3+Math.random()*4e3,minUptime:5e3,reconnectionDelayGrowFactor:1.3,connectionTimeout:4e3,maxRetries:1/0,maxEnqueuedMessages:1/0,startClosed:!1,debug:!1},hWe=function(){function e(t,r,n){var a=this;n===void 0&&(n={}),this._listeners={error:[],message:[],open:[],close:[]},this._retryCount=-1,this._shouldReconnect=!0,this._connectLock=!1,this._binaryType="blob",this._closeCalled=!1,this._messageQueue=[],this.onclose=null,this.onerror=null,this.onmessage=null,this.onopen=null,this._handleOpen=function(i){a._debug("open event");var o=a._options.minUptime,s=o===void 0?pl.minUptime:o;clearTimeout(a._connectTimeout),a._uptimeTimeout=setTimeout(function(){return a._acceptOpen()},s),a._ws.binaryType=a._binaryType,a._messageQueue.forEach(function(l){return a._ws.send(l)}),a._messageQueue=[],a.onopen&&a.onopen(i),a._listeners.open.forEach(function(l){return a._callEventListener(i,l)})},this._handleMessage=function(i){a._debug("message event"),a.onmessage&&a.onmessage(i),a._listeners.message.forEach(function(o){return a._callEventListener(i,o)})},this._handleError=function(i){a._debug("error event",i.message),a._disconnect(void 0,i.message==="TIMEOUT"?"timeout":void 0),a.onerror&&a.onerror(i),a._debug("exec error listeners"),a._listeners.error.forEach(function(o){return a._callEventListener(i,o)}),a._connect()},this._handleClose=function(i){a._debug("close event"),a._clearTimeouts(),a._shouldReconnect&&a._connect(),a.onclose&&a.onclose(i),a._listeners.close.forEach(function(o){return a._callEventListener(i,o)})},this._url=t,this._protocols=r,this._options=n,this._options.startClosed&&(this._shouldReconnect=!1),this._connect()}return Object.defineProperty(e,"CONNECTING",{get:function(){return 0},enumerable:!0,configurable:!0}),Object.defineProperty(e,"OPEN",{get:function(){return 1},enumerable:!0,configurable:!0}),Object.defineProperty(e,"CLOSING",{get:function(){return 2},enumerable:!0,configurable:!0}),Object.defineProperty(e,"CLOSED",{get:function(){return 3},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"CONNECTING",{get:function(){return e.CONNECTING},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"OPEN",{get:function(){return e.OPEN},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"CLOSING",{get:function(){return e.CLOSING},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"CLOSED",{get:function(){return e.CLOSED},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"binaryType",{get:function(){return this._ws?this._ws.binaryType:this._binaryType},set:function(t){this._binaryType=t,this._ws&&(this._ws.binaryType=t)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"retryCount",{get:function(){return Math.max(this._retryCount,0)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"bufferedAmount",{get:function(){var t=this._messageQueue.reduce(function(r,n){return typeof n=="string"?r+=n.length:n instanceof Blob?r+=n.size:r+=n.byteLength,r},0);return t+(this._ws?this._ws.bufferedAmount:0)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"extensions",{get:function(){return this._ws?this._ws.extensions:""},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"protocol",{get:function(){return this._ws?this._ws.protocol:""},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"readyState",{get:function(){return this._ws?this._ws.readyState:this._options.startClosed?e.CLOSED:e.CONNECTING},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"url",{get:function(){return this._ws?this._ws.url:""},enumerable:!0,configurable:!0}),e.prototype.close=function(t,r){if(t===void 0&&(t=1e3),this._closeCalled=!0,this._shouldReconnect=!1,this._clearTimeouts(),!this._ws){this._debug("close enqueued: no ws instance");return}if(this._ws.readyState===this.CLOSED){this._debug("close: already closed");return}this._ws.close(t,r)},e.prototype.reconnect=function(t,r){this._shouldReconnect=!0,this._closeCalled=!1,this._retryCount=-1,!this._ws||this._ws.readyState===this.CLOSED?this._connect():(this._disconnect(t,r),this._connect())},e.prototype.send=function(t){if(this._ws&&this._ws.readyState===this.OPEN)this._debug("send",t),this._ws.send(t);else{var r=this._options.maxEnqueuedMessages,n=r===void 0?pl.maxEnqueuedMessages:r;this._messageQueue.length<n&&(this._debug("enqueue",t),this._messageQueue.push(t))}},e.prototype.addEventListener=function(t,r){this._listeners[t]&&this._listeners[t].push(r)},e.prototype.dispatchEvent=function(t){var r,n,a=this._listeners[t.type];if(a)try{for(var i=iWe(a),o=i.next();!o.done;o=i.next()){var s=o.value;this._callEventListener(t,s)}}catch(l){r={error:l}}finally{try{o&&!o.done&&(n=i.return)&&n.call(i)}finally{if(r)throw r.error}}return!0},e.prototype.removeEventListener=function(t,r){this._listeners[t]&&(this._listeners[t]=this._listeners[t].filter(function(n){return n!==r}))},e.prototype._debug=function(){for(var t=[],r=0;r<arguments.length;r++)t[r]=arguments[r];this._options.debug&&console.log.apply(console,sWe(["RWS>"],t))},e.prototype._getNextDelay=function(){var t=this._options,r=t.reconnectionDelayGrowFactor,n=r===void 0?pl.reconnectionDelayGrowFactor:r,a=t.minReconnectionDelay,i=a===void 0?pl.minReconnectionDelay:a,o=t.maxReconnectionDelay,s=o===void 0?pl.maxReconnectionDelay:o,l=0;return this._retryCount>0&&(l=i*Math.pow(n,this._retryCount-1),l>s&&(l=s)),this._debug("next delay",l),l},e.prototype._wait=function(){var t=this;return new Promise(function(r){setTimeout(r,t._getNextDelay())})},e.prototype._getNextUrl=function(t){if(typeof t=="string")return Promise.resolve(t);if(typeof t=="function"){var r=t();if(typeof r=="string")return Promise.resolve(r);if(r.then)return r}throw Error("Invalid URL")},e.prototype._connect=function(){var t=this;if(!(this._connectLock||!this._shouldReconnect)){this._connectLock=!0;var r=this._options,n=r.maxRetries,a=n===void 0?pl.maxRetries:n,i=r.connectionTimeout,o=i===void 0?pl.connectionTimeout:i,s=r.WebSocket,l=s===void 0?dWe():s;if(this._retryCount>=a){this._debug("max retries reached",this._retryCount,">=",a);return}if(this._retryCount++,this._debug("connect",this._retryCount),this._removeListeners(),!cWe(l))throw Error("No valid WebSocket class provided");this._wait().then(function(){return t._getNextUrl(t._url)}).then(function(d){t._closeCalled||(t._debug("connect",{url:d,protocols:t._protocols}),t._ws=t._protocols?new l(d,t._protocols):new l(d),t._ws.binaryType=t._binaryType,t._connectLock=!1,t._addListeners(),t._connectTimeout=setTimeout(function(){return t._handleTimeout()},o))})}},e.prototype._handleTimeout=function(){this._debug("timeout event"),this._handleError(new lWe(Error("TIMEOUT"),this))},e.prototype._disconnect=function(t,r){if(t===void 0&&(t=1e3),this._clearTimeouts(),!!this._ws){this._removeListeners();try{this._ws.close(t,r),this._handleClose(new uWe(t,r,this))}catch{}}},e.prototype._acceptOpen=function(){this._debug("accept open"),this._retryCount=0},e.prototype._callEventListener=function(t,r){"handleEvent"in r?r.handleEvent(t):r(t)},e.prototype._removeListeners=function(){!this._ws||(this._debug("removeListeners"),this._ws.removeEventListener("open",this._handleOpen),this._ws.removeEventListener("close",this._handleClose),this._ws.removeEventListener("message",this._handleMessage),this._ws.removeEventListener("error",this._handleError))},e.prototype._addListeners=function(){!this._ws||(this._debug("addListeners"),this._ws.addEventListener("open",this._handleOpen),this._ws.addEventListener("close",this._handleClose),this._ws.addEventListener("message",this._handleMessage),this._ws.addEventListener("error",this._handleError))},e.prototype._clearTimeouts=function(){clearTimeout(this._connectTimeout),clearTimeout(this._uptimeTimeout)},e}();function R5(e,t){for(var r in t)e[r]=t[r];return e}function mWe(e){var t=[];function r(a){for(var i=[],o=0;o<t.length;o++)t[o]===a?a=null:i.push(t[o]);t=i}function n(a,i,o){e=i?a:R5(R5({},e),a);for(var s=t,l=0;l<s.length;l++)s[l](e,o)}return e=e||{},{action:function(a){function i(o){n(o,!1,a)}return function(){for(var o=arguments,s=[e],l=0;l<arguments.length;l++)s.push(o[l]);var d=a.apply(this,s);if(d!=null)return d.then?d.then(i):i(d)}},setState:n,subscribe:function(a){return t.push(a),function(){r(a)}},unsubscribe:r,getState:function(){return e}}}const fWe={},pWe={},gWe=[],vWe=!1,yWe=!1,_We=!1,bWe={links:[],nodes:[]},wWe=!1,SWe=[],AWe="online",TWe={},kWe={configSchema:{properties:{},required:[]},config:{advanced:{}}},CWe=[],EWe=[],IWe="light",DWe={},xWe={},OWe=!1,MWe="";var Q9={devices:fWe,deviceStates:pWe,touchlinkDevices:gWe,touchlinkScanInProgress:vWe,touchlinkIdentifyInProgress:yWe,touchlinkResetInProgress:_We,networkGraph:bWe,networkGraphIsLoading:wWe,groups:SWe,bridgeState:AWe,bridgeConfig:TWe,bridgeInfo:kWe,logs:CWe,extensions:EWe,theme:IWe,missingTranslations:DWe,availability:xWe,prepearingBackup:OWe,backup:MWe};const RWe=Nze();Q9.theme=RWe;const ir=mWe(Q9);var LWe=yu,PWe=function(){try{var e=LWe(Object,"defineProperty");return e({},"",{}),e}catch{}}(),Z9=PWe,L5=Z9;function $We(e,t,r){t=="__proto__"&&L5?L5(e,t,{configurable:!0,enumerable:!0,value:r,writable:!0}):e[t]=r}var gp=$We;function zWe(e,t,r,n){for(var a=-1,i=e==null?0:e.length;++a<i;){var o=e[a];t(n,o,r(o),e)}return n}var NWe=zWe;function FWe(e){return function(t,r,n){for(var a=-1,i=Object(t),o=n(t),s=o.length;s--;){var l=o[e?s:++a];if(r(i[l],l,i)===!1)break}return t}}var BWe=FWe,WWe=BWe,HWe=WWe(),Y9=HWe,jWe=Y9,UWe=fp;function VWe(e,t){return e&&jWe(e,t,UWe)}var GWe=VWe,qWe=bu;function KWe(e,t){return function(r,n){if(r==null)return r;if(!qWe(r))return e(r,n);for(var a=r.length,i=t?a:-1,o=Object(r);(t?i--:++i<a)&&n(o[i],i,o)!==!1;);return r}}var QWe=KWe,ZWe=GWe,YWe=QWe,XWe=YWe(ZWe),jx=XWe,JWe=jx;function eHe(e,t,r,n){return JWe(e,function(a,i,o){t(n,a,r(a),o)}),n}var tHe=eHe,rHe=fw,nHe=Wx,aHe=1,iHe=2;function oHe(e,t,r,n){var a=r.length,i=a,o=!n;if(e==null)return!i;for(e=Object(e);a--;){var s=r[a];if(o&&s[2]?s[1]!==e[s[0]]:!(s[0]in e))return!1}for(;++a<i;){s=r[a];var l=s[0],d=e[l],u=s[1];if(o&&s[2]){if(d===void 0&&!(l in e))return!1}else{var c=new rHe;if(n)var h=n(d,u,l,e,t,c);if(!(h===void 0?nHe(u,d,aHe|iHe,n,c):h))return!1}}return!0}var sHe=oHe,lHe=fa;function uHe(e){return e===e&&!lHe(e)}var X9=uHe,dHe=X9,cHe=fp;function hHe(e){for(var t=cHe(e),r=t.length;r--;){var n=t[r],a=e[n];t[r]=[n,a,dHe(a)]}return t}var mHe=hHe;function fHe(e,t){return function(r){return r==null?!1:r[e]===t&&(t!==void 0||e in Object(r))}}var J9=fHe,pHe=sHe,gHe=mHe,vHe=J9;function yHe(e){var t=gHe(e);return t.length==1&&t[0][2]?vHe(t[0][0],t[0][1]):function(r){return r===e||pHe(r,e,t)}}var _He=yHe,bHe=tn,wHe=Fc,SHe=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,AHe=/^\w*$/;function THe(e,t){if(bHe(e))return!1;var r=typeof e;return r=="number"||r=="symbol"||r=="boolean"||e==null||wHe(e)?!0:AHe.test(e)||!SHe.test(e)||t!=null&&e in Object(t)}var Ux=THe,eG=$x,kHe="Expected a function";function Vx(e,t){if(typeof e!="function"||t!=null&&typeof t!="function")throw new TypeError(kHe);var r=function(){var n=arguments,a=t?t.apply(this,n):n[0],i=r.cache;if(i.has(a))return i.get(a);var o=e.apply(this,n);return r.cache=i.set(a,o)||i,o};return r.cache=new(Vx.Cache||eG),r}Vx.Cache=eG;var CHe=Vx,EHe=CHe,IHe=500;function DHe(e){var t=EHe(e,function(n){return r.size===IHe&&r.clear(),n}),r=t.cache;return t}var xHe=DHe,OHe=xHe,MHe=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,RHe=/\\(\\)?/g,LHe=OHe(function(e){var t=[];return e.charCodeAt(0)===46&&t.push(""),e.replace(MHe,function(r,n,a,i){t.push(a?i.replace(RHe,"$1"):n||r)}),t}),tG=LHe;function PHe(e,t){for(var r=-1,n=e==null?0:e.length,a=Array(n);++r<n;)a[r]=t(e[r],r,e);return a}var Qs=PHe,P5=Nc,$He=Qs,zHe=tn,NHe=Fc,FHe=1/0,$5=P5?P5.prototype:void 0,z5=$5?$5.toString:void 0;function rG(e){if(typeof e=="string")return e;if(zHe(e))return $He(e,rG)+"";if(NHe(e))return z5?z5.call(e):"";var t=e+"";return t=="0"&&1/e==-FHe?"-0":t}var BHe=rG,WHe=BHe;function HHe(e){return e==null?"":WHe(e)}var wu=HHe,jHe=tn,UHe=Ux,VHe=tG,GHe=wu;function qHe(e,t){return jHe(e)?e:UHe(e,t)?[e]:VHe(GHe(e))}var bw=qHe,KHe=Fc,QHe=1/0;function ZHe(e){if(typeof e=="string"||KHe(e))return e;var t=e+"";return t=="0"&&1/e==-QHe?"-0":t}var Gc=ZHe,YHe=bw,XHe=Gc;function JHe(e,t){t=YHe(t,e);for(var r=0,n=t.length;e!=null&&r<n;)e=e[XHe(t[r++])];return r&&r==n?e:void 0}var ww=JHe,e4e=ww;function t4e(e,t,r){var n=e==null?void 0:e4e(e,t);return n===void 0?r:n}var cc=t4e;function r4e(e,t){return e!=null&&t in Object(e)}var n4e=r4e,a4e=bw,i4e=mp,o4e=tn,s4e=vw,l4e=Bx,u4e=Gc;function d4e(e,t,r){t=a4e(t,e);for(var n=-1,a=t.length,i=!1;++n<a;){var o=u4e(t[n]);if(!(i=e!=null&&r(e,o)))break;e=e[o]}return i||++n!=a?i:(a=e==null?0:e.length,!!a&&l4e(a)&&s4e(o,a)&&(o4e(e)||i4e(e)))}var c4e=d4e,h4e=n4e,m4e=c4e;function f4e(e,t){return e!=null&&m4e(e,t,h4e)}var nG=f4e,p4e=Wx,g4e=cc,v4e=nG,y4e=Ux,_4e=X9,b4e=J9,w4e=Gc,S4e=1,A4e=2;function T4e(e,t){return y4e(e)&&_4e(t)?b4e(w4e(e),t):function(r){var n=g4e(r,e);return n===void 0&&n===t?v4e(r,e):p4e(t,n,S4e|A4e)}}var k4e=T4e;function C4e(e){return e}var vp=C4e;function E4e(e){return function(t){return t==null?void 0:t[e]}}var I4e=E4e,D4e=ww;function x4e(e){return function(t){return D4e(t,e)}}var O4e=x4e,M4e=I4e,R4e=O4e,L4e=Ux,P4e=Gc;function $4e(e){return L4e(e)?M4e(P4e(e)):R4e(e)}var z4e=$4e,N4e=_He,F4e=k4e,B4e=vp,W4e=tn,H4e=z4e;function j4e(e){return typeof e=="function"?e:e==null?B4e:typeof e=="object"?W4e(e)?F4e(e[0],e[1]):N4e(e):H4e(e)}var aG=j4e,U4e=NWe,V4e=tHe,G4e=aG,q4e=tn;function K4e(e,t){return function(r,n){var a=q4e(r)?U4e:V4e,i=t?t():{};return a(r,e,G4e(n),i)}}var iG=K4e,Q4e=gp,Z4e=iG,Y4e=Z4e(function(e,t,r){Q4e(e,r,t)}),X4e=Y4e;const J4e=100,YS="z2m-token-v2",N5="z2m-auth-v2",eje=4401,F5="/availability",tje=[/MQTT publish/],rje=e=>e.level!==void 0&&e.message!==void 0,nje=e=>e.status!==void 0,B5=e=>{let t="",r="";switch(rje(e)?(t=e.message,r=e.level):nje(e)&&e.status==="error"&&(r="error",t=e.error),r){case"error":case"warning":ac.NotificationManager.error(t);break;case"info":ac.NotificationManager.success(t);break}},W5=250;class aje{constructor(t){this.requests=new Map,this.transactionNumber=1,this.send=(r,n={})=>{if(console.debug("Calling API",{topic:r,payload:n}),r.startsWith("bridge/request/")){const a=`${this.transactionRndPrefix}-${this.transactionNumber++}`,i=new Promise((o,s)=>{this.requests.set(a,[o,s])});return this.socket.send(q3({topic:r,payload:He(Se({},n),{transaction:a})})),i}else return this.socket.send(q3({topic:r,payload:n})),Promise.resolve()},this.urlProvider=async()=>{const r=new URL(this.url);let n=so.getItem(YS);return!!so.getItem(N5)&&(n||(n=prompt("Enter your z2m admin token"),n&&so.setItem(YS,n)),r.searchParams.append("token",n)),r.toString()},this.processDeviceStateMessage=K3(r=>{let{deviceStates:n}=ir.getState();r.forEach(a=>{n=He(Se({},n),{[a.topic]:Se(Se({},n[a.topic]),a.payload)})}),ir.setState({deviceStates:n})},{trailing:!0,maxWait:W5}),this.processBridgeMessage=r=>{switch(r.topic){case"bridge/config":ir.setState({bridgeConfig:r.payload});break;case"bridge/info":ir.setState({bridgeInfo:r.payload});break;case"bridge/state":ir.setState({bridgeState:r.payload});break;case"bridge/devices":ir.setState({devices:X4e(r.payload,"ieee_address")});break;case"bridge/groups":ir.setState({groups:r.payload});break;case"bridge/extensions":ir.setState({extensions:r.payload});break;case"bridge/logging":{const{logs:a}=ir.getState(),i=[...a.slice(-J4e)];i.push(He(Se({},r.payload),{timestamp:new Date})),ir.setState({logs:i});const o=r.payload;tje.every(s=>!s.test(o.message))&&B5(o)}break;case"bridge/response/networkmap":{const a=r.payload,i={networkGraphIsLoading:!1};if(a.status==="ok"){const o=Mze(a.data.value);i.networkGraph=o}ir.setState(i)}break;case"bridge/response/touchlink/scan":{const{status:a,data:i}=r.payload,o={touchlinkScanInProgress:!1};a==="ok"&&(o.touchlinkDevices=i.found),ir.setState(o)}break;case"bridge/response/touchlink/identify":ir.setState({touchlinkIdentifyInProgress:!1});break;case"bridge/response/touchlink/factory_reset":ir.setState({touchlinkResetInProgress:!1});break;case"bridge/response/backup":const{data:{zip:n}}=r.payload;ir.setState({backup:n,preparingBackup:!1});break}r.topic.startsWith("bridge/response/")&&(B5(r.payload),this.resolvePromises(r.payload))},this.processAvailabilityMessage=K3(r=>{let{availability:n}=ir.getState();r.forEach(a=>{const i=a.topic.split(F5,1)[0];n=He(Se({},n),{[i]:a.payload})}),ir.setState({availability:n})},{trailing:!0,maxWait:W5}),this.onClose=r=>{r.code===eje&&(so.setItem(N5,!0),so.remove(YS),ac.NotificationManager.error("Unauthorized"),setTimeout(()=>{window.location.reload()},1e3))},this.onMessage=r=>{let n={};try{n=JSON.parse(r.data),n.topic.endsWith(F5)?this.processAvailabilityMessage(n):n.topic.startsWith("bridge/")?this.processBridgeMessage(n):this.processDeviceStateMessage(n)}catch(a){ac.NotificationManager.error(a.message),console.error(r.data)}},this.url=t,this.transactionRndPrefix=Rx(5)}connect(){this.socket=new hWe(this.urlProvider),this.socket.addEventListener("message",this.onMessage),this.socket.addEventListener("close",this.onClose)}resolvePromises(t){const{transaction:r,status:n}=t;if(r!==void 0&&this.requests.has(r)){const[a,i]=this.requests.get(r);n==="ok"||n===void 0?a():i(),this.requests.delete(r)}}}const ije=`${window.location.host}${document.location.pathname}api`,zt=new aje(`${Lze()?"wss":"ws"}://${ije}`);var oje={setPermitJoin(e,t=!0,r,n=254){return zt.send("bridge/request/permit_join",{value:t,time:n,device:r==null?void 0:r.friendly_name})},updateBridgeConfig(e,t){return zt.send("bridge/request/options",{options:t})},restartBridge(e){return zt.send("bridge/request/restart",{})},requestBackup(e){return ir.setState({preparingBackup:!0}),zt.send("bridge/request/backup")}},sje={renameDevice:(e,t,r,n)=>zt.send("bridge/request/device/rename",{from:t,to:r,homeassistant_rename:n}),removeDevice:(e,t,r,n)=>zt.send("bridge/request/device/remove",{id:t,force:r,block:n}),configureDevice:(e,t)=>zt.send("bridge/request/device/configure",{id:t}),setDeviceOptions:(e,t,r)=>zt.send("bridge/request/device/options",{id:t,options:r}),setDeviceDescription:(e,t,r)=>zt.send("bridge/request/device/options",{id:t,options:{description:r}}),readDeviceAttributes(e,t,r,n,a,i){return zt.send(`${XS(t,r)}/set`,{read:{cluster:n,attributes:a,options:i}})},writeDeviceAttributes(e,t,r,n,a,i){const o={};return a.forEach(s=>{o[s.attribute]=s.value}),zt.send(`${XS(t,r)}/set`,{write:{cluster:n,payload:o,options:i}})},executeCommand(e,t,r,n,a,i){return zt.send(`${XS(t,r)}/set`,{command:{cluster:n,command:a,payload:i}})}},lje={createGroup:(e,t,r)=>{const n={friendly_name:t};return r&&(n.id=r),zt.send("bridge/request/group/add",n)},removeGroup:(e,t)=>zt.send("bridge/request/group/remove",{id:t}),addDeviceToGroup:(e,t,r)=>zt.send("bridge/request/group/members/add",{group:r,device:t}),removeDeviceFromGroup:(e,t,r)=>zt.send("bridge/request/group/members/remove",{device:t,group:r}),renameGroup:(e,t,r)=>zt.send("bridge/request/group/rename",{from:t,to:r})},uje={setStateValue(e,t,r,n){return zt.send(`${t}/set`,{[r]:n})},setDeviceState(e,t,r){return zt.send(`${t}/set`,r)},getDeviceState(e,t,r){return zt.send(`${t}/get`,r)}},dje={checkOTA:(e,t)=>zt.send("bridge/request/device/ota_update/check",{id:t}),updateOTA:(e,t)=>zt.send("bridge/request/device/ota_update/update",{id:t})};const H5=(e,t)=>zt.send(`bridge/request/device/${e}`,t);var cje={addBind:(e,t)=>H5("bind",t),removeBind:(e,t)=>H5("unbind",t)},hje={touchlinkScan(e){return ir.setState({touchlinkScanInProgress:!0,touchlinkDevices:[]}),zt.send("bridge/request/touchlink/scan",{value:!0})},touchlinkIdentify(e,t){return ir.setState({touchlinkIdentifyInProgress:!0}),zt.send("bridge/request/touchlink/identify",t)},touchlinkReset(e,t){return ir.setState({touchlinkResetInProgress:!0}),zt.send("bridge/request/touchlink/factory_reset",t)}},mje={updateExtensionCode:(e,t)=>{const{extensions:r}=ir.getState(),n=r.filter(a=>a.name!==t.name).concat([t]);return ir.setState({extensions:n}),Promise.resolve()},saveExtensionCode:(e,t)=>zt.send("bridge/request/extension/save",t),removeExtension:(e,t)=>{const{extensions:r}=ir.getState(),n=r.filter(a=>a.name!==t.name);return ir.setState({extensions:n}),zt.send("bridge/request/extension/remove",{name:t.name})}},fje={sceneStore(e,t,r,n){return zt.send(`${t}/set`,{scene_store:Se({ID:r.id},r.name&&{name:r.name})})},sceneRecall(e,t,r,n){return zt.send(`${t}/set`,{scene_recall:r})},sceneRemove(e,t,r,n){return zt.send(`${t}/set`,{scene_remove:r})},sceneRemoveAll(e,t,r){return zt.send(`${t}/set`,{scene_remove_all:""})}};const XS=(e,t)=>t?`${e}/${t}`:e,Br=e=>He(Se(Se(Se(Se(Se(Se(Se(Se(Se({},oje),sje),lje),uje),dje),cje),hje),mje),fje),{networkMapRequest:t=>(e.setState({networkGraphIsLoading:!0,networkGraph:{nodes:[],links:[]}}),zt.send("bridge/request/networkmap",{type:"raw",routes:!1})),exportState(t){return w9(t,"state.json"),Promise.resolve()},configureReport(t,r,n){return zt.send("bridge/request/device/configure_reporting",Se({id:r},n))},setTheme(t,r){return Fze(r),e.setState({theme:r}),Promise.resolve()},clearLogs(t){return e.setState({logs:[]}),Promise.resolve()}});function yp(e){return x("div",{className:"modal-header",children:e.children})}function _p(e){return x("div",{className:"modal-body",children:e.children})}function bp(e){return x("div",{className:"modal-footer",children:e.children})}class pje extends q.Component{constructor(t){super(t),this.el=document.createElement("div"),"modal-backdrop fade show".split(" ").forEach(r=>this.el.classList.add(r))}componentDidMount(){document.body.appendChild(this.el)}componentWillUnmount(){document.body.removeChild(this.el)}render(){return Hd.createPortal(this.props.children,this.el)}}const wp=({isOpen:e,children:t})=>(le.exports.useEffect(()=>{e?document.body.classList.add("modal-open"):document.body.classList.remove("modal-open")},[e]),e?de("div",{className:"modal show overflow-scroll",style:{display:"block"},children:[x("div",{className:"modal-dialog",children:x("div",{className:"modal-content",children:t})}),x(pje,{})]}):null),gje=hi.create(e=>{const{onConfirmHandler:t}=e,{t:r}=Ct("common"),n=vu();return de(wp,{isOpen:n.visible,children:[x(yp,{children:x("h3",{children:r("confirmation")})}),x(_p,{children:r("dialog_confirmation_prompt")}),de(bp,{children:[x("button",{type:"button",className:"btn btn-secondary",onClick:n.remove,children:r("common:close")}),x("button",{type:"button",className:"btn btn-primary",onClick:()=>{t(),n.remove()},children:r("common:ok")})]})]})});function yt(e){const l=e,{children:t,item:r,onClick:n,prompt:a}=l,i=Mt(l,["children","item","onClick","prompt"]),o=()=>{n&&n(r)},s=()=>{a?hi.show(gje,{onConfirmHandler:o}):n&&n(r)};return x("button",He(Se({type:"button"},i),{onClick:s,children:t}))}function vje(e,t){var r,n=1;e==null&&(e=0),t==null&&(t=0);function a(){var i,o=r.length,s,l=0,d=0;for(i=0;i<o;++i)s=r[i],l+=s.x,d+=s.y;for(l=(l/o-e)*n,d=(d/o-t)*n,i=0;i<o;++i)s=r[i],s.x-=l,s.y-=d}return a.initialize=function(i){r=i},a.x=function(i){return arguments.length?(e=+i,a):e},a.y=function(i){return arguments.length?(t=+i,a):t},a.strength=function(i){return arguments.length?(n=+i,a):n},a}function yje(e){const t=+this._x.call(null,e),r=+this._y.call(null,e);return oG(this.cover(t,r),t,r,e)}function oG(e,t,r,n){if(isNaN(t)||isNaN(r))return e;var a,i=e._root,o={data:n},s=e._x0,l=e._y0,d=e._x1,u=e._y1,c,h,m,f,g,v,y,b;if(!i)return e._root=o,e;for(;i.length;)if((g=t>=(c=(s+d)/2))?s=c:d=c,(v=r>=(h=(l+u)/2))?l=h:u=h,a=i,!(i=i[y=v<<1|g]))return a[y]=o,e;if(m=+e._x.call(null,i.data),f=+e._y.call(null,i.data),t===m&&r===f)return o.next=i,a?a[y]=o:e._root=o,e;do a=a?a[y]=new Array(4):e._root=new Array(4),(g=t>=(c=(s+d)/2))?s=c:d=c,(v=r>=(h=(l+u)/2))?l=h:u=h;while((y=v<<1|g)===(b=(f>=h)<<1|m>=c));return a[b]=i,a[y]=o,e}function _je(e){var t,r,n=e.length,a,i,o=new Array(n),s=new Array(n),l=1/0,d=1/0,u=-1/0,c=-1/0;for(r=0;r<n;++r)isNaN(a=+this._x.call(null,t=e[r]))||isNaN(i=+this._y.call(null,t))||(o[r]=a,s[r]=i,a<l&&(l=a),a>u&&(u=a),i<d&&(d=i),i>c&&(c=i));if(l>u||d>c)return this;for(this.cover(l,d).cover(u,c),r=0;r<n;++r)oG(this,o[r],s[r],e[r]);return this}function bje(e,t){if(isNaN(e=+e)||isNaN(t=+t))return this;var r=this._x0,n=this._y0,a=this._x1,i=this._y1;if(isNaN(r))a=(r=Math.floor(e))+1,i=(n=Math.floor(t))+1;else{for(var o=a-r||1,s=this._root,l,d;r>e||e>=a||n>t||t>=i;)switch(d=(t<n)<<1|e<r,l=new Array(4),l[d]=s,s=l,o*=2,d){case 0:a=r+o,i=n+o;break;case 1:r=a-o,i=n+o;break;case 2:a=r+o,n=i-o;break;case 3:r=a-o,n=i-o;break}this._root&&this._root.length&&(this._root=s)}return this._x0=r,this._y0=n,this._x1=a,this._y1=i,this}function wje(){var e=[];return this.visit(function(t){if(!t.length)do e.push(t.data);while(t=t.next)}),e}function Sje(e){return arguments.length?this.cover(+e[0][0],+e[0][1]).cover(+e[1][0],+e[1][1]):isNaN(this._x0)?void 0:[[this._x0,this._y0],[this._x1,this._y1]]}function Tn(e,t,r,n,a){this.node=e,this.x0=t,this.y0=r,this.x1=n,this.y1=a}function Aje(e,t,r){var n,a=this._x0,i=this._y0,o,s,l,d,u=this._x1,c=this._y1,h=[],m=this._root,f,g;for(m&&h.push(new Tn(m,a,i,u,c)),r==null?r=1/0:(a=e-r,i=t-r,u=e+r,c=t+r,r*=r);f=h.pop();)if(!(!(m=f.node)||(o=f.x0)>u||(s=f.y0)>c||(l=f.x1)<a||(d=f.y1)<i))if(m.length){var v=(o+l)/2,y=(s+d)/2;h.push(new Tn(m[3],v,y,l,d),new Tn(m[2],o,y,v,d),new Tn(m[1],v,s,l,y),new Tn(m[0],o,s,v,y)),(g=(t>=y)<<1|e>=v)&&(f=h[h.length-1],h[h.length-1]=h[h.length-1-g],h[h.length-1-g]=f)}else{var b=e-+this._x.call(null,m.data),S=t-+this._y.call(null,m.data),w=b*b+S*S;if(w<r){var _=Math.sqrt(r=w);a=e-_,i=t-_,u=e+_,c=t+_,n=m.data}}return n}function Tje(e){if(isNaN(u=+this._x.call(null,e))||isNaN(c=+this._y.call(null,e)))return this;var t,r=this._root,n,a,i,o=this._x0,s=this._y0,l=this._x1,d=this._y1,u,c,h,m,f,g,v,y;if(!r)return this;if(r.length)for(;;){if((f=u>=(h=(o+l)/2))?o=h:l=h,(g=c>=(m=(s+d)/2))?s=m:d=m,t=r,!(r=r[v=g<<1|f]))return this;if(!r.length)break;(t[v+1&3]||t[v+2&3]||t[v+3&3])&&(n=t,y=v)}for(;r.data!==e;)if(a=r,!(r=r.next))return this;return(i=r.next)&&delete r.next,a?(i?a.next=i:delete a.next,this):t?(i?t[v]=i:delete t[v],(r=t[0]||t[1]||t[2]||t[3])&&r===(t[3]||t[2]||t[1]||t[0])&&!r.length&&(n?n[y]=r:this._root=r),this):(this._root=i,this)}function kje(e){for(var t=0,r=e.length;t<r;++t)this.remove(e[t]);return this}function Cje(){return this._root}function Eje(){var e=0;return this.visit(function(t){if(!t.length)do++e;while(t=t.next)}),e}function Ije(e){var t=[],r,n=this._root,a,i,o,s,l;for(n&&t.push(new Tn(n,this._x0,this._y0,this._x1,this._y1));r=t.pop();)if(!e(n=r.node,i=r.x0,o=r.y0,s=r.x1,l=r.y1)&&n.length){var d=(i+s)/2,u=(o+l)/2;(a=n[3])&&t.push(new Tn(a,d,u,s,l)),(a=n[2])&&t.push(new Tn(a,i,u,d,l)),(a=n[1])&&t.push(new Tn(a,d,o,s,u)),(a=n[0])&&t.push(new Tn(a,i,o,d,u))}return this}function Dje(e){var t=[],r=[],n;for(this._root&&t.push(new Tn(this._root,this._x0,this._y0,this._x1,this._y1));n=t.pop();){var a=n.node;if(a.length){var i,o=n.x0,s=n.y0,l=n.x1,d=n.y1,u=(o+l)/2,c=(s+d)/2;(i=a[0])&&t.push(new Tn(i,o,s,u,c)),(i=a[1])&&t.push(new Tn(i,u,s,l,c)),(i=a[2])&&t.push(new Tn(i,o,c,u,d)),(i=a[3])&&t.push(new Tn(i,u,c,l,d))}r.push(n)}for(;n=r.pop();)e(n.node,n.x0,n.y0,n.x1,n.y1);return this}function xje(e){return e[0]}function Oje(e){return arguments.length?(this._x=e,this):this._x}function Mje(e){return e[1]}function Rje(e){return arguments.length?(this._y=e,this):this._y}function sG(e,t,r){var n=new Gx(t==null?xje:t,r==null?Mje:r,NaN,NaN,NaN,NaN);return e==null?n:n.addAll(e)}function Gx(e,t,r,n,a,i){this._x=e,this._y=t,this._x0=r,this._y0=n,this._x1=a,this._y1=i,this._root=void 0}function j5(e){for(var t={data:e.data},r=t;e=e.next;)r=r.next={data:e.data};return t}var Rn=sG.prototype=Gx.prototype;Rn.copy=function(){var e=new Gx(this._x,this._y,this._x0,this._y0,this._x1,this._y1),t=this._root,r,n;if(!t)return e;if(!t.length)return e._root=j5(t),e;for(r=[{source:t,target:e._root=new Array(4)}];t=r.pop();)for(var a=0;a<4;++a)(n=t.source[a])&&(n.length?r.push({source:n,target:t.target[a]=new Array(4)}):t.target[a]=j5(n));return e};Rn.add=yje;Rn.addAll=_je;Rn.cover=bje;Rn.data=wje;Rn.extent=Sje;Rn.find=Aje;Rn.remove=Tje;Rn.removeAll=kje;Rn.root=Cje;Rn.size=Eje;Rn.visit=Ije;Rn.visitAfter=Dje;Rn.x=Oje;Rn.y=Rje;function aa(e){return function(){return e}}function b_(e){return(e()-.5)*1e-6}function Lje(e){return e.x+e.vx}function Pje(e){return e.y+e.vy}function $je(e){var t,r,n,a=1,i=1;typeof e!="function"&&(e=aa(e==null?1:+e));function o(){for(var d,u=t.length,c,h,m,f,g,v,y=0;y<i;++y)for(c=sG(t,Lje,Pje).visitAfter(s),d=0;d<u;++d)h=t[d],g=r[h.index],v=g*g,m=h.x+h.vx,f=h.y+h.vy,c.visit(b);function b(S,w,_,A,I){var k=S.data,C=S.r,T=g+C;if(k){if(k.index>h.index){var O=m-k.x-k.vx,D=f-k.y-k.vy,M=O*O+D*D;M<T*T&&(O===0&&(O=b_(n),M+=O*O),D===0&&(D=b_(n),M+=D*D),M=(T-(M=Math.sqrt(M)))/M*a,h.vx+=(O*=M)*(T=(C*=C)/(v+C)),h.vy+=(D*=M)*T,k.vx-=O*(T=1-T),k.vy-=D*T)}return}return w>m+T||A<m-T||_>f+T||I<f-T}}function s(d){if(d.data)return d.r=r[d.data.index];for(var u=d.r=0;u<4;++u)d[u]&&d[u].r>d.r&&(d.r=d[u].r)}function l(){if(!!t){var d,u=t.length,c;for(r=new Array(u),d=0;d<u;++d)c=t[d],r[c.index]=+e(c,d,t)}}return o.initialize=function(d,u){t=d,n=u,l()},o.iterations=function(d){return arguments.length?(i=+d,o):i},o.strength=function(d){return arguments.length?(a=+d,o):a},o.radius=function(d){return arguments.length?(e=typeof d=="function"?d:aa(+d),l(),o):e},o}function zje(e){return e.index}function U5(e,t){var r=e.get(t);if(!r)throw new Error("node not found: "+t);return r}function Nje(e){var t=zje,r=c,n,a=aa(30),i,o,s,l,d,u=1;e==null&&(e=[]);function c(v){return 1/Math.min(s[v.source.index],s[v.target.index])}function h(v){for(var y=0,b=e.length;y<u;++y)for(var S=0,w,_,A,I,k,C,T;S<b;++S)w=e[S],_=w.source,A=w.target,I=A.x+A.vx-_.x-_.vx||b_(d),k=A.y+A.vy-_.y-_.vy||b_(d),C=Math.sqrt(I*I+k*k),C=(C-i[S])/C*v*n[S],I*=C,k*=C,A.vx-=I*(T=l[S]),A.vy-=k*T,_.vx+=I*(T=1-T),_.vy+=k*T}function m(){if(!!o){var v,y=o.length,b=e.length,S=new Map(o.map((_,A)=>[t(_,A,o),_])),w;for(v=0,s=new Array(y);v<b;++v)w=e[v],w.index=v,typeof w.source!="object"&&(w.source=U5(S,w.source)),typeof w.target!="object"&&(w.target=U5(S,w.target)),s[w.source.index]=(s[w.source.index]||0)+1,s[w.target.index]=(s[w.target.index]||0)+1;for(v=0,l=new Array(b);v<b;++v)w=e[v],l[v]=s[w.source.index]/(s[w.source.index]+s[w.target.index]);n=new Array(b),f(),i=new Array(b),g()}}function f(){if(!!o)for(var v=0,y=e.length;v<y;++v)n[v]=+r(e[v],v,e)}function g(){if(!!o)for(var v=0,y=e.length;v<y;++v)i[v]=+a(e[v],v,e)}return h.initialize=function(v,y){o=v,d=y,m()},h.links=function(v){return arguments.length?(e=v,m(),h):e},h.id=function(v){return arguments.length?(t=v,h):t},h.iterations=function(v){return arguments.length?(u=+v,h):u},h.strength=function(v){return arguments.length?(r=typeof v=="function"?v:aa(+v),f(),h):r},h.distance=function(v){return arguments.length?(a=typeof v=="function"?v:aa(+v),g(),h):a},h}var hc=0,nm=0,Ph=0,lG=1e3,w_,am,S_=0,tu=0,Sw=0,lf=typeof performance=="object"&&performance.now?performance:Date,uG=typeof window=="object"&&window.requestAnimationFrame?window.requestAnimationFrame.bind(window):function(e){setTimeout(e,17)};function qx(){return tu||(uG(Fje),tu=lf.now()+Sw)}function Fje(){tu=0}function A_(){this._call=this._time=this._next=null}A_.prototype=Kx.prototype={constructor:A_,restart:function(e,t,r){if(typeof e!="function")throw new TypeError("callback is not a function");r=(r==null?qx():+r)+(t==null?0:+t),!this._next&&am!==this&&(am?am._next=this:w_=this,am=this),this._call=e,this._time=r,uC()},stop:function(){this._call&&(this._call=null,this._time=1/0,uC())}};function Kx(e,t,r){var n=new A_;return n.restart(e,t,r),n}function Bje(){qx(),++hc;for(var e=w_,t;e;)(t=tu-e._time)>=0&&e._call.call(void 0,t),e=e._next;--hc}function V5(){tu=(S_=lf.now())+Sw,hc=nm=0;try{Bje()}finally{hc=0,Hje(),tu=0}}function Wje(){var e=lf.now(),t=e-S_;t>lG&&(Sw-=t,S_=e)}function Hje(){for(var e,t=w_,r,n=1/0;t;)t._call?(n>t._time&&(n=t._time),e=t,t=t._next):(r=t._next,t._next=null,t=e?e._next=r:w_=r);am=e,uC(n)}function uC(e){if(!hc){nm&&(nm=clearTimeout(nm));var t=e-tu;t>24?(e<1/0&&(nm=setTimeout(V5,e-lf.now()-Sw)),Ph&&(Ph=clearInterval(Ph))):(Ph||(S_=lf.now(),Ph=setInterval(Wje,lG)),hc=1,uG(V5))}}function G5(e,t,r){var n=new A_;return t=t==null?0:+t,n.restart(a=>{n.stop(),e(a+t)},t,r),n}const jje=1664525,Uje=1013904223,q5=4294967296;function Vje(){let e=1;return()=>(e=(jje*e+Uje)%q5)/q5}var Gje=10,qje=Math.PI*(3-Math.sqrt(5));function Kje(e){var t,r=1,n=.001,a=1-Math.pow(n,1/300),i=0,o=.6,s=new Map,l=Kx(c),d=hp("tick","end"),u=Vje();e==null&&(e=[]);function c(){h(),d.call("tick",t),r<n&&(l.stop(),d.call("end",t))}function h(g){var v,y=e.length,b;g===void 0&&(g=1);for(var S=0;S<g;++S)for(r+=(i-r)*a,s.forEach(function(w){w(r)}),v=0;v<y;++v)b=e[v],b.fx==null?b.x+=b.vx*=o:(b.x=b.fx,b.vx=0),b.fy==null?b.y+=b.vy*=o:(b.y=b.fy,b.vy=0);return t}function m(){for(var g=0,v=e.length,y;g<v;++g){if(y=e[g],y.index=g,y.fx!=null&&(y.x=y.fx),y.fy!=null&&(y.y=y.fy),isNaN(y.x)||isNaN(y.y)){var b=Gje*Math.sqrt(.5+g),S=g*qje;y.x=b*Math.cos(S),y.y=b*Math.sin(S)}(isNaN(y.vx)||isNaN(y.vy))&&(y.vx=y.vy=0)}}function f(g){return g.initialize&&g.initialize(e,u),g}return m(),t={tick:h,restart:function(){return l.restart(c),t},stop:function(){return l.stop(),t},nodes:function(g){return arguments.length?(e=g,m(),s.forEach(f),t):e},alpha:function(g){return arguments.length?(r=+g,t):r},alphaMin:function(g){return arguments.length?(n=+g,t):n},alphaDecay:function(g){return arguments.length?(a=+g,t):+a},alphaTarget:function(g){return arguments.length?(i=+g,t):i},velocityDecay:function(g){return arguments.length?(o=1-g,t):1-o},randomSource:function(g){return arguments.length?(u=g,s.forEach(f),t):u},force:function(g,v){return arguments.length>1?(v==null?s.delete(g):s.set(g,f(v)),t):s.get(g)},find:function(g,v,y){var b=0,S=e.length,w,_,A,I,k;for(y==null?y=1/0:y*=y,b=0;b<S;++b)I=e[b],w=g-I.x,_=v-I.y,A=w*w+_*_,A<y&&(k=I,y=A);return k},on:function(g,v){return arguments.length>1?(d.on(g,v),t):d.on(g)}}}function Qje(e){var t=aa(.1),r,n,a;typeof e!="function"&&(e=aa(e==null?0:+e));function i(s){for(var l=0,d=r.length,u;l<d;++l)u=r[l],u.vx+=(a[l]-u.x)*n[l]*s}function o(){if(!!r){var s,l=r.length;for(n=new Array(l),a=new Array(l),s=0;s<l;++s)n[s]=isNaN(a[s]=+e(r[s],s,r))?0:+t(r[s],s,r)}}return i.initialize=function(s){r=s,o()},i.strength=function(s){return arguments.length?(t=typeof s=="function"?s:aa(+s),o(),i):t},i.x=function(s){return arguments.length?(e=typeof s=="function"?s:aa(+s),o(),i):e},i}function Zje(e){var t=aa(.1),r,n,a;typeof e!="function"&&(e=aa(e==null?0:+e));function i(s){for(var l=0,d=r.length,u;l<d;++l)u=r[l],u.vy+=(a[l]-u.y)*n[l]*s}function o(){if(!!r){var s,l=r.length;for(n=new Array(l),a=new Array(l),s=0;s<l;++s)n[s]=isNaN(a[s]=+e(r[s],s,r))?0:+t(r[s],s,r)}}return i.initialize=function(s){r=s,o()},i.strength=function(s){return arguments.length?(t=typeof s=="function"?s:aa(+s),o(),i):t},i.y=function(s){return arguments.length?(e=typeof s=="function"?s:aa(+s),o(),i):e},i}function K5(e){return function(){return e}}function Yje(e){var t=+this._x.call(null,e),r=+this._y.call(null,e);return dG(this.cover(t,r),t,r,e)}function dG(e,t,r,n){if(isNaN(t)||isNaN(r))return e;var a,i=e._root,o={data:n},s=e._x0,l=e._y0,d=e._x1,u=e._y1,c,h,m,f,g,v,y,b;if(!i)return e._root=o,e;for(;i.length;)if((g=t>=(c=(s+d)/2))?s=c:d=c,(v=r>=(h=(l+u)/2))?l=h:u=h,a=i,!(i=i[y=v<<1|g]))return a[y]=o,e;if(m=+e._x.call(null,i.data),f=+e._y.call(null,i.data),t===m&&r===f)return o.next=i,a?a[y]=o:e._root=o,e;do a=a?a[y]=new Array(4):e._root=new Array(4),(g=t>=(c=(s+d)/2))?s=c:d=c,(v=r>=(h=(l+u)/2))?l=h:u=h;while((y=v<<1|g)===(b=(f>=h)<<1|m>=c));return a[b]=i,a[y]=o,e}function Xje(e){var t,r,n=e.length,a,i,o=new Array(n),s=new Array(n),l=1/0,d=1/0,u=-1/0,c=-1/0;for(r=0;r<n;++r)isNaN(a=+this._x.call(null,t=e[r]))||isNaN(i=+this._y.call(null,t))||(o[r]=a,s[r]=i,a<l&&(l=a),a>u&&(u=a),i<d&&(d=i),i>c&&(c=i));if(l>u||d>c)return this;for(this.cover(l,d).cover(u,c),r=0;r<n;++r)dG(this,o[r],s[r],e[r]);return this}function Jje(e,t){if(isNaN(e=+e)||isNaN(t=+t))return this;var r=this._x0,n=this._y0,a=this._x1,i=this._y1;if(isNaN(r))a=(r=Math.floor(e))+1,i=(n=Math.floor(t))+1;else{for(var o=a-r,s=this._root,l,d;r>e||e>=a||n>t||t>=i;)switch(d=(t<n)<<1|e<r,l=new Array(4),l[d]=s,s=l,o*=2,d){case 0:a=r+o,i=n+o;break;case 1:r=a-o,i=n+o;break;case 2:a=r+o,n=i-o;break;case 3:r=a-o,n=i-o;break}this._root&&this._root.length&&(this._root=s)}return this._x0=r,this._y0=n,this._x1=a,this._y1=i,this}function e8e(){var e=[];return this.visit(function(t){if(!t.length)do e.push(t.data);while(t=t.next)}),e}function t8e(e){return arguments.length?this.cover(+e[0][0],+e[0][1]).cover(+e[1][0],+e[1][1]):isNaN(this._x0)?void 0:[[this._x0,this._y0],[this._x1,this._y1]]}function kn(e,t,r,n,a){this.node=e,this.x0=t,this.y0=r,this.x1=n,this.y1=a}function r8e(e,t,r){var n,a=this._x0,i=this._y0,o,s,l,d,u=this._x1,c=this._y1,h=[],m=this._root,f,g;for(m&&h.push(new kn(m,a,i,u,c)),r==null?r=1/0:(a=e-r,i=t-r,u=e+r,c=t+r,r*=r);f=h.pop();)if(!(!(m=f.node)||(o=f.x0)>u||(s=f.y0)>c||(l=f.x1)<a||(d=f.y1)<i))if(m.length){var v=(o+l)/2,y=(s+d)/2;h.push(new kn(m[3],v,y,l,d),new kn(m[2],o,y,v,d),new kn(m[1],v,s,l,y),new kn(m[0],o,s,v,y)),(g=(t>=y)<<1|e>=v)&&(f=h[h.length-1],h[h.length-1]=h[h.length-1-g],h[h.length-1-g]=f)}else{var b=e-+this._x.call(null,m.data),S=t-+this._y.call(null,m.data),w=b*b+S*S;if(w<r){var _=Math.sqrt(r=w);a=e-_,i=t-_,u=e+_,c=t+_,n=m.data}}return n}function n8e(e){if(isNaN(u=+this._x.call(null,e))||isNaN(c=+this._y.call(null,e)))return this;var t,r=this._root,n,a,i,o=this._x0,s=this._y0,l=this._x1,d=this._y1,u,c,h,m,f,g,v,y;if(!r)return this;if(r.length)for(;;){if((f=u>=(h=(o+l)/2))?o=h:l=h,(g=c>=(m=(s+d)/2))?s=m:d=m,t=r,!(r=r[v=g<<1|f]))return this;if(!r.length)break;(t[v+1&3]||t[v+2&3]||t[v+3&3])&&(n=t,y=v)}for(;r.data!==e;)if(a=r,!(r=r.next))return this;return(i=r.next)&&delete r.next,a?(i?a.next=i:delete a.next,this):t?(i?t[v]=i:delete t[v],(r=t[0]||t[1]||t[2]||t[3])&&r===(t[3]||t[2]||t[1]||t[0])&&!r.length&&(n?n[y]=r:this._root=r),this):(this._root=i,this)}function a8e(e){for(var t=0,r=e.length;t<r;++t)this.remove(e[t]);return this}function i8e(){return this._root}function o8e(){var e=0;return this.visit(function(t){if(!t.length)do++e;while(t=t.next)}),e}function s8e(e){var t=[],r,n=this._root,a,i,o,s,l;for(n&&t.push(new kn(n,this._x0,this._y0,this._x1,this._y1));r=t.pop();)if(!e(n=r.node,i=r.x0,o=r.y0,s=r.x1,l=r.y1)&&n.length){var d=(i+s)/2,u=(o+l)/2;(a=n[3])&&t.push(new kn(a,d,u,s,l)),(a=n[2])&&t.push(new kn(a,i,u,d,l)),(a=n[1])&&t.push(new kn(a,d,o,s,u)),(a=n[0])&&t.push(new kn(a,i,o,d,u))}return this}function l8e(e){var t=[],r=[],n;for(this._root&&t.push(new kn(this._root,this._x0,this._y0,this._x1,this._y1));n=t.pop();){var a=n.node;if(a.length){var i,o=n.x0,s=n.y0,l=n.x1,d=n.y1,u=(o+l)/2,c=(s+d)/2;(i=a[0])&&t.push(new kn(i,o,s,u,c)),(i=a[1])&&t.push(new kn(i,u,s,l,c)),(i=a[2])&&t.push(new kn(i,o,c,u,d)),(i=a[3])&&t.push(new kn(i,u,c,l,d))}r.push(n)}for(;n=r.pop();)e(n.node,n.x0,n.y0,n.x1,n.y1);return this}function u8e(e){return e[0]}function d8e(e){return arguments.length?(this._x=e,this):this._x}function c8e(e){return e[1]}function h8e(e){return arguments.length?(this._y=e,this):this._y}function cG(e,t,r){var n=new Qx(t==null?u8e:t,r==null?c8e:r,NaN,NaN,NaN,NaN);return e==null?n:n.addAll(e)}function Qx(e,t,r,n,a,i){this._x=e,this._y=t,this._x0=r,this._y0=n,this._x1=a,this._y1=i,this._root=void 0}function Q5(e){for(var t={data:e.data},r=t;e=e.next;)r=r.next={data:e.data};return t}var Ln=cG.prototype=Qx.prototype;Ln.copy=function(){var e=new Qx(this._x,this._y,this._x0,this._y0,this._x1,this._y1),t=this._root,r,n;if(!t)return e;if(!t.length)return e._root=Q5(t),e;for(r=[{source:t,target:e._root=new Array(4)}];t=r.pop();)for(var a=0;a<4;++a)(n=t.source[a])&&(n.length?r.push({source:n,target:t.target[a]=new Array(4)}):t.target[a]=Q5(n));return e};Ln.add=Yje;Ln.addAll=Xje;Ln.cover=Jje;Ln.data=e8e;Ln.extent=t8e;Ln.find=r8e;Ln.remove=n8e;Ln.removeAll=a8e;Ln.root=i8e;Ln.size=o8e;Ln.visit=s8e;Ln.visitAfter=l8e;Ln.x=d8e;Ln.y=h8e;function m8e(){var e,t,r,n=0,a,i,o,s=K5(-30),l,d=1,u=1/0,c=.81;function h(){return(Math.random()-.5)*1e-6}function m(S){return S.x}function f(S){return S.y}i=function(){return function(S){return S%13===0}};function g(S){var w,_=e.length;for((!a||o(n,e))&&(a=cG(e,m,f).visitAfter(y),e.update.push(n)),r=S,w=0;w<_;++w)t=e[w],a.visit(b);++n}function v(){if(!!e){n=0,e.update=[],o=i(),a=null;var S,w=e.length,_;for(l=new Array(w),S=0;S<w;++S)_=e[S],l[_.index]=+s(_,S,e)}}function y(S){var w=0,_,A,I=0,k,C,T;if(S.length){for(k=C=T=0;T<4;++T)(_=S[T])&&(A=Math.abs(_.value))&&(w+=_.value,I+=A,k+=A*_.x,C+=A*_.y);S.x=k/I,S.y=C/I}else{_=S,_.x=_.data.x,_.y=_.data.y;do w+=l[_.data.index];while(_=_.next)}S.value=w}function b(S,w,_,A){if(!S.value)return!0;var I=S.x-t.x,k=S.y-t.y,C=A-w,T=I*I+k*k;if(C*C/c<T)return T<u&&(I===0&&(I=h(),T+=I*I),k===0&&(k=h(),T+=k*k),T<d&&(T=Math.sqrt(d*T)),t.vx+=I*S.value*r/T,t.vy+=k*S.value*r/T),!0;if(S.length||T>=u)return;(S.data!==t||S.next)&&(I===0&&(I=h(),T+=I*I),k===0&&(k=h(),T+=k*k),T<d&&(T=Math.sqrt(d*T)));do S.data!==t&&(I=S.data.x-t.x,k=S.data.y-t.y,T=I*I+k*k,I===0&&(I=h(),T+=I*I),k===0&&(k=h(),T+=k*k),T<d&&(T=Math.sqrt(d*T)),C=l[S.data.index]*r/T,t.vx+=I*C,t.vy+=k*C);while(S=S.next)}return g.initialize=function(S){e=S,v()},g.strength=function(S){return arguments.length?(s=typeof S=="function"?S:K5(+S),v(),g):s},g.distanceMin=function(S){return arguments.length?(d=S*S,g):Math.sqrt(d)},g.distanceMax=function(S){return arguments.length?(u=S*S,g):Math.sqrt(u)},g.theta=function(S){return arguments.length?(c=S*S,g):Math.sqrt(c)},g.update=function(S){return arguments.length?(i=S,o=i(),g):i},g}function Zx(e,t,r){e.prototype=t.prototype=r,r.constructor=e}function hG(e,t){var r=Object.create(e.prototype);for(var n in t)r[n]=t[n];return r}function Sp(){}var uf=.7,T_=1/uf,Gd="\\s*([+-]?\\d+)\\s*",df="\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)\\s*",Pi="\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)%\\s*",f8e=/^#([0-9a-f]{3,8})$/,p8e=new RegExp(`^rgb\\(${Gd},${Gd},${Gd}\\)$`),g8e=new RegExp(`^rgb\\(${Pi},${Pi},${Pi}\\)$`),v8e=new RegExp(`^rgba\\(${Gd},${Gd},${Gd},${df}\\)$`),y8e=new RegExp(`^rgba\\(${Pi},${Pi},${Pi},${df}\\)$`),_8e=new RegExp(`^hsl\\(${df},${Pi},${Pi}\\)$`),b8e=new RegExp(`^hsla\\(${df},${Pi},${Pi},${df}\\)$`),Z5={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074};Zx(Sp,cf,{copy(e){return Object.assign(new this.constructor,this,e)},displayable(){return this.rgb().displayable()},hex:Y5,formatHex:Y5,formatHex8:w8e,formatHsl:S8e,formatRgb:X5,toString:X5});function Y5(){return this.rgb().formatHex()}function w8e(){return this.rgb().formatHex8()}function S8e(){return mG(this).formatHsl()}function X5(){return this.rgb().formatRgb()}function cf(e){var t,r;return e=(e+"").trim().toLowerCase(),(t=f8e.exec(e))?(r=t[1].length,t=parseInt(t[1],16),r===6?J5(t):r===3?new Hn(t>>8&15|t>>4&240,t>>4&15|t&240,(t&15)<<4|t&15,1):r===8?Zg(t>>24&255,t>>16&255,t>>8&255,(t&255)/255):r===4?Zg(t>>12&15|t>>8&240,t>>8&15|t>>4&240,t>>4&15|t&240,((t&15)<<4|t&15)/255):null):(t=p8e.exec(e))?new Hn(t[1],t[2],t[3],1):(t=g8e.exec(e))?new Hn(t[1]*255/100,t[2]*255/100,t[3]*255/100,1):(t=v8e.exec(e))?Zg(t[1],t[2],t[3],t[4]):(t=y8e.exec(e))?Zg(t[1]*255/100,t[2]*255/100,t[3]*255/100,t[4]):(t=_8e.exec(e))?rF(t[1],t[2]/100,t[3]/100,1):(t=b8e.exec(e))?rF(t[1],t[2]/100,t[3]/100,t[4]):Z5.hasOwnProperty(e)?J5(Z5[e]):e==="transparent"?new Hn(NaN,NaN,NaN,0):null}function J5(e){return new Hn(e>>16&255,e>>8&255,e&255,1)}function Zg(e,t,r,n){return n<=0&&(e=t=r=NaN),new Hn(e,t,r,n)}function A8e(e){return e instanceof Sp||(e=cf(e)),e?(e=e.rgb(),new Hn(e.r,e.g,e.b,e.opacity)):new Hn}function dC(e,t,r,n){return arguments.length===1?A8e(e):new Hn(e,t,r,n==null?1:n)}function Hn(e,t,r,n){this.r=+e,this.g=+t,this.b=+r,this.opacity=+n}Zx(Hn,dC,hG(Sp,{brighter(e){return e=e==null?T_:Math.pow(T_,e),new Hn(this.r*e,this.g*e,this.b*e,this.opacity)},darker(e){return e=e==null?uf:Math.pow(uf,e),new Hn(this.r*e,this.g*e,this.b*e,this.opacity)},rgb(){return this},clamp(){return new Hn(Bl(this.r),Bl(this.g),Bl(this.b),k_(this.opacity))},displayable(){return-.5<=this.r&&this.r<255.5&&-.5<=this.g&&this.g<255.5&&-.5<=this.b&&this.b<255.5&&0<=this.opacity&&this.opacity<=1},hex:eF,formatHex:eF,formatHex8:T8e,formatRgb:tF,toString:tF}));function eF(){return`#${Ll(this.r)}${Ll(this.g)}${Ll(this.b)}`}function T8e(){return`#${Ll(this.r)}${Ll(this.g)}${Ll(this.b)}${Ll((isNaN(this.opacity)?1:this.opacity)*255)}`}function tF(){const e=k_(this.opacity);return`${e===1?"rgb(":"rgba("}${Bl(this.r)}, ${Bl(this.g)}, ${Bl(this.b)}${e===1?")":`, ${e})`}`}function k_(e){return isNaN(e)?1:Math.max(0,Math.min(1,e))}function Bl(e){return Math.max(0,Math.min(255,Math.round(e)||0))}function Ll(e){return e=Bl(e),(e<16?"0":"")+e.toString(16)}function rF(e,t,r,n){return n<=0?e=t=r=NaN:r<=0||r>=1?e=t=NaN:t<=0&&(e=NaN),new oi(e,t,r,n)}function mG(e){if(e instanceof oi)return new oi(e.h,e.s,e.l,e.opacity);if(e instanceof Sp||(e=cf(e)),!e)return new oi;if(e instanceof oi)return e;e=e.rgb();var t=e.r/255,r=e.g/255,n=e.b/255,a=Math.min(t,r,n),i=Math.max(t,r,n),o=NaN,s=i-a,l=(i+a)/2;return s?(t===i?o=(r-n)/s+(r<n)*6:r===i?o=(n-t)/s+2:o=(t-r)/s+4,s/=l<.5?i+a:2-i-a,o*=60):s=l>0&&l<1?0:o,new oi(o,s,l,e.opacity)}function k8e(e,t,r,n){return arguments.length===1?mG(e):new oi(e,t,r,n==null?1:n)}function oi(e,t,r,n){this.h=+e,this.s=+t,this.l=+r,this.opacity=+n}Zx(oi,k8e,hG(Sp,{brighter(e){return e=e==null?T_:Math.pow(T_,e),new oi(this.h,this.s,this.l*e,this.opacity)},darker(e){return e=e==null?uf:Math.pow(uf,e),new oi(this.h,this.s,this.l*e,this.opacity)},rgb(){var e=this.h%360+(this.h<0)*360,t=isNaN(e)||isNaN(this.s)?0:this.s,r=this.l,n=r+(r<.5?r:1-r)*t,a=2*r-n;return new Hn(JS(e>=240?e-240:e+120,a,n),JS(e,a,n),JS(e<120?e+240:e-120,a,n),this.opacity)},clamp(){return new oi(nF(this.h),Yg(this.s),Yg(this.l),k_(this.opacity))},displayable(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1},formatHsl(){const e=k_(this.opacity);return`${e===1?"hsl(":"hsla("}${nF(this.h)}, ${Yg(this.s)*100}%, ${Yg(this.l)*100}%${e===1?")":`, ${e})`}`}}));function nF(e){return e=(e||0)%360,e<0?e+360:e}function Yg(e){return Math.max(0,Math.min(1,e||0))}function JS(e,t,r){return(e<60?t+(r-t)*e/60:e<180?r:e<240?t+(r-t)*(240-e)/60:t)*255}var fG=e=>()=>e;function C8e(e,t){return function(r){return e+r*t}}function E8e(e,t,r){return e=Math.pow(e,r),t=Math.pow(t,r)-e,r=1/r,function(n){return Math.pow(e+n*t,r)}}function I8e(e){return(e=+e)==1?pG:function(t,r){return r-t?E8e(t,r,e):fG(isNaN(t)?r:t)}}function pG(e,t){var r=t-e;return r?C8e(e,r):fG(isNaN(e)?t:e)}var aF=function e(t){var r=I8e(t);function n(a,i){var o=r((a=dC(a)).r,(i=dC(i)).r),s=r(a.g,i.g),l=r(a.b,i.b),d=pG(a.opacity,i.opacity);return function(u){return a.r=o(u),a.g=s(u),a.b=l(u),a.opacity=d(u),a+""}}return n.gamma=e,n}(1);function ts(e,t){return e=+e,t=+t,function(r){return e*(1-r)+t*r}}var cC=/[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g,eA=new RegExp(cC.source,"g");function D8e(e){return function(){return e}}function x8e(e){return function(t){return e(t)+""}}function O8e(e,t){var r=cC.lastIndex=eA.lastIndex=0,n,a,i,o=-1,s=[],l=[];for(e=e+"",t=t+"";(n=cC.exec(e))&&(a=eA.exec(t));)(i=a.index)>r&&(i=t.slice(r,i),s[o]?s[o]+=i:s[++o]=i),(n=n[0])===(a=a[0])?s[o]?s[o]+=a:s[++o]=a:(s[++o]=null,l.push({i:o,x:ts(n,a)})),r=eA.lastIndex;return r<t.length&&(i=t.slice(r),s[o]?s[o]+=i:s[++o]=i),s.length<2?l[0]?x8e(l[0].x):D8e(t):(t=l.length,function(d){for(var u=0,c;u<t;++u)s[(c=l[u]).i]=c.x(d);return s.join("")})}var iF=180/Math.PI,hC={translateX:0,translateY:0,rotate:0,skewX:0,scaleX:1,scaleY:1};function gG(e,t,r,n,a,i){var o,s,l;return(o=Math.sqrt(e*e+t*t))&&(e/=o,t/=o),(l=e*r+t*n)&&(r-=e*l,n-=t*l),(s=Math.sqrt(r*r+n*n))&&(r/=s,n/=s,l/=s),e*n<t*r&&(e=-e,t=-t,l=-l,o=-o),{translateX:a,translateY:i,rotate:Math.atan2(t,e)*iF,skewX:Math.atan(l)*iF,scaleX:o,scaleY:s}}var Xg;function M8e(e){const t=new(typeof DOMMatrix=="function"?DOMMatrix:WebKitCSSMatrix)(e+"");return t.isIdentity?hC:gG(t.a,t.b,t.c,t.d,t.e,t.f)}function R8e(e){return e==null||(Xg||(Xg=document.createElementNS("http://www.w3.org/2000/svg","g")),Xg.setAttribute("transform",e),!(e=Xg.transform.baseVal.consolidate()))?hC:(e=e.matrix,gG(e.a,e.b,e.c,e.d,e.e,e.f))}function vG(e,t,r,n){function a(d){return d.length?d.pop()+" ":""}function i(d,u,c,h,m,f){if(d!==c||u!==h){var g=m.push("translate(",null,t,null,r);f.push({i:g-4,x:ts(d,c)},{i:g-2,x:ts(u,h)})}else(c||h)&&m.push("translate("+c+t+h+r)}function o(d,u,c,h){d!==u?(d-u>180?u+=360:u-d>180&&(d+=360),h.push({i:c.push(a(c)+"rotate(",null,n)-2,x:ts(d,u)})):u&&c.push(a(c)+"rotate("+u+n)}function s(d,u,c,h){d!==u?h.push({i:c.push(a(c)+"skewX(",null,n)-2,x:ts(d,u)}):u&&c.push(a(c)+"skewX("+u+n)}function l(d,u,c,h,m,f){if(d!==c||u!==h){var g=m.push(a(m)+"scale(",null,",",null,")");f.push({i:g-4,x:ts(d,c)},{i:g-2,x:ts(u,h)})}else(c!==1||h!==1)&&m.push(a(m)+"scale("+c+","+h+")")}return function(d,u){var c=[],h=[];return d=e(d),u=e(u),i(d.translateX,d.translateY,u.translateX,u.translateY,c,h),o(d.rotate,u.rotate,c,h),s(d.skewX,u.skewX,c,h),l(d.scaleX,d.scaleY,u.scaleX,u.scaleY,c,h),d=u=null,function(m){for(var f=-1,g=h.length,v;++f<g;)c[(v=h[f]).i]=v.x(m);return c.join("")}}}var L8e=vG(M8e,"px, ","px)","deg)"),P8e=vG(R8e,", ",")",")"),$8e=1e-12;function oF(e){return((e=Math.exp(e))+1/e)/2}function z8e(e){return((e=Math.exp(e))-1/e)/2}function N8e(e){return((e=Math.exp(2*e))-1)/(e+1)}var F8e=function e(t,r,n){function a(i,o){var s=i[0],l=i[1],d=i[2],u=o[0],c=o[1],h=o[2],m=u-s,f=c-l,g=m*m+f*f,v,y;if(g<$8e)y=Math.log(h/d)/t,v=function(I){return[s+I*m,l+I*f,d*Math.exp(t*I*y)]};else{var b=Math.sqrt(g),S=(h*h-d*d+n*g)/(2*d*r*b),w=(h*h-d*d-n*g)/(2*h*r*b),_=Math.log(Math.sqrt(S*S+1)-S),A=Math.log(Math.sqrt(w*w+1)-w);y=(A-_)/t,v=function(I){var k=I*y,C=oF(_),T=d/(r*b)*(C*N8e(t*k+_)-z8e(_));return[s+T*m,l+T*f,d*C/oF(t*k+_)]}}return v.duration=y*1e3*t/Math.SQRT2,v}return a.rho=function(i){var o=Math.max(.001,+i),s=o*o,l=s*s;return e(o,s,l)},a}(Math.SQRT2,2,4),B8e=hp("start","end","cancel","interrupt"),W8e=[],yG=0,sF=1,mC=2,Uv=3,lF=4,fC=5,Vv=6;function Aw(e,t,r,n,a,i){var o=e.__transition;if(!o)e.__transition={};else if(r in o)return;H8e(e,r,{name:t,index:n,group:a,on:B8e,tween:W8e,time:i.time,delay:i.delay,duration:i.duration,ease:i.ease,timer:null,state:yG})}function Yx(e,t){var r=vi(e,t);if(r.state>yG)throw new Error("too late; already scheduled");return r}function Ui(e,t){var r=vi(e,t);if(r.state>Uv)throw new Error("too late; already running");return r}function vi(e,t){var r=e.__transition;if(!r||!(r=r[t]))throw new Error("transition not found");return r}function H8e(e,t,r){var n=e.__transition,a;n[t]=r,r.timer=Kx(i,0,r.time);function i(d){r.state=sF,r.timer.restart(o,r.delay,r.time),r.delay<=d&&o(d-r.delay)}function o(d){var u,c,h,m;if(r.state!==sF)return l();for(u in n)if(m=n[u],m.name===r.name){if(m.state===Uv)return G5(o);m.state===lF?(m.state=Vv,m.timer.stop(),m.on.call("interrupt",e,e.__data__,m.index,m.group),delete n[u]):+u<t&&(m.state=Vv,m.timer.stop(),m.on.call("cancel",e,e.__data__,m.index,m.group),delete n[u])}if(G5(function(){r.state===Uv&&(r.state=lF,r.timer.restart(s,r.delay,r.time),s(d))}),r.state=mC,r.on.call("start",e,e.__data__,r.index,r.group),r.state===mC){for(r.state=Uv,a=new Array(h=r.tween.length),u=0,c=-1;u<h;++u)(m=r.tween[u].value.call(e,e.__data__,r.index,r.group))&&(a[++c]=m);a.length=c+1}}function s(d){for(var u=d<r.duration?r.ease.call(null,d/r.duration):(r.timer.restart(l),r.state=fC,1),c=-1,h=a.length;++c<h;)a[c].call(e,u);r.state===fC&&(r.on.call("end",e,e.__data__,r.index,r.group),l())}function l(){r.state=Vv,r.timer.stop(),delete n[t];for(var d in n)return;delete e.__transition}}function Gv(e,t){var r=e.__transition,n,a,i=!0,o;if(!!r){t=t==null?null:t+"";for(o in r){if((n=r[o]).name!==t){i=!1;continue}a=n.state>mC&&n.state<fC,n.state=Vv,n.timer.stop(),n.on.call(a?"interrupt":"cancel",e,e.__data__,n.index,n.group),delete r[o]}i&&delete e.__transition}}function j8e(e){return this.each(function(){Gv(this,e)})}function U8e(e,t){var r,n;return function(){var a=Ui(this,e),i=a.tween;if(i!==r){n=r=i;for(var o=0,s=n.length;o<s;++o)if(n[o].name===t){n=n.slice(),n.splice(o,1);break}}a.tween=n}}function V8e(e,t,r){var n,a;if(typeof r!="function")throw new Error;return function(){var i=Ui(this,e),o=i.tween;if(o!==n){a=(n=o).slice();for(var s={name:t,value:r},l=0,d=a.length;l<d;++l)if(a[l].name===t){a[l]=s;break}l===d&&a.push(s)}i.tween=a}}function G8e(e,t){var r=this._id;if(e+="",arguments.length<2){for(var n=vi(this.node(),r).tween,a=0,i=n.length,o;a<i;++a)if((o=n[a]).name===e)return o.value;return null}return this.each((t==null?U8e:V8e)(r,e,t))}function Xx(e,t,r){var n=e._id;return e.each(function(){var a=Ui(this,n);(a.value||(a.value={}))[t]=r.apply(this,arguments)}),function(a){return vi(a,n).value[t]}}function _G(e,t){var r;return(typeof t=="number"?ts:t instanceof cf?aF:(r=cf(t))?(t=r,aF):O8e)(e,t)}function q8e(e){return function(){this.removeAttribute(e)}}function K8e(e){return function(){this.removeAttributeNS(e.space,e.local)}}function Q8e(e,t,r){var n,a=r+"",i;return function(){var o=this.getAttribute(e);return o===a?null:o===n?i:i=t(n=o,r)}}function Z8e(e,t,r){var n,a=r+"",i;return function(){var o=this.getAttributeNS(e.space,e.local);return o===a?null:o===n?i:i=t(n=o,r)}}function Y8e(e,t,r){var n,a,i;return function(){var o,s=r(this),l;return s==null?void this.removeAttribute(e):(o=this.getAttribute(e),l=s+"",o===l?null:o===n&&l===a?i:(a=l,i=t(n=o,s)))}}function X8e(e,t,r){var n,a,i;return function(){var o,s=r(this),l;return s==null?void this.removeAttributeNS(e.space,e.local):(o=this.getAttributeNS(e.space,e.local),l=s+"",o===l?null:o===n&&l===a?i:(a=l,i=t(n=o,s)))}}function J8e(e,t){var r=lw(e),n=r==="transform"?P8e:_G;return this.attrTween(e,typeof t=="function"?(r.local?X8e:Y8e)(r,n,Xx(this,"attr."+e,t)):t==null?(r.local?K8e:q8e)(r):(r.local?Z8e:Q8e)(r,n,t))}function eUe(e,t){return function(r){this.setAttribute(e,t.call(this,r))}}function tUe(e,t){return function(r){this.setAttributeNS(e.space,e.local,t.call(this,r))}}function rUe(e,t){var r,n;function a(){var i=t.apply(this,arguments);return i!==n&&(r=(n=i)&&tUe(e,i)),r}return a._value=t,a}function nUe(e,t){var r,n;function a(){var i=t.apply(this,arguments);return i!==n&&(r=(n=i)&&eUe(e,i)),r}return a._value=t,a}function aUe(e,t){var r="attr."+e;if(arguments.length<2)return(r=this.tween(r))&&r._value;if(t==null)return this.tween(r,null);if(typeof t!="function")throw new Error;var n=lw(e);return this.tween(r,(n.local?rUe:nUe)(n,t))}function iUe(e,t){return function(){Yx(this,e).delay=+t.apply(this,arguments)}}function oUe(e,t){return t=+t,function(){Yx(this,e).delay=t}}function sUe(e){var t=this._id;return arguments.length?this.each((typeof e=="function"?iUe:oUe)(t,e)):vi(this.node(),t).delay}function lUe(e,t){return function(){Ui(this,e).duration=+t.apply(this,arguments)}}function uUe(e,t){return t=+t,function(){Ui(this,e).duration=t}}function dUe(e){var t=this._id;return arguments.length?this.each((typeof e=="function"?lUe:uUe)(t,e)):vi(this.node(),t).duration}function cUe(e,t){if(typeof t!="function")throw new Error;return function(){Ui(this,e).ease=t}}function hUe(e){var t=this._id;return arguments.length?this.each(cUe(t,e)):vi(this.node(),t).ease}function mUe(e,t){return function(){var r=t.apply(this,arguments);if(typeof r!="function")throw new Error;Ui(this,e).ease=r}}function fUe(e){if(typeof e!="function")throw new Error;return this.each(mUe(this._id,e))}function pUe(e){typeof e!="function"&&(e=a9(e));for(var t=this._groups,r=t.length,n=new Array(r),a=0;a<r;++a)for(var i=t[a],o=i.length,s=n[a]=[],l,d=0;d<o;++d)(l=i[d])&&e.call(l,l.__data__,d,i)&&s.push(l);return new So(n,this._parents,this._name,this._id)}function gUe(e){if(e._id!==this._id)throw new Error;for(var t=this._groups,r=e._groups,n=t.length,a=r.length,i=Math.min(n,a),o=new Array(n),s=0;s<i;++s)for(var l=t[s],d=r[s],u=l.length,c=o[s]=new Array(u),h,m=0;m<u;++m)(h=l[m]||d[m])&&(c[m]=h);for(;s<n;++s)o[s]=t[s];return new So(o,this._parents,this._name,this._id)}function vUe(e){return(e+"").trim().split(/^|\s+/).every(function(t){var r=t.indexOf(".");return r>=0&&(t=t.slice(0,r)),!t||t==="start"})}function yUe(e,t,r){var n,a,i=vUe(t)?Yx:Ui;return function(){var o=i(this,e),s=o.on;s!==n&&(a=(n=s).copy()).on(t,r),o.on=a}}function _Ue(e,t){var r=this._id;return arguments.length<2?vi(this.node(),r).on.on(e):this.each(yUe(r,e,t))}function bUe(e){return function(){var t=this.parentNode;for(var r in this.__transition)if(+r!==e)return;t&&t.removeChild(this)}}function wUe(){return this.on("end.remove",bUe(this._id))}function SUe(e){var t=this._name,r=this._id;typeof e!="function"&&(e=xx(e));for(var n=this._groups,a=n.length,i=new Array(a),o=0;o<a;++o)for(var s=n[o],l=s.length,d=i[o]=new Array(l),u,c,h=0;h<l;++h)(u=s[h])&&(c=e.call(u,u.__data__,h,s))&&("__data__"in u&&(c.__data__=u.__data__),d[h]=c,Aw(d[h],t,r,h,d,vi(u,r)));return new So(i,this._parents,t,r)}function AUe(e){var t=this._name,r=this._id;typeof e!="function"&&(e=n9(e));for(var n=this._groups,a=n.length,i=[],o=[],s=0;s<a;++s)for(var l=n[s],d=l.length,u,c=0;c<d;++c)if(u=l[c]){for(var h=e.call(u,u.__data__,c,l),m,f=vi(u,r),g=0,v=h.length;g<v;++g)(m=h[g])&&Aw(m,t,r,g,h,f);i.push(h),o.push(u)}return new So(i,o,t,r)}var TUe=dp.prototype.constructor;function kUe(){return new TUe(this._groups,this._parents)}function CUe(e,t){var r,n,a;return function(){var i=dc(this,e),o=(this.style.removeProperty(e),dc(this,e));return i===o?null:i===r&&o===n?a:a=t(r=i,n=o)}}function bG(e){return function(){this.style.removeProperty(e)}}function EUe(e,t,r){var n,a=r+"",i;return function(){var o=dc(this,e);return o===a?null:o===n?i:i=t(n=o,r)}}function IUe(e,t,r){var n,a,i;return function(){var o=dc(this,e),s=r(this),l=s+"";return s==null&&(l=s=(this.style.removeProperty(e),dc(this,e))),o===l?null:o===n&&l===a?i:(a=l,i=t(n=o,s))}}function DUe(e,t){var r,n,a,i="style."+t,o="end."+i,s;return function(){var l=Ui(this,e),d=l.on,u=l.value[i]==null?s||(s=bG(t)):void 0;(d!==r||a!==u)&&(n=(r=d).copy()).on(o,a=u),l.on=n}}function xUe(e,t,r){var n=(e+="")=="transform"?L8e:_G;return t==null?this.styleTween(e,CUe(e,n)).on("end.style."+e,bG(e)):typeof t=="function"?this.styleTween(e,IUe(e,n,Xx(this,"style."+e,t))).each(DUe(this._id,e)):this.styleTween(e,EUe(e,n,t),r).on("end.style."+e,null)}function OUe(e,t,r){return function(n){this.style.setProperty(e,t.call(this,n),r)}}function MUe(e,t,r){var n,a;function i(){var o=t.apply(this,arguments);return o!==a&&(n=(a=o)&&OUe(e,o,r)),n}return i._value=t,i}function RUe(e,t,r){var n="style."+(e+="");if(arguments.length<2)return(n=this.tween(n))&&n._value;if(t==null)return this.tween(n,null);if(typeof t!="function")throw new Error;return this.tween(n,MUe(e,t,r==null?"":r))}function LUe(e){return function(){this.textContent=e}}function PUe(e){return function(){var t=e(this);this.textContent=t==null?"":t}}function $Ue(e){return this.tween("text",typeof e=="function"?PUe(Xx(this,"text",e)):LUe(e==null?"":e+""))}function zUe(e){return function(t){this.textContent=e.call(this,t)}}function NUe(e){var t,r;function n(){var a=e.apply(this,arguments);return a!==r&&(t=(r=a)&&zUe(a)),t}return n._value=e,n}function FUe(e){var t="text";if(arguments.length<1)return(t=this.tween(t))&&t._value;if(e==null)return this.tween(t,null);if(typeof e!="function")throw new Error;return this.tween(t,NUe(e))}function BUe(){for(var e=this._name,t=this._id,r=wG(),n=this._groups,a=n.length,i=0;i<a;++i)for(var o=n[i],s=o.length,l,d=0;d<s;++d)if(l=o[d]){var u=vi(l,t);Aw(l,e,r,d,o,{time:u.time+u.delay+u.duration,delay:0,duration:u.duration,ease:u.ease})}return new So(n,this._parents,e,r)}function WUe(){var e,t,r=this,n=r._id,a=r.size();return new Promise(function(i,o){var s={value:o},l={value:function(){--a===0&&i()}};r.each(function(){var d=Ui(this,n),u=d.on;u!==e&&(t=(e=u).copy(),t._.cancel.push(s),t._.interrupt.push(s),t._.end.push(l)),d.on=t}),a===0&&i()})}var HUe=0;function So(e,t,r,n){this._groups=e,this._parents=t,this._name=r,this._id=n}function wG(){return++HUe}var Xi=dp.prototype;So.prototype={constructor:So,select:SUe,selectAll:AUe,selectChild:Xi.selectChild,selectChildren:Xi.selectChildren,filter:pUe,merge:gUe,selection:kUe,transition:BUe,call:Xi.call,nodes:Xi.nodes,node:Xi.node,size:Xi.size,empty:Xi.empty,each:Xi.each,on:_Ue,attr:J8e,attrTween:aUe,style:xUe,styleTween:RUe,text:$Ue,textTween:FUe,remove:wUe,tween:G8e,delay:sUe,duration:dUe,ease:hUe,easeVarying:fUe,end:WUe,[Symbol.iterator]:Xi[Symbol.iterator]};function jUe(e){return((e*=2)<=1?e*e*e:(e-=2)*e*e+2)/2}var UUe={time:null,delay:0,duration:250,ease:jUe};function VUe(e,t){for(var r;!(r=e.__transition)||!(r=r[t]);)if(!(e=e.parentNode))throw new Error(`transition ${t} not found`);return r}function GUe(e){var t,r;e instanceof So?(t=e._id,e=e._name):(t=wG(),(r=UUe).time=qx(),e=e==null?null:e+"");for(var n=this._groups,a=n.length,i=0;i<a;++i)for(var o=n[i],s=o.length,l,d=0;d<s;++d)(l=o[d])&&Aw(l,e,t,d,o,r||VUe(l,t));return new So(n,this._parents,e,t)}dp.prototype.interrupt=j8e;dp.prototype.transition=GUe;var Jg=e=>()=>e;function qUe(e,{sourceEvent:t,target:r,transform:n,dispatch:a}){Object.defineProperties(this,{type:{value:e,enumerable:!0,configurable:!0},sourceEvent:{value:t,enumerable:!0,configurable:!0},target:{value:r,enumerable:!0,configurable:!0},transform:{value:n,enumerable:!0,configurable:!0},_:{value:a}})}function ms(e,t,r){this.k=e,this.x=t,this.y=r}ms.prototype={constructor:ms,scale:function(e){return e===1?this:new ms(this.k*e,this.x,this.y)},translate:function(e,t){return e===0&t===0?this:new ms(this.k,this.x+this.k*e,this.y+this.k*t)},apply:function(e){return[e[0]*this.k+this.x,e[1]*this.k+this.y]},applyX:function(e){return e*this.k+this.x},applyY:function(e){return e*this.k+this.y},invert:function(e){return[(e[0]-this.x)/this.k,(e[1]-this.y)/this.k]},invertX:function(e){return(e-this.x)/this.k},invertY:function(e){return(e-this.y)/this.k},rescaleX:function(e){return e.copy().domain(e.range().map(this.invertX,this).map(e.invert,e))},rescaleY:function(e){return e.copy().domain(e.range().map(this.invertY,this).map(e.invert,e))},toString:function(){return"translate("+this.x+","+this.y+") scale("+this.k+")"}};var Jx=new ms(1,0,0);function tA(e){e.stopImmediatePropagation()}function $h(e){e.preventDefault(),e.stopImmediatePropagation()}function KUe(e){return(!e.ctrlKey||e.type==="wheel")&&!e.button}function QUe(){var e=this;return e instanceof SVGElement?(e=e.ownerSVGElement||e,e.hasAttribute("viewBox")?(e=e.viewBox.baseVal,[[e.x,e.y],[e.x+e.width,e.y+e.height]]):[[0,0],[e.width.baseVal.value,e.height.baseVal.value]]):[[0,0],[e.clientWidth,e.clientHeight]]}function uF(){return this.__zoom||Jx}function ZUe(e){return-e.deltaY*(e.deltaMode===1?.05:e.deltaMode?1:.002)*(e.ctrlKey?10:1)}function YUe(){return navigator.maxTouchPoints||"ontouchstart"in this}function XUe(e,t,r){var n=e.invertX(t[0][0])-r[0][0],a=e.invertX(t[1][0])-r[1][0],i=e.invertY(t[0][1])-r[0][1],o=e.invertY(t[1][1])-r[1][1];return e.translate(a>n?(n+a)/2:Math.min(0,n)||Math.max(0,a),o>i?(i+o)/2:Math.min(0,i)||Math.max(0,o))}function JUe(){var e=KUe,t=QUe,r=XUe,n=ZUe,a=YUe,i=[0,1/0],o=[[-1/0,-1/0],[1/0,1/0]],s=250,l=F8e,d=hp("start","zoom","end"),u,c,h,m=500,f=150,g=0,v=10;function y(E){E.property("__zoom",uF).on("wheel.zoom",k,{passive:!1}).on("mousedown.zoom",C).on("dblclick.zoom",T).filter(a).on("touchstart.zoom",O).on("touchmove.zoom",D).on("touchend.zoom touchcancel.zoom",M).style("-webkit-tap-highlight-color","rgba(0,0,0,0)")}y.transform=function(E,L,P,j){var H=E.selection?E.selection():E;H.property("__zoom",uF),E!==H?_(E,L,P,j):H.interrupt().each(function(){A(this,arguments).event(j).start().zoom(null,typeof L=="function"?L.apply(this,arguments):L).end()})},y.scaleBy=function(E,L,P,j){y.scaleTo(E,function(){var H=this.__zoom.k,$=typeof L=="function"?L.apply(this,arguments):L;return H*$},P,j)},y.scaleTo=function(E,L,P,j){y.transform(E,function(){var H=t.apply(this,arguments),$=this.__zoom,B=P==null?w(H):typeof P=="function"?P.apply(this,arguments):P,z=$.invert(B),F=typeof L=="function"?L.apply(this,arguments):L;return r(S(b($,F),B,z),H,o)},P,j)},y.translateBy=function(E,L,P,j){y.transform(E,function(){return r(this.__zoom.translate(typeof L=="function"?L.apply(this,arguments):L,typeof P=="function"?P.apply(this,arguments):P),t.apply(this,arguments),o)},null,j)},y.translateTo=function(E,L,P,j,H){y.transform(E,function(){var $=t.apply(this,arguments),B=this.__zoom,z=j==null?w($):typeof j=="function"?j.apply(this,arguments):j;return r(Jx.translate(z[0],z[1]).scale(B.k).translate(typeof L=="function"?-L.apply(this,arguments):-L,typeof P=="function"?-P.apply(this,arguments):-P),$,o)},j,H)};function b(E,L){return L=Math.max(i[0],Math.min(i[1],L)),L===E.k?E:new ms(L,E.x,E.y)}function S(E,L,P){var j=L[0]-P[0]*E.k,H=L[1]-P[1]*E.k;return j===E.x&&H===E.y?E:new ms(E.k,j,H)}function w(E){return[(+E[0][0]+ +E[1][0])/2,(+E[0][1]+ +E[1][1])/2]}function _(E,L,P,j){E.on("start.zoom",function(){A(this,arguments).event(j).start()}).on("interrupt.zoom end.zoom",function(){A(this,arguments).event(j).end()}).tween("zoom",function(){var H=this,$=arguments,B=A(H,$).event(j),z=t.apply(H,$),F=P==null?w(z):typeof P=="function"?P.apply(H,$):P,V=Math.max(z[1][0]-z[0][0],z[1][1]-z[0][1]),K=H.__zoom,Z=typeof L=="function"?L.apply(H,$):L,ue=l(K.invert(F).concat(V/K.k),Z.invert(F).concat(V/Z.k));return function(fe){if(fe===1)fe=Z;else{var ye=ue(fe),De=V/ye[2];fe=new ms(De,F[0]-ye[0]*De,F[1]-ye[1]*De)}B.zoom(null,fe)}})}function A(E,L,P){return!P&&E.__zooming||new I(E,L)}function I(E,L){this.that=E,this.args=L,this.active=0,this.sourceEvent=null,this.extent=t.apply(E,L),this.taps=0}I.prototype={event:function(E){return E&&(this.sourceEvent=E),this},start:function(){return++this.active===1&&(this.that.__zooming=this,this.emit("start")),this},zoom:function(E,L){return this.mouse&&E!=="mouse"&&(this.mouse[1]=L.invert(this.mouse[0])),this.touch0&&E!=="touch"&&(this.touch0[1]=L.invert(this.touch0[0])),this.touch1&&E!=="touch"&&(this.touch1[1]=L.invert(this.touch1[0])),this.that.__zoom=L,this.emit("zoom"),this},end:function(){return--this.active===0&&(delete this.that.__zooming,this.emit("end")),this},emit:function(E){var L=Bn(this.that).datum();d.call(E,this.that,new qUe(E,{sourceEvent:this.sourceEvent,target:y,type:E,transform:this.that.__zoom,dispatch:d}),L)}};function k(E,...L){if(!e.apply(this,arguments))return;var P=A(this,L).event(E),j=this.__zoom,H=Math.max(i[0],Math.min(i[1],j.k*Math.pow(2,n.apply(this,arguments)))),$=no(E);if(P.wheel)(P.mouse[0][0]!==$[0]||P.mouse[0][1]!==$[1])&&(P.mouse[1]=j.invert(P.mouse[0]=$)),clearTimeout(P.wheel);else{if(j.k===H)return;P.mouse=[$,j.invert($)],Gv(this),P.start()}$h(E),P.wheel=setTimeout(B,f),P.zoom("mouse",r(S(b(j,H),P.mouse[0],P.mouse[1]),P.extent,o));function B(){P.wheel=null,P.end()}}function C(E,...L){if(h||!e.apply(this,arguments))return;var P=E.currentTarget,j=A(this,L,!0).event(E),H=Bn(E.view).on("mousemove.zoom",F,!0).on("mouseup.zoom",V,!0),$=no(E,P),B=E.clientX,z=E.clientY;x9(E.view),tA(E),j.mouse=[$,this.__zoom.invert($)],Gv(this),j.start();function F(K){if($h(K),!j.moved){var Z=K.clientX-B,ue=K.clientY-z;j.moved=Z*Z+ue*ue>g}j.event(K).zoom("mouse",r(S(j.that.__zoom,j.mouse[0]=no(K,P),j.mouse[1]),j.extent,o))}function V(K){H.on("mousemove.zoom mouseup.zoom",null),O9(K.view,j.moved),$h(K),j.event(K).end()}}function T(E,...L){if(!!e.apply(this,arguments)){var P=this.__zoom,j=no(E.changedTouches?E.changedTouches[0]:E,this),H=P.invert(j),$=P.k*(E.shiftKey?.5:2),B=r(S(b(P,$),j,H),t.apply(this,L),o);$h(E),s>0?Bn(this).transition().duration(s).call(_,B,j,E):Bn(this).call(y.transform,B,j,E)}}function O(E,...L){if(!!e.apply(this,arguments)){var P=E.touches,j=P.length,H=A(this,L,E.changedTouches.length===j).event(E),$,B,z,F;for(tA(E),B=0;B<j;++B)z=P[B],F=no(z,this),F=[F,this.__zoom.invert(F),z.identifier],H.touch0?!H.touch1&&H.touch0[2]!==F[2]&&(H.touch1=F,H.taps=0):(H.touch0=F,$=!0,H.taps=1+!!u);u&&(u=clearTimeout(u)),$&&(H.taps<2&&(c=F[0],u=setTimeout(function(){u=null},m)),Gv(this),H.start())}}function D(E,...L){if(!!this.__zooming){var P=A(this,L).event(E),j=E.changedTouches,H=j.length,$,B,z,F;for($h(E),$=0;$<H;++$)B=j[$],z=no(B,this),P.touch0&&P.touch0[2]===B.identifier?P.touch0[0]=z:P.touch1&&P.touch1[2]===B.identifier&&(P.touch1[0]=z);if(B=P.that.__zoom,P.touch1){var V=P.touch0[0],K=P.touch0[1],Z=P.touch1[0],ue=P.touch1[1],fe=(fe=Z[0]-V[0])*fe+(fe=Z[1]-V[1])*fe,ye=(ye=ue[0]-K[0])*ye+(ye=ue[1]-K[1])*ye;B=b(B,Math.sqrt(fe/ye)),z=[(V[0]+Z[0])/2,(V[1]+Z[1])/2],F=[(K[0]+ue[0])/2,(K[1]+ue[1])/2]}else if(P.touch0)z=P.touch0[0],F=P.touch0[1];else return;P.zoom("touch",r(S(B,z,F),P.extent,o))}}function M(E,...L){if(!!this.__zooming){var P=A(this,L).event(E),j=E.changedTouches,H=j.length,$,B;for(tA(E),h&&clearTimeout(h),h=setTimeout(function(){h=null},m),$=0;$<H;++$)B=j[$],P.touch0&&P.touch0[2]===B.identifier?delete P.touch0:P.touch1&&P.touch1[2]===B.identifier&&delete P.touch1;if(P.touch1&&!P.touch0&&(P.touch0=P.touch1,delete P.touch1),P.touch0)P.touch0[1]=this.__zoom.invert(P.touch0[0]);else if(P.end(),P.taps===2&&(B=no(B,this),Math.hypot(c[0]-B[0],c[1]-B[1])<v)){var z=Bn(this).on("dblclick.zoom");z&&z.apply(this,arguments)}}}return y.wheelDelta=function(E){return arguments.length?(n=typeof E=="function"?E:Jg(+E),y):n},y.filter=function(E){return arguments.length?(e=typeof E=="function"?E:Jg(!!E),y):e},y.touchable=function(E){return arguments.length?(a=typeof E=="function"?E:Jg(!!E),y):a},y.extent=function(E){return arguments.length?(t=typeof E=="function"?E:Jg([[+E[0][0],+E[0][1]],[+E[1][0],+E[1][1]]]),y):t},y.scaleExtent=function(E){return arguments.length?(i[0]=+E[0],i[1]=+E[1],y):[i[0],i[1]]},y.translateExtent=function(E){return arguments.length?(o[0][0]=+E[0][0],o[1][0]=+E[1][0],o[0][1]=+E[0][1],o[1][1]=+E[1][1],y):[[o[0][0],o[0][1]],[o[1][0],o[1][1]]]},y.constrain=function(E){return arguments.length?(r=E,y):r},y.duration=function(E){return arguments.length?(s=+E,y):s},y.interpolate=function(E){return arguments.length?(l=E,y):l},y.on=function(){var E=d.on.apply(d,arguments);return E===d?y:E},y.clickDistance=function(E){return arguments.length?(g=(E=+E)*E,y):Math.sqrt(g)},y.tapDistance=function(E){return arguments.length?(v=+E,y):v},y}const eVe=[{title:"IsParent",relationship:hs.NeigbhorIsParent},{title:"IsAChild",relationship:hs.NeigbhorIsAChild},{title:"IsASibling",relationship:hs.NeigbhorIsASibling},{title:"NoneOfTheAbove",relationship:hs.NoneOfTheAbove}],SG=()=>de("div",{className:"d-flex align-items-center",children:[x("span",{children:"Loading, please wait."}),x("div",{className:"spinner-border me-2"})]});function tVe(e,t,r,n){for(var a=e.length,i=r+(n?1:-1);n?i--:++i<a;)if(t(e[i],i,e))return i;return-1}var rVe=tVe;function nVe(e){return e!==e}var aVe=nVe;function iVe(e,t,r){for(var n=r-1,a=e.length;++n<a;)if(e[n]===t)return n;return-1}var oVe=iVe,sVe=rVe,lVe=aVe,uVe=oVe;function dVe(e,t,r){return t===t?uVe(e,t,r):sVe(e,lVe,r)}var AG=dVe,cVe=AG;function hVe(e,t){var r=e==null?0:e.length;return!!r&&cVe(e,t,0)>-1}var e2=hVe;function mVe(e,t,r){for(var n=-1,a=e==null?0:e.length;++n<a;)if(r(t,e[n]))return!0;return!1}var t2=mVe,fVe=pw,pVe=e2,gVe=t2,vVe=Qs,yVe=_u,dF=gw,_Ve=Math.min;function bVe(e,t,r){for(var n=r?gVe:pVe,a=e[0].length,i=e.length,o=i,s=Array(i),l=1/0,d=[];o--;){var u=e[o];o&&t&&(u=vVe(u,yVe(t))),l=_Ve(u.length,l),s[o]=!r&&(t||a>=120&&u.length>=120)?new fVe(o&&u):void 0}u=e[0];var c=-1,h=s[0];e:for(;++c<a&&d.length<l;){var m=u[c],f=t?t(m):m;if(m=r||m!==0?m:0,!(h?dF(h,f):n(d,f,r))){for(o=i;--o;){var g=s[o];if(!(g?dF(g,f):n(e[o],f,r)))continue e}h&&h.push(f),d.push(m)}}return d}var TG=bVe;function wVe(e,t,r){switch(r.length){case 0:return e.call(t);case 1:return e.call(t,r[0]);case 2:return e.call(t,r[0],r[1]);case 3:return e.call(t,r[0],r[1],r[2])}return e.apply(t,r)}var kG=wVe,SVe=kG,cF=Math.max;function AVe(e,t,r){return t=cF(t===void 0?e.length-1:t,0),function(){for(var n=arguments,a=-1,i=cF(n.length-t,0),o=Array(i);++a<i;)o[a]=n[t+a];a=-1;for(var s=Array(t+1);++a<t;)s[a]=n[a];return s[t]=r(o),SVe(e,this,s)}}var CG=AVe;function TVe(e){return function(){return e}}var kVe=TVe,CVe=kVe,hF=Z9,EVe=vp,IVe=hF?function(e,t){return hF(e,"toString",{configurable:!0,enumerable:!1,value:CVe(t),writable:!0})}:EVe,DVe=IVe,xVe=800,OVe=16,MVe=Date.now;function RVe(e){var t=0,r=0;return function(){var n=MVe(),a=OVe-(n-r);if(r=n,a>0){if(++t>=xVe)return arguments[0]}else t=0;return e.apply(void 0,arguments)}}var LVe=RVe,PVe=DVe,$Ve=LVe,zVe=$Ve(PVe),EG=zVe,NVe=vp,FVe=CG,BVe=EG;function WVe(e,t){return BVe(FVe(e,t,NVe),e+"")}var Zs=WVe,HVe=bu,jVe=gi;function UVe(e){return jVe(e)&&HVe(e)}var Tw=UVe,VVe=Tw;function GVe(e){return VVe(e)?e:[]}var IG=GVe,qVe=Qs,KVe=TG,QVe=Zs,ZVe=IG,YVe=QVe(function(e){var t=qVe(e,ZVe);return t.length&&t[0]===e[0]?KVe(t):[]}),pC=YVe;const DG=[hs.NeigbhorIsAChild,hs.NeigbhorIsParent],XVe=e=>e.linkType==="Router2Router"?1:DG.includes(e.relationship)?.5:0,JVe=[...DG,hs.NeigbhorIsASibling],zh=100,e7e={BrokenLink:5*zh,Router2Router:2.5*zh,Coordinator2Router:2.5*zh,Coordinator2EndDevice:zh,EndDevice2Router:zh},t7e=e=>{var t;return(t=e7e[e.linkType])!=null?t:250},r7e=(e,t)=>{const r=e.source,n=e.target,[a,i]=t.apply([r.x,r.y]),[o,s]=t.apply([n.x,n.y]);return`M ${a} ${i} L ${o} ${s}`},n7e=({transform:e,node:t,link:r,linkLabel:n,links:a})=>{a.forEach(i=>{const[o,s]=e.apply([i.source.x,i.source.y]),[l,d]=e.apply([i.target.x,i.target.y]);i.x=(l+o)/2,i.y=(d+s)/2}),r.attr("d",i=>r7e(i,e)),n.attr("x",({source:i,target:o})=>e.applyX((i.x+o.x)/2)).attr("y",({source:i,target:o})=>e.applyY((i.y+o.y)/2)),t.attr("transform",i=>{const[l,d]=e.apply([i.x,i.y]);return`translate(${l-16}, ${d-16})`})},a7e=({networkGraph:e,links:t,selectedNode:r,node:n,link:a,linkLabel:i})=>{const o=new Set;e.nodes.forEach(d=>o.add(d.ieeeAddr+","+d.ieeeAddr)),t.forEach(d=>o.add(d.source.ieeeAddr+","+d.target.ieeeAddr));const s=(d,u)=>o.has(d.ieeeAddr+","+u.ieeeAddr),l=d=>(d==null?void 0:d.source)===r||(d==null?void 0:d.target)===r?1:.15;r?(n.style("opacity",d=>s(r,d)||s(d,r)?1:.15),a.style("stroke-opacity",l),i.style("opacity",l)):(n.style("opacity",1),a.style("stroke-opacity",1),i.style("opacity",1))};class i7e extends le.exports.Component{constructor(){super(...arguments),this.ref=le.exports.createRef(),this.svgRef=le.exports.createRef(),this.simulation=Kje(),this.state={width:0,height:0,visibleLinks:JVe,legendIsVisible:!0},this.transform=Jx,this.updateNodes=()=>{var m;const{networkGraph:t}=this.props,{visibleLinks:r,selectedNode:n,width:a,height:i}=this.state,o=Bn(this.svgRef.current),s=o.selectAll(`.${wr.node}`),l=o.selectAll(`.${wr.link}`),d=o.selectAll(`.${wr.linkLabel}`),u=t.links.filter(f=>pC(r,f.relationships).length);this.simulation.nodes(t.nodes.concat(u)),(m=this.simulation.force("link"))==null||m.links(u),this.simulation.on("tick",()=>n7e({transform:this.transform,node:s,link:l,linkLabel:d,links:u}));const c=o.selectAll(".everything");JUe().extent([[0,0],[a,i]]).scaleExtent([1/10,8]).on("zoom",({transform:f})=>{c.attr("transform",f)})(o),a7e({networkGraph:t,links:u,selectedNode:n,node:s,link:l,linkLabel:d}),s.on("click",(f,g)=>{this.setState({selectedNode:n?null:g})}),this.simulation.alphaTarget(.03).restart()},this.initPage=()=>{const{width:t,height:r}=this.ref.current.getBoundingClientRect();this.setState({width:t,height:r}),this.updateForces(t,r)},this.onRequestClick=()=>{const{networkMapRequest:t}=this.props;t()},this.onLinkTypeFilterChange=t=>{const{visibleLinks:r}=this.state,{checked:n,value:a}=t.target,i=parseInt(a,10);let o=[...r];n?o.push(i):o=o.filter(s=>s!==i),this.setState({visibleLinks:o})}}updateForces(t,r){this.simulation=this.simulation.force("link",Nje().id(n=>n.ieeeAddr).distance(t7e).strength(XVe)).force("charge",m8e().strength(-700)).force("collisionForce",$je()).force("center",vje(t/2,r/2)).force("x",Qje().strength(.1)).force("y",Zje().strength(.2))}componentDidMount(){setTimeout(this.initPage,200)}componentDidUpdate(){this.updateNodes()}renderMap(){const{width:t,height:r,visibleLinks:n}=this.state,{networkGraph:a,deviceStates:i,devices:o,availability:s}=this.props,l=a.links.filter(d=>pC(n,d.relationships).length>0);return x("svg",{ref:this.svgRef,viewBox:`0 0 ${t} ${r}`,children:de("g",{className:"everything",children:[x(L$e,{links:l}),x(aWe,{root:this.svgRef.current,nodes:a.nodes,simulation:this.simulation,deviceStates:i,devices:o,availability:s})]})})}renderMessage(){const{networkGraphIsLoading:t,t:r}=this.props;return x("div",{className:"h-100 d-flex justify-content-center align-items-center",children:t?de("div",{children:[x(SG,{}),x("div",{children:r("loading")})]}):x(yt,{onClick:this.onRequestClick,className:"btn btn-primary d-block",children:r("load")})})}renderMapControls(){const{visibleLinks:t}=this.state;return de("div",{className:wr.controls,children:[eVe.map(r=>de("div",{className:"form-check form-check-inline",children:[x("input",{onChange:this.onLinkTypeFilterChange,className:"form-check-input",type:"checkbox",id:r.title,value:r.relationship,checked:t.includes(r.relationship)}),x("label",{className:"form-check-label",htmlFor:r.title,children:r.title})]},r.title)),x("div",{className:"btn-group btn-group-sm",role:"group",children:x(yt,{title:"Refresh data",className:"btn btn-primary",onClick:this.onRequestClick,children:x("i",{className:"fa fa-sync"})})})]})}renderHelp(){const{t}=this.props,{legendIsVisible:r}=this.state;return de("div",{className:et("fixed-bottom",{"d-none":!r}),onClick:()=>this.setState({legendIsVisible:!1}),children:[de("div",{className:et(wr.node,wr.Coordinator),children:[x("svg",{width:"28",height:"28",viewBox:"0 0 28 28",children:x("polygon",{points:V9(5,5,14)})})," ",t("help_is_coordinator")]}),x("div",{className:et(wr.node,wr.EndDevice),children:t("help_end_device_description")}),x("div",{className:et(wr.node,wr.Router),children:t("help_router_description")}),x("div",{children:t("help_coordinator_link_description")}),x("div",{children:t("help_router_links_description")}),x("div",{children:t("help_lqi_description")}),x("div",{children:t("hide")})]})}render(){const{networkGraph:t}=this.props;return de("div",{className:wr.container,ref:this.ref,children:[t.nodes.length?de(le.exports.Fragment,{children:[this.renderMapControls()," ",this.renderMap()]}):this.renderMessage(),this.renderHelp()]})}}const o7e=["networkGraph","networkGraphIsLoading","deviceStates","devices","availability"],s7e=Mn("map")($r(o7e,Br)(i7e));function ev(e){return e.charAt(0)==="/"}function rA(e,t){for(var r=t,n=r+1,a=e.length;n<a;r+=1,n+=1)e[r]=e[n];e.pop()}function l7e(e,t){t===void 0&&(t="");var r=e&&e.split("/")||[],n=t&&t.split("/")||[],a=e&&ev(e),i=t&&ev(t),o=a||i;if(e&&ev(e)?n=r:r.length&&(n.pop(),n=n.concat(r)),!n.length)return"/";var s;if(n.length){var l=n[n.length-1];s=l==="."||l===".."||l===""}else s=!1;for(var d=0,u=n.length;u>=0;u--){var c=n[u];c==="."?rA(n,u):c===".."?(rA(n,u),d++):d&&(rA(n,u),d--)}if(!o)for(;d--;d)n.unshift("..");o&&n[0]!==""&&(!n[0]||!ev(n[0]))&&n.unshift("");var h=n.join("/");return s&&h.substr(-1)!=="/"&&(h+="/"),h}function mF(e){return e.valueOf?e.valueOf():Object.prototype.valueOf.call(e)}function qv(e,t){if(e===t)return!0;if(e==null||t==null)return!1;if(Array.isArray(e))return Array.isArray(t)&&e.length===t.length&&e.every(function(a,i){return qv(a,t[i])});if(typeof e=="object"||typeof t=="object"){var r=mF(e),n=mF(t);return r!==e||n!==t?qv(r,n):Object.keys(Object.assign({},e,t)).every(function(a){return qv(e[a],t[a])})}return!1}var u7e=!0,nA="Invariant failed";function Po(e,t){if(!e){if(u7e)throw new Error(nA);var r=typeof t=="function"?t():t,n=r?nA+": "+r:nA;throw new Error(n)}}function Em(e){return e.charAt(0)==="/"?e:"/"+e}function fF(e){return e.charAt(0)==="/"?e.substr(1):e}function d7e(e,t){return e.toLowerCase().indexOf(t.toLowerCase())===0&&"/?#".indexOf(e.charAt(t.length))!==-1}function xG(e,t){return d7e(e,t)?e.substr(t.length):e}function OG(e){return e.charAt(e.length-1)==="/"?e.slice(0,-1):e}function c7e(e){var t=e||"/",r="",n="",a=t.indexOf("#");a!==-1&&(n=t.substr(a),t=t.substr(0,a));var i=t.indexOf("?");return i!==-1&&(r=t.substr(i),t=t.substr(0,i)),{pathname:t,search:r==="?"?"":r,hash:n==="#"?"":n}}function Nn(e){var t=e.pathname,r=e.search,n=e.hash,a=t||"/";return r&&r!=="?"&&(a+=r.charAt(0)==="?"?r:"?"+r),n&&n!=="#"&&(a+=n.charAt(0)==="#"?n:"#"+n),a}function Cn(e,t,r,n){var a;typeof e=="string"?(a=c7e(e),a.state=t):(a=Mr({},e),a.pathname===void 0&&(a.pathname=""),a.search?a.search.charAt(0)!=="?"&&(a.search="?"+a.search):a.search="",a.hash?a.hash.charAt(0)!=="#"&&(a.hash="#"+a.hash):a.hash="",t!==void 0&&a.state===void 0&&(a.state=t));try{a.pathname=decodeURI(a.pathname)}catch(i){throw i instanceof URIError?new URIError('Pathname "'+a.pathname+'" could not be decoded. This is likely caused by an invalid percent-encoding.'):i}return r&&(a.key=r),n?a.pathname?a.pathname.charAt(0)!=="/"&&(a.pathname=l7e(a.pathname,n.pathname)):a.pathname=n.pathname:a.pathname||(a.pathname="/"),a}function h7e(e,t){return e.pathname===t.pathname&&e.search===t.search&&e.hash===t.hash&&e.key===t.key&&qv(e.state,t.state)}function r2(){var e=null;function t(o){return e=o,function(){e===o&&(e=null)}}function r(o,s,l,d){if(e!=null){var u=typeof e=="function"?e(o,s):e;typeof u=="string"?typeof l=="function"?l(u,d):d(!0):d(u!==!1)}else d(!0)}var n=[];function a(o){var s=!0;function l(){s&&o.apply(void 0,arguments)}return n.push(l),function(){s=!1,n=n.filter(function(d){return d!==l})}}function i(){for(var o=arguments.length,s=new Array(o),l=0;l<o;l++)s[l]=arguments[l];n.forEach(function(d){return d.apply(void 0,s)})}return{setPrompt:t,confirmTransitionTo:r,appendListener:a,notifyListeners:i}}var MG=!!(typeof window!="undefined"&&window.document&&window.document.createElement);function RG(e,t){t(window.confirm(e))}function m7e(){var e=window.navigator.userAgent;return(e.indexOf("Android 2.")!==-1||e.indexOf("Android 4.0")!==-1)&&e.indexOf("Mobile Safari")!==-1&&e.indexOf("Chrome")===-1&&e.indexOf("Windows Phone")===-1?!1:window.history&&"pushState"in window.history}function f7e(){return window.navigator.userAgent.indexOf("Trident")===-1}function p7e(){return window.navigator.userAgent.indexOf("Firefox")===-1}function g7e(e){return e.state===void 0&&navigator.userAgent.indexOf("CriOS")===-1}var pF="popstate",gF="hashchange";function vF(){try{return window.history.state||{}}catch{return{}}}function v7e(e){e===void 0&&(e={}),MG||Po(!1);var t=window.history,r=m7e(),n=!f7e(),a=e,i=a.forceRefresh,o=i===void 0?!1:i,s=a.getUserConfirmation,l=s===void 0?RG:s,d=a.keyLength,u=d===void 0?6:d,c=e.basename?OG(Em(e.basename)):"";function h($){var B=$||{},z=B.key,F=B.state,V=window.location,K=V.pathname,Z=V.search,ue=V.hash,fe=K+Z+ue;return c&&(fe=xG(fe,c)),Cn(fe,F,z)}function m(){return Math.random().toString(36).substr(2,u)}var f=r2();function g($){Mr(H,$),H.length=t.length,f.notifyListeners(H.location,H.action)}function v($){g7e($)||S(h($.state))}function y(){S(h(vF()))}var b=!1;function S($){if(b)b=!1,g();else{var B="POP";f.confirmTransitionTo($,B,l,function(z){z?g({action:B,location:$}):w($)})}}function w($){var B=H.location,z=A.indexOf(B.key);z===-1&&(z=0);var F=A.indexOf($.key);F===-1&&(F=0);var V=z-F;V&&(b=!0,T(V))}var _=h(vF()),A=[_.key];function I($){return c+Nn($)}function k($,B){var z="PUSH",F=Cn($,B,m(),H.location);f.confirmTransitionTo(F,z,l,function(V){if(!!V){var K=I(F),Z=F.key,ue=F.state;if(r)if(t.pushState({key:Z,state:ue},null,K),o)window.location.href=K;else{var fe=A.indexOf(H.location.key),ye=A.slice(0,fe+1);ye.push(F.key),A=ye,g({action:z,location:F})}else window.location.href=K}})}function C($,B){var z="REPLACE",F=Cn($,B,m(),H.location);f.confirmTransitionTo(F,z,l,function(V){if(!!V){var K=I(F),Z=F.key,ue=F.state;if(r)if(t.replaceState({key:Z,state:ue},null,K),o)window.location.replace(K);else{var fe=A.indexOf(H.location.key);fe!==-1&&(A[fe]=F.key),g({action:z,location:F})}else window.location.replace(K)}})}function T($){t.go($)}function O(){T(-1)}function D(){T(1)}var M=0;function E($){M+=$,M===1&&$===1?(window.addEventListener(pF,v),n&&window.addEventListener(gF,y)):M===0&&(window.removeEventListener(pF,v),n&&window.removeEventListener(gF,y))}var L=!1;function P($){$===void 0&&($=!1);var B=f.setPrompt($);return L||(E(1),L=!0),function(){return L&&(L=!1,E(-1)),B()}}function j($){var B=f.appendListener($);return E(1),function(){E(-1),B()}}var H={length:t.length,action:"POP",location:_,createHref:I,push:k,replace:C,go:T,goBack:O,goForward:D,block:P,listen:j};return H}var yF="hashchange",y7e={hashbang:{encodePath:function(t){return t.charAt(0)==="!"?t:"!/"+fF(t)},decodePath:function(t){return t.charAt(0)==="!"?t.substr(1):t}},noslash:{encodePath:fF,decodePath:Em},slash:{encodePath:Em,decodePath:Em}};function LG(e){var t=e.indexOf("#");return t===-1?e:e.slice(0,t)}function Nh(){var e=window.location.href,t=e.indexOf("#");return t===-1?"":e.substring(t+1)}function _7e(e){window.location.hash=e}function aA(e){window.location.replace(LG(window.location.href)+"#"+e)}function b7e(e){e===void 0&&(e={}),MG||Po(!1);var t=window.history;p7e();var r=e,n=r.getUserConfirmation,a=n===void 0?RG:n,i=r.hashType,o=i===void 0?"slash":i,s=e.basename?OG(Em(e.basename)):"",l=y7e[o],d=l.encodePath,u=l.decodePath;function c(){var B=u(Nh());return s&&(B=xG(B,s)),Cn(B)}var h=r2();function m(B){Mr($,B),$.length=t.length,h.notifyListeners($.location,$.action)}var f=!1,g=null;function v(B,z){return B.pathname===z.pathname&&B.search===z.search&&B.hash===z.hash}function y(){var B=Nh(),z=d(B);if(B!==z)aA(z);else{var F=c(),V=$.location;if(!f&&v(V,F)||g===Nn(F))return;g=null,b(F)}}function b(B){if(f)f=!1,m();else{var z="POP";h.confirmTransitionTo(B,z,a,function(F){F?m({action:z,location:B}):S(B)})}}function S(B){var z=$.location,F=I.lastIndexOf(Nn(z));F===-1&&(F=0);var V=I.lastIndexOf(Nn(B));V===-1&&(V=0);var K=F-V;K&&(f=!0,O(K))}var w=Nh(),_=d(w);w!==_&&aA(_);var A=c(),I=[Nn(A)];function k(B){var z=document.querySelector("base"),F="";return z&&z.getAttribute("href")&&(F=LG(window.location.href)),F+"#"+d(s+Nn(B))}function C(B,z){var F="PUSH",V=Cn(B,void 0,void 0,$.location);h.confirmTransitionTo(V,F,a,function(K){if(!!K){var Z=Nn(V),ue=d(s+Z),fe=Nh()!==ue;if(fe){g=Z,_7e(ue);var ye=I.lastIndexOf(Nn($.location)),De=I.slice(0,ye+1);De.push(Z),I=De,m({action:F,location:V})}else m()}})}function T(B,z){var F="REPLACE",V=Cn(B,void 0,void 0,$.location);h.confirmTransitionTo(V,F,a,function(K){if(!!K){var Z=Nn(V),ue=d(s+Z),fe=Nh()!==ue;fe&&(g=Z,aA(ue));var ye=I.indexOf(Nn($.location));ye!==-1&&(I[ye]=Z),m({action:F,location:V})}})}function O(B){t.go(B)}function D(){O(-1)}function M(){O(1)}var E=0;function L(B){E+=B,E===1&&B===1?window.addEventListener(yF,y):E===0&&window.removeEventListener(yF,y)}var P=!1;function j(B){B===void 0&&(B=!1);var z=h.setPrompt(B);return P||(L(1),P=!0),function(){return P&&(P=!1,L(-1)),z()}}function H(B){var z=h.appendListener(B);return L(1),function(){L(-1),z()}}var $={length:t.length,action:"POP",location:A,createHref:k,push:C,replace:T,go:O,goBack:D,goForward:M,block:j,listen:H};return $}function _F(e,t,r){return Math.min(Math.max(e,t),r)}function w7e(e){e===void 0&&(e={});var t=e,r=t.getUserConfirmation,n=t.initialEntries,a=n===void 0?["/"]:n,i=t.initialIndex,o=i===void 0?0:i,s=t.keyLength,l=s===void 0?6:s,d=r2();function u(k){Mr(I,k),I.length=I.entries.length,d.notifyListeners(I.location,I.action)}function c(){return Math.random().toString(36).substr(2,l)}var h=_F(o,0,a.length-1),m=a.map(function(k){return typeof k=="string"?Cn(k,void 0,c()):Cn(k,void 0,k.key||c())}),f=Nn;function g(k,C){var T="PUSH",O=Cn(k,C,c(),I.location);d.confirmTransitionTo(O,T,r,function(D){if(!!D){var M=I.index,E=M+1,L=I.entries.slice(0);L.length>E?L.splice(E,L.length-E,O):L.push(O),u({action:T,location:O,index:E,entries:L})}})}function v(k,C){var T="REPLACE",O=Cn(k,C,c(),I.location);d.confirmTransitionTo(O,T,r,function(D){!D||(I.entries[I.index]=O,u({action:T,location:O}))})}function y(k){var C=_F(I.index+k,0,I.entries.length-1),T="POP",O=I.entries[C];d.confirmTransitionTo(O,T,r,function(D){D?u({action:T,location:O,index:C}):u()})}function b(){y(-1)}function S(){y(1)}function w(k){var C=I.index+k;return C>=0&&C<I.entries.length}function _(k){return k===void 0&&(k=!1),d.setPrompt(k)}function A(k){return d.appendListener(k)}var I={length:m.length,action:"POP",location:m[h],index:h,entries:m,createHref:f,push:g,replace:v,go:y,goBack:b,goForward:S,canGo:w,block:_,listen:A};return I}var iA=1073741823,bF=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:{};function S7e(){var e="__global_unique_id__";return bF[e]=(bF[e]||0)+1}function A7e(e,t){return e===t?e!==0||1/e===1/t:e!==e&&t!==t}function T7e(e){var t=[];return{on:function(n){t.push(n)},off:function(n){t=t.filter(function(a){return a!==n})},get:function(){return e},set:function(n,a){e=n,t.forEach(function(i){return i(e,a)})}}}function k7e(e){return Array.isArray(e)?e[0]:e}function C7e(e,t){var r,n,a="__create-react-context-"+S7e()+"__",i=function(s){Dn(l,s);function l(){var u;return u=s.apply(this,arguments)||this,u.emitter=T7e(u.props.value),u}var d=l.prototype;return d.getChildContext=function(){var c;return c={},c[a]=this.emitter,c},d.componentWillReceiveProps=function(c){if(this.props.value!==c.value){var h=this.props.value,m=c.value,f;A7e(h,m)?f=0:(f=typeof t=="function"?t(h,m):iA,f|=0,f!==0&&this.emitter.set(c.value,f))}},d.render=function(){return this.props.children},l}(le.exports.Component);i.childContextTypes=(r={},r[a]=At.object.isRequired,r);var o=function(s){Dn(l,s);function l(){var u;return u=s.apply(this,arguments)||this,u.state={value:u.getValue()},u.onUpdate=function(c,h){var m=u.observedBits|0;(m&h)!==0&&u.setState({value:u.getValue()})},u}var d=l.prototype;return d.componentWillReceiveProps=function(c){var h=c.observedBits;this.observedBits=h==null?iA:h},d.componentDidMount=function(){this.context[a]&&this.context[a].on(this.onUpdate);var c=this.props.observedBits;this.observedBits=c==null?iA:c},d.componentWillUnmount=function(){this.context[a]&&this.context[a].off(this.onUpdate)},d.getValue=function(){return this.context[a]?this.context[a].get():e},d.render=function(){return k7e(this.props.children)(this.state.value)},l}(le.exports.Component);return o.contextTypes=(n={},n[a]=At.object,n),{Provider:i,Consumer:o}}var E7e=q.createContext||C7e,qc={exports:{}},I7e=Array.isArray||function(e){return Object.prototype.toString.call(e)=="[object Array]"},C_=I7e;qc.exports=zG;qc.exports.parse=n2;qc.exports.compile=x7e;qc.exports.tokensToFunction=PG;qc.exports.tokensToRegExp=$G;var D7e=new RegExp(["(\\\\.)","([\\/.])?(?:(?:\\:(\\w+)(?:\\(((?:\\\\.|[^\\\\()])+)\\))?|\\(((?:\\\\.|[^\\\\()])+)\\))([+*?])?|(\\*))"].join("|"),"g");function n2(e,t){for(var r=[],n=0,a=0,i="",o=t&&t.delimiter||"/",s;(s=D7e.exec(e))!=null;){var l=s[0],d=s[1],u=s.index;if(i+=e.slice(a,u),a=u+l.length,d){i+=d[1];continue}var c=e[a],h=s[2],m=s[3],f=s[4],g=s[5],v=s[6],y=s[7];i&&(r.push(i),i="");var b=h!=null&&c!=null&&c!==h,S=v==="+"||v==="*",w=v==="?"||v==="*",_=s[2]||o,A=f||g;r.push({name:m||n++,prefix:h||"",delimiter:_,optional:w,repeat:S,partial:b,asterisk:!!y,pattern:A?R7e(A):y?".*":"[^"+Kv(_)+"]+?"})}return a<e.length&&(i+=e.substr(a)),i&&r.push(i),r}function x7e(e,t){return PG(n2(e,t),t)}function O7e(e){return encodeURI(e).replace(/[\/?#]/g,function(t){return"%"+t.charCodeAt(0).toString(16).toUpperCase()})}function M7e(e){return encodeURI(e).replace(/[?#]/g,function(t){return"%"+t.charCodeAt(0).toString(16).toUpperCase()})}function PG(e,t){for(var r=new Array(e.length),n=0;n<e.length;n++)typeof e[n]=="object"&&(r[n]=new RegExp("^(?:"+e[n].pattern+")$",i2(t)));return function(a,i){for(var o="",s=a||{},l=i||{},d=l.pretty?O7e:encodeURIComponent,u=0;u<e.length;u++){var c=e[u];if(typeof c=="string"){o+=c;continue}var h=s[c.name],m;if(h==null)if(c.optional){c.partial&&(o+=c.prefix);continue}else throw new TypeError('Expected "'+c.name+'" to be defined');if(C_(h)){if(!c.repeat)throw new TypeError('Expected "'+c.name+'" to not repeat, but received `'+JSON.stringify(h)+"`");if(h.length===0){if(c.optional)continue;throw new TypeError('Expected "'+c.name+'" to not be empty')}for(var f=0;f<h.length;f++){if(m=d(h[f]),!r[u].test(m))throw new TypeError('Expected all "'+c.name+'" to match "'+c.pattern+'", but received `'+JSON.stringify(m)+"`");o+=(f===0?c.prefix:c.delimiter)+m}continue}if(m=c.asterisk?M7e(h):d(h),!r[u].test(m))throw new TypeError('Expected "'+c.name+'" to match "'+c.pattern+'", but received "'+m+'"');o+=c.prefix+m}return o}}function Kv(e){return e.replace(/([.+*?=^!:${}()[\]|\/\\])/g,"\\$1")}function R7e(e){return e.replace(/([=!:$\/()])/g,"\\$1")}function a2(e,t){return e.keys=t,e}function i2(e){return e&&e.sensitive?"":"i"}function L7e(e,t){var r=e.source.match(/\((?!\?)/g);if(r)for(var n=0;n<r.length;n++)t.push({name:n,prefix:null,delimiter:null,optional:!1,repeat:!1,partial:!1,asterisk:!1,pattern:null});return a2(e,t)}function P7e(e,t,r){for(var n=[],a=0;a<e.length;a++)n.push(zG(e[a],t,r).source);var i=new RegExp("(?:"+n.join("|")+")",i2(r));return a2(i,t)}function $7e(e,t,r){return $G(n2(e,r),t,r)}function $G(e,t,r){C_(t)||(r=t||r,t=[]),r=r||{};for(var n=r.strict,a=r.end!==!1,i="",o=0;o<e.length;o++){var s=e[o];if(typeof s=="string")i+=Kv(s);else{var l=Kv(s.prefix),d="(?:"+s.pattern+")";t.push(s),s.repeat&&(d+="(?:"+l+d+")*"),s.optional?s.partial?d=l+"("+d+")?":d="(?:"+l+"("+d+"))?":d=l+"("+d+")",i+=d}}var u=Kv(r.delimiter||"/"),c=i.slice(-u.length)===u;return n||(i=(c?i.slice(0,-u.length):i)+"(?:"+u+"(?=$))?"),a?i+="$":i+=n&&c?"":"(?="+u+"|$)",a2(new RegExp("^"+i,i2(r)),t)}function zG(e,t,r){return C_(t)||(r=t||r,t=[]),r=r||{},e instanceof RegExp?L7e(e,t):C_(e)?P7e(e,t,r):$7e(e,t,r)}var NG=qc.exports,E_={exports:{}},rr={};/** @license React v16.13.1
79
79
  * react-is.production.min.js
80
80
  *
81
81
  * Copyright (c) Facebook, Inc. and its affiliates.
@@ -85,7 +85,7 @@ and limitations under the License.
85
85
  */var rn=typeof Symbol=="function"&&Symbol.for,o2=rn?Symbol.for("react.element"):60103,s2=rn?Symbol.for("react.portal"):60106,kw=rn?Symbol.for("react.fragment"):60107,Cw=rn?Symbol.for("react.strict_mode"):60108,Ew=rn?Symbol.for("react.profiler"):60114,Iw=rn?Symbol.for("react.provider"):60109,Dw=rn?Symbol.for("react.context"):60110,l2=rn?Symbol.for("react.async_mode"):60111,xw=rn?Symbol.for("react.concurrent_mode"):60111,Ow=rn?Symbol.for("react.forward_ref"):60112,Mw=rn?Symbol.for("react.suspense"):60113,z7e=rn?Symbol.for("react.suspense_list"):60120,Rw=rn?Symbol.for("react.memo"):60115,Lw=rn?Symbol.for("react.lazy"):60116,N7e=rn?Symbol.for("react.block"):60121,F7e=rn?Symbol.for("react.fundamental"):60117,B7e=rn?Symbol.for("react.responder"):60118,W7e=rn?Symbol.for("react.scope"):60119;function pa(e){if(typeof e=="object"&&e!==null){var t=e.$$typeof;switch(t){case o2:switch(e=e.type,e){case l2:case xw:case kw:case Ew:case Cw:case Mw:return e;default:switch(e=e&&e.$$typeof,e){case Dw:case Ow:case Lw:case Rw:case Iw:return e;default:return t}}case s2:return t}}}function FG(e){return pa(e)===xw}rr.AsyncMode=l2;rr.ConcurrentMode=xw;rr.ContextConsumer=Dw;rr.ContextProvider=Iw;rr.Element=o2;rr.ForwardRef=Ow;rr.Fragment=kw;rr.Lazy=Lw;rr.Memo=Rw;rr.Portal=s2;rr.Profiler=Ew;rr.StrictMode=Cw;rr.Suspense=Mw;rr.isAsyncMode=function(e){return FG(e)||pa(e)===l2};rr.isConcurrentMode=FG;rr.isContextConsumer=function(e){return pa(e)===Dw};rr.isContextProvider=function(e){return pa(e)===Iw};rr.isElement=function(e){return typeof e=="object"&&e!==null&&e.$$typeof===o2};rr.isForwardRef=function(e){return pa(e)===Ow};rr.isFragment=function(e){return pa(e)===kw};rr.isLazy=function(e){return pa(e)===Lw};rr.isMemo=function(e){return pa(e)===Rw};rr.isPortal=function(e){return pa(e)===s2};rr.isProfiler=function(e){return pa(e)===Ew};rr.isStrictMode=function(e){return pa(e)===Cw};rr.isSuspense=function(e){return pa(e)===Mw};rr.isValidElementType=function(e){return typeof e=="string"||typeof e=="function"||e===kw||e===xw||e===Ew||e===Cw||e===Mw||e===z7e||typeof e=="object"&&e!==null&&(e.$$typeof===Lw||e.$$typeof===Rw||e.$$typeof===Iw||e.$$typeof===Dw||e.$$typeof===Ow||e.$$typeof===F7e||e.$$typeof===B7e||e.$$typeof===W7e||e.$$typeof===N7e)};rr.typeOf=pa;E_.exports=rr;var u2=E_.exports,H7e={childContextTypes:!0,contextType:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromError:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},j7e={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},U7e={$$typeof:!0,render:!0,defaultProps:!0,displayName:!0,propTypes:!0},BG={$$typeof:!0,compare:!0,defaultProps:!0,displayName:!0,propTypes:!0,type:!0},d2={};d2[u2.ForwardRef]=U7e;d2[u2.Memo]=BG;function wF(e){return u2.isMemo(e)?BG:d2[e.$$typeof]||H7e}var V7e=Object.defineProperty,G7e=Object.getOwnPropertyNames,SF=Object.getOwnPropertySymbols,q7e=Object.getOwnPropertyDescriptor,K7e=Object.getPrototypeOf,AF=Object.prototype;function WG(e,t,r){if(typeof t!="string"){if(AF){var n=K7e(t);n&&n!==AF&&WG(e,n,r)}var a=G7e(t);SF&&(a=a.concat(SF(t)));for(var i=wF(e),o=wF(t),s=0;s<a.length;++s){var l=a[s];if(!j7e[l]&&!(r&&r[l])&&!(o&&o[l])&&!(i&&i[l])){var d=q7e(t,l);try{V7e(e,l,d)}catch{}}}}return e}var Q7e=WG,Z7e=Q7e,HG=function(t){var r=E7e();return r.displayName=t,r},Y7e=HG("Router-History"),Ps=HG("Router"),Pw=function(e){Dn(t,e),t.computeRootMatch=function(a){return{path:"/",url:"/",params:{},isExact:a==="/"}};function t(n){var a;return a=e.call(this,n)||this,a.state={location:n.history.location},a._isMounted=!1,a._pendingLocation=null,n.staticContext||(a.unlisten=n.history.listen(function(i){a._pendingLocation=i})),a}var r=t.prototype;return r.componentDidMount=function(){var a=this;this._isMounted=!0,this.unlisten&&this.unlisten(),this.props.staticContext||(this.unlisten=this.props.history.listen(function(i){a._isMounted&&a.setState({location:i})})),this._pendingLocation&&this.setState({location:this._pendingLocation})},r.componentWillUnmount=function(){this.unlisten&&(this.unlisten(),this._isMounted=!1,this._pendingLocation=null)},r.render=function(){return q.createElement(Ps.Provider,{value:{history:this.props.history,location:this.state.location,match:t.computeRootMatch(this.state.location.pathname),staticContext:this.props.staticContext}},q.createElement(Y7e.Provider,{children:this.props.children||null,value:this.props.history}))},t}(q.Component);q.Component;var X7e=function(e){Dn(t,e);function t(){return e.apply(this,arguments)||this}var r=t.prototype;return r.componentDidMount=function(){this.props.onMount&&this.props.onMount.call(this,this)},r.componentDidUpdate=function(a){this.props.onUpdate&&this.props.onUpdate.call(this,this,a)},r.componentWillUnmount=function(){this.props.onUnmount&&this.props.onUnmount.call(this,this)},r.render=function(){return null},t}(q.Component),oA={},J7e=1e4,TF=0;function e9e(e){if(oA[e])return oA[e];var t=NG.compile(e);return TF<J7e&&(oA[e]=t,TF++),t}function kF(e,t){return e===void 0&&(e="/"),t===void 0&&(t={}),e==="/"?e:e9e(e)(t,{pretty:!0})}function jG(e){var t=e.computedMatch,r=e.to,n=e.push,a=n===void 0?!1:n;return q.createElement(Ps.Consumer,null,function(i){i||Po(!1);var o=i.history,s=i.staticContext,l=a?o.push:o.replace,d=Cn(t?typeof r=="string"?kF(r,t.params):Mr({},r,{pathname:kF(r.pathname,t.params)}):r);return s?(l(d),null):q.createElement(X7e,{onMount:function(){l(d)},onUpdate:function(c,h){var m=Cn(h.to);h7e(m,Mr({},d,{key:m.key}))||l(d)},to:r})})}var CF={},t9e=1e4,EF=0;function r9e(e,t){var r=""+t.end+t.strict+t.sensitive,n=CF[r]||(CF[r]={});if(n[e])return n[e];var a=[],i=NG(e,a,t),o={regexp:i,keys:a};return EF<t9e&&(n[e]=o,EF++),o}function c2(e,t){t===void 0&&(t={}),(typeof t=="string"||Array.isArray(t))&&(t={path:t});var r=t,n=r.path,a=r.exact,i=a===void 0?!1:a,o=r.strict,s=o===void 0?!1:o,l=r.sensitive,d=l===void 0?!1:l,u=[].concat(n);return u.reduce(function(c,h){if(!h&&h!=="")return null;if(c)return c;var m=r9e(h,{end:i,strict:s,sensitive:d}),f=m.regexp,g=m.keys,v=f.exec(e);if(!v)return null;var y=v[0],b=v.slice(1),S=e===y;return i&&!S?null:{path:h,url:h==="/"&&y===""?"/":y,isExact:S,params:g.reduce(function(w,_,A){return w[_.name]=b[A],w},{})}},null)}function n9e(e){return q.Children.count(e)===0}var Qa=function(e){Dn(t,e);function t(){return e.apply(this,arguments)||this}var r=t.prototype;return r.render=function(){var a=this;return q.createElement(Ps.Consumer,null,function(i){i||Po(!1);var o=a.props.location||i.location,s=a.props.computedMatch?a.props.computedMatch:a.props.path?c2(o.pathname,a.props):i.match,l=Mr({},i,{location:o,match:s}),d=a.props,u=d.children,c=d.component,h=d.render;return Array.isArray(u)&&n9e(u)&&(u=null),q.createElement(Ps.Provider,{value:l},l.match?u?typeof u=="function"?u(l):u:c?q.createElement(c,l):h?h(l):null:typeof u=="function"?u(l):null)})},t}(q.Component);function h2(e){return e.charAt(0)==="/"?e:"/"+e}function a9e(e,t){return e?Mr({},t,{pathname:h2(e)+t.pathname}):t}function i9e(e,t){if(!e)return t;var r=h2(e);return t.pathname.indexOf(r)!==0?t:Mr({},t,{pathname:t.pathname.substr(r.length)})}function IF(e){return typeof e=="string"?e:Nn(e)}function sA(e){return function(){Po(!1)}}function DF(){}q.Component;var o9e=function(e){Dn(t,e);function t(){return e.apply(this,arguments)||this}var r=t.prototype;return r.render=function(){var a=this;return q.createElement(Ps.Consumer,null,function(i){i||Po(!1);var o=a.props.location||i.location,s,l;return q.Children.forEach(a.props.children,function(d){if(l==null&&q.isValidElement(d)){s=d;var u=d.props.path||d.props.from;l=u?c2(o.pathname,Mr({},d.props,{path:u})):i.match}}),l?q.cloneElement(s,{location:o,computedMatch:l}):null})},t}(q.Component);function m2(e){var t="withRouter("+(e.displayName||e.name)+")",r=function(a){var i=a.wrappedComponentRef,o=fi(a,["wrappedComponentRef"]);return q.createElement(Ps.Consumer,null,function(s){return s||Po(!1),q.createElement(e,Mr({},o,s,{ref:i}))})};return r.displayName=t,r.WrappedComponent=e,Z7e(r,e)}q.useContext;q.Component;var s9e=function(e){Dn(t,e);function t(){for(var n,a=arguments.length,i=new Array(a),o=0;o<a;o++)i[o]=arguments[o];return n=e.call.apply(e,[this].concat(i))||this,n.history=b7e(n.props),n}var r=t.prototype;return r.render=function(){return q.createElement(Pw,{history:this.history,children:this.props.children})},t}(q.Component),gC=function(t,r){return typeof t=="function"?t(r):t},vC=function(t,r){return typeof t=="string"?Cn(t,null,null,r):t},f2=function(t){return t},mc=q.forwardRef;typeof mc=="undefined"&&(mc=f2);function l9e(e){return!!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)}var u9e=mc(function(e,t){var r=e.innerRef,n=e.navigate,a=e.onClick,i=fi(e,["innerRef","navigate","onClick"]),o=i.target,s=Mr({},i,{onClick:function(d){try{a&&a(d)}catch(u){throw d.preventDefault(),u}!d.defaultPrevented&&d.button===0&&(!o||o==="_self")&&!l9e(d)&&(d.preventDefault(),n())}});return f2!==mc?s.ref=t||r:s.ref=r,q.createElement("a",s)}),$s=mc(function(e,t){var r=e.component,n=r===void 0?u9e:r,a=e.replace,i=e.to,o=e.innerRef,s=fi(e,["component","replace","to","innerRef"]);return q.createElement(Ps.Consumer,null,function(l){l||Po(!1);var d=l.history,u=vC(gC(i,l.location),l.location),c=u?d.createHref(u):"",h=Mr({},s,{href:c,navigate:function(){var f=gC(i,l.location),g=Nn(l.location)===Nn(vC(f)),v=a||g?d.replace:d.push;v(f)}});return f2!==mc?h.ref=t||o:h.innerRef=o,q.createElement(n,h)})}),UG=function(t){return t},I_=q.forwardRef;typeof I_=="undefined"&&(I_=UG);function d9e(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];return t.filter(function(n){return n}).join(" ")}var p2=I_(function(e,t){var r=e["aria-current"],n=r===void 0?"page":r,a=e.activeClassName,i=a===void 0?"active":a,o=e.activeStyle,s=e.className,l=e.exact,d=e.isActive,u=e.location,c=e.sensitive,h=e.strict,m=e.style,f=e.to,g=e.innerRef,v=fi(e,["aria-current","activeClassName","activeStyle","className","exact","isActive","location","sensitive","strict","style","to","innerRef"]);return q.createElement(Ps.Consumer,null,function(y){y||Po(!1);var b=u||y.location,S=vC(gC(f,b),b),w=S.pathname,_=w&&w.replace(/([.+*?=^!:${}()[\]|/\\])/g,"\\$1"),A=_?c2(b.pathname,{path:_,exact:l,sensitive:c,strict:h}):null,I=!!(d?d(A,b):A),k=typeof s=="function"?s(I):s,C=typeof m=="function"?m(I):m;I&&(k=d9e(k,i),C=Mr({},C,o));var T=Mr({"aria-current":I&&n||null,className:k,style:C,to:S},v);return UG!==I_?T.ref=t||g:T.innerRef=g,q.createElement($s,T)})});const c9e=hi.create(e=>{const t=vu(),{homeassistantEnabled:r,device:n,renameDevice:a,setDeviceDescription:i}=e,[o,s]=le.exports.useState(!1),[l,d]=le.exports.useState(n.friendly_name),[u,c]=le.exports.useState(n.description),{t:h}=Ct(["zigbee","common"]),m=async()=>{await a(n.friendly_name,l,o),t.remove()},f=async()=>{await i(n.friendly_name,u),t.remove()};return de(wp,{isOpen:t.visible,children:[de(yp,{children:[x("h3",{children:h("rename_device")}),x("small",{children:n.friendly_name})]}),de(_p,{children:[de("div",{className:"card",children:[de("div",{className:"card-body",children:[de("div",{className:"mb-3",children:[x("label",{className:"form-label",children:h("friendly_name")}),x("input",{onChange:g=>d(g.target.value),type:"text",className:"form-control",value:l})]}),r?de("div",{className:"form-check form-switch",children:[x("input",{className:"form-check-input",checked:o,type:"checkbox",id:`hass${n.ieee_address}`,onChange:g=>s(g.target.checked)}),x("label",{className:"form-check-label",htmlFor:`hass${n.ieee_address}`,children:h("update_Home_assistant_entity_id")})]}):null]}),x("div",{className:"card-footer",children:x("button",{type:"button",className:"btn btn-primary",onClick:m,children:h("zigbee:rename_device")})})]}),de("div",{className:"card",children:[x("div",{className:"card-body",children:de("div",{className:"mb-3",children:[x("label",{className:"form-label",children:h("description")}),x("textarea",{rows:3,onChange:g=>c(g.target.value),className:"form-control",value:u})]})}),x("div",{className:"card-footer",children:x("button",{type:"button",className:"btn btn-primary",onClick:f,children:h("zigbee:save_description")})})]})]}),x(bp,{children:x("button",{type:"button",className:"btn btn-secondary",onClick:t.remove,children:h("common:close")})})]})}),h9e=hi.create(e=>{const t=vu(),{t:r}=Ct(["zigbee","common"]),{device:n,removeDevice:a}=e,[i,o]=le.exports.useState({block:!1,force:!1}),s=[{label:r("force_remove"),name:"force",value:i.force},{label:r("block_join"),name:"block",value:i.block}],l=u=>{const{checked:c,name:h}=u.target;o(He(Se({},i),{[h]:c}))},d=()=>{a(n.friendly_name,i.force,i.block),t.remove()};return de(wp,{isOpen:t.visible,children:[de(yp,{children:[x("h3",{children:r("remove_device")}),x("small",{children:n.friendly_name})]}),x(_p,{children:s.map(u=>{const c=`${u.name}${n.ieee_address}`;return de("div",{className:"form-check form-switch",children:[x("input",{className:"form-check-input",name:u.name,checked:u.value,type:"checkbox",id:c,onChange:l}),x("label",{className:"form-check-label",htmlFor:c,children:u.label})]},u.name)})}),de(bp,{children:[x("button",{type:"button",className:"btn btn-secondary",onClick:t.remove,children:r("common:close")}),x("button",{type:"button",className:"btn btn-danger",onClick:d,children:r("common:delete")})]})]})});function VG(e){const{homeassistantEnabled:t,device:r,configureDevice:n,renameDevice:a,removeDevice:i,setDeviceDescription:o}=e,{t:s}=Ct(["zigbee","common"]);return de("div",{className:"btn-group btn-group-sm",role:"group",children:[x(yt,{className:"btn btn-primary",onClick:()=>hi.show(c9e,{device:r,renameDevice:a,setDeviceDescription:o,homeassistantEnabled:t}),title:s("rename_device"),children:x("i",{className:"fa fa-edit"})}),x(yt,{className:"btn btn-warning",onClick:n,item:r.friendly_name,title:s("reconfigure"),prompt:!0,children:x("i",{className:et("fa","fa-retweet")})}),x("button",{onClick:()=>hi.show(h9e,{device:r,removeDevice:i}),className:"btn btn-danger",title:s("remove_device"),children:x("i",{className:et("fa","fa-trash")})})]})}var GG={"device-pic":"_device-pic_iu1xf_1","small-nav":"_small-nav_iu1xf_5"};const xF=e=>{const t="[/| |:]",r=new RegExp(t,"g");return e.replace(r,"_")},g2=e=>{const{t}=Ct("zigbee"),{device:r}=e;if(r.supported&&r.definition){const n=`https://www.zigbee2mqtt.io/supported-devices/#v=${encodeURIComponent(r.definition.vendor)}`;return x("a",{target:"_blank",rel:"noopener noreferrer",href:n,children:r.definition.vendor})}return x(le.exports.Fragment,{children:t("unsupported")})},v2=e=>{var i,o,s,l,d;const{device:t,anchor:r}=e;let n="https://www.zigbee2mqtt.io/advanced/support-new-devices/01_support_new_devices.html",a=t.model_id;if(t.supported&&t.definition){const u=[encodeURIComponent((o=(i=t.definition)==null?void 0:i.vendor)==null?void 0:o.toLowerCase()),encodeURIComponent((l=(s=t.definition)==null?void 0:s.model)==null?void 0:l.toLowerCase())].join("-");n=`https://www.zigbee2mqtt.io/devices/${encodeURIComponent(xF((d=t.definition)==null?void 0:d.model))}.html#${encodeURIComponent(xF(r||u))}`,a=t.definition.model}return x("a",{target:"_blank",rel:"noopener noreferrer",href:n,children:a})},m9e=e=>{var a,i,o,s;const{device:t}=e;let r="";const n=t.software_build_id;switch((a=t==null?void 0:t.definition)==null?void 0:a.vendor){case"IKEA":r="https://ww8.ikea.com/ikeahomesmart/releasenotes/releasenotes.html";break;case"Philips":r=`https://www.philips-hue.com/en-us/support/release-notes/${(i=t.definition)!=null&&i.exposes.find(l=>l.type==="light")?"lamps":"accessories"}`;break;case"Ubisys":r=`https://www.ubisys.de/en/support/firmware/changelog-${(s=(o=t.definition)==null?void 0:o.model)==null?void 0:s.replace(/[-]/g,"").toLowerCase()}/`;break}return r!=""?x("a",{target:"_blank",rel:"noopener noreferrer",href:r,children:n}):x(St,{children:n})},f9e="_plug_1sba2_1";var p9e={plug:f9e};const yC=e=>(e+"").toLowerCase().replace(/\s/g,"_").replace(/[^a-z0-9_]/g,""),y2=i=>{var o=i,{source:e,battery:t,batteryLow:r,showLevel:n}=o,a=Mt(o,["source","battery","batteryLow","showLevel"]);const{t:s}=Ct("zigbee");let l="";switch(e){case"Battery":let d=s(yC(e));if(r!==void 0&&(l=r?"fa-battery-empty animation-blinking text-danger":"fa-battery-full text-success",d+=r?" LOW":" OK"),t!==void 0)if(t>=85)l+=" fa-battery-full";else if(t>=75)l+=" fa-battery-three-quarters";else if(t>=50)l+=" fa-battery-half";else if(t>=25)l+=" fa-battery-quarter";else if(t>=10)l+=" fa-battery-empty animation-blinking";else return de("span",{className:"animation-blinking text-danger",role:"alert",children:[t,"%"]});return d+=`${t?", "+s("power_level")+` ${t}%`:""}`,l||(l="fa-question"),de(le.exports.Fragment,{children:[n?de("span",{className:"pe-2",children:[s("battery")," ",t!==void 0?`${t}%`:null]}):null,x("i",Se({className:`fa ${l}`,title:d},a))]});case"Mains (single phase)":case"DC Source":return x("i",Se({className:`fa fa-plug ${p9e.plug}`,title:s(yC(e))},a));default:return x("i",Se({className:"fa fa-question",title:e},a))}};var g9e=["second","minute","hour","day","week","month","year"];function v9e(e,t){if(t===0)return["just now","right now"];var r=g9e[Math.floor(t/2)];return e>1&&(r+="s"),[e+" "+r+" ago","in "+e+" "+r]}var y9e=["\u79D2","\u5206\u949F","\u5C0F\u65F6","\u5929","\u5468","\u4E2A\u6708","\u5E74"];function _9e(e,t){if(t===0)return["\u521A\u521A","\u7247\u523B\u540E"];var r=y9e[~~(t/2)];return[e+" "+r+"\u524D",e+" "+r+"\u540E"]}var _C={},Wr=function(e,t){_C[e]=t},b9e=function(e){return _C[e]||_C.en_US},lA=[60,60,24,7,365/7/12,12];function OF(e){return e instanceof Date?e:!isNaN(e)||/^\d+$/.test(e)?new Date(parseInt(e)):(e=(e||"").trim().replace(/\.\d+/,"").replace(/-/,"/").replace(/-/,"/").replace(/(\d)T(\d)/,"$1 $2").replace(/Z/," UTC").replace(/([+-]\d\d):?(\d\d)/," $1$2"),new Date(e))}function w9e(e,t){var r=e<0?1:0;e=Math.abs(e);for(var n=e,a=0;e>=lA[a]&&a<lA.length;a++)e/=lA[a];return e=Math.floor(e),a*=2,e>(a===0?9:1)&&(a+=1),t(e,a,n)[r].replace("%s",e.toString())}function S9e(e,t){var r=t?OF(t):new Date;return(+r-+OF(e))/1e3}var A9e=function(e,t,r){var n=S9e(e,r&&r.relativeDate);return w9e(n,b9e(t))};Wr("en_US",v9e);Wr("zh_CN",_9e);function _2(e){const{i18n:t}=Ct(),{state:r,lastSeenType:n}=e,a=_9(r,n);return a?x(St,{children:A9e(a,t.language)}):x(St,{children:"N/A"})}function T9e(e){const{value:t,name:r}=e,{t:n}=Ct("values"),a={contact:new Map([[!0,n("closed")],[!1,n("open")]]),occupancy:new Map([[!0,n("occupied")],[!1,n("clear")]]),water_leak:new Map([[!0,x("span",{className:et("text-danger","animation-blinking"),children:n("leaking")},"Leaking")],[!1,n("clear")]]),tamper:new Map([[!0,x("span",{className:et("text-danger","animation-blinking"),children:n("tampered")},"tampered")],[!1,n("clear")]]),supported:new Map([[!0,n("supported")],[!1,n("not_supported")]]),_default:new Map([[!0,n("true")],[!1,n("false")]])},i=a[r]||a._default;return x(St,{children:i.get(t)})}function fc(e){const{t}=Ct("values"),{value:r}=e;switch(typeof r){case"boolean":return x(T9e,Se({},e));case"undefined":return x(St,{children:"N/A"});case"object":return x(St,{children:r===null?t("null"):JSON.stringify(r)});case"string":return x(St,{children:r===""?x("small",{className:"text-muted",children:t("empty_string")}):r});default:return x(St,{children:JSON.stringify(r)})}}var k9e=Ks,C9e=tn,E9e=gi,I9e="[object String]";function D9e(e){return typeof e=="string"||!C9e(e)&&E9e(e)&&k9e(e)==I9e}var qG=D9e;function KG(e){const{t}=Ct(["avaliability"]),{availability:r,availabilityFeatureEnabled:n=!0,availabilityEnabledForDevice:a=!0}=e;let i;return qG(r)?i=r:i=r.state,i=i.toLowerCase(),n&&a?x("span",{className:et({"text-danger animation-blinking":i==="offline","text-success":r==="online"}),children:t(i)}):x("a",{target:"_blank",rel:"noopener noreferrer",href:"https://www.zigbee2mqtt.io/guide/configuration/device-availability.html#availability-advanced-configuration",children:t("disabled")})}const x9e=/\[(.*?)]\((.*?)\)/,O9e=[{translationKey:"friendly_name",render:e=>x("dd",{className:"col-12 col-md-7",children:x("strong",{children:e.friendly_name})})},{translationKey:"zigbee:description",render:e=>x("dd",{className:"col-12 col-md-7",children:x("pre",{children:e.description})})},{translationKey:"last_seen",render:(e,t,r)=>x("dd",{className:"col-12 col-md-7",children:x(_2,{lastSeenType:r.config.advanced.last_seen,state:t})})},{translationKey:"avaliability:avaliability",render:(e,t,r,n)=>{var s;const{config:a}=r,i=!!a.availability,o=((s=a.devices[e.ieee_address])==null?void 0:s.availability)!==!1;return x("dd",{className:"col-12 col-md-7",children:x(KG,{availability:n,availabilityFeatureEnabled:i,availabilityEnabledForDevice:o})})}},{key:"type",translationKey:"device_type"},{key:"model_id",translationKey:"zigbee_model"},{key:"manufacturer",translationKey:"zigbee_manufacturer"},{key:"definition.description",translationKey:"description",if:"supported",render:e=>{var n,a;const t=x9e.exec((n=e.definition)==null?void 0:n.description);let r=x("span",{children:(a=e.definition)==null?void 0:a.description});if(t){const[i,o,s]=t;r=x("a",{target:"_blank",rel:"noopener noreferrer",href:s,children:o})}return x("dd",{className:"col-12 col-md-7",children:r})}},{render:e=>x("dd",{className:"col-12 col-md-7",children:x("p",{className:et("mb-0","font-weight-bold",{"text-danger":!e.supported,"text-success":e.supported}),children:x(fc,{name:"supported",value:e.supported})})}),translationKey:"support_status"},{key:"ieee_address",translationKey:"ieee_address"},{key:"network_address",translationKey:"network_address",render:e=>x("dd",{className:"col-12 col-md-7",children:Jk(e.network_address)})},{key:"date_code",translationKey:"firmware_build_date",if:"date_code"},{key:"software_build_id",translationKey:"firmware_version",if:"software_build_id"},{key:"definition.vendor",translationKey:"manufacturer",if:"supported",render:e=>x("dd",{className:"col-12 col-md-7",children:x(g2,{device:e})})},{key:"definition.model",translationKey:"model",if:"supported",render:e=>x("dd",{className:"col-12 col-md-7",children:x(v2,{device:e})})},{translationKey:"power",render:(e,t)=>x("dd",{className:"col-12 col-md-7",children:x(y2,{showLevel:!0,source:e.power_source,battery:t.battery,batteryLow:t.battery_low})})},{translationKey:"interview_completed",render:e=>x("dd",{className:"col-12 col-md-7",children:x(fc,{name:"interview_completed",value:e.interview_completed})})}];class M9e extends le.exports.Component{render(){var h,m;const{device:t,deviceStates:r,bridgeInfo:n,availability:a,t:i}=this.props,{configureDevice:o,renameDevice:s,removeDevice:l,setDeviceDescription:d}=this.props,u=!!((h=n.config)!=null&&h.homeassistant),c=(m=r[t.friendly_name])!=null?m:{};return de(le.exports.Fragment,{children:[x("div",{className:"d-flex justify-content-center",children:x(cp,{className:`card-img-top w-auto ${GG["device-pic"]}`,device:t,deviceStatus:c})}),x("dl",{className:"row",children:O9e.filter(f=>f.if===void 0||cc(t,f.if,!1)).map(f=>{var g;return de(le.exports.Fragment,{children:[x("dt",{className:"col-12 col-md-5",children:i(f.translationKey)}),f.render?f.render(t,c,n,(g=a[t.friendly_name])!=null?g:"offline"):x("dd",{className:"col-12 col-md-7",children:cc(t,f.key)})]},f.translationKey)})}),x(VG,{device:t,state:c,homeassistantEnabled:u,configureDevice:o,renameDevice:s,removeDevice:l,setDeviceDescription:d})]})}}const R9e=["deviceStates","bridgeInfo","availability"],L9e=Mn("zigbee")($r(R9e,Br)(M9e));function QG(e){const{t}=Ct("common"),c=e,{devices:r,value:n,label:a,onChange:i,groups:o=[]}=c,s=Mt(c,["devices","value","label","onChange","groups"]),l=h=>{const{value:m}=h.target;if(r[m])i(r[m],"device");else{const f=o.find(g=>parseInt(m,10)===g.id);i(f,"group")}};let d=[x("option",{hidden:!0,children:t("select_device")},"hidden")];const u=[];if(Object.values(r).sort((h,m)=>h.friendly_name.localeCompare(m.friendly_name)).forEach(h=>{var m;u.push(x("option",{title:(m=h.definition)==null?void 0:m.description,value:h.ieee_address,children:Rze(h)},h.ieee_address))}),o&&o.length){const h=o.map(m=>x("option",{value:m.id,children:m.friendly_name},m.friendly_name));d.push(x("optgroup",{label:t("groups"),children:h},"Groups")),d.push(x("optgroup",{label:t("devices"),children:u},"Devices"))}else d=d.concat(u);return de("div",{className:"form-group",children:[a&&x("label",{className:"form-label",children:a}),x("select",He(Se({value:n,onChange:l,className:"form-control"},s),{children:d}))]})}function hf(e){const c=e,{value:t,values:r,disabled:n,onChange:a,label:i}=c,o=Mt(c,["value","values","disabled","onChange","label"]),{t:s}=Ct("common"),l=h=>{a(h.target.value)},d=r.length==1,u=r.map(h=>x("option",{value:h,children:h},h));return u.unshift(x("option",{hidden:!0,children:s("select_endpoint")},"hided")),de("div",{className:"form-group",children:[i&&x("label",{className:"form-label",children:i}),x("select",He(Se({disabled:t&&d||n,value:t,className:"form-control",title:d?s("the_only_endpoint"):"",onChange:l},o),{children:u}))]})}function P9e(e){const[t]=le.exports.useState(Rx(5)),{clusters:r=[],onChange:n,label:a,value:i,disabled:o}=e;let s=[];const l=d=>{const{checked:u,name:c}=d.target;let h=[...i];u?h.push(c):h=h.filter(m=>m!==c),n(h)};return ZG(r)?console.warn("Not implemented"):s=[...r].sort((d,u)=>d.toString().localeCompare(u.toString())).map(d=>{var u;return de("div",{className:"form-check form-check-inline",children:[x("input",{className:"form-check-input",type:"checkbox",checked:i.includes(d),name:d,id:`${t}_${d}`,value:d,onChange:l,disabled:o}),x("label",{className:"form-check-label",htmlFor:`${t}_${d}`,title:d,children:(u=bC[d])!=null?u:d})]},d)}),de("div",{className:"form-group",children:[a&&x("label",{className:"form-label",children:a}),x("div",{className:"form-control border-0",children:s})]})}function $9e(e){const[t]=le.exports.useState(Rx(5)),{clusters:r=[],onChange:n,value:a,label:i,disabled:o}=e,{t:s}=Ct(["zigbee","common"]),l=[x("option",{hidden:!0,children:s("select_cluster")},"hidden")],d=u=>{n(u.target.value)};return ZG(r)?r.forEach(u=>{const c=u.clusters.map(h=>{var m;return x("option",{value:h,children:(m=bC[h])!=null?m:h},h)});c.length===0&&c.push(x("option",{disabled:!0,children:s("none")},"none")),l.push(x("optgroup",{label:s(u.name),children:c},u.name))}):r.forEach(u=>{var c;l.push(x("option",{value:u,children:(c=bC[u])!=null?c:u},u))}),de("div",{className:"form-group",children:[i&&x("label",{htmlFor:t,className:"form-label",children:i}),x("select",{id:t,value:a,className:"form-select",onChange:d,disabled:o,children:l})]})}const bC={genPowerCfg:"PowerCfg",genScenes:"Scenes",genOnOff:"OnOff",genLevelCtrl:"LevelCtrl",lightingColorCtrl:"LColorCtrl",closuresWindowCovering:"Closures",genMultistateInput:"MultistateInput",genGroups:"Groups",genOta:"Ota",touchlink:"Touchlink",genIdentify:"Identify",msTemperatureMeasurement:"Temperature",msIlluminanceMeasurement:"Illuminance",msRelativeHumidity:"Humidity",msPressureMeasurement:"Pressure",msSoilMoisture:"Soil Moisture"};var $w=(e=>(e[e.MULTIPLE=0]="MULTIPLE",e[e.SINGLE=1]="SINGLE",e))($w||{});function ZG(e){return e.length>0&&typeof e[0]!="string"}function b2(e){const{pickerType:t,onChange:r,clusters:n,value:a,label:i,disabled:o}=e;return t===0?x(P9e,{onChange:r,clusters:n,value:a,disabled:o,label:i}):x($9e,{onChange:r,clusters:n,value:a,disabled:o,label:i})}const z9e=(e,t,r)=>{var n;return e.target.type==="group"?r.find(a=>a.id===e.target.id):t[(n=e.target)==null?void 0:n.ieee_address]};class N9e extends le.exports.Component{constructor(){super(...arguments),this.state={stateRule:{}},this.setSourceEp=t=>{const{stateRule:r}=this.state;r.source.endpoint=t,this.setState({stateRule:r})},this.setDestination=(t,r)=>{const{stateRule:n}=this.state;if(r==="device"){const a=Fl(t);n.target.ieee_address=t.ieee_address,n.target.type="endpoint",n.target.endpoint=a[0],delete n.target.id}else r==="group"&&(n.target.id=t.id,n.target.type="group",delete n.target.ieee_address);n.clusters=[],this.setState({stateRule:n})},this.setDestinationEp=t=>{const{stateRule:r}=this.state;r.target.endpoint=t,r.clusters=[],this.setState({stateRule:r})},this.setClusters=t=>{const{stateRule:r}=this.state;r.clusters=t,this.setState({stateRule:r})},this.onBindOrUnBindClick=t=>{const{onUnBind:r,onBind:n}=this.props,{from:a,to:i,clusters:o}=this.getBidingParams();t=="Bind"?n({from:a,to:i,clusters:o}):r({from:a,to:i,clusters:o})}}static getDerivedStateFromProps(t,r){const{rule:n}=t;return{stateRule:n}}getBidingParams(){var s;const{device:t,groups:r,devices:n}=this.props,{stateRule:a}=this.state,i=`${t.friendly_name}/${a.source.endpoint}`;let o="";if(a.target.type==="group")o=`${r.find(d=>d.id===a.target.id).friendly_name}`;else if(a.target.type==="endpoint"){const l=n[(s=a.target)==null?void 0:s.ieee_address];l.type==="Coordinator"?o=`${l.friendly_name}`:o=`${l.friendly_name}/${a.target.endpoint}`}return{from:i,to:o,clusters:a.clusters}}isValidRule(){const{stateRule:t}=this.state;let r;return t.target.type=="endpoint"?r=t.source.endpoint&&t.target.ieee_address&&t.target.endpoint&&t.clusters.length>0:t.target.type=="group"&&(r=t.source.endpoint&&t.target.id&&t.clusters.length>0),!!r}render(){const{devices:t,groups:r,device:n,t:a}=this.props,{stateRule:i}=this.state,o=Fl(n),s=z9e(i,t,r),l=Fl(s),d=new Set(i.clusters),u=n.endpoints[i.source.endpoint];return u&&u.clusters.output.forEach(c=>d.add(c)),de("div",{className:"row pb-2 border-bottom",children:[x("div",{className:"col-md-2",children:x(hf,{label:a("source_endpoint"),disabled:!i.isNew,values:o,value:i.source.endpoint,onChange:this.setSourceEp})}),x("div",{className:"col-md-2",children:x(QG,{label:a("destination"),disabled:!i.isNew,value:i.target.ieee_address||i.target.id,devices:t,groups:r,onChange:this.setDestination})}),x("div",{className:"col-md-2",children:i.target.type==="endpoint"?x(hf,{label:a("destination_endpoint"),disabled:!i.isNew,values:l,value:i.target.endpoint,onChange:this.setDestinationEp}):null}),x("div",{className:"col-md-4",children:x(b2,{label:a("clusters"),pickerType:$w.MULTIPLE,clusters:Array.from(d),value:i.clusters,onChange:this.setClusters})}),x("div",{className:"col-md-2",children:de("div",{className:"form-group",children:[x("label",{className:"form-label",children:"Actions"}),x("div",{className:"form-control border-0",children:de("div",{className:"btn-group btn-group-sm",children:[de(yt,{item:"Bind",disabled:!this.isValidRule(),title:a("bind"),className:"btn btn-primary",onClick:this.onBindOrUnBindClick,children:[a("bind"),"\xA0",x("i",{className:"fa fa-heart"})]}),de(yt,{item:"Unbind",disabled:!i.isNew&&!this.isValidRule(),title:a("unbind"),className:"btn btn-danger",onClick:this.onBindOrUnBindClick,children:[x("i",{className:"fa fa-heart-broken"}),"\xA0",a("unbind")]})]})})]})})]})}}var F9e=Mn(["common","zigbee"])(N9e);const B9e=e=>`${e.source.endpoint}-${e.isNew}${e.source.ieee_address}-${e.target.id}-${e.target.ieee_address}-${e.clusters.join("-")}`,W9e=e=>{const t={};return Object.entries(e.endpoints).forEach(([r,n])=>{n.bindings.forEach(a=>{var o;let i=(o=a.target.id)!=null?o:`${a.target.ieee_address}-${a.target.endpoint}`;i=`${i}-${r}`,t[i]?t[i].clusters.push(a.cluster):t[i]={source:{ieee_address:e.ieee_address,endpoint:r},target:a.target,clusters:[a.cluster]}})}),Object.values(t)};function H9e(e){const{device:t,devices:r,groups:n,removeBind:a,addBind:i}=e,[o]=le.exports.useState({isNew:Date.now(),target:{},source:{ieee_address:t.ieee_address,endpoint:""},clusters:[]}),s=W9e(t);return x("div",{className:"container-fluid",children:[...s,o].map((l,d)=>x(F9e,{rule:l,groups:n,onUnBind:a,onBind:i,device:t,idx:d,devices:r},B9e(l)))})}const j9e=["devices","groups"],U9e=$r(j9e,Br)(H9e);var V9e=gp,G9e=Bc;function q9e(e,t,r){(r!==void 0&&!G9e(e[t],r)||r===void 0&&!(t in e))&&V9e(e,t,r)}var YG=q9e,D_={exports:{}};(function(e,t){var r=pi,n=t&&!t.nodeType&&t,a=n&&!0&&e&&!e.nodeType&&e,i=a&&a.exports===n,o=i?r.Buffer:void 0,s=o?o.allocUnsafe:void 0;function l(d,u){if(u)return d.slice();var c=d.length,h=s?s(c):new d.constructor(c);return d.copy(h),h}e.exports=l})(D_,D_.exports);var MF=L9;function K9e(e){var t=new e.constructor(e.byteLength);return new MF(t).set(new MF(e)),t}var w2=K9e,Q9e=w2;function Z9e(e,t){var r=t?Q9e(e.buffer):e.buffer;return new e.constructor(r,e.byteOffset,e.length)}var XG=Z9e;function Y9e(e,t){var r=-1,n=e.length;for(t||(t=Array(n));++r<n;)t[r]=e[r];return t}var zw=Y9e,X9e=fa,RF=Object.create,J9e=function(){function e(){}return function(t){if(!X9e(t))return{};if(RF)return RF(t);e.prototype=t;var r=new e;return e.prototype=void 0,r}}(),eGe=J9e,tGe=F9,rGe=tGe(Object.getPrototypeOf,Object),S2=rGe,nGe=eGe,aGe=S2,iGe=_w;function oGe(e){return typeof e.constructor=="function"&&!iGe(e)?nGe(aGe(e)):{}}var JG=oGe,sGe=Ks,lGe=S2,uGe=gi,dGe="[object Object]",cGe=Function.prototype,hGe=Object.prototype,eq=cGe.toString,mGe=hGe.hasOwnProperty,fGe=eq.call(Object);function pGe(e){if(!uGe(e)||sGe(e)!=dGe)return!1;var t=lGe(e);if(t===null)return!0;var r=mGe.call(t,"constructor")&&t.constructor;return typeof r=="function"&&r instanceof r&&eq.call(r)==fGe}var A2=pGe;function gGe(e,t){if(!(t==="constructor"&&typeof e[t]=="function")&&t!="__proto__")return e[t]}var tq=gGe,vGe=gp,yGe=Bc,_Ge=Object.prototype,bGe=_Ge.hasOwnProperty;function wGe(e,t,r){var n=e[t];(!(bGe.call(e,t)&&yGe(n,r))||r===void 0&&!(t in e))&&vGe(e,t,r)}var T2=wGe,SGe=T2,AGe=gp;function TGe(e,t,r,n){var a=!r;r||(r={});for(var i=-1,o=t.length;++i<o;){var s=t[i],l=n?n(r[s],e[s],s,r,e):void 0;l===void 0&&(l=e[s]),a?AGe(r,s,l):SGe(r,s,l)}return r}var Ap=TGe;function kGe(e){var t=[];if(e!=null)for(var r in Object(e))t.push(r);return t}var CGe=kGe,EGe=fa,IGe=_w,DGe=CGe,xGe=Object.prototype,OGe=xGe.hasOwnProperty;function MGe(e){if(!EGe(e))return DGe(e);var t=IGe(e),r=[];for(var n in e)n=="constructor"&&(t||!OGe.call(e,n))||r.push(n);return r}var RGe=MGe,LGe=N9,PGe=RGe,$Ge=bu;function zGe(e){return $Ge(e)?LGe(e,!0):PGe(e)}var Kc=zGe,NGe=Ap,FGe=Kc;function BGe(e){return NGe(e,FGe(e))}var WGe=BGe,LF=YG,HGe=D_.exports,jGe=XG,UGe=zw,VGe=JG,PF=mp,$F=tn,GGe=Tw,qGe=eu.exports,KGe=Lx,QGe=fa,ZGe=A2,YGe=yw,zF=tq,XGe=WGe;function JGe(e,t,r,n,a,i,o){var s=zF(e,r),l=zF(t,r),d=o.get(l);if(d){LF(e,r,d);return}var u=i?i(s,l,r+"",e,t,o):void 0,c=u===void 0;if(c){var h=$F(l),m=!h&&qGe(l),f=!h&&!m&&YGe(l);u=l,h||m||f?$F(s)?u=s:GGe(s)?u=UGe(s):m?(c=!1,u=HGe(l,!0)):f?(c=!1,u=jGe(l,!0)):u=[]:ZGe(l)||PF(l)?(u=s,PF(s)?u=XGe(s):(!QGe(s)||KGe(s))&&(u=VGe(l))):c=!1}c&&(o.set(l,u),a(u,l,n,i,o),o.delete(l)),LF(e,r,u)}var eqe=JGe,tqe=fw,rqe=YG,nqe=Y9,aqe=eqe,iqe=fa,oqe=Kc,sqe=tq;function rq(e,t,r,n,a){e!==t&&nqe(t,function(i,o){if(a||(a=new tqe),iqe(i))aqe(e,t,o,r,rq,n,a);else{var s=n?n(sqe(e,o),i,o+"",e,t,a):void 0;s===void 0&&(s=i),rqe(e,o,s)}},oqe)}var k2=rq,lqe=Bc,uqe=bu,dqe=vw,cqe=fa;function hqe(e,t,r){if(!cqe(r))return!1;var n=typeof t;return(n=="number"?uqe(r)&&dqe(t,r.length):n=="string"&&t in r)?lqe(r[t],e):!1}var C2=hqe,mqe=Zs,fqe=C2;function pqe(e){return mqe(function(t,r){var n=-1,a=r.length,i=a>1?r[a-1]:void 0,o=a>2?r[2]:void 0;for(i=e.length>3&&typeof i=="function"?(a--,i):void 0,o&&fqe(r[0],r[1],o)&&(i=a<3?void 0:i,a=1),t=Object(t);++n<a;){var s=r[n];s&&e(t,s,n,i)}return t})}var nq=pqe,gqe=k2,vqe=nq,yqe=vqe(function(e,t,r){gqe(e,t,r)}),aq=yqe,iq={},E2={};Object.defineProperty(E2,"__esModule",{value:!0});var wC;(function(e){e[e.noData=0]="noData",e[e.data8=8]="data8",e[e.data16=9]="data16",e[e.data24=10]="data24",e[e.data32=11]="data32",e[e.data40=12]="data40",e[e.data48=13]="data48",e[e.data56=14]="data56",e[e.data64=15]="data64",e[e.boolean=16]="boolean",e[e.bitmap8=24]="bitmap8",e[e.bitmap16=25]="bitmap16",e[e.bitmap24=26]="bitmap24",e[e.bitmap32=27]="bitmap32",e[e.bitmap40=28]="bitmap40",e[e.bitmap48=29]="bitmap48",e[e.bitmap56=30]="bitmap56",e[e.bitmap64=31]="bitmap64",e[e.uint8=32]="uint8",e[e.uint16=33]="uint16",e[e.uint24=34]="uint24",e[e.uint32=35]="uint32",e[e.uint40=36]="uint40",e[e.uint48=37]="uint48",e[e.uint56=38]="uint56",e[e.uint64=39]="uint64",e[e.int8=40]="int8",e[e.int16=41]="int16",e[e.int24=42]="int24",e[e.int32=43]="int32",e[e.enum8=48]="enum8",e[e.enum16=49]="enum16",e[e.singlePrec=57]="singlePrec",e[e.doublePrec=58]="doublePrec",e[e.octetStr=65]="octetStr",e[e.charStr=66]="charStr",e[e.longOctetStr=67]="longOctetStr",e[e.longCharStr=68]="longCharStr",e[e.array=72]="array",e[e.struct=76]="struct",e[e.set=80]="set",e[e.bag=81]="bag",e[e.tod=224]="tod",e[e.date=225]="date",e[e.utc=226]="utc",e[e.clusterId=232]="clusterId",e[e.attrId=233]="attrId",e[e.bacOid=234]="bacOid",e[e.ieeeAddr=240]="ieeeAddr",e[e.secKey=241]="secKey",e[e.unknown=255]="unknown",e[e.int40=44]="int40",e[e.int48=45]="int48",e[e.int56=46]="int56",e[e.int64=47]="int64",e[e.semiPrec=56]="semiPrec"})(wC||(wC={}));var NF=E2.default=wC,I2={};Object.defineProperty(I2,"__esModule",{value:!0});var SC;(function(e){e[e.USE_DATA_TYPE=1e3]="USE_DATA_TYPE",e[e.LIST_UINT8=1001]="LIST_UINT8",e[e.LIST_UINT16=1002]="LIST_UINT16",e[e.LIST_UINT24=1003]="LIST_UINT24",e[e.LIST_UINT32=1004]="LIST_UINT32",e[e.LIST_ZONEINFO=1005]="LIST_ZONEINFO",e[e.EXTENSION_FIELD_SETS=1006]="EXTENSION_FIELD_SETS",e[e.LIST_THERMO_TRANSITIONS=1007]="LIST_THERMO_TRANSITIONS",e[e.BUFFER=1008]="BUFFER",e[e.GDP_FRAME=1009]="GDP_FRAME",e[e.STRUCTURED_SELECTOR=1010]="STRUCTURED_SELECTOR",e[e.LIST_TUYA_DATAPOINT_VALUES=1011]="LIST_TUYA_DATAPOINT_VALUES",e[e.LIST_MIBOXER_ZONES=1012]="LIST_MIBOXER_ZONES"})(SC||(SC={}));I2.default=SC;var D2={};Object.defineProperty(D2,"__esModule",{value:!0});const Za={PANASONIC_RF4CE:1,SONY_RF4CE:2,SAMSUNG_RF4CE:3,PHILIPS_RF4CE:4,FREESCALE_RF4CE:5,OKI_SEMI_RF4CE:6,TI_RF4CE:7,CIRRONET:4096,CHIPCON:4097,EMBER:4098,NTS:4099,FREESCALE:4100,IPCOM:4101,SAN_JUAN:4102,TUV:4103,COMPXS:4104,BM:4105,AWAREPOINT:4106,PHILIPS:4107,LUXOFT:4108,KORWIN:4109,_1_RF:4110,STG:4111,TELEGESIS:4112,VISIONIC:4113,INSTA:4114,ATALUM:4115,ATMEL:4116,DEVELCO:4117,HONEYWELL1:4118,RADIO_PULSE:4119,RENESAS:4120,XANADU:4121,NEC:4122,YAMATAKE:4123,TENDRIL:4124,ASSA:4125,MAXSTREAM:4126,NEUROCOM:4127,III:4128,VANTAGE:4129,ICONTROL:4130,RAYMARINE:4131,LSR:4132,ONITY:4133,MONO:4134,RFT:4135,ITRON:4136,TRITECH:4137,EMBEDIT:4138,S3C:4139,SIEMENS:4140,MINDTECH:4141,LGE:4142,MITSUBISHI:4143,JOHNSON:4144,PRI:4145,KNICK:4146,VICONICS:4147,FLEXIPANEL:4148,PIASIM:4149,TRANE:4150,JENNIC:4151,LIG:4152,ALERTME:4153,DAINTREE:4154,AIJI:4155,TEL_ITALIA:4156,MIKROKRETS:4157,OKI_SEMI:4158,NEWPORT:4159,C4:4160,STM:4161,ASN:4162,DCSI:4163,FRANCE_TEL:4164,MUNET:4165,AUTANI:4166,COL_VNET:4167,AEROCOMM:4168,SI_LABS:4169,INNCOM:4170,CANNON:4171,SYNAPSE:4172,FPS:4173,CLS:4174,CRANE:4175,MOBILARM:4176,IMONITOR:4177,BARTECH:4178,MESHNETICS:4179,LS_IND:4180,CASON:4181,WLESS_GLUE:4182,ELSTER:4183,SMS_TEC:4184,ONSET:4185,RIGA:4186,ENERGATE:4187,CONMED:4188,POWERMAND:4189,SCHNEIDER:4190,EATON:4191,TELULAR:4192,DELPHI:4193,EPISENSOR:4194,LANDIS_GYR:4195,KABA:4196,SHURE:4197,COMVERGE:4198,DBS_LODGING:4199,ENERGY_AWARE:4200,HIDALGO:4201,AIR2APP:4202,AMX:4203,EDMI:4204,CYAN:4205,SYS_SPA:4206,TELIT:4207,KAGA:4208,_4_NOKS:4209,CERTICOM:4210,GRIDPOINT:4211,PROFILE_SYS:4212,COMPACTA:4213,FREESTYLE:4214,ALEKTRONA:4215,COMPUTIME:4216,REMOTE_TECH:4217,WAVECOM:4218,ENERGY:4219,GE:4220,JETLUN:4221,CIPHER:4222,CORPORATE:4223,ECOBEE:4224,SMK:4225,MESHWORKS:4226,ELLIPS:4227,SECURE:4228,CEDO:4229,TOSHIBA:4230,DIGI:4231,UBILOGIX:4232,ECHELON:4233,GREEN_ENERGY:4240,SILVER_SPRING:4241,BLACK:4242,AZTECH_ASSOC:4243,A_AND_D:4244,RAINFOREST:4245,CARRIER:4246,SYCHIP:4247,OPEN_PEAK:4248,PASSIVE:4249,MMB:4250,LEVITON:4251,KOREA_ELEC:4252,COMCAST1:4253,NEC_ELEC:4254,NETVOX:4255,UCONTROL:4256,EMBEDIA:4257,SENSUS:4258,SUNRISE:4259,MEMTECH:4260,FREEBOX:4261,M2_LABS:4262,BRITISH_GAS:4263,SENTEC:4264,NAVETAS:4265,LIGHTSPEED:4266,OKI:4267,SISTEMAS:4268,DOMETIC:4269,APLS:4270,ENERGY_HUB:4271,KAMSTRUP:4272,ECHOSTAR:4273,ENERNOC:4274,ELTAV:4275,BELKIN:4276,XSTREAMHD:4277,SATURN_SOUTH:4278,GREENTRAP:4279,SMARTSYNCH:4280,NYCE:4281,ICM_CONTROLS:4282,MILLENNIUM:4283,MOTOROLA:4284,EMERSON:4285,RADIO_THERMOSTAT:4286,OMRON:4287,GIINII:4288,FUJITSU:4289,PEEL:4290,ACCENT:4291,BYTESNAP:4292,NEC_TOKIN:4293,G4S_JUSTICE:4294,TRILLIANT:4295,ELECTROLUX:4296,ONZO:4297,ENTEK:4298,PHILIPS2:4299,MAINSTREAM:4300,INDESIT:4301,THINKECO:4302,_2D2C:4303,GREENPEAK:4304,INTERCEL:4305,LG:4306,MITSUMI1:4307,MITSUMI2:4308,ZENTRUM:4309,NEST:4310,EXEGIN:4311,HONEYWELL2:4312,TAKAHATA:4313,SUMITOMO:4314,GE_ENERGY:4315,GE_APPLIANCES:4316,RADIOCRAFTS:4317,CEIVA:4318,TEC_CO:4319,CHAMELEON:4320,SAMSUNG:4321,RUWIDO:4322,HUAWEI_1:4323,HUAWEI_2:4324,GREENWAVE:4325,BGLOBAL:4326,MINDTECK:4327,INGERSOLL_RAND:4328,DIUS:4329,EMBEDDED:4330,ABB:4331,SONY:4332,GENUS:4333,UNIVERSAL1:4334,UNIVERSAL2:4335,METRUM:4336,CISCO:4337,UBISYS:4338,CONSERT:4339,CRESTRON:4340,ENPHASE:4341,INVENSYS:4342,MUELLER:4343,AAC_TECH:4344,U_NEXT:4345,STEELCASE:4346,TELEMATICS:4347,SAMIL:4348,PACE:4349,OSBORNE:4350,POWERWATCH:4351,CANDELED:4352,FLEXGRID:4353,HUMAX:4354,UNIVERSAL:4355,ADVANCED_ENERGY:4356,BEGA:4357,BRUNEL:4358,PANASONIC:4359,ESYSTEMS:4360,PANAMAX:4361,PHYSICAL:4362,EM_LITE:4363,OSRAM:4364,_2_SAVE:4365,PLANET:4366,AMBIENT:4367,PROFALUX:4368,BILLION:4369,EMBERTEC:4370,IT_WATCHDOGS:4371,RELOC:4372,INTEL:4373,TREND:4374,MOXA:4375,QEES:4376,SAYME:4377,PENTAIR:4378,ORBIT:4379,CALIFORNIA:4380,COMCAST2:4381,IDT:4382,PIXELA:4383,TIVO:4384,FIDURE:4385,MARVELL:4386,WASION:4387,JASCO:4388,SHENZHEN:4389,NETCOMM:4390,DEFINE:4391,IN_HOME_DISP:4392,MIELE:4393,TELEVES:4394,LABELEC:4395,CHINA_ELEC:4396,VECTORFORM:4397,BUSCH_JAEGER:4398,REDPINE:4399,BRIDGES:4400,SERCOMM:4401,WSH:4402,BOSCH:4403,EZEX:4404,DRESDEN:4405,MEAZON:4406,CROW:4407,HARVARD:4408,ANDSON:4409,ADHOCO:4410,WAXMAN:4411,OWON:4412,HITRON:4413,SCEMTEC:4414,WEBEE:4415,GRID2HOME:4416,TELINK:4417,JASMINE:4418,BIDGELY:4419,LUTRON:4420,IJENKO:4421,STARFIELD:4422,TCP:4423,ROGERS:4424,CREE:4425,ROBERT_BOSCH_LLC:4426,IBIS:4427,QUIRKY:4428,EFERGY:4429,SMARTLABS:4430,EVERSPRING:4431,SWANN:4432,SONETER:4433,SAMSUNG_SDS:4434,UNIBAND_ELECTRO:4435,ACCTON_TECHNOLOGY:4436,BOSCH_THERMOTECH:4437,WINCOR_NIXDORF:4438,OHSUNG_ELECTRO:4439,ZEN_WITHIN:4440,TECH_4_HOME:4441,NANOLEAF:4442,KEEN_HOME:4443,POLY_CONTROL:4444,EASTFIELD_LIGHT:4445,IP_DATATEL:4446,LUMI_UNITED_TECH:4447,SENGLED_OPTOELEC:4448,REMOTE_SOLUTION:4449,ABB_GENWAY_XIAMEN:4450,ZHEJIANG_REXENSE:4451,FOREE_TECHNOLOGY:4452,OPEN_ACCESS_TECH:4453,INNR_LIGHTNING:4454,TECHWORLD:4455,LEEDARSON_LIGHT:4456,ARZEL_ZONING:4457,HOLLEY_TECH:4458,BELDON_TECH:4459,FLEXTRONICS:4460,SHENZHEN_MEIAN:4461,LOWES:4462,SIGMA_CONNECT:4463,WULIAN:4465,PLUGWISE_BV:4466,TITAN_PRODUCTS:4467,ECOSPECTRAL:4468,D_LINK:4469,TECHNICOLOR_HOME:4470,OPPLE_LIGHTING:4471,WISTRON_NEWEB:4472,QMOTION_SHADES:4473,INSTA_ELEKTRO:4474,SHANGHAI_VANCOUNT:4475,IKEA_OF_SWEDEN:4476,RT_RK:4477,SHENZHEN_FEIBIT:4478,EU_CONTROLS:4479,TELKONET:4480,THERMAL_SOLUTION:4481,POM_CUBE:4482,EI_ELECTRONICS:4483,OPTOGA:4484,STELPRO:4485,LYNXUS_TECH:4486,SEMICONDUCTOR_COM:4487,TP_LINK:4488,LEDVANCE_LLC:4489,NORTEK:4490,IREVO_ASSA_ABBLOY:4491,MIDEA:4492,ZF_FRIEDRICHSHAF:4493,CHECKIT:4494,ACLARA:4495,NOKIA:4496,GOLDCARD_HIGHTECH:4497,GEORGE_WILSON:4498,EASY_SAVER_CO:4499,ZTE_CORPORATION:4500,ARRIS:4501,RELIANCE_BIG_TV:4502,INSIGHT_ENERGY:4503,THOMAS_RESEARCH:4504,LI_SENG_TECH:4505,SYSTEM_LEVEL_SOLU:4506,MATRIX_LABS:4507,SINOPE_TECH:4508,JIUZHOU_GREEBLE:4509,GUANGZHOU_LANVEE:4510,VENSTAR:4511,SLV:4608,HALO_SMART_LABS:4609,SCOUT_SECURITY:4610,ALIBABA_CHINA:4611,RESOLUTION_PROD:4612,SMARTLOK_INC:4613,LUX_PRODUCTS_CORP:4614,VIMAR_SPA:4615,UNIVERSAL_LIGHT:4616,ROBERT_BOSCH_GMBH:4617,ACCENTURE:4618,HEIMAN_TECHNOLOGY:4619,SHENZHEN_HOMA:4620,VISION_ELECTRO:4621,LENOVO:4622,PRESCIENSE_RD:4623,SHENZHEN_SEASTAR:4624,SENSATIVE_AB:4625,SOLAREDGE:4626,ZIPATO:4627,CHINA_FIRE_SEC:4628,QUBY_BV:4629,HANGZHOU_ROOMBANK:4630,AMAZON_LAB126:4631,PAULMANN_LICHT:4632,SHENZHEN_ORVIBO:4633,TCI_TELECOMM:4634,MUELLER_LICHT_INT:4635,AURORA_LIMITED:4636,SMART_DCC:4637,SHANGHAI_UMEINFO:4638,CARBON_TRACK:4639,SOMFY:4640,VIESSMAN_ELEKTRO:4641,HILDEBRAND_TECH:4642,ONKYO_TECH:4643,SHENZHEN_SUNRICH:4644,XIU_XIU_TECH:4645,ZUMTOBEL_GROUP:4646,SHENZHEN_KAADAS:4647,SHANGHAI_XIAOYAN:4648,CYPRESS_SEMICOND:4649,XAL_GMBH:4650,INERGY_SYSTEMS:4651,ALFRED_KARCHER:4652,ADUROLIGHT_MANU:4653,GROUPE_MULLER:4654,V_MARK_ENTERPRI:4655,LEAD_ENERGY_AG:4656,UIOT_GROUP:4657,AXXESS_INDUSTRIES:4658,THIRD_REALITY_INC:4659,DSR_CORPORATION:4660,GUANGZHOU_VENSI:4661,SCHLAGE_LOCK_ALL:4662,NET2GRID:4663,AIRAM_ELECTRIC:4664,IMMAX_WPB_CZ:4665,ZIV_AUTOMATION:4666,HANGZHOU_IMAGIC:4667,XIAMEN_LEELEN:4668,OVERKIZ_SAS:4669,FLONIDAN:4670,HDL_AUTOATION:4671,ARDOMUS_NETWORKS:4672,SAMJIN_CO:4673,SPRUE_AEGIS_PLC:4674,INDRA_SISTEMAS:4675,JBT_SMART_LIGHT:4676,GE_LIGHTING_CURRE:4677,DANFOSS:4678,NIVISS_PHP_SP:4679,FENGLIYUAN_ENERGY:4680,NEXELEC:4681,SICHUAN_BEHOME_PR:4682,FUJIAN_STARNET:4683,TOSHIBA_VISUAL_SO:4684,LATCHABLE_INC:4685,LS_DEUTSCHLAND:4686,GLEDOPTO_CO_LTD:4687,THE_HOME_DEPOT:4688,NEONLITE_INTERNAT:4689,ARLO_TECHNOLOGIES:4690,XINGLUO_TECH:4691,SIMON_ELECTRIC_CH:4692,HANGZHOU_GREATSTA:4693,SEQUENTRIC_ENERGY:4694,SOLUM_CO_LTD:4695,EAGLERISE_ELEC:4696,FANTEM_TECH:4697,YUNDING_NETWORK:4698,ATLANTIC_GROUP:4699,XIAMEN_INTRETECH:4700,TUYA_GLOBAL_INC:4701,XIAMEN_DNAKE_INTE:4702,NIKO_NV:4703,EMPORIA_ENERGY:4704,SIKOM_AS:4705,AXIS_LABS_INC:4706,CURRENT_PRODUCTS:4707,METERSIT_SRL:4708,HORNBACH_BAUMARKT:4709,DICEWORLD_SRL_A:4710,ARC_TECHNOLOGY:4711,KONKE_INFORMATION:4712,SALTO_SYSTEMS_SL:4713,SHYUGJ_TECHNOLOGY:4714,BRAYDEN_AUTOMA:4715,ENVIRONEXUS_PTY:4716,ELTRA_NV_SA:4717,XIAMOMI_COMMUNI:4718,SHUNCOM_ELECTRON:4719,VOLTALIS_SA:4720,FEELUX_CO_LTD:4721,SMARTPLUS_INC:4722,HALEMEIER_GMBH:4723,TRUST_INTL:4724,DUKE_ENERGY:4725,CALIX:4726,ADEO:4727,ELKO:4727,SPRUT_DEVICE:26214};D2.default=He(Se({},Za),{Centralite:Za.CLS,Philips:Za.PHILIPS,Sinope:Za.SINOPE_TECH,Stelpro:Za.STELPRO,Ubisys:Za.UBISYS,LegrandNetatmo:Za.VANTAGE,SmartThings:Za.PHYSICAL,Heiman:Za.HEIMAN_TECHNOLOGY,Develco:Za.DEVELCO,SprutDevice:Za.SPRUT_DEVICE});var x2=kt&&kt.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(iq,"__esModule",{value:!0});const p=x2(E2),Rt=x2(I2),ve=x2(D2),_qe={genBasic:{ID:0,attributes:{zclVersion:{ID:0,type:p.default.uint8},appVersion:{ID:1,type:p.default.uint8},stackVersion:{ID:2,type:p.default.uint8},hwVersion:{ID:3,type:p.default.uint8},manufacturerName:{ID:4,type:p.default.charStr},modelId:{ID:5,type:p.default.charStr},dateCode:{ID:6,type:p.default.charStr},powerSource:{ID:7,type:p.default.enum8},appProfileVersion:{ID:8,type:p.default.enum8},swBuildId:{ID:16384,type:p.default.charStr},locationDesc:{ID:16,type:p.default.charStr},physicalEnv:{ID:17,type:p.default.enum8},deviceEnabled:{ID:18,type:p.default.boolean},alarmMask:{ID:19,type:p.default.bitmap8},disableLocalConfig:{ID:20,type:p.default.bitmap8}},commands:{resetFactDefault:{ID:0,parameters:[]},tuyaSetup:{ID:240,parameters:[]}},commandsResponse:{}},genPowerCfg:{ID:1,attributes:{mainsVoltage:{ID:0,type:p.default.uint16},mainsFrequency:{ID:1,type:p.default.uint8},mainsAlarmMask:{ID:16,type:p.default.bitmap8},mainsVoltMinThres:{ID:17,type:p.default.uint16},mainsVoltMaxThres:{ID:18,type:p.default.uint16},mainsVoltageDwellTripPoint:{ID:19,type:p.default.uint16},batteryVoltage:{ID:32,type:p.default.uint8},batteryPercentageRemaining:{ID:33,type:p.default.uint8},batteryManufacturer:{ID:48,type:p.default.charStr},batterySize:{ID:49,type:p.default.enum8},batteryAHrRating:{ID:50,type:p.default.uint16},batteryQuantity:{ID:51,type:p.default.uint8},batteryRatedVoltage:{ID:52,type:p.default.uint8},batteryAlarmMask:{ID:53,type:p.default.bitmap8},batteryVoltMinThres:{ID:54,type:p.default.uint8},batteryVoltThres1:{ID:55,type:p.default.uint8},batteryVoltThres2:{ID:56,type:p.default.uint8},batteryVoltThres3:{ID:57,type:p.default.uint8},batteryPercentMinThres:{ID:58,type:p.default.uint8},batteryPercentThres1:{ID:59,type:p.default.uint8},batteryPercentThres2:{ID:60,type:p.default.uint8},batteryPercentThres3:{ID:61,type:p.default.uint8},batteryAlarmState:{ID:62,type:p.default.bitmap32}},commands:{},commandsResponse:{}},genDeviceTempCfg:{ID:2,attributes:{currentTemperature:{ID:0,type:p.default.int16},minTempExperienced:{ID:1,type:p.default.int16},maxTempExperienced:{ID:2,type:p.default.int16},overTempTotalDwell:{ID:3,type:p.default.uint16},devTempAlarmMask:{ID:16,type:p.default.bitmap8},lowTempThres:{ID:17,type:p.default.int16},highTempThres:{ID:18,type:p.default.int16},lowTempDwellTripPoint:{ID:19,type:p.default.uint24},highTempDwellTripPoint:{ID:20,type:p.default.uint24}},commands:{},commandsResponse:{}},genIdentify:{ID:3,attributes:{identifyTime:{ID:0,type:p.default.uint16},identifyCommissionState:{ID:1,type:p.default.unknown}},commands:{identify:{ID:0,parameters:[{name:"identifytime",type:p.default.uint16}]},identifyQuery:{ID:1,parameters:[]},ezmodeInvoke:{ID:2,parameters:[{name:"action",type:p.default.uint8}]},updateCommissionState:{ID:3,parameters:[{name:"action",type:p.default.uint8},{name:"commstatemask",type:p.default.uint8}]},triggerEffect:{ID:64,parameters:[{name:"effectid",type:p.default.uint8},{name:"effectvariant",type:p.default.uint8}]}},commandsResponse:{identifyQueryRsp:{ID:0,parameters:[{name:"timeout",type:p.default.uint16}]}}},genGroups:{ID:4,attributes:{nameSupport:{ID:0,type:p.default.bitmap8}},commands:{add:{ID:0,response:0,parameters:[{name:"groupid",type:p.default.uint16},{name:"groupname",type:p.default.charStr}]},view:{ID:1,parameters:[{name:"groupid",type:p.default.uint16}]},getMembership:{ID:2,response:2,parameters:[{name:"groupcount",type:p.default.uint8},{name:"grouplist",type:Rt.default.LIST_UINT16}]},remove:{ID:3,response:3,parameters:[{name:"groupid",type:p.default.uint16}]},removeAll:{ID:4,parameters:[]},addIfIdentifying:{ID:5,parameters:[{name:"groupid",type:p.default.uint16},{name:"groupname",type:p.default.charStr}]},miboxerSetZones:{ID:240,parameters:[{name:"zones",type:Rt.default.LIST_MIBOXER_ZONES}]}},commandsResponse:{addRsp:{ID:0,parameters:[{name:"status",type:p.default.uint8},{name:"groupid",type:p.default.uint16}]},viewRsp:{ID:1,parameters:[{name:"status",type:p.default.uint8},{name:"groupid",type:p.default.uint16},{name:"groupname",type:p.default.charStr}]},getMembershipRsp:{ID:2,parameters:[{name:"capacity",type:p.default.uint8},{name:"groupcount",type:p.default.uint8},{name:"grouplist",type:Rt.default.LIST_UINT16}]},removeRsp:{ID:3,parameters:[{name:"status",type:p.default.uint8},{name:"groupid",type:p.default.uint16}]}}},genScenes:{ID:5,attributes:{count:{ID:0,type:p.default.uint8},currentScene:{ID:1,type:p.default.uint8},currentGroup:{ID:2,type:p.default.uint16},sceneValid:{ID:3,type:p.default.boolean},nameSupport:{ID:4,type:p.default.bitmap8},lastCfgBy:{ID:5,type:p.default.ieeeAddr}},commands:{add:{ID:0,response:0,parameters:[{name:"groupid",type:p.default.uint16},{name:"sceneid",type:p.default.uint8},{name:"transtime",type:p.default.uint16},{name:"scenename",type:p.default.charStr},{name:"extensionfieldsets",type:Rt.default.EXTENSION_FIELD_SETS}]},view:{ID:1,response:1,parameters:[{name:"groupid",type:p.default.uint16},{name:"sceneid",type:p.default.uint8}]},remove:{ID:2,response:2,parameters:[{name:"groupid",type:p.default.uint16},{name:"sceneid",type:p.default.uint8}]},removeAll:{ID:3,response:3,parameters:[{name:"groupid",type:p.default.uint16}]},store:{ID:4,response:4,parameters:[{name:"groupid",type:p.default.uint16},{name:"sceneid",type:p.default.uint8}]},recall:{ID:5,parameters:[{name:"groupid",type:p.default.uint16},{name:"sceneid",type:p.default.uint8}]},getSceneMembership:{ID:6,response:6,parameters:[{name:"groupid",type:p.default.uint16}]},enhancedAdd:{ID:64,response:64,parameters:[{name:"groupid",type:p.default.uint16},{name:"sceneid",type:p.default.uint8},{name:"transtime",type:p.default.uint16},{name:"scenename",type:p.default.charStr},{name:"extensionfieldsets",type:Rt.default.EXTENSION_FIELD_SETS}]},enhancedView:{ID:65,response:65,parameters:[{name:"groupid",type:p.default.uint16},{name:"sceneid",type:p.default.uint8}]},copy:{ID:66,response:66,parameters:[{name:"mode",type:p.default.uint8},{name:"groupidfrom",type:p.default.uint16},{name:"sceneidfrom",type:p.default.uint8},{name:"groupidto",type:p.default.uint16},{name:"sceneidto",type:p.default.uint8}]},tradfriArrowSingle:{ID:7,parameters:[{name:"value",type:p.default.uint16},{name:"value2",type:p.default.uint16}]},tradfriArrowHold:{ID:8,parameters:[{name:"value",type:p.default.uint16}]},tradfriArrowRelease:{ID:9,parameters:[{name:"value",type:p.default.uint16}]}},commandsResponse:{addRsp:{ID:0,parameters:[{name:"status",type:p.default.uint8},{name:"groupId",type:p.default.uint16},{name:"sceneId",type:p.default.uint8}]},viewRsp:{ID:1,parameters:[{name:"status",type:p.default.uint8},{name:"groupid",type:p.default.uint16},{name:"sceneid",type:p.default.uint8},{name:"transtime",type:p.default.uint16},{name:"scenename",type:p.default.charStr},{name:"extensionfieldsets",type:Rt.default.EXTENSION_FIELD_SETS}]},removeRsp:{ID:2,parameters:[{name:"status",type:p.default.uint8},{name:"groupid",type:p.default.uint16},{name:"sceneid",type:p.default.uint8}]},removeAllRsp:{ID:3,parameters:[{name:"status",type:p.default.uint8},{name:"groupid",type:p.default.uint16}]},storeRsp:{ID:4,parameters:[{name:"status",type:p.default.uint8},{name:"groupid",type:p.default.uint16},{name:"sceneid",type:p.default.uint8}]},getSceneMembershipRsp:{ID:6,parameters:[{name:"status",type:p.default.uint8},{name:"capacity",type:p.default.uint8},{name:"groupid",type:p.default.uint16},{name:"scenecount",type:p.default.uint8},{name:"scenelist",type:Rt.default.LIST_UINT8}]},enhancedAddRsp:{ID:64,parameters:[]},enhancedViewRsp:{ID:65,parameters:[{name:"status",type:p.default.uint8},{name:"groupid",type:p.default.uint16},{name:"sceneid",type:p.default.uint8},{name:"transtime",type:p.default.uint16},{name:"scenename",type:p.default.charStr},{name:"extensionfieldsets",type:Rt.default.EXTENSION_FIELD_SETS}]},copyRsp:{ID:66,parameters:[{name:"status",type:p.default.uint8},{name:"groupidfrom",type:p.default.uint16},{name:"sceneidfrom",type:p.default.uint8}]}}},genOnOff:{ID:6,attributes:{onOff:{ID:0,type:p.default.boolean},globalSceneCtrl:{ID:16384,type:p.default.boolean},onTime:{ID:16385,type:p.default.uint16},offWaitTime:{ID:16386,type:p.default.uint16},startUpOnOff:{ID:16387,type:p.default.enum8},tuyaBacklightMode:{ID:32769,type:p.default.enum8},moesStartUpOnOff:{ID:32770,type:p.default.enum8},tuyaOperationMode:{ID:32772,type:p.default.enum8},elkoPreWarningTime:{ID:57344,type:p.default.uint16,manufacturerCode:ve.default.ELKO},elkoOnTimeReload:{ID:57345,type:p.default.uint32,manufacturerCode:ve.default.ELKO},elkoOnTimeReloadOptions:{ID:57346,type:p.default.bitmap8,manufacturerCode:ve.default.ELKO}},commands:{off:{ID:0,parameters:[]},on:{ID:1,parameters:[]},toggle:{ID:2,parameters:[]},offWithEffect:{ID:64,parameters:[{name:"effectid",type:p.default.uint8},{name:"effectvariant",type:p.default.uint8}]},onWithRecallGlobalScene:{ID:65,parameters:[]},onWithTimedOff:{ID:66,parameters:[{name:"ctrlbits",type:p.default.uint8},{name:"ontime",type:p.default.uint16},{name:"offwaittime",type:p.default.uint16}]}},commandsResponse:{}},genOnOffSwitchCfg:{ID:7,attributes:{switchType:{ID:0,type:p.default.enum8},switchMultiFunction:{ID:2,type:p.default.unknown},switchActions:{ID:16,type:p.default.enum8}},commands:{},commandsResponse:{}},genLevelCtrl:{ID:8,attributes:{currentLevel:{ID:0,type:p.default.uint8},remainingTime:{ID:1,type:p.default.uint16},minLevel:{ID:2,type:p.default.uint8},maxLevel:{ID:3,type:p.default.uint8},options:{ID:15,type:p.default.bitmap8},onOffTransitionTime:{ID:16,type:p.default.uint16},onLevel:{ID:17,type:p.default.uint8},onTransitionTime:{ID:18,type:p.default.uint16},offTransitionTime:{ID:19,type:p.default.uint16},defaultMoveRate:{ID:20,type:p.default.uint16},startUpCurrentLevel:{ID:16384,type:p.default.uint8},elkoStartUpCurrentLevel:{ID:16384,type:p.default.uint8,manufacturerCode:ve.default.ELKO},ubisysMinimumOnLevel:{ID:0,type:p.default.uint8,manufacturerCode:ve.default.Ubisys}},commands:{moveToLevel:{ID:0,parameters:[{name:"level",type:p.default.uint8},{name:"transtime",type:p.default.uint16}]},move:{ID:1,parameters:[{name:"movemode",type:p.default.uint8},{name:"rate",type:p.default.uint8}]},step:{ID:2,parameters:[{name:"stepmode",type:p.default.uint8},{name:"stepsize",type:p.default.uint8},{name:"transtime",type:p.default.uint16}]},stop:{ID:3,parameters:[]},moveToLevelWithOnOff:{ID:4,parameters:[{name:"level",type:p.default.uint8},{name:"transtime",type:p.default.uint16}]},moveWithOnOff:{ID:5,parameters:[{name:"movemode",type:p.default.uint8},{name:"rate",type:p.default.uint8}]},stepWithOnOff:{ID:6,parameters:[{name:"stepmode",type:p.default.uint8},{name:"stepsize",type:p.default.uint8},{name:"transtime",type:p.default.uint16}]},stopWithOnOff:{ID:7,parameters:[]},moveToLevelTuya:{ID:240,parameters:[{name:"level",type:p.default.uint16},{name:"transtime",type:p.default.uint16}]}},commandsResponse:{}},genAlarms:{ID:9,attributes:{alarmCount:{ID:0,type:p.default.uint16}},commands:{reset:{ID:0,parameters:[{name:"alarmcode",type:p.default.uint8},{name:"clusterid",type:p.default.uint16}]},resetAll:{ID:1,parameters:[]},getAlarm:{ID:2,parameters:[]},resetLog:{ID:3,parameters:[]},publishEventLog:{ID:4,parameters:[]}},commandsResponse:{alarm:{ID:0,parameters:[{name:"alarmcode",type:p.default.uint8},{name:"clusterid",type:p.default.uint16}]},getRsp:{ID:1,parameters:[{name:"status",type:p.default.uint8},{name:"alarmcode",type:p.default.uint8},{name:"clusterid",type:p.default.uint16},{name:"timestamp",type:p.default.uint32}]},getEventLog:{ID:2,parameters:[]}}},genTime:{ID:10,attributes:{time:{ID:0,type:p.default.utc},timeStatus:{ID:1,type:p.default.bitmap8},timeZone:{ID:2,type:p.default.int32},dstStart:{ID:3,type:p.default.uint32},dstEnd:{ID:4,type:p.default.uint32},dstShift:{ID:5,type:p.default.int32},standardTime:{ID:6,type:p.default.uint32},localTime:{ID:7,type:p.default.uint32},lastSetTime:{ID:8,type:p.default.utc},validUntilTime:{ID:9,type:p.default.utc}},commands:{},commandsResponse:{}},genRssiLocation:{ID:11,attributes:{type:{ID:0,type:p.default.data8},method:{ID:1,type:p.default.enum8},age:{ID:2,type:p.default.uint16},qualityMeasure:{ID:3,type:p.default.uint8},numOfDevices:{ID:4,type:p.default.uint8},coordinate1:{ID:16,type:p.default.int16},coordinate2:{ID:17,type:p.default.int16},coordinate3:{ID:18,type:p.default.int16},power:{ID:19,type:p.default.int16},pathLossExponent:{ID:20,type:p.default.uint16},reportingPeriod:{ID:21,type:p.default.uint16},calcPeriod:{ID:22,type:p.default.uint16},numRSSIMeasurements:{ID:23,type:p.default.uint16}},commands:{setAbsolute:{ID:0,parameters:[{name:"coord1",type:p.default.int16},{name:"coord2",type:p.default.int16},{name:"coord3",type:p.default.int16},{name:"power",type:p.default.int16},{name:"pathlossexponent",type:p.default.uint16}]},setDevCfg:{ID:1,parameters:[{name:"power",type:p.default.int16},{name:"pathlossexponent",type:p.default.uint16},{name:"calperiod",type:p.default.uint16},{name:"numrssimeasurements",type:p.default.uint8},{name:"reportingperiod",type:p.default.uint16}]},getDevCfg:{ID:2,parameters:[{name:"targetaddr",type:p.default.ieeeAddr}]},getData:{ID:3,parameters:[{name:"getdatainfo",type:p.default.uint8},{name:"numrsp",type:p.default.uint8},{name:"targetaddr",type:p.default.ieeeAddr}]}},commandsResponse:{devCfgRsp:{ID:0,parameters:[{name:"status",type:p.default.uint8},{name:"power",type:p.default.int16},{name:"pathlossexp",type:p.default.uint16},{name:"calperiod",type:p.default.uint16},{name:"numrssimeasurements",type:p.default.uint8},{name:"reportingperiod",type:p.default.uint16}]},dataRsp:{ID:1,parameters:[{name:"status",type:p.default.uint8},{name:"locationtype",type:p.default.uint8},{name:"coord1",type:p.default.int16},{name:"coord2",type:p.default.int16},{name:"coord3",type:p.default.int16},{name:"power",type:p.default.int16},{name:"pathlossexp",type:p.default.uint16},{name:"locationmethod",type:p.default.uint8},{name:"qualitymeasure",type:p.default.uint8},{name:"locationage",type:p.default.uint16}]},dataNotif:{ID:2,parameters:[{name:"locationtype",type:p.default.uint8},{name:"coord1",type:p.default.int16},{name:"coord2",type:p.default.int16},{name:"coord3",type:p.default.int16},{name:"power",type:p.default.int16},{name:"pathlossexp",type:p.default.uint16},{name:"locationmethod",type:p.default.uint8},{name:"qualitymeasure",type:p.default.uint8},{name:"locationage",type:p.default.uint16}]},compactDataNotif:{ID:3,parameters:[{name:"locationtype",type:p.default.uint8},{name:"coord1",type:p.default.int16},{name:"coord2",type:p.default.int16},{name:"coord3",type:p.default.int16},{name:"qualitymeasure",type:p.default.uint8},{name:"locationage",type:p.default.uint16}]},rssiPing:{ID:4,parameters:[{name:"locationtype",type:p.default.uint8}]}}},genAnalogInput:{ID:12,attributes:{description:{ID:28,type:p.default.charStr},maxPresentValue:{ID:65,type:p.default.singlePrec},minPresentValue:{ID:69,type:p.default.singlePrec},outOfService:{ID:81,type:p.default.boolean},presentValue:{ID:85,type:p.default.singlePrec},reliability:{ID:103,type:p.default.enum8},resolution:{ID:106,type:p.default.singlePrec},statusFlags:{ID:111,type:p.default.bitmap8},engineeringUnits:{ID:117,type:p.default.enum16},applicationType:{ID:256,type:p.default.uint32}},commands:{},commandsResponse:{}},genAnalogOutput:{ID:13,attributes:{description:{ID:28,type:p.default.charStr},maxPresentValue:{ID:65,type:p.default.singlePrec},minPresentValue:{ID:69,type:p.default.singlePrec},outOfService:{ID:81,type:p.default.boolean},presentValue:{ID:85,type:p.default.singlePrec},priorityArray:{ID:87,type:p.default.array},reliability:{ID:103,type:p.default.enum8},relinquishDefault:{ID:104,type:p.default.singlePrec},resolution:{ID:106,type:p.default.singlePrec},statusFlags:{ID:111,type:p.default.bitmap8},engineeringUnits:{ID:117,type:p.default.enum16},applicationType:{ID:256,type:p.default.uint32}},commands:{},commandsResponse:{}},genAnalogValue:{ID:14,attributes:{description:{ID:28,type:p.default.charStr},outOfService:{ID:81,type:p.default.boolean},presentValue:{ID:85,type:p.default.singlePrec},priorityArray:{ID:87,type:p.default.array},reliability:{ID:103,type:p.default.enum8},relinquishDefault:{ID:104,type:p.default.singlePrec},statusFlags:{ID:111,type:p.default.bitmap8},engineeringUnits:{ID:117,type:p.default.enum16},applicationType:{ID:256,type:p.default.uint32}},commands:{},commandsResponse:{}},genBinaryInput:{ID:15,attributes:{activeText:{ID:4,type:p.default.charStr},description:{ID:28,type:p.default.charStr},inactiveText:{ID:46,type:p.default.charStr},outOfService:{ID:81,type:p.default.boolean},polarity:{ID:84,type:p.default.enum8},presentValue:{ID:85,type:p.default.boolean},reliability:{ID:103,type:p.default.enum8},statusFlags:{ID:111,type:p.default.bitmap8},applicationType:{ID:256,type:p.default.uint32}},commands:{},commandsResponse:{}},genBinaryOutput:{ID:16,attributes:{activeText:{ID:4,type:p.default.charStr},description:{ID:28,type:p.default.charStr},inactiveText:{ID:46,type:p.default.charStr},minimumOffTime:{ID:66,type:p.default.uint32},minimumOnTime:{ID:67,type:p.default.uint32},outOfService:{ID:81,type:p.default.boolean},polarity:{ID:84,type:p.default.enum8},presentValue:{ID:85,type:p.default.boolean},priorityArray:{ID:87,type:p.default.array},reliability:{ID:103,type:p.default.enum8},relinquishDefault:{ID:104,type:p.default.boolean},statusFlags:{ID:111,type:p.default.bitmap8},applicationType:{ID:256,type:p.default.uint32}},commands:{},commandsResponse:{}},genBinaryValue:{ID:17,attributes:{activeText:{ID:4,type:p.default.charStr},description:{ID:28,type:p.default.charStr},inactiveText:{ID:46,type:p.default.charStr},minimumOffTime:{ID:66,type:p.default.uint32},minimumOnTime:{ID:67,type:p.default.uint32},outOfService:{ID:81,type:p.default.boolean},presentValue:{ID:85,type:p.default.boolean},priorityArray:{ID:87,type:p.default.array},reliability:{ID:103,type:p.default.enum8},relinquishDefault:{ID:104,type:p.default.boolean},statusFlags:{ID:111,type:p.default.bitmap8},applicationType:{ID:256,type:p.default.uint32}},commands:{},commandsResponse:{}},genMultistateInput:{ID:18,attributes:{stateText:{ID:14,type:p.default.array},description:{ID:28,type:p.default.charStr},numberOfStates:{ID:74,type:p.default.uint16},outOfService:{ID:81,type:p.default.boolean},presentValue:{ID:85,type:p.default.uint16},reliability:{ID:103,type:p.default.enum8},statusFlags:{ID:111,type:p.default.bitmap8},applicationType:{ID:256,type:p.default.uint32}},commands:{},commandsResponse:{}},genMultistateOutput:{ID:19,attributes:{stateText:{ID:14,type:p.default.array},description:{ID:28,type:p.default.charStr},numberOfStates:{ID:74,type:p.default.uint16},outOfService:{ID:81,type:p.default.boolean},presentValue:{ID:85,type:p.default.uint16},priorityArray:{ID:87,type:p.default.array},reliability:{ID:103,type:p.default.enum8},relinquishDefault:{ID:104,type:p.default.uint16},statusFlags:{ID:111,type:p.default.bitmap8},applicationType:{ID:256,type:p.default.uint32}},commands:{},commandsResponse:{}},genMultistateValue:{ID:20,attributes:{stateText:{ID:14,type:p.default.array},description:{ID:28,type:p.default.charStr},numberOfStates:{ID:74,type:p.default.uint16},outOfService:{ID:81,type:p.default.boolean},presentValue:{ID:85,type:p.default.uint16},priorityArray:{ID:87,type:p.default.array},reliability:{ID:103,type:p.default.enum8},relinquishDefault:{ID:104,type:p.default.uint16},statusFlags:{ID:111,type:p.default.bitmap8},applicationType:{ID:256,type:p.default.uint32}},commands:{},commandsResponse:{}},genCommissioning:{ID:21,attributes:{shortress:{ID:0,type:p.default.uint16},extendedPANId:{ID:1,type:p.default.ieeeAddr},panId:{ID:2,type:p.default.uint16},channelmask:{ID:3,type:p.default.bitmap32},protocolVersion:{ID:4,type:p.default.uint8},stackProfile:{ID:5,type:p.default.uint8},startupControl:{ID:6,type:p.default.enum8},trustCenterress:{ID:16,type:p.default.ieeeAddr},trustCenterMasterKey:{ID:17,type:p.default.secKey},networkKey:{ID:18,type:p.default.secKey},useInsecureJoin:{ID:19,type:p.default.boolean},preconfiguredLinkKey:{ID:20,type:p.default.secKey},networkKeySeqNum:{ID:21,type:p.default.uint8},networkKeyType:{ID:22,type:p.default.enum8},networkManagerress:{ID:23,type:p.default.uint16},scanAttempts:{ID:32,type:p.default.uint8},timeBetweenScans:{ID:33,type:p.default.uint16},rejoinInterval:{ID:34,type:p.default.uint16},maxRejoinInterval:{ID:35,type:p.default.uint16},indirectPollRate:{ID:48,type:p.default.uint16},parentRetryThreshold:{ID:49,type:p.default.uint8},concentratorFlag:{ID:64,type:p.default.boolean},concentratorRus:{ID:65,type:p.default.uint8},concentratorDiscoveryTime:{ID:66,type:p.default.uint8}},commands:{restartDevice:{ID:0,parameters:[{name:"options",type:p.default.uint8},{name:"delay",type:p.default.uint8},{name:"jitter",type:p.default.uint8}]},saveStartupParams:{ID:1,parameters:[{name:"options",type:p.default.uint8},{name:"index",type:p.default.uint8}]},restoreStartupParams:{ID:2,parameters:[{name:"options",type:p.default.uint8},{name:"index",type:p.default.uint8}]},resetStartupParams:{ID:3,parameters:[{name:"options",type:p.default.uint8},{name:"index",type:p.default.uint8}]}},commandsResponse:{restartDeviceRsp:{ID:0,parameters:[{name:"status",type:p.default.uint8}]},saveStartupParamsRsp:{ID:1,parameters:[{name:"status",type:p.default.uint8}]},restoreStartupParamsRsp:{ID:2,parameters:[{name:"status",type:p.default.uint8}]},resetStartupParamsRsp:{ID:3,parameters:[{name:"status",type:p.default.uint8}]}}},genOta:{ID:25,attributes:{upgradeServerId:{ID:0,type:p.default.ieeeAddr},fileOffset:{ID:1,type:p.default.uint32},currentFileVersion:{ID:2,type:p.default.uint32},currentZigbeeStackVersion:{ID:3,type:p.default.uint16},downloadedFileVersion:{ID:4,type:p.default.uint32},downloadedZigbeeStackVersion:{ID:5,type:p.default.uint16},imageUpgradeStatus:{ID:6,type:p.default.enum8},manufacturerId:{ID:7,type:p.default.uint16},imageTypeId:{ID:8,type:p.default.uint16},minimumBlockReqDelay:{ID:9,type:p.default.uint16},imageStamp:{ID:10,type:p.default.uint32}},commands:{queryNextImageRequest:{ID:1,response:2,parameters:[{name:"fieldControl",type:p.default.uint8},{name:"manufacturerCode",type:p.default.uint16},{name:"imageType",type:p.default.uint16},{name:"fileVersion",type:p.default.uint32}]},imageBlockRequest:{ID:3,response:5,parameters:[{name:"fieldControl",type:p.default.uint8},{name:"manufacturerCode",type:p.default.uint16},{name:"imageType",type:p.default.uint16},{name:"fileVersion",type:p.default.uint32},{name:"fileOffset",type:p.default.uint32},{name:"maximumDataSize",type:p.default.uint8}]},imagePageRequest:{ID:4,response:5,parameters:[{name:"fieldControl",type:p.default.uint8},{name:"manufacturerCode",type:p.default.uint16},{name:"imageType",type:p.default.uint16},{name:"fileVersion",type:p.default.uint32},{name:"fileOffset",type:p.default.uint32},{name:"maximumDataSize",type:p.default.uint8},{name:"pageSize",type:p.default.uint16},{name:"responseSpacing",type:p.default.uint16}]},upgradeEndRequest:{ID:6,response:7,parameters:[{name:"status",type:p.default.uint8},{name:"manufacturerCode",type:p.default.uint16},{name:"imageType",type:p.default.uint16},{name:"fileVersion",type:p.default.uint32}]}},commandsResponse:{imageNotify:{ID:0,parameters:[{name:"payloadType",type:p.default.uint8},{name:"queryJitter",type:p.default.uint8}]},queryNextImageResponse:{ID:2,parameters:[{name:"status",type:p.default.uint8},{name:"manufacturerCode",type:p.default.uint16,conditions:[{type:"statusEquals",value:0}]},{name:"imageType",type:p.default.uint16,conditions:[{type:"statusEquals",value:0}]},{name:"fileVersion",type:p.default.uint32,conditions:[{type:"statusEquals",value:0}]},{name:"imageSize",type:p.default.uint32,conditions:[{type:"statusEquals",value:0}]}]},imageBlockResponse:{ID:5,parameters:[{name:"status",type:p.default.uint8},{name:"manufacturerCode",type:p.default.uint16},{name:"imageType",type:p.default.uint16},{name:"fileVersion",type:p.default.uint32},{name:"fileOffset",type:p.default.uint32},{name:"dataSize",type:p.default.uint8},{name:"data",type:Rt.default.BUFFER}]},upgradeEndResponse:{ID:7,parameters:[{name:"manufacturerCode",type:p.default.uint16},{name:"imageType",type:p.default.uint16},{name:"fileVersion",type:p.default.uint32},{name:"currentTime",type:p.default.uint32},{name:"upgradeTime",type:p.default.uint32}]}}},genPollCtrl:{ID:32,attributes:{checkinInterval:{ID:0,type:p.default.uint32},longPollInterval:{ID:1,type:p.default.uint32},shortPollInterval:{ID:2,type:p.default.uint16},fastPollTimeout:{ID:3,type:p.default.uint16},checkinIntervalMin:{ID:4,type:p.default.uint32},longPollIntervalMin:{ID:5,type:p.default.uint32},fastPollTimeoutMax:{ID:6,type:p.default.uint16}},commands:{checkinRsp:{ID:0,parameters:[{name:"startFastPolling",type:p.default.boolean},{name:"fastPollTimeout",type:p.default.uint16}]},fastPollStop:{ID:1,parameters:[]},setLongPollInterval:{ID:2,parameters:[{name:"newLongPollInterval",type:p.default.uint32}]},setShortPollInterval:{ID:3,parameters:[{name:"newShortPollInterval",type:p.default.uint16}]}},commandsResponse:{checkin:{ID:0,parameters:[]}}},greenPower:{ID:33,attributes:{},commands:{notification:{ID:0,parameters:[{name:"options",type:p.default.uint16},{name:"srcID",type:p.default.uint32,conditions:[{type:"bitFieldEnum",param:"options",offset:0,size:3,value:0}]},{name:"gpdIEEEAddr",type:p.default.ieeeAddr,conditions:[{type:"bitFieldEnum",param:"options",offset:0,size:3,value:2}]},{name:"gpdEndpoint",type:p.default.uint8,conditions:[{type:"bitFieldEnum",param:"options",offset:0,size:3,value:2}]},{name:"frameCounter",type:p.default.uint32},{name:"commandID",type:p.default.uint8},{name:"payloadSize",type:p.default.uint8},{name:"commandFrame",type:Rt.default.GDP_FRAME},{name:"gppNwkAddr",type:p.default.uint16,conditions:[{type:"bitMaskSet",param:"options",mask:16384}]},{name:"gppGddLink",type:p.default.uint8,conditions:[{type:"bitMaskSet",param:"options",mask:16384}]}]},commisioningNotification:{ID:4,parameters:[{name:"options",type:p.default.uint16},{name:"srcID",type:p.default.uint32,conditions:[{type:"bitFieldEnum",param:"options",offset:0,size:3,value:0}]},{name:"gpdIEEEAddr",type:p.default.ieeeAddr,conditions:[{type:"bitFieldEnum",param:"options",offset:0,size:3,value:2}]},{name:"gpdEndpoint",type:p.default.uint8,conditions:[{type:"bitFieldEnum",param:"options",offset:0,size:3,value:2}]},{name:"frameCounter",type:p.default.uint32},{name:"commandID",type:p.default.uint8},{name:"payloadSize",type:p.default.uint8},{name:"commandFrame",type:Rt.default.GDP_FRAME},{name:"gppNwkAddr",type:p.default.uint16,conditions:[{type:"bitMaskSet",param:"options",mask:2048}]},{name:"gppGddLink",type:p.default.uint8,conditions:[{type:"bitMaskSet",param:"options",mask:2048}]}]}},commandsResponse:{response:{ID:6,parameters:[{name:"options",type:p.default.uint8},{name:"tempMaster",type:p.default.uint16},{name:"tempMasterTx",type:p.default.uint8},{name:"srcID",type:p.default.uint32,conditions:[{type:"bitFieldEnum",param:"options",offset:0,size:3,value:0}]},{name:"gpdIEEEAddr",type:p.default.ieeeAddr,conditions:[{type:"bitFieldEnum",param:"options",offset:0,size:3,value:2}]},{name:"gpdEndpoint",type:p.default.uint8,conditions:[{type:"bitFieldEnum",param:"options",offset:0,size:3,value:2}]},{name:"gpdCmd",type:p.default.uint8},{name:"gpdPayload",type:Rt.default.GDP_FRAME}]},pairing:{ID:1,parameters:[{name:"options",type:p.default.uint24},{name:"srcID",type:p.default.uint32,conditions:[{type:"bitFieldEnum",param:"options",offset:0,size:3,value:0}]},{name:"gpdIEEEAddr",type:p.default.ieeeAddr,conditions:[{type:"bitFieldEnum",param:"options",offset:0,size:3,value:2}]},{name:"gpdEndpoint",type:p.default.uint8,conditions:[{type:"bitFieldEnum",param:"options",offset:0,size:3,value:2}]},{name:"sinkIEEEAddr",type:p.default.ieeeAddr,conditions:[{type:"bitFieldEnum",param:"options",offset:4,size:3,value:6}]},{name:"sinkIEEEAddr",type:p.default.ieeeAddr,conditions:[{type:"bitFieldEnum",param:"options",offset:4,size:3,value:0}]},{name:"sinkNwkAddr",type:p.default.uint16,conditions:[{type:"bitFieldEnum",param:"options",offset:4,size:3,value:6}]},{name:"sinkNwkAddr",type:p.default.uint16,conditions:[{type:"bitFieldEnum",param:"options",offset:4,size:3,value:0}]},{name:"sinkGroupID",type:p.default.uint16,conditions:[{type:"bitFieldEnum",param:"options",offset:4,size:3,value:4}]},{name:"sinkGroupID",type:p.default.uint16,conditions:[{type:"bitFieldEnum",param:"options",offset:4,size:3,value:2}]},{name:"deviceID",type:p.default.uint8,conditions:[{type:"bitMaskSet",param:"options",mask:8}]},{name:"frameCounter",type:p.default.uint32,conditions:[{type:"bitMaskSet",param:"options",mask:16384}]},{name:"gpdKey",type:p.default.secKey,conditions:[{type:"bitMaskSet",param:"options",mask:32768}]}]},commisioningMode:{ID:2,parameters:[{name:"options",type:p.default.uint8},{name:"commisioningWindow",type:p.default.uint16}]}}},mobileDeviceCfg:{ID:34,attributes:{keepAliveTime:{ID:0,type:p.default.uint16},rejoinTimeout:{ID:1,type:p.default.uint16}},commands:{},commandsResponse:{}},neighborCleaning:{ID:35,attributes:{neighborCleaningTimeout:{ID:0,type:p.default.uint16}},commands:{},commandsResponse:{}},nearestGateway:{ID:36,attributes:{nearestGateway:{ID:0,type:p.default.uint16},newMobileNode:{ID:1,type:p.default.uint16}},commands:{},commandsResponse:{}},closuresShadeCfg:{ID:256,attributes:{physicalClosedLimit:{ID:0,type:p.default.uint16},motorStepSize:{ID:1,type:p.default.uint8},status:{ID:2,type:p.default.bitmap8},losedLimit:{ID:16,type:p.default.uint16},mode:{ID:18,type:p.default.enum8}},commands:{},commandsResponse:{}},closuresDoorLock:{ID:257,attributes:{lockState:{ID:0,type:p.default.enum8},lockType:{ID:38,type:p.default.bitmap16},actuatorEnabled:{ID:2,type:p.default.boolean},doorState:{ID:3,type:p.default.enum8},doorOpenEvents:{ID:4,type:p.default.uint32},doorClosedEvents:{ID:5,type:p.default.uint32},openPeriod:{ID:6,type:p.default.uint16},numOfLockRecordsSupported:{ID:16,type:p.default.uint16},numOfTotalUsersSupported:{ID:17,type:p.default.uint16},numOfPinUsersSupported:{ID:18,type:p.default.uint16},numOfRfidUsersSupported:{ID:19,type:p.default.uint16},numOfWeekDaySchedulesSupportedPerUser:{ID:20,type:p.default.uint8},numOfYearDaySchedulesSupportedPerUser:{ID:21,type:p.default.uint8},numOfHolidayScheduledsSupported:{ID:22,type:p.default.uint8},maxPinLen:{ID:23,type:p.default.uint8},minPinLen:{ID:24,type:p.default.uint8},maxRfidLen:{ID:25,type:p.default.uint8},minRfidLen:{ID:26,type:p.default.uint8},enableLogging:{ID:32,type:p.default.boolean},language:{ID:33,type:p.default.charStr},ledSettings:{ID:34,type:p.default.uint8},autoRelockTime:{ID:35,type:p.default.uint32},soundVolume:{ID:36,type:p.default.uint8},operatingMode:{ID:37,type:p.default.uint32},defaultConfigurationRegister:{ID:39,type:p.default.bitmap16},enableLocalProgramming:{ID:40,type:p.default.boolean},enableOneTouchLocking:{ID:41,type:p.default.boolean},enableInsideStatusLed:{ID:42,type:p.default.boolean},enablePrivacyModeButton:{ID:43,type:p.default.boolean},wrongCodeEntryLimit:{ID:48,type:p.default.uint8},userCodeTemporaryDisableTime:{ID:49,type:p.default.uint8},sendPinOta:{ID:50,type:p.default.boolean},requirePinForRfOperation:{ID:51,type:p.default.boolean},zigbeeSecurityLevel:{ID:52,type:p.default.uint8},alarmMask:{ID:64,type:p.default.bitmap16},keypadOperationEventMask:{ID:65,type:p.default.bitmap16},rfOperationEventMask:{ID:66,type:p.default.bitmap16},manualOperationEventMask:{ID:67,type:p.default.bitmap16},rfidOperationEventMask:{ID:68,type:p.default.bitmap16},keypadProgrammingEventMask:{ID:69,type:p.default.bitmap16},rfProgrammingEventMask:{ID:70,type:p.default.bitmap16},rfidProgrammingEventMask:{ID:71,type:p.default.bitmap16}},commands:{lockDoor:{ID:0,response:0,parameters:[{name:"pincodevalue",type:p.default.charStr}]},unlockDoor:{ID:1,response:1,parameters:[{name:"pincodevalue",type:p.default.charStr}]},toggleDoor:{ID:2,response:2,parameters:[{name:"pincodevalue",type:p.default.charStr}]},unlockWithTimeout:{ID:3,response:3,parameters:[{name:"timeout",type:p.default.uint16},{name:"pincodevalue",type:p.default.charStr}]},getLogRecord:{ID:4,response:4,parameters:[{name:"logindex",type:p.default.uint16}]},setPinCode:{ID:5,response:5,parameters:[{name:"userid",type:p.default.uint16},{name:"userstatus",type:p.default.uint8},{name:"usertype",type:p.default.uint8},{name:"pincodevalue",type:p.default.charStr}]},getPinCode:{ID:6,response:6,parameters:[{name:"userid",type:p.default.uint16}]},clearPinCode:{ID:7,response:7,parameters:[{name:"userid",type:p.default.uint16}]},clearAllPinCodes:{ID:8,response:8,parameters:[]},setUserStatus:{ID:9,response:9,parameters:[{name:"userid",type:p.default.uint16},{name:"userstatus",type:p.default.uint8}]},getUserStatus:{ID:10,response:10,parameters:[{name:"userid",type:p.default.uint16}]},setWeekDaySchedule:{ID:11,response:11,parameters:[{name:"scheduleid",type:p.default.uint8},{name:"userid",type:p.default.uint16},{name:"daysmask",type:p.default.uint8},{name:"starthour",type:p.default.uint8},{name:"startminute",type:p.default.uint8},{name:"endhour",type:p.default.uint8},{name:"endminute",type:p.default.uint8}]},getWeekDaySchedule:{ID:12,response:12,parameters:[{name:"scheduleid",type:p.default.uint8},{name:"userid",type:p.default.uint16}]},clearWeekDaySchedule:{ID:13,response:13,parameters:[{name:"scheduleid",type:p.default.uint8},{name:"userid",type:p.default.uint16}]},setYearDaySchedule:{ID:14,response:14,parameters:[{name:"scheduleid",type:p.default.uint8},{name:"userid",type:p.default.uint16},{name:"zigbeelocalstarttime",type:p.default.uint32},{name:"zigbeelocalendtime",type:p.default.uint32}]},getYearDaySchedule:{ID:15,response:15,parameters:[{name:"scheduleid",type:p.default.uint8},{name:"userid",type:p.default.uint16}]},clearYearDaySchedule:{ID:16,response:16,parameters:[{name:"scheduleid",type:p.default.uint8},{name:"userid",type:p.default.uint16}]},setHolidaySchedule:{ID:17,response:17,parameters:[{name:"holidayscheduleid",type:p.default.uint8},{name:"zigbeelocalstarttime",type:p.default.uint32},{name:"zigbeelocalendtime",type:p.default.uint32},{name:"opermodelduringholiday",type:p.default.uint8}]},getHolidaySchedule:{ID:18,response:18,parameters:[{name:"holidayscheduleid",type:p.default.uint8}]},clearHolidaySchedule:{ID:19,response:19,parameters:[{name:"holidayscheduleid",type:p.default.uint8}]},setUserType:{ID:20,response:20,parameters:[{name:"userid",type:p.default.uint16},{name:"usertype",type:p.default.uint8}]},getUserType:{ID:21,response:21,parameters:[{name:"userid",type:p.default.uint16}]},setRfidCode:{ID:22,response:22,parameters:[{name:"userid",type:p.default.uint16},{name:"userstatus",type:p.default.uint8},{name:"usertype",type:p.default.uint8},{name:"pincodevalue",type:p.default.charStr}]},getRfidCode:{ID:23,response:23,parameters:[{name:"userid",type:p.default.uint16}]},clearRfidCode:{ID:24,response:24,parameters:[{name:"userid",type:p.default.uint16}]},clearAllRfidCodes:{ID:25,response:25,parameters:[]}},commandsResponse:{lockDoorRsp:{ID:0,parameters:[{name:"status",type:p.default.uint8}]},unlockDoorRsp:{ID:1,parameters:[{name:"status",type:p.default.uint8}]},toggleDoorRsp:{ID:2,parameters:[{name:"status",type:p.default.uint8}]},unlockWithTimeoutRsp:{ID:3,parameters:[{name:"status",type:p.default.uint8}]},getLogRecordRsp:{ID:4,parameters:[{name:"logentryid",type:p.default.uint16},{name:"timestamp",type:p.default.uint32},{name:"eventtype",type:p.default.uint8},{name:"source",type:p.default.uint8},{name:"eventidalarmcode",type:p.default.uint8},{name:"userid",type:p.default.uint16},{name:"pincodevalue",type:p.default.charStr}]},setPinCodeRsp:{ID:5,parameters:[{name:"status",type:p.default.uint8}]},getPinCodeRsp:{ID:6,parameters:[{name:"userid",type:p.default.uint16},{name:"userstatus",type:p.default.uint8},{name:"usertype",type:p.default.uint8},{name:"pincodevalue",type:p.default.charStr}]},clearPinCodeRsp:{ID:7,parameters:[{name:"status",type:p.default.uint8}]},clearAllPinCodesRsp:{ID:8,parameters:[{name:"status",type:p.default.uint8}]},setUserStatusRsp:{ID:9,parameters:[{name:"status",type:p.default.uint8}]},getUserStatusRsp:{ID:10,parameters:[{name:"userid",type:p.default.uint16},{name:"userstatus",type:p.default.uint8}]},setWeekDayScheduleRsp:{ID:11,parameters:[{name:"status",type:p.default.uint8}]},getWeekDayScheduleRsp:{ID:12,parameters:[{name:"scheduleid",type:p.default.uint8},{name:"userid",type:p.default.uint16},{name:"status",type:p.default.uint8},{name:"daysmask",type:p.default.uint8},{name:"starthour",type:p.default.uint8},{name:"startminute",type:p.default.uint8},{name:"endhour",type:p.default.uint8},{name:"endminute",type:p.default.uint8}]},clearWeekDayScheduleRsp:{ID:13,parameters:[{name:"status",type:p.default.uint8}]},setYearDayScheduleRsp:{ID:14,parameters:[{name:"status",type:p.default.uint8}]},getYearDayScheduleRsp:{ID:15,parameters:[{name:"scheduleid",type:p.default.uint8},{name:"userid",type:p.default.uint16},{name:"status",type:p.default.uint8},{name:"zigbeelocalstarttime",type:p.default.uint32},{name:"zigbeelocalendtime",type:p.default.uint32}]},clearYearDayScheduleRsp:{ID:16,parameters:[{name:"status",type:p.default.uint8}]},setHolidayScheduleRsp:{ID:17,parameters:[{name:"status",type:p.default.uint8}]},getHolidayScheduleRsp:{ID:18,parameters:[{name:"holidayscheduleid",type:p.default.uint8},{name:"status",type:p.default.uint8},{name:"zigbeelocalstarttime",type:p.default.uint32},{name:"zigbeelocalendtime",type:p.default.uint32},{name:"opermodelduringholiday",type:p.default.uint8}]},clearHolidayScheduleRsp:{ID:19,parameters:[{name:"status",type:p.default.uint8}]},setUserTypeRsp:{ID:20,parameters:[{name:"status",type:p.default.uint8}]},getUserTypeRsp:{ID:21,parameters:[{name:"userid",type:p.default.uint16},{name:"usertype",type:p.default.uint8}]},setRfidCodeRsp:{ID:22,parameters:[{name:"status",type:p.default.uint8}]},getRfidCodeRsp:{ID:23,parameters:[{name:"userid",type:p.default.uint16},{name:"userstatus",type:p.default.uint8},{name:"usertype",type:p.default.uint8},{name:"pincodevalue",type:p.default.charStr}]},clearRfidCodeRsp:{ID:24,parameters:[{name:"status",type:p.default.uint8}]},clearAllRfidCodesRsp:{ID:25,parameters:[{name:"status",type:p.default.uint8}]},operationEventNotification:{ID:32,parameters:[{name:"opereventsrc",type:p.default.uint8},{name:"opereventcode",type:p.default.uint8},{name:"userid",type:p.default.uint16},{name:"pin",type:p.default.octetStr},{name:"zigbeelocaltime",type:p.default.uint32},{name:"data",type:p.default.uint8}]},programmingEventNotification:{ID:33,parameters:[{name:"programeventsrc",type:p.default.uint8},{name:"programeventcode",type:p.default.uint8},{name:"userid",type:p.default.uint16},{name:"pin",type:p.default.octetStr},{name:"usertype",type:p.default.uint8},{name:"userstatus",type:p.default.uint8},{name:"zigbeelocaltime",type:p.default.uint32},{name:"data",type:p.default.uint8}]}}},closuresWindowCovering:{ID:258,attributes:{windowCoveringType:{ID:0,type:p.default.enum8},physicalClosedLimitLiftCm:{ID:1,type:p.default.uint16},physicalClosedLimitTiltDdegree:{ID:2,type:p.default.uint16},currentPositionLiftCm:{ID:3,type:p.default.uint16},currentPositionTiltDdegree:{ID:4,type:p.default.uint16},numOfActuationsLift:{ID:5,type:p.default.uint16},numOfActuationsTilt:{ID:6,type:p.default.uint16},configStatus:{ID:7,type:p.default.bitmap8},currentPositionLiftPercentage:{ID:8,type:p.default.uint8},currentPositionTiltPercentage:{ID:9,type:p.default.uint8},operationalStatus:{ID:10,type:p.default.bitmap8},installedOpenLimitLiftCm:{ID:16,type:p.default.uint16},installedClosedLimitLiftCm:{ID:17,type:p.default.uint16},installedOpenLimitTiltDdegree:{ID:18,type:p.default.uint16},installedClosedLimitTiltDdegree:{ID:19,type:p.default.uint16},velocityLift:{ID:20,type:p.default.uint16},accelerationTimeLift:{ID:21,type:p.default.uint16},decelerationTimeLift:{ID:22,type:p.default.uint16},windowCoveringMode:{ID:23,type:p.default.bitmap8},intermediateSetpointsLift:{ID:24,type:p.default.octetStr},intermediateSetpointsTilt:{ID:25,type:p.default.octetStr},ubisysTurnaroundGuardTime:{ID:4096,type:p.default.uint8,manufacturerCode:ve.default.Ubisys},ubisysLiftToTiltTransitionSteps:{ID:4097,type:p.default.uint16,manufacturerCode:ve.default.Ubisys},ubisysTotalSteps:{ID:4098,type:p.default.uint16,manufacturerCode:ve.default.Ubisys},ubisysLiftToTiltTransitionSteps2:{ID:4099,type:p.default.uint16,manufacturerCode:ve.default.Ubisys},ubisysTotalSteps2:{ID:4100,type:p.default.uint16,manufacturerCode:ve.default.Ubisys},ubisysAdditionalSteps:{ID:4101,type:p.default.uint8,manufacturerCode:ve.default.Ubisys},ubisysInactivePowerThreshold:{ID:4102,type:p.default.uint16,manufacturerCode:ve.default.Ubisys},ubisysStartupSteps:{ID:4103,type:p.default.uint16,manufacturerCode:ve.default.Ubisys},tuyaMovingState:{ID:61440,type:p.default.enum8},tuyaCalibration:{ID:61441,type:p.default.enum8},tuyaMotorReversal:{ID:61442,type:p.default.enum8},moesCalibrationTime:{ID:61443,type:p.default.uint16},elkoDriveCloseDuration:{ID:57344,type:p.default.uint16,manufacturerCode:ve.default.ELKO},elkoProtectionStatus:{ID:57360,type:p.default.bitmap8,manufacturerCode:ve.default.ELKO},elkoProtectionSensor:{ID:57363,type:p.default.bitmap8,manufacturerCode:ve.default.ELKO},elkoSunProtectionIlluminanceThreshold:{ID:57362,type:p.default.uint16,manufacturerCode:ve.default.ELKO},elkoLiftDriveUpTime:{ID:57364,type:p.default.uint16,manufacturerCode:ve.default.ELKO},elkoLiftDriveDownTime:{ID:57365,type:p.default.uint16,manufacturerCode:ve.default.ELKO},elkoTiltOpenCloseAndStepTime:{ID:57366,type:p.default.uint16,manufacturerCode:ve.default.ELKO},elkoTiltPositionPercentageAfterMoveToLevel:{ID:57367,type:p.default.uint8,manufacturerCode:ve.default.ELKO}},commands:{upOpen:{ID:0,parameters:[]},downClose:{ID:1,parameters:[]},stop:{ID:2,parameters:[]},goToLiftValue:{ID:4,parameters:[{name:"liftvalue",type:p.default.uint16}]},goToLiftPercentage:{ID:5,parameters:[{name:"percentageliftvalue",type:p.default.uint8}]},goToTiltValue:{ID:7,parameters:[{name:"tiltvalue",type:p.default.uint16}]},goToTiltPercentage:{ID:8,parameters:[{name:"percentagetiltvalue",type:p.default.uint8}]},elkoStopOrStepLiftPercentage:{ID:128,parameters:[{name:"direction",type:p.default.uint16},{name:"stepvalue",type:p.default.uint16}]}},commandsResponse:{}},barrierControl:{ID:259,attributes:{movingState:{ID:1,type:p.default.enum8},safetyStatus:{ID:2,type:p.default.bitmap16},capabilities:{ID:3,type:p.default.bitmap8},openEvents:{ID:4,type:p.default.uint16},closeEvents:{ID:5,type:p.default.uint16},commandOpenEvents:{ID:6,type:p.default.uint16},commandCloseEvents:{ID:7,type:p.default.uint16},openPeriod:{ID:8,type:p.default.uint16},closePeriod:{ID:9,type:p.default.uint16},barrierPosition:{ID:10,type:p.default.uint8}},commands:{goToPercent:{ID:0,parameters:[{name:"percentOpen",type:p.default.uint8}]},stop:{ID:1,parameters:[]}},commandsResponse:{}},hvacPumpCfgCtrl:{ID:512,attributes:{maxPressure:{ID:0,type:p.default.int16},maxSpeed:{ID:1,type:p.default.uint16},maxFlow:{ID:2,type:p.default.uint16},minConstPressure:{ID:3,type:p.default.int16},maxConstPressure:{ID:4,type:p.default.int16},minCompPressure:{ID:5,type:p.default.int16},maxCompPressure:{ID:6,type:p.default.int16},minConstSpeed:{ID:7,type:p.default.uint16},maxConstSpeed:{ID:8,type:p.default.uint16},minConstFlow:{ID:9,type:p.default.uint16},maxConstFlow:{ID:10,type:p.default.uint16},minConstTemp:{ID:11,type:p.default.int16},maxConstTemp:{ID:12,type:p.default.int16},pumpStatus:{ID:16,type:p.default.bitmap16},effectiveOperationMode:{ID:17,type:p.default.enum8},effectiveControlMode:{ID:18,type:p.default.enum8},capacity:{ID:19,type:p.default.int16},speed:{ID:20,type:p.default.uint16},lifetimeRunningHours:{ID:21,type:p.default.uint24},power:{ID:22,type:p.default.uint24},lifetimeEnergyConsumed:{ID:23,type:p.default.uint32},operationMode:{ID:32,type:p.default.enum8},controlMode:{ID:33,type:p.default.enum8},alarmMask:{ID:34,type:p.default.bitmap16}},commands:{},commandsResponse:{}},hvacThermostat:{ID:513,attributes:{localTemp:{ID:0,type:p.default.int16},outdoorTemp:{ID:1,type:p.default.int16},ocupancy:{ID:2,type:p.default.bitmap8},absMinHeatSetpointLimit:{ID:3,type:p.default.int16},absMaxHeatSetpointLimit:{ID:4,type:p.default.int16},absMinCoolSetpointLimit:{ID:5,type:p.default.int16},absMaxCoolSetpointLimit:{ID:6,type:p.default.int16},pICoolingDemand:{ID:7,type:p.default.uint8},pIHeatingDemand:{ID:8,type:p.default.uint8},systemTypeConfig:{ID:9,type:p.default.bitmap8},localTemperatureCalibration:{ID:16,type:p.default.int8},occupiedCoolingSetpoint:{ID:17,type:p.default.int16},occupiedHeatingSetpoint:{ID:18,type:p.default.int16},unoccupiedCoolingSetpoint:{ID:19,type:p.default.int16},unoccupiedHeatingSetpoint:{ID:20,type:p.default.int16},minHeatSetpointLimit:{ID:21,type:p.default.int16},maxHeatSetpointLimit:{ID:22,type:p.default.int16},minCoolSetpointLimit:{ID:23,type:p.default.int16},maxCoolSetpointLimit:{ID:24,type:p.default.int16},minSetpointDeadBand:{ID:25,type:p.default.int8},remoteSensing:{ID:26,type:p.default.bitmap8},ctrlSeqeOfOper:{ID:27,type:p.default.enum8},systemMode:{ID:28,type:p.default.enum8},alarmMask:{ID:29,type:p.default.bitmap8},runningMode:{ID:30,type:p.default.enum8},startOfWeek:{ID:32,type:p.default.enum8},numberOfWeeklyTrans:{ID:33,type:p.default.uint8},numberOfDailyTrans:{ID:34,type:p.default.uint8},tempSetpointHold:{ID:35,type:p.default.enum8},tempSetpointHoldDuration:{ID:36,type:p.default.uint16},programingOperMode:{ID:37,type:p.default.bitmap8},runningState:{ID:41,type:p.default.bitmap16},setpointChangeSource:{ID:48,type:p.default.enum8},setpointChangeAmount:{ID:49,type:p.default.int16},setpointChangeSourceTimeStamp:{ID:50,type:p.default.utc},acType:{ID:64,type:p.default.enum8},acCapacity:{ID:65,type:p.default.uint16},acRefrigerantType:{ID:66,type:p.default.enum8},acConpressorType:{ID:67,type:p.default.enum8},acErrorCode:{ID:68,type:p.default.bitmap32},acLouverPosition:{ID:69,type:p.default.enum8},acCollTemp:{ID:70,type:p.default.int16},acCapacityFormat:{ID:71,type:p.default.enum8},SinopeOccupancy:{ID:1024,type:p.default.enum8,manufacturerCode:ve.default.Sinope},SinopeBacklight:{ID:1026,type:p.default.enum8,manufacturerCode:ve.default.Sinope},StelproSystemMode:{ID:16412,type:p.default.enum8},StelproOutdoorTemp:{ID:16385,type:p.default.int16,manufacturerCode:ve.default.Stelpro},viessmannWindowOpenInternal:{ID:16384,type:p.default.enum8,manufacturerCode:ve.default.VIESSMAN_ELEKTRO},viessmannWindowOpenForce:{ID:16387,type:p.default.boolean,manufacturerCode:ve.default.VIESSMAN_ELEKTRO},viessmannAssemblyMode:{ID:16402,type:p.default.boolean,manufacturerCode:ve.default.VIESSMAN_ELEKTRO},schneiderWiserSpecific:{ID:57616,type:p.default.enum8,manufacturerCode:ve.default.SCHNEIDER},danfossWindowOpenInternal:{ID:16384,type:p.default.enum8,manufacturerCode:ve.default.DANFOSS},danfossWindowOpenExternal:{ID:16387,type:p.default.boolean,manufacturerCode:ve.default.DANFOSS},danfossDayOfWeek:{ID:16400,type:p.default.enum8,manufacturerCode:ve.default.DANFOSS},danfossTriggerTime:{ID:16401,type:p.default.uint16,manufacturerCode:ve.default.DANFOSS},danfossMountedModeActive:{ID:16402,type:p.default.boolean,manufacturerCode:ve.default.DANFOSS},danfossMountedModeControl:{ID:16403,type:p.default.boolean,manufacturerCode:ve.default.DANFOSS},danfossThermostatOrientation:{ID:16404,type:p.default.boolean,manufacturerCode:ve.default.DANFOSS},danfossExternalMeasuredRoomSensor:{ID:16405,type:p.default.int16,manufacturerCode:ve.default.DANFOSS},danfossRadiatorCovered:{ID:16406,type:p.default.boolean,manufacturerCode:ve.default.DANFOSS},danfossAlgorithmScaleFactor:{ID:16416,type:p.default.uint8,manufacturerCode:ve.default.DANFOSS},danfossHeatAvailable:{ID:16432,type:p.default.boolean,manufacturerCode:ve.default.DANFOSS},danfossHeatRequired:{ID:16433,type:p.default.boolean,manufacturerCode:ve.default.DANFOSS},danfossLoadBalancingEnable:{ID:16434,type:p.default.boolean,manufacturerCode:ve.default.DANFOSS},danfossLoadRoomMean:{ID:16448,type:p.default.int16,manufacturerCode:ve.default.DANFOSS},danfossLoadEstimate:{ID:16458,type:p.default.int16,manufacturerCode:ve.default.DANFOSS},danfossRegulationSetpointOffset:{ID:16459,type:p.default.int8,manufacturerCode:ve.default.DANFOSS},danfossAdaptionRunControl:{ID:16460,type:p.default.enum8,manufacturerCode:ve.default.DANFOSS},danfossAdaptionRunStatus:{ID:16461,type:p.default.bitmap8,manufacturerCode:ve.default.DANFOSS},danfossAdaptionRunSettings:{ID:16462,type:p.default.bitmap8,manufacturerCode:ve.default.DANFOSS},danfossPreheatStatus:{ID:16463,type:p.default.boolean,manufacturerCode:ve.default.DANFOSS},danfossPreheatTime:{ID:16464,type:p.default.uint32,manufacturerCode:ve.default.DANFOSS},danfossWindowOpenFeatureEnable:{ID:16465,type:p.default.boolean,manufacturerCode:ve.default.DANFOSS},danfossRoomStatusCode:{ID:16640,type:p.default.bitmap16,manufacturerCode:ve.default.DANFOSS},danfossOutputStatus:{ID:16656,type:p.default.enum8,manufacturerCode:ve.default.DANFOSS},danfossRoomFloorSensorMode:{ID:16672,type:p.default.enum8,manufacturerCode:ve.default.DANFOSS},danfossFloorMinSetpoint:{ID:16673,type:p.default.int16,manufacturerCode:ve.default.DANFOSS},danfossFloorMaxSetpoint:{ID:16674,type:p.default.int16,manufacturerCode:ve.default.DANFOSS},elkoLoad:{ID:1025,type:p.default.uint16,manufacturerCode:ve.default.ELKO},elkoDisplayText:{ID:1026,type:p.default.charStr,manufacturerCode:ve.default.ELKO},elkoSensor:{ID:1027,type:p.default.enum8,manufacturerCode:ve.default.ELKO},elkoRegulatorTime:{ID:1028,type:p.default.uint8,manufacturerCode:ve.default.ELKO},elkoRegulatorMode:{ID:1029,type:p.default.boolean,manufacturerCode:ve.default.ELKO},elkoPowerStatus:{ID:1030,type:p.default.boolean,manufacturerCode:ve.default.ELKO},elkoDateTime:{ID:1031,type:p.default.octetStr,manufacturerCode:ve.default.ELKO},elkoMeanPower:{ID:1032,type:p.default.uint16,manufacturerCode:ve.default.ELKO},elkoExternalTemp:{ID:1033,type:p.default.int16,manufacturerCode:ve.default.ELKO},elkoNightSwitching:{ID:1041,type:p.default.boolean,manufacturerCode:ve.default.ELKO},elkoFrostGuard:{ID:1042,type:p.default.boolean,manufacturerCode:ve.default.ELKO},elkoChildLock:{ID:1043,type:p.default.boolean,manufacturerCode:ve.default.ELKO},elkoMaxFloorTemp:{ID:1044,type:p.default.uint8,manufacturerCode:ve.default.ELKO},elkoRelayState:{ID:1045,type:p.default.boolean,manufacturerCode:ve.default.ELKO},elkoVersion:{ID:1046,type:p.default.octetStr,manufacturerCode:ve.default.ELKO},elkoCalibration:{ID:1047,type:p.default.int8,manufacturerCode:ve.default.ELKO},elkoLastMessageId:{ID:1048,type:p.default.uint8,manufacturerCode:ve.default.ELKO},elkoLastMessageStatus:{ID:1049,type:p.default.uint8,manufacturerCode:ve.default.ELKO}},commands:{setpointRaiseLower:{ID:0,parameters:[{name:"mode",type:p.default.uint8},{name:"amount",type:p.default.int8}]},setWeeklySchedule:{ID:1,parameters:[{name:"numoftrans",type:p.default.uint8},{name:"dayofweek",type:p.default.uint8},{name:"mode",type:p.default.uint8},{name:"transitions",type:Rt.default.LIST_THERMO_TRANSITIONS}]},getWeeklySchedule:{ID:2,parameters:[{name:"daystoreturn",type:p.default.uint8},{name:"modetoreturn",type:p.default.uint8}]},clearWeeklySchedule:{ID:3,parameters:[]},getRelayStatusLog:{ID:4,parameters:[]},danfossSetpointCommand:{ID:64,parameters:[{name:"setpointType",type:p.default.enum8},{name:"setpoint",type:p.default.int16}]},schneiderWiserThermostatBoost:{ID:128,parameters:[{name:"command",type:p.default.enum8},{name:"enable",type:p.default.enum8},{name:"temperature",type:p.default.uint16},{name:"duration",type:p.default.uint16}]},wiserSmartSetSetpoint:{ID:224,parameters:[{name:"operatingmode",type:p.default.uint8},{name:"zonemode",type:p.default.uint8},{name:"setpoint",type:p.default.int16},{name:"reserved",type:p.default.uint8}]},wiserSmartCalibrateValve:{ID:226,parameters:[]},plugwiseCalibrateValve:{ID:160,parameters:[]}},commandsResponse:{getWeeklyScheduleRsp:{ID:0,parameters:[{name:"numoftrans",type:p.default.uint8},{name:"dayofweek",type:p.default.uint8},{name:"mode",type:p.default.uint8},{name:"transitions",type:Rt.default.LIST_THERMO_TRANSITIONS}]},getRelayStatusLogRsp:{ID:1,parameters:[{name:"timeofday",type:p.default.uint16},{name:"relaystatus",type:p.default.uint16},{name:"localtemp",type:p.default.uint16},{name:"humidity",type:p.default.uint8},{name:"setpoint",type:p.default.uint16},{name:"unreadentries",type:p.default.uint16}]}}},hvacFanCtrl:{ID:514,attributes:{fanMode:{ID:0,type:p.default.enum8},fanModeSequence:{ID:1,type:p.default.enum8}},commands:{},commandsResponse:{}},hvacDehumidificationCtrl:{ID:515,attributes:{relativeHumidity:{ID:0,type:p.default.uint8},dehumidCooling:{ID:1,type:p.default.uint8},rhDehumidSetpoint:{ID:16,type:p.default.uint8},relativeHumidityMode:{ID:17,type:p.default.enum8},dehumidLockout:{ID:18,type:p.default.enum8},dehumidHysteresis:{ID:19,type:p.default.uint8},dehumidMaxCool:{ID:20,type:p.default.uint8},relativeHumidDisplay:{ID:21,type:p.default.enum8}},commands:{},commandsResponse:{}},hvacUserInterfaceCfg:{ID:516,attributes:{tempDisplayMode:{ID:0,type:p.default.enum8},keypadLockout:{ID:1,type:p.default.enum8},programmingVisibility:{ID:2,type:p.default.enum8},danfossViewingDirection:{ID:16384,type:p.default.enum8,manufacturerCode:ve.default.DANFOSS}},commands:{},commandsResponse:{}},lightingColorCtrl:{ID:768,attributes:{currentHue:{ID:0,type:p.default.uint8},currentSaturation:{ID:1,type:p.default.uint8},remainingTime:{ID:2,type:p.default.uint16},currentX:{ID:3,type:p.default.uint16},currentY:{ID:4,type:p.default.uint16},driftCompensation:{ID:5,type:p.default.enum8},compensationText:{ID:6,type:p.default.charStr},colorTemperature:{ID:7,type:p.default.uint16},colorMode:{ID:8,type:p.default.enum8},options:{ID:15,type:p.default.bitmap8},numPrimaries:{ID:16,type:p.default.uint8},primary1X:{ID:17,type:p.default.uint16},primary1Y:{ID:18,type:p.default.uint16},primary1Intensity:{ID:19,type:p.default.uint8},primary2X:{ID:21,type:p.default.uint16},primary2Y:{ID:22,type:p.default.uint16},primary2Intensity:{ID:23,type:p.default.uint8},primary3X:{ID:25,type:p.default.uint16},primary3Y:{ID:26,type:p.default.uint16},primary3Intensity:{ID:27,type:p.default.uint8},primary4X:{ID:32,type:p.default.uint16},primary4Y:{ID:33,type:p.default.uint16},primary4Intensity:{ID:34,type:p.default.uint8},primary5X:{ID:36,type:p.default.uint16},primary5Y:{ID:37,type:p.default.uint16},primary5Intensity:{ID:38,type:p.default.uint8},primary6X:{ID:40,type:p.default.uint16},primary6Y:{ID:41,type:p.default.uint16},primary6Intensity:{ID:42,type:p.default.uint8},whitePointX:{ID:48,type:p.default.uint16},whitePointY:{ID:49,type:p.default.uint16},colorPointRX:{ID:50,type:p.default.uint16},colorPointRY:{ID:51,type:p.default.uint16},colorPointRIntensity:{ID:52,type:p.default.uint8},colorPointGX:{ID:54,type:p.default.uint16},colorPointGY:{ID:55,type:p.default.uint16},colorPointGIntensity:{ID:56,type:p.default.uint8},colorPointBX:{ID:58,type:p.default.uint16},colorPointBY:{ID:59,type:p.default.uint16},colorPointBIntensity:{ID:60,type:p.default.uint8},enhancedCurrentHue:{ID:16384,type:p.default.uint16},enhancedColorMode:{ID:16385,type:p.default.enum8},colorLoopActive:{ID:16386,type:p.default.uint8},colorLoopDirection:{ID:16387,type:p.default.uint8},colorLoopTime:{ID:16388,type:p.default.uint16},colorLoopStartEnhancedHue:{ID:16389,type:p.default.uint16},colorLoopStoredEnhancedHue:{ID:16390,type:p.default.uint16},colorCapabilities:{ID:16394,type:p.default.uint16},colorTempPhysicalMin:{ID:16395,type:p.default.uint16},colorTempPhysicalMax:{ID:16396,type:p.default.uint16},coupleColorTempToLevelMin:{ID:16397,type:p.default.uint16},startUpColorTemperature:{ID:16400,type:p.default.uint16},tuyaBrightness:{ID:61441,type:p.default.uint16},tuyaRgbMode:{ID:61440,type:p.default.uint16}},commands:{moveToHue:{ID:0,parameters:[{name:"hue",type:p.default.uint8},{name:"direction",type:p.default.uint8},{name:"transtime",type:p.default.uint16}]},moveHue:{ID:1,parameters:[{name:"movemode",type:p.default.uint8},{name:"rate",type:p.default.uint8}]},stepHue:{ID:2,parameters:[{name:"stepmode",type:p.default.uint8},{name:"stepsize",type:p.default.uint8},{name:"transtime",type:p.default.uint8}]},moveToSaturation:{ID:3,parameters:[{name:"saturation",type:p.default.uint8},{name:"transtime",type:p.default.uint16}]},moveSaturation:{ID:4,parameters:[{name:"movemode",type:p.default.uint8},{name:"rate",type:p.default.uint8}]},stepSaturation:{ID:5,parameters:[{name:"stepmode",type:p.default.uint8},{name:"stepsize",type:p.default.uint8},{name:"transtime",type:p.default.uint8}]},moveToHueAndSaturation:{ID:6,parameters:[{name:"hue",type:p.default.uint8},{name:"saturation",type:p.default.uint8},{name:"transtime",type:p.default.uint16}]},tuyaMoveToHueAndSaturationBrightness:{ID:6,parameters:[{name:"hue",type:p.default.uint8},{name:"saturation",type:p.default.uint8},{name:"transtime",type:p.default.uint16},{name:"brightness",type:p.default.uint8}]},moveToColor:{ID:7,parameters:[{name:"colorx",type:p.default.uint16},{name:"colory",type:p.default.uint16},{name:"transtime",type:p.default.uint16}]},moveColor:{ID:8,parameters:[{name:"ratex",type:p.default.int16},{name:"ratey",type:p.default.int16}]},stepColor:{ID:9,parameters:[{name:"stepx",type:p.default.int16},{name:"stepy",type:p.default.int16},{name:"transtime",type:p.default.uint16}]},moveToColorTemp:{ID:10,parameters:[{name:"colortemp",type:p.default.uint16},{name:"transtime",type:p.default.uint16}]},enhancedMoveToHue:{ID:64,parameters:[{name:"enhancehue",type:p.default.uint16},{name:"direction",type:p.default.uint8},{name:"transtime",type:p.default.uint16}]},enhancedMoveHue:{ID:65,parameters:[{name:"movemode",type:p.default.uint8},{name:"rate",type:p.default.uint16}]},enhancedStepHue:{ID:66,parameters:[{name:"stepmode",type:p.default.uint8},{name:"stepsize",type:p.default.uint16},{name:"transtime",type:p.default.uint16}]},enhancedMoveToHueAndSaturation:{ID:67,parameters:[{name:"enhancehue",type:p.default.uint16},{name:"saturation",type:p.default.uint8},{name:"transtime",type:p.default.uint16}]},colorLoopSet:{ID:68,parameters:[{name:"updateflags",type:p.default.uint8},{name:"action",type:p.default.uint8},{name:"direction",type:p.default.uint8},{name:"time",type:p.default.uint16},{name:"starthue",type:p.default.uint16}]},stopMoveStep:{ID:71,parameters:[{name:"bits",type:p.default.uint8},{name:"bytee",type:p.default.uint8},{name:"action",type:p.default.uint8},{name:"direction",type:p.default.uint8},{name:"time",type:p.default.uint16},{name:"starthue",type:p.default.uint16}]},moveColorTemp:{ID:75,parameters:[{name:"movemode",type:p.default.uint8},{name:"rate",type:p.default.uint16},{name:"minimum",type:p.default.uint16},{name:"maximum",type:p.default.uint16}]},stepColorTemp:{ID:76,parameters:[{name:"stepmode",type:p.default.uint8},{name:"stepsize",type:p.default.uint16},{name:"transtime",type:p.default.uint16},{name:"minimum",type:p.default.uint16},{name:"maximum",type:p.default.uint16}]},tuyaRgbMode:{ID:240,parameters:[{name:"enable",type:p.default.uint8}]},tuyaOnStartUp:{ID:249,parameters:[{name:"mode",type:p.default.uint16},{name:"data",type:Rt.default.LIST_UINT8}]},tuyaDoNotDisturb:{ID:250,parameters:[{name:"enable",type:p.default.uint8}]}},commandsResponse:{}},lightingBallastCfg:{ID:769,attributes:{physicalMinLevel:{ID:0,type:p.default.uint8},physicalMaxLevel:{ID:1,type:p.default.uint8},ballastStatus:{ID:2,type:p.default.bitmap8},minLevel:{ID:16,type:p.default.uint8},maxLevel:{ID:17,type:p.default.uint8},powerOnLevel:{ID:18,type:p.default.uint8},powerOnFadeTime:{ID:19,type:p.default.uint16},intrinsicBallastFactor:{ID:20,type:p.default.uint8},ballastFactorAdjustment:{ID:21,type:p.default.uint8},lampQuantity:{ID:32,type:p.default.uint8},lampType:{ID:48,type:p.default.charStr},lampManufacturer:{ID:49,type:p.default.charStr},lampRatedHours:{ID:50,type:p.default.uint24},lampBurnHours:{ID:51,type:p.default.uint24},lampAlarmMode:{ID:52,type:p.default.bitmap8},lampBurnHoursTripPoint:{ID:53,type:p.default.uint24},elkoControlMode:{ID:57344,type:p.default.enum8,manufacturerCode:ve.default.ELKO},wiserControlMode:{ID:57344,type:p.default.enum8,manufacturerCode:ve.default.SCHNEIDER}},commands:{},commandsResponse:{}},msIlluminanceMeasurement:{ID:1024,attributes:{measuredValue:{ID:0,type:p.default.uint16},minMeasuredValue:{ID:1,type:p.default.uint16},maxMeasuredValue:{ID:2,type:p.default.uint16},tolerance:{ID:3,type:p.default.uint16},lightSensorType:{ID:4,type:p.default.enum8}},commands:{},commandsResponse:{}},msIlluminanceLevelSensing:{ID:1025,attributes:{levelStatus:{ID:0,type:p.default.enum8},lightSensorType:{ID:1,type:p.default.enum8},illuminanceTargetLevel:{ID:16,type:p.default.uint16}},commands:{},commandsResponse:{}},msTemperatureMeasurement:{ID:1026,attributes:{measuredValue:{ID:0,type:p.default.int16},minMeasuredValue:{ID:1,type:p.default.int16},maxMeasuredValue:{ID:2,type:p.default.int16},tolerance:{ID:3,type:p.default.uint16},minPercentChange:{ID:16,type:p.default.unknown},minAbsoluteChange:{ID:17,type:p.default.unknown},sprutTemperatureOffset:{ID:26112,type:p.default.int16,manufacturerCode:ve.default.SprutDevice}},commands:{},commandsResponse:{}},msPressureMeasurement:{ID:1027,attributes:{measuredValue:{ID:0,type:p.default.int16},minMeasuredValue:{ID:1,type:p.default.int16},maxMeasuredValue:{ID:2,type:p.default.int16},tolerance:{ID:3,type:p.default.uint16},scaledValue:{ID:16,type:p.default.int16},minScaledValue:{ID:17,type:p.default.int16},maxScaledValue:{ID:18,type:p.default.int16},scaledTolerance:{ID:19,type:p.default.uint16},scale:{ID:20,type:p.default.int8}},commands:{},commandsResponse:{}},msFlowMeasurement:{ID:1028,attributes:{measuredValue:{ID:0,type:p.default.uint16},minMeasuredValue:{ID:1,type:p.default.uint16},maxMeasuredValue:{ID:2,type:p.default.uint16},tolerance:{ID:3,type:p.default.uint16}},commands:{},commandsResponse:{}},msRelativeHumidity:{ID:1029,attributes:{measuredValue:{ID:0,type:p.default.uint16},minMeasuredValue:{ID:1,type:p.default.uint16},maxMeasuredValue:{ID:2,type:p.default.uint16},tolerance:{ID:3,type:p.default.uint16},sprutHeater:{ID:26112,type:p.default.boolean,manufacturerCode:ve.default.SprutDevice}},commands:{},commandsResponse:{}},msOccupancySensing:{ID:1030,attributes:{occupancy:{ID:0,type:p.default.bitmap8},occupancySensorType:{ID:1,type:p.default.enum8},pirOToUDelay:{ID:16,type:p.default.uint16},pirUToODelay:{ID:17,type:p.default.uint16},pirUToOThreshold:{ID:18,type:p.default.uint8},ultrasonicOToUDelay:{ID:32,type:p.default.uint16},ultrasonicUToODelay:{ID:33,type:p.default.uint16},ultrasonicUToOThreshold:{ID:34,type:p.default.uint8},elkoOccupancyDfltOperationMode:{ID:57344,type:p.default.enum8,manufacturerCode:ve.default.ELKO},elkoOccupancyOperationMode:{ID:57345,type:p.default.enum8,manufacturerCode:ve.default.ELKO},elkoForceOffTimeout:{ID:57346,type:p.default.uint16,manufacturerCode:ve.default.ELKO},elkoOccupancySensitivity:{ID:57347,type:p.default.uint8,manufacturerCode:ve.default.ELKO},sprutOccupancyLevel:{ID:26112,type:p.default.uint16,manufacturerCode:ve.default.SprutDevice},sprutOccupancySensitivity:{ID:26113,type:p.default.uint16,manufacturerCode:ve.default.SprutDevice}},commands:{},commandsResponse:{}},msSoilMoisture:{ID:1032,attributes:{measuredValue:{ID:0,type:p.default.uint16},minMeasuredValue:{ID:1,type:p.default.uint16},maxMeasuredValue:{ID:2,type:p.default.uint16},tolerance:{ID:3,type:p.default.uint16}},commands:{},commandsResponse:{}},pHMeasurement:{ID:1033,attributes:{measuredValue:{ID:0,type:p.default.uint16},minMeasuredValue:{ID:1,type:p.default.uint16},maxMeasuredValue:{ID:2,type:p.default.uint16},tolerance:{ID:3,type:p.default.uint16}},commands:{},commandsResponse:{}},msCO2:{ID:1037,attributes:{measuredValue:{ID:0,type:p.default.singlePrec},minMeasuredValue:{ID:1,type:p.default.singlePrec},maxMeasuredValue:{ID:2,type:p.default.singlePrec},sprutCO2Calibration:{ID:26112,type:p.default.boolean,manufacturerCode:ve.default.SprutDevice},sprutCO2AutoCalibration:{ID:26113,type:p.default.boolean,manufacturerCode:ve.default.SprutDevice}},commands:{},commandsResponse:{}},ssIasZone:{ID:1280,attributes:{zoneState:{ID:0,type:p.default.enum8},zoneType:{ID:1,type:p.default.enum16},zoneStatus:{ID:2,type:p.default.bitmap16},iasCieAddr:{ID:16,type:p.default.ieeeAddr},zoneId:{ID:17,type:p.default.uint8},numZoneSensitivityLevelsSupported:{ID:18,type:p.default.uint8},currentZoneSensitivityLevel:{ID:19,type:p.default.uint8}},commands:{enrollRsp:{ID:0,parameters:[{name:"enrollrspcode",type:p.default.uint8},{name:"zoneid",type:p.default.uint8}]},initNormalOpMode:{ID:1,parameters:[]},initTestMode:{ID:2,parameters:[]}},commandsResponse:{statusChangeNotification:{ID:0,parameters:[{name:"zonestatus",type:p.default.uint16},{name:"extendedstatus",type:p.default.uint8}]},enrollReq:{ID:1,parameters:[{name:"zonetype",type:p.default.uint16},{name:"manucode",type:p.default.uint16}]}}},ssIasAce:{ID:1281,attributes:{},commands:{arm:{ID:0,response:0,parameters:[{name:"armmode",type:p.default.uint8},{name:"code",type:p.default.charStr},{name:"zoneid",type:p.default.uint8}]},bypass:{ID:1,parameters:[{name:"numofzones",type:p.default.uint8},{name:"zoneidlist",type:Rt.default.LIST_UINT8}]},emergency:{ID:2,parameters:[]},fire:{ID:3,parameters:[]},panic:{ID:4,parameters:[]},getZoneIDMap:{ID:5,response:1,parameters:[]},getZoneInfo:{ID:6,response:2,parameters:[{name:"zoneid",type:p.default.uint8}]},getPanelStatus:{ID:7,response:5,parameters:[]},getBypassedZoneList:{ID:8,parameters:[]},getZoneStatus:{ID:9,response:8,parameters:[{name:"startzoneid",type:p.default.uint8},{name:"maxnumzoneid",type:p.default.uint8},{name:"zonestatusmaskflag",type:p.default.uint8},{name:"zonestatusmask",type:p.default.uint16}]}},commandsResponse:{armRsp:{ID:0,parameters:[{name:"armnotification",type:p.default.uint8}]},getZoneIDMapRsp:{ID:1,parameters:[{name:"zoneidmapsection0",type:p.default.uint16},{name:"zoneidmapsection1",type:p.default.uint16},{name:"zoneidmapsection2",type:p.default.uint16},{name:"zoneidmapsection3",type:p.default.uint16},{name:"zoneidmapsection4",type:p.default.uint16},{name:"zoneidmapsection5",type:p.default.uint16},{name:"zoneidmapsection6",type:p.default.uint16},{name:"zoneidmapsection7",type:p.default.uint16},{name:"zoneidmapsection8",type:p.default.uint16},{name:"zoneidmapsection9",type:p.default.uint16},{name:"zoneidmapsection10",type:p.default.uint16},{name:"zoneidmapsection11",type:p.default.uint16},{name:"zoneidmapsection12",type:p.default.uint16},{name:"zoneidmapsection13",type:p.default.uint16},{name:"zoneidmapsection14",type:p.default.uint16},{name:"zoneidmapsection15",type:p.default.uint16}]},getZoneInfoRsp:{ID:2,parameters:[{name:"zoneid",type:p.default.uint8},{name:"zonetype",type:p.default.uint16},{name:"ieeeaddr",type:p.default.ieeeAddr},{name:"zonelabel",type:p.default.charStr}]},zoneStatusChanged:{ID:3,parameters:[{name:"zoneid",type:p.default.uint8},{name:"zonestatus",type:p.default.uint16},{name:"audiblenotif",type:p.default.uint8},{name:"zonelabel",type:p.default.charStr}]},panelStatusChanged:{ID:4,parameters:[{name:"panelstatus",type:p.default.uint8},{name:"secondsremain",type:p.default.uint8},{name:"audiblenotif",type:p.default.uint8},{name:"alarmstatus",type:p.default.uint8}]},getPanelStatusRsp:{ID:5,parameters:[{name:"panelstatus",type:p.default.uint8},{name:"secondsremain",type:p.default.uint8},{name:"audiblenotif",type:p.default.uint8},{name:"alarmstatus",type:p.default.uint8}]},setBypassedZoneList:{ID:6,parameters:[{name:"numofzones",type:p.default.uint8},{name:"zoneid",type:Rt.default.LIST_UINT8}]},bypassRsp:{ID:7,parameters:[{name:"numofzones",type:p.default.uint8},{name:"bypassresult",type:Rt.default.LIST_UINT8}]},getZoneStatusRsp:{ID:8,parameters:[{name:"zonestatuscomplete",type:p.default.uint8},{name:"numofzones",type:p.default.uint8},{name:"zoneinfo",type:Rt.default.LIST_ZONEINFO}]}}},ssIasWd:{ID:1282,attributes:{maxDuration:{ID:0,type:p.default.uint16}},commands:{startWarning:{ID:0,parameters:[{name:"startwarninginfo",type:p.default.uint8},{name:"warningduration",type:p.default.uint16},{name:"strobedutycycle",type:p.default.uint8},{name:"strobelevel",type:p.default.uint8}]},squawk:{ID:1,parameters:[{name:"squawkinfo",type:p.default.uint8}]}},commandsResponse:{}},piGenericTunnel:{ID:1536,attributes:{maxIncomeTransSize:{ID:1,type:p.default.uint16},maxOutgoTransSize:{ID:2,type:p.default.uint16},protocolAddr:{ID:3,type:p.default.octetStr}},commands:{matchProtocolAddr:{ID:0,parameters:[{name:"protocoladdr",type:p.default.charStr}]}},commandsResponse:{matchProtocolAddrRsp:{ID:0,parameters:[{name:"devieeeaddr",type:p.default.ieeeAddr},{name:"protocoladdr",type:p.default.charStr}]},advertiseProtocolAddr:{ID:1,parameters:[{name:"protocoladdr",type:p.default.charStr}]}}},piBacnetProtocolTunnel:{ID:1537,attributes:{},commands:{transferNpdu:{ID:0,parameters:[{name:"npdu",type:p.default.uint8}]}},commandsResponse:{}},piAnalogInputReg:{ID:1538,attributes:{covIncrement:{ID:22,type:p.default.singlePrec},deviceType:{ID:31,type:p.default.charStr},objectId:{ID:75,type:p.default.bacOid},objectName:{ID:77,type:p.default.charStr},objectType:{ID:79,type:p.default.enum16},updateInterval:{ID:118,type:p.default.uint8},profileName:{ID:168,type:p.default.charStr}},commands:{},commandsResponse:{}},piAnalogInputExt:{ID:1539,attributes:{ackedTransitions:{ID:0,type:p.default.bitmap8},notificationClass:{ID:17,type:p.default.uint16},deadband:{ID:25,type:p.default.singlePrec},eventEnable:{ID:35,type:p.default.bitmap8},eventState:{ID:36,type:p.default.enum8},highLimit:{ID:45,type:p.default.singlePrec},limitEnable:{ID:52,type:p.default.bitmap8},lowLimit:{ID:59,type:p.default.singlePrec},notifyType:{ID:72,type:p.default.enum8},timeDelay:{ID:113,type:p.default.uint8},eventTimeStamps:{ID:130,type:p.default.array}},commands:{transferApdu:{ID:0,parameters:[]},connectReq:{ID:1,parameters:[]},disconnectReq:{ID:2,parameters:[]},connectStatusNoti:{ID:3,parameters:[]}},commandsResponse:{}},piAnalogOutputReg:{ID:1540,attributes:{covIncrement:{ID:22,type:p.default.singlePrec},deviceType:{ID:31,type:p.default.charStr},objectId:{ID:75,type:p.default.bacOid},objectName:{ID:77,type:p.default.charStr},objectType:{ID:79,type:p.default.enum16},updateInterval:{ID:118,type:p.default.uint8},profileName:{ID:168,type:p.default.charStr}},commands:{},commandsResponse:{}},piAnalogOutputExt:{ID:1541,attributes:{ackedTransitions:{ID:0,type:p.default.bitmap8},notificationClass:{ID:17,type:p.default.uint16},deadband:{ID:25,type:p.default.singlePrec},eventEnable:{ID:35,type:p.default.bitmap8},eventState:{ID:36,type:p.default.enum8},highLimit:{ID:45,type:p.default.singlePrec},limitEnable:{ID:52,type:p.default.bitmap8},lowLimit:{ID:59,type:p.default.singlePrec},notifyType:{ID:72,type:p.default.enum8},timeDelay:{ID:113,type:p.default.uint8},eventTimeStamps:{ID:130,type:p.default.array}},commands:{},commandsResponse:{}},piAnalogValueReg:{ID:1542,attributes:{covIncrement:{ID:22,type:p.default.singlePrec},objectId:{ID:75,type:p.default.bacOid},objectName:{ID:77,type:p.default.charStr},objectType:{ID:79,type:p.default.enum16},profileName:{ID:168,type:p.default.charStr}},commands:{},commandsResponse:{}},piAnalogValueExt:{ID:1543,attributes:{ackedTransitions:{ID:0,type:p.default.bitmap8},notificationClass:{ID:17,type:p.default.uint16},deadband:{ID:25,type:p.default.singlePrec},eventEnable:{ID:35,type:p.default.bitmap8},eventState:{ID:36,type:p.default.enum8},highLimit:{ID:45,type:p.default.singlePrec},limitEnable:{ID:52,type:p.default.bitmap8},lowLimit:{ID:59,type:p.default.singlePrec},notifyType:{ID:72,type:p.default.enum8},timeDelay:{ID:113,type:p.default.uint8},eventTimeStamps:{ID:130,type:p.default.array}},commands:{},commandsResponse:{}},piBinaryInputReg:{ID:1544,attributes:{changeOfStateCount:{ID:15,type:p.default.uint32},changeOfStateTime:{ID:16,type:p.default.struct},deviceType:{ID:31,type:p.default.charStr},elapsedActiveTime:{ID:33,type:p.default.uint32},objectIdentifier:{ID:75,type:p.default.bacOid},objectName:{ID:77,type:p.default.charStr},objectType:{ID:79,type:p.default.enum16},timeOfATReset:{ID:114,type:p.default.struct},timeOfSCReset:{ID:115,type:p.default.struct},profileName:{ID:168,type:p.default.charStr}},commands:{},commandsResponse:{}},piBinaryInputExt:{ID:1545,attributes:{ackedTransitions:{ID:0,type:p.default.bitmap8},alarmValue:{ID:6,type:p.default.boolean},notificationClass:{ID:17,type:p.default.uint16},eventEnable:{ID:35,type:p.default.bitmap8},eventState:{ID:36,type:p.default.enum8},notifyType:{ID:72,type:p.default.enum8},timeDelay:{ID:113,type:p.default.uint8},eventTimeStamps:{ID:130,type:p.default.array}},commands:{},commandsResponse:{}},piBinaryOutputReg:{ID:1546,attributes:{changeOfStateCount:{ID:15,type:p.default.uint32},changeOfStateTime:{ID:16,type:p.default.struct},deviceType:{ID:31,type:p.default.charStr},elapsedActiveTime:{ID:33,type:p.default.uint32},feedBackValue:{ID:40,type:p.default.enum8},objectIdentifier:{ID:75,type:p.default.bacOid},objectName:{ID:77,type:p.default.charStr},objectType:{ID:79,type:p.default.enum16},timeOfATReset:{ID:114,type:p.default.struct},timeOfSCReset:{ID:115,type:p.default.struct},profileName:{ID:168,type:p.default.charStr}},commands:{},commandsResponse:{}},piBinaryOutputExt:{ID:1547,attributes:{ackedTransitions:{ID:0,type:p.default.bitmap8},notificationClass:{ID:17,type:p.default.uint16},eventEnable:{ID:35,type:p.default.bitmap8},eventState:{ID:36,type:p.default.enum8},notifyType:{ID:72,type:p.default.enum8},timeDelay:{ID:113,type:p.default.uint8},eventTimeStamps:{ID:130,type:p.default.array}},commands:{},commandsResponse:{}},piBinaryValueReg:{ID:1548,attributes:{changeOfStateCount:{ID:15,type:p.default.uint32},changeOfStateTime:{ID:16,type:p.default.struct},elapsedActiveTime:{ID:33,type:p.default.uint32},objectIdentifier:{ID:75,type:p.default.bacOid},objectName:{ID:77,type:p.default.charStr},objectType:{ID:79,type:p.default.enum16},timeOfATReset:{ID:114,type:p.default.struct},timeOfSCReset:{ID:115,type:p.default.struct},profileName:{ID:168,type:p.default.charStr}},commands:{},commandsResponse:{}},piBinaryValueExt:{ID:1549,attributes:{ackedTransitions:{ID:0,type:p.default.bitmap8},alarmValue:{ID:6,type:p.default.boolean},notificationClass:{ID:17,type:p.default.uint16},eventEnable:{ID:35,type:p.default.bitmap8},eventState:{ID:36,type:p.default.enum8},notifyType:{ID:72,type:p.default.enum8},timeDelay:{ID:113,type:p.default.uint8},eventTimeStamps:{ID:130,type:p.default.array}},commands:{},commandsResponse:{}},piMultistateInputReg:{ID:1550,attributes:{deviceType:{ID:31,type:p.default.charStr},objectId:{ID:75,type:p.default.bacOid},objectName:{ID:77,type:p.default.charStr},objectType:{ID:79,type:p.default.enum16},profileName:{ID:168,type:p.default.charStr}},commands:{},commandsResponse:{}},piMultistateInputExt:{ID:1551,attributes:{ackedTransitions:{ID:0,type:p.default.bitmap8},alarmValue:{ID:6,type:p.default.uint16},notificationClass:{ID:17,type:p.default.uint16},eventEnable:{ID:35,type:p.default.bitmap8},eventState:{ID:36,type:p.default.enum8},faultValues:{ID:37,type:p.default.uint16},notifyType:{ID:72,type:p.default.enum8},timeDelay:{ID:113,type:p.default.uint8},eventTimeStamps:{ID:130,type:p.default.array}},commands:{},commandsResponse:{}},piMultistateOutputReg:{ID:1552,attributes:{deviceType:{ID:31,type:p.default.charStr},feedBackValue:{ID:40,type:p.default.enum8},objectId:{ID:75,type:p.default.bacOid},objectName:{ID:77,type:p.default.charStr},objectType:{ID:79,type:p.default.enum16},profileName:{ID:168,type:p.default.charStr}},commands:{},commandsResponse:{}},piMultistateOutputExt:{ID:1553,attributes:{ackedTransitions:{ID:0,type:p.default.bitmap8},notificationClass:{ID:17,type:p.default.uint16},eventEnable:{ID:35,type:p.default.bitmap8},eventState:{ID:36,type:p.default.enum8},notifyType:{ID:72,type:p.default.enum8},timeDelay:{ID:113,type:p.default.uint8},eventTimeStamps:{ID:130,type:p.default.array}},commands:{},commandsResponse:{}},piMultistateValueReg:{ID:1554,attributes:{objectId:{ID:75,type:p.default.bacOid},objectName:{ID:77,type:p.default.charStr},objectType:{ID:79,type:p.default.enum16},profileName:{ID:168,type:p.default.charStr}},commands:{},commandsResponse:{}},piMultistateValueExt:{ID:1555,attributes:{ackedTransitions:{ID:0,type:p.default.bitmap8},alarmValue:{ID:6,type:p.default.uint16},notificationClass:{ID:17,type:p.default.uint16},eventEnable:{ID:35,type:p.default.bitmap8},eventState:{ID:36,type:p.default.enum8},faultValues:{ID:37,type:p.default.uint16},notifyType:{ID:72,type:p.default.enum8},timeDelay:{ID:113,type:p.default.uint8},eventTimeStamps:{ID:130,type:p.default.array}},commands:{},commandsResponse:{}},pi11073ProtocolTunnel:{ID:1556,attributes:{deviceidList:{ID:0,type:p.default.array},managerTarget:{ID:1,type:p.default.ieeeAddr},managerEndpoint:{ID:2,type:p.default.uint8},connected:{ID:3,type:p.default.boolean},preemptible:{ID:4,type:p.default.boolean},idleTimeout:{ID:5,type:p.default.uint16}},commands:{transferApdu:{ID:0,parameters:[]},connectReq:{ID:1,parameters:[]},disconnectReq:{ID:2,parameters:[]},connectStatusNoti:{ID:3,parameters:[]}},commandsResponse:{}},piIso7818ProtocolTunnel:{ID:1557,attributes:{status:{ID:0,type:p.default.uint8}},commands:{},commandsResponse:{}},piRetailTunnel:{ID:1559,attributes:{manufacturerCode:{ID:0,type:p.default.uint16},msProfile:{ID:1,type:p.default.uint16}},commands:{},commandsResponse:{}},seMetering:{ID:1794,attributes:{currentSummDelivered:{ID:0,type:p.default.uint48},currentSummReceived:{ID:1,type:p.default.uint48},currentMaxDemandDelivered:{ID:2,type:p.default.uint48},currentMaxDemandReceived:{ID:3,type:p.default.uint48},dftSumm:{ID:4,type:p.default.uint48},dailyFreezeTime:{ID:5,type:p.default.uint16},powerFactor:{ID:6,type:p.default.int8},readingSnapshotTime:{ID:7,type:p.default.utc},currentMaxDemandDeliverdTime:{ID:8,type:p.default.utc},currentMaxDemandReceivedTime:{ID:9,type:p.default.utc},defaultUpdatePeriod:{ID:10,type:p.default.uint8},fastPollUpdatePeriod:{ID:11,type:p.default.uint8},currentBlockPeriodConsumpDelivered:{ID:12,type:p.default.uint48},dailyConsumpTarget:{ID:13,type:p.default.uint24},currentBlock:{ID:14,type:p.default.enum8},profileIntervalPeriod:{ID:15,type:p.default.enum8},intervalReadReportingPeriod:{ID:16,type:p.default.uint16},presetReadingTime:{ID:17,type:p.default.uint16},volumePerReport:{ID:18,type:p.default.uint16},flowRestriction:{ID:19,type:p.default.uint8},supplyStatus:{ID:20,type:p.default.enum8},currentInEnergyCarrierSumm:{ID:21,type:p.default.uint48},currentOutEnergyCarrierSumm:{ID:22,type:p.default.uint48},inletTempreature:{ID:23,type:p.default.int24},outletTempreature:{ID:24,type:p.default.int24},controlTempreature:{ID:25,type:p.default.int24},currentInEnergyCarrierDemand:{ID:26,type:p.default.int24},currentOutEnergyCarrierDemand:{ID:27,type:p.default.int24},currentBlockPeriodConsumpReceived:{ID:29,type:p.default.uint48},currentBlockReceived:{ID:30,type:p.default.uint48},DFTSummationReceived:{ID:31,type:p.default.uint48},activeRegisterTierDelivered:{ID:32,type:p.default.enum8},activeRegisterTierReceived:{ID:33,type:p.default.enum8},currentTier1SummDelivered:{ID:256,type:p.default.uint48},currentTier1SummReceived:{ID:257,type:p.default.uint48},currentTier2SummDelivered:{ID:258,type:p.default.uint48},currentTier2SummReceived:{ID:259,type:p.default.uint48},currentTier3SummDelivered:{ID:260,type:p.default.uint48},currentTier3SummReceived:{ID:261,type:p.default.uint48},currentTier4SummDelivered:{ID:262,type:p.default.uint48},currentTier4SummReceived:{ID:263,type:p.default.uint48},currentTier5SummDelivered:{ID:264,type:p.default.uint48},currentTier5SummReceived:{ID:265,type:p.default.uint48},currentTier6SummDelivered:{ID:266,type:p.default.uint48},currentTier6SummReceived:{ID:267,type:p.default.uint48},currentTier7SummDelivered:{ID:268,type:p.default.uint48},currentTier7SummReceived:{ID:269,type:p.default.uint48},currentTier8SummDelivered:{ID:270,type:p.default.uint48},currentTier8SummReceived:{ID:271,type:p.default.uint48},currentTier9SummDelivered:{ID:272,type:p.default.uint48},currentTier9SummReceived:{ID:273,type:p.default.uint48},currentTier10SummDelivered:{ID:274,type:p.default.uint48},currentTier10SummReceived:{ID:275,type:p.default.uint48},currentTier11SummDelivered:{ID:276,type:p.default.uint48},currentTier11SummReceived:{ID:277,type:p.default.uint48},currentTier12SummDelivered:{ID:278,type:p.default.uint48},currentTier12SummReceived:{ID:279,type:p.default.uint48},currentTier13SummDelivered:{ID:280,type:p.default.uint48},currentTier13SummReceived:{ID:281,type:p.default.uint48},currentTier14SummDelivered:{ID:282,type:p.default.uint48},currentTier14SummReceived:{ID:283,type:p.default.uint48},currentTier15SummDelivered:{ID:284,type:p.default.uint48},currentTier15SummReceived:{ID:285,type:p.default.uint48},status:{ID:512,type:p.default.bitmap8},remainingBattLife:{ID:513,type:p.default.uint8},hoursInOperation:{ID:514,type:p.default.uint24},hoursInFault:{ID:515,type:p.default.uint24},extendedStatus:{ID:516,type:p.default.bitmap64},unitOfMeasure:{ID:768,type:p.default.enum8},multiplier:{ID:769,type:p.default.uint24},divisor:{ID:770,type:p.default.uint24},summaFormatting:{ID:771,type:p.default.bitmap8},demandFormatting:{ID:772,type:p.default.bitmap8},historicalConsumpFormatting:{ID:773,type:p.default.bitmap8},meteringDeviceType:{ID:774,type:p.default.bitmap8},siteId:{ID:775,type:p.default.octetStr},meterSerialNumber:{ID:776,type:p.default.octetStr},energyCarrierUnitOfMeas:{ID:777,type:p.default.enum8},energyCarrierSummFormatting:{ID:778,type:p.default.bitmap8},energyCarrierDemandFormatting:{ID:779,type:p.default.bitmap8},temperatureUnitOfMeas:{ID:780,type:p.default.enum8},temperatureFormatting:{ID:781,type:p.default.bitmap8},moduleSerialNumber:{ID:782,type:p.default.octetStr},operatingTariffLevel:{ID:783,type:p.default.octetStr},instantaneousDemand:{ID:1024,type:p.default.int24},currentdayConsumpDelivered:{ID:1025,type:p.default.uint24},currentdayConsumpReceived:{ID:1026,type:p.default.uint24},previousdayConsumpDelivered:{ID:1027,type:p.default.uint24},previousdayConsumpReceived:{ID:1028,type:p.default.uint24},curPartProfileIntStartTimeDelivered:{ID:1029,type:p.default.utc},curPartProfileIntStartTimeReceived:{ID:1030,type:p.default.utc},curPartProfileIntValueDelivered:{ID:1031,type:p.default.uint24},curPartProfileIntValueReceived:{ID:1032,type:p.default.uint24},currentDayMaxPressure:{ID:1033,type:p.default.uint48},currentDayMinPressure:{ID:1034,type:p.default.uint48},previousDayMaxPressure:{ID:1035,type:p.default.uint48},previousDayMinPressure:{ID:1036,type:p.default.uint48},currentDayMaxDemand:{ID:1037,type:p.default.int24},previousDayMaxDemand:{ID:1038,type:p.default.int24},currentMonthMaxDemand:{ID:1039,type:p.default.int24},currentYearMaxDemand:{ID:1040,type:p.default.int24},currentdayMaxEnergyCarrDemand:{ID:1041,type:p.default.int24},previousdayMaxEnergyCarrDemand:{ID:1042,type:p.default.int24},curMonthMaxEnergyCarrDemand:{ID:1043,type:p.default.int24},curMonthMinEnergyCarrDemand:{ID:1044,type:p.default.int24},curYearMaxEnergyCarrDemand:{ID:1045,type:p.default.int24},curYearMinEnergyCarrDemand:{ID:1046,type:p.default.int24},maxNumberOfPeriodsDelivered:{ID:1280,type:p.default.uint8},currentDemandDelivered:{ID:1536,type:p.default.uint24},demandLimit:{ID:1537,type:p.default.uint24},demandIntegrationPeriod:{ID:1538,type:p.default.uint8},numberOfDemandSubintervals:{ID:1539,type:p.default.uint8},demandLimitArmDuration:{ID:1540,type:p.default.uint16},genericAlarmMask:{ID:2048,type:p.default.bitmap16},electricityAlarmMask:{ID:2049,type:p.default.bitmap32},genFlowPressureAlarmMask:{ID:2050,type:p.default.bitmap16},waterSpecificAlarmMask:{ID:2051,type:p.default.bitmap16},heatCoolSpecificAlarmMASK:{ID:2052,type:p.default.bitmap16},gasSpecificAlarmMask:{ID:2053,type:p.default.bitmap16},extendedGenericAlarmMask:{ID:2054,type:p.default.bitmap48},manufactureAlarmMask:{ID:2055,type:p.default.bitmap16},billToDate:{ID:2560,type:p.default.uint32},billToDateTimeStamp:{ID:2561,type:p.default.utc},projectedBill:{ID:2562,type:p.default.uint32},projectedBillTimeStamp:{ID:2563,type:p.default.utc},notificationControlFlags:{ID:0,type:p.default.bitmap32},notificationFlags:{ID:1,type:p.default.bitmap32},priceNotificationFlags:{ID:2,type:p.default.bitmap32},calendarNotificationFlags:{ID:3,type:p.default.bitmap32},prePayNotificationFlags:{ID:4,type:p.default.bitmap32},deviceManagementFlags:{ID:5,type:p.default.bitmap32},changeReportingProfile:{ID:256,type:p.default.unknown},develcoPulseConfiguration:{ID:768,type:p.default.uint16,manufacturerCode:ve.default.DEVELCO},develcoCurrentSummation:{ID:769,type:p.default.uint48,manufacturerCode:ve.default.DEVELCO},develcoInterfaceMode:{ID:770,type:p.default.enum16,manufacturerCode:ve.default.DEVELCO},owonL1PhasePower:{ID:8192,type:p.default.int24,manufacturerCode:ve.default.OWON},owonL2PhasePower:{ID:8193,type:p.default.int24,manufacturerCode:ve.default.OWON},owonL3PhasePower:{ID:8194,type:p.default.int24,manufacturerCode:ve.default.OWON},owonL1PhaseReactivePower:{ID:8448,type:p.default.int24,manufacturerCode:ve.default.OWON},owonL2PhaseReactivePower:{ID:8449,type:p.default.int24,manufacturerCode:ve.default.OWON},owonL3PhaseReactivePower:{ID:8450,type:p.default.int24,manufacturerCode:ve.default.OWON},owonL1PhaseVoltage:{ID:12288,type:p.default.uint24,manufacturerCode:ve.default.OWON},owonL2PhaseVoltage:{ID:12289,type:p.default.uint24,manufacturerCode:ve.default.OWON},owonL3PhaseVoltage:{ID:12290,type:p.default.uint24,manufacturerCode:ve.default.OWON},owonL1PhaseCurrent:{ID:12544,type:p.default.uint24,manufacturerCode:ve.default.OWON},owonL2PhaseCurrent:{ID:12545,type:p.default.uint24,manufacturerCode:ve.default.OWON},owonL3PhaseCurrent:{ID:12546,type:p.default.uint24,manufacturerCode:ve.default.OWON},owonCurrentSum:{ID:12547,type:p.default.uint24,manufacturerCode:ve.default.OWON},owonLeakageCurrent:{ID:12548,type:p.default.uint24,manufacturerCode:ve.default.OWON},owonL1Energy:{ID:16384,type:p.default.uint48,manufacturerCode:ve.default.OWON},owonL2Energy:{ID:16385,type:p.default.uint48,manufacturerCode:ve.default.OWON},owonL3Energy:{ID:16386,type:p.default.uint48,manufacturerCode:ve.default.OWON},owonL1ReactiveEnergy:{ID:16640,type:p.default.uint48,manufacturerCode:ve.default.OWON},owonL2ReactiveEnergy:{ID:16641,type:p.default.uint48,manufacturerCode:ve.default.OWON},owonL3ReactiveEnergy:{ID:16642,type:p.default.uint48,manufacturerCode:ve.default.OWON},owonReactiveEnergySum:{ID:16643,type:p.default.uint48,manufacturerCode:ve.default.OWON},owonFrequency:{ID:20485,type:p.default.uint8,manufacturerCode:ve.default.OWON},owonReportMap:{ID:4096,type:p.default.bitmap8,manufacturerCode:ve.default.OWON},owonReactivePowerSum:{ID:8451,type:p.default.int24,manufacturerCode:ve.default.OWON},owonLastHistoricalRecordTime:{ID:20480,type:p.default.uint32,manufacturerCode:ve.default.OWON},owonOldestHistoricalRecordTime:{ID:20481,type:p.default.uint32,manufacturerCode:ve.default.OWON},owonMinimumReportCycle:{ID:20482,type:p.default.uint32,manufacturerCode:ve.default.OWON},owonMaximumReportCycle:{ID:20483,type:p.default.uint32,manufacturerCode:ve.default.OWON},owonSentHistoricalRecordState:{ID:20484,type:p.default.uint8,manufacturerCode:ve.default.OWON},owonAccumulativeEnergyThreshold:{ID:20486,type:p.default.uint8,manufacturerCode:ve.default.OWON},owonReportMode:{ID:20487,type:p.default.uint8,manufacturerCode:ve.default.OWON},owonPercentChangeInPower:{ID:20487,type:p.default.uint8,manufacturerCode:ve.default.OWON}},commands:{getProfile:{ID:0,parameters:[]},reqMirror:{ID:1,parameters:[]},mirrorRem:{ID:2,parameters:[]},reqFastPollMode:{ID:3,parameters:[]},getSnapshot:{ID:4,parameters:[]},takeSnapshot:{ID:5,parameters:[]},mirrorReportAttrRsp:{ID:6,parameters:[]},owonGetHistoryRecord:{ID:32,parameters:[]},owonStopSendingHistoricalRecord:{ID:33,parameters:[]}},commandsResponse:{getProfileRsp:{ID:0,parameters:[]},reqMirrorRsp:{ID:1,parameters:[]},mirrorRemRsp:{ID:2,parameters:[]},reqFastPollModeRsp:{ID:3,parameters:[]},getSnapshotRsp:{ID:4,parameters:[]},owonGetHistoryRecordRsp:{ID:32,parameters:[]}}},telecommunicationsInformation:{ID:2304,attributes:{nodeDescription:{ID:0,type:p.default.charStr},deliveryEnable:{ID:1,type:p.default.boolean},pushInformationTimer:{ID:2,type:p.default.uint32},enableSecureConfiguration:{ID:3,type:p.default.boolean},numberOfContents:{ID:16,type:p.default.uint16},contentRootID:{ID:17,type:p.default.uint16}},commands:{},commandsResponse:{}},telecommunicationsVoiceOverZigbee:{ID:2308,attributes:{codecType:{ID:0,type:p.default.enum8},samplingFrequency:{ID:1,type:p.default.enum8},codecrate:{ID:2,type:p.default.enum8},establishmentTimeout:{ID:3,type:p.default.uint8},codecTypeSub1:{ID:4,type:p.default.enum8},codecTypeSub2:{ID:5,type:p.default.enum8},codecTypeSub3:{ID:6,type:p.default.enum8},compressionType:{ID:7,type:p.default.enum8},compressionRate:{ID:8,type:p.default.enum8},optionFlags:{ID:9,type:p.default.bitmap8},threshold:{ID:10,type:p.default.uint8}},commands:{},commandsResponse:{}},telecommunicationsChatting:{ID:2309,attributes:{uID:{ID:0,type:p.default.uint16},nickname:{ID:1,type:p.default.charStr},cID:{ID:16,type:p.default.uint16},name:{ID:17,type:p.default.charStr},enableAddChat:{ID:18,type:p.default.boolean}},commands:{},commandsResponse:{}},haApplianceIdentification:{ID:2816,attributes:{basicIdentification:{ID:0,type:p.default.uint56},companyName:{ID:16,type:p.default.charStr},companyId:{ID:17,type:p.default.uint16},brandName:{ID:18,type:p.default.charStr},brandId:{ID:19,type:p.default.uint16},model:{ID:20,type:p.default.octetStr},partNumber:{ID:21,type:p.default.octetStr},productRevision:{ID:22,type:p.default.octetStr},softwareRevision:{ID:23,type:p.default.octetStr},productTypeName:{ID:24,type:p.default.octetStr},productTypeId:{ID:25,type:p.default.uint16},cecedSpecificationVersion:{ID:26,type:p.default.uint8}},commands:{},commandsResponse:{}},haMeterIdentification:{ID:2817,attributes:{companyName:{ID:0,type:p.default.charStr},meterTypeId:{ID:1,type:p.default.uint16},dataQualityId:{ID:4,type:p.default.uint16},customerName:{ID:5,type:p.default.charStr},model:{ID:6,type:p.default.charStr},partNumber:{ID:7,type:p.default.charStr},productRevision:{ID:8,type:p.default.charStr},softwareRevision:{ID:10,type:p.default.charStr},utilityName:{ID:11,type:p.default.charStr},pod:{ID:12,type:p.default.charStr},availablePower:{ID:13,type:p.default.int24},powerThreshold:{ID:14,type:p.default.int24}},commands:{},commandsResponse:{}},haApplianceEventsAlerts:{ID:2818,attributes:{},commands:{getAlerts:{ID:0,parameters:[]}},commandsResponse:{getAlertsRsp:{ID:0,parameters:[{name:"alertscount",type:p.default.uint8},{name:"aalert",type:Rt.default.LIST_UINT24}]},alertsNotification:{ID:1,parameters:[{name:"alertscount",type:p.default.uint8},{name:"aalert",type:Rt.default.LIST_UINT24}]},eventNotification:{ID:2,parameters:[{name:"eventheader",type:p.default.uint8},{name:"eventid",type:p.default.uint8}]}}},haApplianceStatistics:{ID:2819,attributes:{logMaxSize:{ID:0,type:p.default.uint32},logQueueMaxSize:{ID:1,type:p.default.uint8}},commands:{log:{ID:0,parameters:[{name:"logid",type:p.default.uint32}]},logQueue:{ID:1,parameters:[]}},commandsResponse:{logNotification:{ID:0,parameters:[{name:"timestamp",type:p.default.uint32},{name:"logid",type:p.default.uint32},{name:"loglength",type:p.default.uint32},{name:"logpayload",type:Rt.default.LIST_UINT8}]},logRsp:{ID:1,parameters:[{name:"timestamp",type:p.default.uint32},{name:"logid",type:p.default.uint32},{name:"loglength",type:p.default.uint32},{name:"logpayload",type:Rt.default.LIST_UINT8}]},logQueueRsp:{ID:2,parameters:[{name:"logqueuesize",type:p.default.uint8},{name:"logid",type:Rt.default.LIST_UINT32}]},statisticsAvailable:{ID:3,parameters:[{name:"logqueuesize",type:p.default.uint8},{name:"logid",type:Rt.default.LIST_UINT32}]}}},haElectricalMeasurement:{ID:2820,attributes:{measurementType:{ID:0,type:p.default.bitmap32},dcVoltage:{ID:256,type:p.default.int16},dcVoltageMin:{ID:257,type:p.default.int16},dcvoltagemax:{ID:258,type:p.default.int16},dcCurrent:{ID:259,type:p.default.int16},dcCurrentMin:{ID:260,type:p.default.int16},dcCurrentMax:{ID:261,type:p.default.int16},dcPower:{ID:262,type:p.default.int16},dcPowerMin:{ID:263,type:p.default.int16},dcPowerMax:{ID:264,type:p.default.int16},dcVoltageMultiplier:{ID:512,type:p.default.uint16},dcVoltageDivisor:{ID:513,type:p.default.uint16},dcCurrentMultiplier:{ID:514,type:p.default.uint16},dcCurrentDivisor:{ID:515,type:p.default.uint16},dcPowerMultiplier:{ID:516,type:p.default.uint16},dcPowerDivisor:{ID:517,type:p.default.uint16},acFrequency:{ID:768,type:p.default.uint16},acFrequencyMin:{ID:769,type:p.default.uint16},acFrequencyMax:{ID:770,type:p.default.uint16},neutralCurrent:{ID:771,type:p.default.uint16},totalActivePower:{ID:772,type:p.default.int32},totalReactivePower:{ID:773,type:p.default.int32},totalApparentPower:{ID:774,type:p.default.uint32},meas1stHarmonicCurrent:{ID:775,type:p.default.int16},meas3rdHarmonicCurrent:{ID:776,type:p.default.int16},meas5thHarmonicCurrent:{ID:777,type:p.default.int16},meas7thHarmonicCurrent:{ID:778,type:p.default.int16},meas9thHarmonicCurrent:{ID:779,type:p.default.int16},meas11thHarmonicCurrent:{ID:780,type:p.default.int16},measPhase1stHarmonicCurrent:{ID:781,type:p.default.int16},measPhase3rdHarmonicCurrent:{ID:782,type:p.default.int16},measPhase5thHarmonicCurrent:{ID:783,type:p.default.int16},measPhase7thHarmonicCurrent:{ID:784,type:p.default.int16},measPhase9thHarmonicCurrent:{ID:785,type:p.default.int16},measPhase11thHarmonicCurrent:{ID:786,type:p.default.int16},acFrequencyMultiplier:{ID:1024,type:p.default.uint16},acFrequencyDivisor:{ID:1025,type:p.default.uint16},powerMultiplier:{ID:1026,type:p.default.uint32},powerDivisor:{ID:1027,type:p.default.uint32},harmonicCurrentMultiplier:{ID:1028,type:p.default.int8},phaseHarmonicCurrentMultiplier:{ID:1029,type:p.default.int8},instantaneousVoltage:{ID:1280,type:p.default.int16},instantaneousLineCurrent:{ID:1281,type:p.default.uint16},instantaneousActiveCurrent:{ID:1282,type:p.default.int16},instantaneousReactiveCurrent:{ID:1283,type:p.default.int16},instantaneousPower:{ID:1284,type:p.default.int16},rmsVoltage:{ID:1285,type:p.default.uint16},rmsVoltageMin:{ID:1286,type:p.default.uint16},rmsVoltageMax:{ID:1287,type:p.default.uint16},rmsCurrent:{ID:1288,type:p.default.uint16},rmsCurrentMin:{ID:1289,type:p.default.uint16},rmsCurrentMax:{ID:1290,type:p.default.uint16},activePower:{ID:1291,type:p.default.int16},activePowerMin:{ID:1292,type:p.default.int16},activePowerMax:{ID:1293,type:p.default.int16},reactivePower:{ID:1294,type:p.default.int16},apparentPower:{ID:1295,type:p.default.uint16},powerFactor:{ID:1296,type:p.default.int8},averageRmsVoltageMeasPeriod:{ID:1297,type:p.default.uint16},averageRmsOverVoltageCounter:{ID:1298,type:p.default.uint16},averageRmsUnderVoltageCounter:{ID:1299,type:p.default.uint16},rmsExtremeOverVoltagePeriod:{ID:1300,type:p.default.uint16},rmsExtremeUnderVoltagePeriod:{ID:1301,type:p.default.uint16},rmsVoltageSagPeriod:{ID:1302,type:p.default.uint16},rmsVoltageSwellPeriod:{ID:1303,type:p.default.uint16},acVoltageMultiplier:{ID:1536,type:p.default.uint16},acVoltageDivisor:{ID:1537,type:p.default.uint16},acCurrentMultiplier:{ID:1538,type:p.default.uint16},acCurrentDivisor:{ID:1539,type:p.default.uint16},acPowerMultiplier:{ID:1540,type:p.default.uint16},acPowerDivisor:{ID:1541,type:p.default.uint16},dcOverloadAlarmsMask:{ID:1792,type:p.default.bitmap8},dcVoltageOverload:{ID:1793,type:p.default.int16},dcCurrentOverload:{ID:1794,type:p.default.int16},acAlarmsMask:{ID:2048,type:p.default.bitmap16},acVoltageOverload:{ID:2049,type:p.default.int16},acCurrentOverload:{ID:2050,type:p.default.int16},acActivePowerOverload:{ID:2051,type:p.default.int16},acReactivePowerOverload:{ID:2052,type:p.default.int16},averageRmsOverVoltage:{ID:2053,type:p.default.int16},averageRmsUnderVoltage:{ID:2054,type:p.default.int16},rmsExtremeOverVoltage:{ID:2055,type:p.default.int16},rmsExtremeUnderVoltage:{ID:2056,type:p.default.int16},rmsVoltageSag:{ID:2057,type:p.default.int16},rmsVoltageSwell:{ID:2058,type:p.default.int16},lineCurrentPhB:{ID:2305,type:p.default.uint16},activeCurrentPhB:{ID:2306,type:p.default.int16},reactiveCurrentPhB:{ID:2307,type:p.default.int16},rmsVoltagePhB:{ID:2309,type:p.default.uint16},rmsVoltageMinPhB:{ID:2310,type:p.default.uint16},rmsVoltageMaxPhB:{ID:2311,type:p.default.uint16},rmsCurrentPhB:{ID:2312,type:p.default.uint16},rmsCurrentMinPhB:{ID:2313,type:p.default.uint16},rmsCurrentMaxPhB:{ID:2314,type:p.default.uint16},activePowerPhB:{ID:2315,type:p.default.int16},activePowerMinPhB:{ID:2316,type:p.default.int16},activePowerMaxPhB:{ID:2317,type:p.default.int16},reactivePowerPhB:{ID:2318,type:p.default.int16},apparentPowerPhB:{ID:2319,type:p.default.uint16},powerFactorPhB:{ID:2320,type:p.default.int8},averageRmsVoltageMeasurePeriodPhB:{ID:2321,type:p.default.uint16},averageRmsOverVoltageCounterPhB:{ID:2322,type:p.default.uint16},averageUnderVoltageCounterPhB:{ID:2323,type:p.default.uint16},rmsExtremeOverVoltagePeriodPhB:{ID:2324,type:p.default.uint16},rmsExtremeUnderVoltagePeriodPhB:{ID:2325,type:p.default.uint16},rmsVoltageSagPeriodPhB:{ID:2326,type:p.default.uint16},rmsVoltageSwellPeriodPhB:{ID:2327,type:p.default.uint16},lineCurrentPhC:{ID:2561,type:p.default.uint16},activeCurrentPhC:{ID:2562,type:p.default.int16},reactiveCurrentPhC:{ID:2563,type:p.default.int16},rmsVoltagePhC:{ID:2565,type:p.default.uint16},rmsVoltageMinPhC:{ID:2566,type:p.default.uint16},rmsVoltageMaxPhC:{ID:2567,type:p.default.uint16},rmsCurrentPhC:{ID:2568,type:p.default.uint16},rmsCurrentMinPhC:{ID:2569,type:p.default.uint16},rmsCurrentMaxPhC:{ID:2570,type:p.default.uint16},activePowerPhC:{ID:2571,type:p.default.int16},activePowerMinPhC:{ID:2572,type:p.default.int16},activePowerMaxPhC:{ID:2573,type:p.default.int16},reactivePowerPhC:{ID:2574,type:p.default.int16},apparentPowerPhC:{ID:2575,type:p.default.uint16},powerFactorPhC:{ID:2576,type:p.default.int8},averageRmsVoltageMeasPeriodPhC:{ID:2577,type:p.default.uint16},averageRmsOverVoltageCounterPhC:{ID:2578,type:p.default.uint16},averageUnderVoltageCounterPhC:{ID:2579,type:p.default.uint16},rmsExtremeOverVoltagePeriodPhC:{ID:2580,type:p.default.uint16},rmsExtremeUnderVoltagePeriodPhC:{ID:2581,type:p.default.uint16},rmsVoltageSagPeriodPhC:{ID:2582,type:p.default.uint16},rmsVoltageSwellPeriodPhC:{ID:2583,type:p.default.uint16}},commands:{getProfileInfo:{ID:0,parameters:[]},getMeasurementProfile:{ID:1,parameters:[{name:"attrId",type:p.default.uint16},{name:"starttime",type:p.default.uint32},{name:"numofuntervals",type:p.default.uint8}]}},commandsResponse:{getProfileInfoRsp:{ID:0,parameters:[{name:"profilecount",type:p.default.uint8},{name:"profileintervalperiod",type:p.default.uint8},{name:"maxnumofintervals",type:p.default.uint8},{name:"numofattrs",type:p.default.uint8},{name:"listofattr",type:Rt.default.LIST_UINT16}]},getMeasurementProfileRsp:{ID:1,parameters:[{name:"starttime",type:p.default.uint32},{name:"status",type:p.default.uint8},{name:"profileintervalperiod",type:p.default.uint8},{name:"numofintervalsdeliv",type:p.default.uint8},{name:"attrId",type:p.default.uint16},{name:"intervals",type:Rt.default.LIST_UINT8}]}}},haDiagnostic:{ID:2821,attributes:{numberOfResets:{ID:0,type:p.default.uint16},persistentMemoryWrites:{ID:1,type:p.default.uint16},macRxBcast:{ID:256,type:p.default.uint32},macTxBcast:{ID:257,type:p.default.uint32},macRxUcast:{ID:258,type:p.default.uint32},macTxUcast:{ID:259,type:p.default.uint32},macTxUcastRetry:{ID:260,type:p.default.uint16},macTxUcastFail:{ID:261,type:p.default.uint16},aPSRxBcast:{ID:262,type:p.default.uint16},aPSTxBcast:{ID:263,type:p.default.uint16},aPSRxUcast:{ID:264,type:p.default.uint16},aPSTxUcastSuccess:{ID:265,type:p.default.uint16},aPSTxUcastRetry:{ID:266,type:p.default.uint16},aPSTxUcastFail:{ID:267,type:p.default.uint16},routeDiscInitiated:{ID:268,type:p.default.uint16},neighborAdded:{ID:269,type:p.default.uint16},neighborRemoved:{ID:270,type:p.default.uint16},neighborStale:{ID:271,type:p.default.uint16},joinIndication:{ID:272,type:p.default.uint16},childMoved:{ID:273,type:p.default.uint16},nwkFcFailure:{ID:274,type:p.default.uint16},apsFcFailure:{ID:275,type:p.default.uint16},apsUnauthorizedKey:{ID:276,type:p.default.uint16},nwkDecryptFailures:{ID:277,type:p.default.uint16},apsDecryptFailures:{ID:278,type:p.default.uint16},packetBufferAllocateFailures:{ID:279,type:p.default.uint16},relayedUcast:{ID:280,type:p.default.uint16},phyToMacQueueLimitReached:{ID:281,type:p.default.uint16},packetValidateDropCount:{ID:282,type:p.default.uint16},averageMacRetryPerApsMessageSent:{ID:283,type:p.default.uint16},lastMessageLqi:{ID:284,type:p.default.uint8},lastMessageRssi:{ID:285,type:p.default.int8},danfossSystemStatusCode:{ID:16384,type:p.default.bitmap16,manufacturerCode:ve.default.DANFOSS},danfossSystemStatusWater:{ID:16896,type:p.default.enum8,manufacturerCode:ve.default.DANFOSS},danfossMultimasterRole:{ID:16897,type:p.default.enum8,manufacturerCode:ve.default.DANFOSS}},commands:{},commandsResponse:{}},touchlink:{ID:4096,attributes:{},commands:{scanRequest:{ID:0,response:1,parameters:[{name:"transactionID",type:p.default.uint32},{name:"zigbeeInformation",type:p.default.bitmap8},{name:"touchlinkInformation",type:p.default.bitmap8}]},identifyRequest:{ID:6,parameters:[{name:"transactionID",type:p.default.uint32},{name:"duration",type:p.default.uint16}]},resetToFactoryNew:{ID:7,parameters:[{name:"transactionID",type:p.default.uint32}]}},commandsResponse:{scanResponse:{ID:1,parameters:[{name:"transactionID",type:p.default.uint32},{name:"rssiCorrection",type:p.default.uint8},{name:"zigbeeInformation",type:p.default.uint8},{name:"touchlinkInformation",type:p.default.uint8},{name:"keyBitmask",type:p.default.uint16},{name:"responseID",type:p.default.uint32},{name:"extendedPanID",type:p.default.ieeeAddr},{name:"networkUpdateID",type:p.default.uint8},{name:"logicalChannel",type:p.default.uint8},{name:"panID",type:p.default.uint16},{name:"networkAddress",type:p.default.uint16},{name:"numberOfSubDevices",type:p.default.uint8},{name:"totalGroupIdentifiers",type:p.default.uint8}]}}},manuSpecificIkeaAirPurifier:{ID:64637,manufacturerCode:ve.default.IKEA_OF_SWEDEN,attributes:{filterRunTime:{ID:0,type:p.default.uint32},replaceFilter:{ID:1,type:p.default.uint8},filterLifeTime:{ID:2,type:p.default.uint32},controlPanelLight:{ID:3,type:p.default.boolean},particulateMatter25Measurement:{ID:4,type:p.default.uint16},childLock:{ID:5,type:p.default.boolean},fanMode:{ID:6,type:p.default.uint8},fanSpeed:{ID:7,type:p.default.uint8},deviceRunTime:{ID:8,type:p.default.uint32}},commands:{},commandsResponse:{}},manuSpecificClusterAduroSmart:{ID:64716,attributes:{},commands:{cmd0:{ID:0,parameters:[]}},commandsResponse:{}},manuSpecificOsram:{ID:64527,attributes:{},commands:{saveStartupParams:{ID:1,parameters:[]},resetStartupParams:{ID:2,parameters:[]}},commandsResponse:{saveStartupParamsRsp:{ID:0,parameters:[]}}},manuSpecificPhilips:{ID:64512,attributes:{config:{ID:49,type:p.default.bitmap16}},commands:{},commandsResponse:{hueNotification:{ID:0,parameters:[{name:"button",type:p.default.uint8},{name:"unknown1",type:p.default.uint24},{name:"type",type:p.default.uint8},{name:"unknown2",type:p.default.uint8},{name:"time",type:p.default.uint8},{name:"unknown2",type:p.default.uint8}]}}},manuSpecificSinope:{ID:65281,manufacturerCode:ve.default.Sinope,attributes:{outdoorTempToDisplay:{ID:16,type:p.default.int16},outdoorTempToDisplayTimeout:{ID:17,type:p.default.uint16},currentTimeToDisplay:{ID:32,type:p.default.uint32},ledIntensityOn:{ID:82,type:p.default.uint8},ledIntensityOff:{ID:83,type:p.default.uint8},minimumBrightness:{ID:85,type:p.default.uint16},floorControlMode:{ID:261,type:p.default.enum8},ambiantMaxHeatSetpointLimit:{ID:264,type:p.default.int16},floorMinHeatSetpointLimit:{ID:265,type:p.default.int16},floorMaxHeatSetpointLimit:{ID:266,type:p.default.int16},temperatureSensor:{ID:267,type:p.default.enum8},floorLimitStatus:{ID:268,type:p.default.enum8},timeFormatToDisplay:{ID:276,type:p.default.enum8},GFCiStatus:{ID:277,type:p.default.enum8}},commands:{},commandsResponse:{}},manuSpecificUbisysDeviceSetup:{ID:64512,manufacturerCode:ve.default.Ubisys,attributes:{inputConfigurations:{ID:0,type:p.default.array},inputActions:{ID:1,type:p.default.array}},commands:{},commandsResponse:{}},manuSpecificUbisysDimmerSetup:{ID:64513,manufacturerCode:ve.default.Ubisys,attributes:{capabilities:{ID:0,type:p.default.bitmap8},status:{ID:1,type:p.default.bitmap8},mode:{ID:2,type:p.default.bitmap8}},commands:{},commandsResponse:{}},manuSpecificLegrandDevices:{ID:64513,manufacturerCode:ve.default.LegrandNetatmo,attributes:{},commands:{},commandsResponse:{}},manuSpecificLegrandDevices2:{ID:64576,manufacturerCode:ve.default.LegrandNetatmo,attributes:{},commands:{command0:{ID:0,parameters:[{name:"data",type:Rt.default.BUFFER}]}},commandsResponse:{}},manuSpecificNiko1:{ID:64512,manufacturerCode:ve.default.NIKO_NV,attributes:{switchOperationMode:{ID:0,type:p.default.enum8},outletLedColor:{ID:256,type:p.default.uint24},outletChildLock:{ID:257,type:p.default.uint8},outletLedState:{ID:260,type:p.default.uint8}},commands:{},commandsResponse:{}},manuSpecificNiko2:{ID:64513,manufacturerCode:ve.default.NIKO_NV,attributes:{switchAction:{ID:2,type:p.default.uint8}},commands:{},commandsResponse:{}},wiserDeviceInfo:{ID:65027,attributes:{deviceInfo:{ID:32,type:p.default.charStr}},commands:{},commandsResponse:{}},manuSpecificTuya:{ID:61184,attributes:{},commands:{dataRequest:{ID:0,parameters:[{name:"seq",type:p.default.uint16},{name:"dpValues",type:Rt.default.LIST_TUYA_DATAPOINT_VALUES}]},dataQuery:{ID:3,parameters:[]},mcuVersionRequest:{ID:16,parameters:[{name:"seq",type:p.default.uint16}]},sendData:{ID:4,parameters:[{name:"seq",type:p.default.uint16},{name:"dpValues",type:Rt.default.LIST_TUYA_DATAPOINT_VALUES}]},mcuOtaNotify:{ID:18,parameters:[{name:"seq",type:p.default.uint16},{name:"key_hi",type:p.default.uint32},{name:"key_lo",type:p.default.uint32},{name:"version",type:p.default.uint8},{name:"imageSize",type:p.default.uint32},{name:"crc",type:p.default.uint32}]},mcuOtaBlockDataResponse:{ID:20,parameters:[{name:"seq",type:p.default.uint16},{name:"status",type:p.default.uint8},{name:"key_hi",type:p.default.uint32},{name:"key_lo",type:p.default.uint32},{name:"version",type:p.default.uint8},{name:"offset",type:p.default.uint32},{name:"imageData",type:Rt.default.LIST_UINT8}]},mcuSyncTime:{ID:36,parameters:[{name:"payloadSize",type:p.default.uint16},{name:"payload",type:Rt.default.LIST_UINT8}]}},commandsResponse:{dataResponse:{ID:1,parameters:[{name:"seq",type:p.default.uint16},{name:"dpValues",type:Rt.default.LIST_TUYA_DATAPOINT_VALUES}]},dataReport:{ID:2,parameters:[{name:"seq",type:p.default.uint16},{name:"dpValues",type:Rt.default.LIST_TUYA_DATAPOINT_VALUES}]},activeStatusReportAlt:{ID:5,parameters:[{name:"seq",type:p.default.uint16},{name:"dpValues",type:Rt.default.LIST_TUYA_DATAPOINT_VALUES}]},activeStatusReport:{ID:6,parameters:[{name:"seq",type:p.default.uint16},{name:"dpValues",type:Rt.default.LIST_TUYA_DATAPOINT_VALUES}]},mcuVersionResponse:{ID:17,parameters:[{name:"seq",type:p.default.uint16},{name:"version",type:p.default.uint8}]},mcuOtaBlockDataRequest:{ID:19,parameters:[{name:"seq",type:p.default.uint16},{name:"key_hi",type:p.default.uint32},{name:"key_lo",type:p.default.uint32},{name:"version",type:p.default.uint8},{name:"offset",type:p.default.uint32},{name:"size",type:p.default.uint32}]},mcuOtaResult:{ID:21,parameters:[{name:"seq",type:p.default.uint16},{name:"status",type:p.default.uint8},{name:"key_hi",type:p.default.uint32},{name:"key_lo",type:p.default.uint32},{name:"version",type:p.default.uint8}]},mcuSyncTime:{ID:36,parameters:[{name:"payloadSize",type:p.default.uint16}]}}},aqaraOpple:{ID:64704,manufacturerCode:ve.default.LUMI_UNITED_TECH,attributes:{mode:{ID:9,type:p.default.uint8},illuminance:{ID:274,type:p.default.uint32}},commands:{},commandsResponse:{}},liXeePrivate:{ID:65382,manufacturerCode:ve.default.JENNIC,attributes:{currentTarif:{ID:0,type:p.default.charStr},tomorrowColor:{ID:1,type:p.default.charStr},scheduleHPHC:{ID:2,type:p.default.uint8},presencePotential:{ID:3,type:p.default.uint8},startNoticeEJP:{ID:4,type:p.default.uint8},warnDPS:{ID:5,type:p.default.uint16},warnDIR1:{ID:6,type:p.default.uint16},warnDIR2:{ID:7,type:p.default.uint16},warnDIR3:{ID:8,type:p.default.uint16},currentPrice:{ID:512,type:p.default.charStr},currentIndexTarif:{ID:513,type:p.default.uint8},currentDate:{ID:514,type:p.default.charStr},activeEnerfyOutD01:{ID:515,type:p.default.uint32},activeEnerfyOutD02:{ID:516,type:p.default.uint32},activeEnerfyOutD03:{ID:517,type:p.default.uint32},activeEnerfyOutD04:{ID:518,type:p.default.uint32},injectedVA:{ID:519,type:p.default.uint16},injectedVAMaxN:{ID:520,type:p.default.int16},injectedVAMaxN1:{ID:521,type:p.default.int16},injectedActiveLoadN:{ID:528,type:p.default.int16},injectedActiveLoadN1:{ID:529,type:p.default.int16},drawnVAMaxN1:{ID:530,type:p.default.int16},drawnVAMaxN1P2:{ID:531,type:p.default.int16},drawnVAMaxN1P3:{ID:532,type:p.default.int16},message1:{ID:533,type:p.default.charStr},message2:{ID:534,type:p.default.charStr},statusRegister:{ID:535,type:p.default.octetStr},startMobilePoint1:{ID:536,type:p.default.uint8},stopMobilePoint1:{ID:537,type:p.default.uint8},startMobilePoint2:{ID:544,type:p.default.uint8},stopMobilePoint2:{ID:545,type:p.default.uint8},startMobilePoint3:{ID:546,type:p.default.uint8},stopMobilePoint3:{ID:547,type:p.default.uint8},relais:{ID:548,type:p.default.uint16},daysNumberCurrentCalendar:{ID:549,type:p.default.uint8},daysNumberNextCalendar:{ID:550,type:p.default.uint8},daysProfileCurrentCalendar:{ID:551,type:p.default.longOctetStr},daysProfileNextCalendar:{ID:552,type:p.default.longOctetStr},linkyMode:{ID:768,type:p.default.uint8}},commands:{},commandsResponse:{}},manuSpecificTuya_2:{ID:57346,attributes:{alarm_temperature_max:{ID:53258,type:p.default.int16},alarm_temperature_min:{ID:53259,type:p.default.int16},alarm_humidity_max:{ID:53261,type:p.default.int16},alarm_humidity_min:{ID:53262,type:p.default.int16},alarm_humidity:{ID:53263,type:p.default.enum8},alarm_temperature:{ID:53254,type:p.default.enum8},unknown:{ID:53264,type:p.default.uint8}},commands:{},commandsResponse:{}},manuSpecificTuya_3:{ID:57345,attributes:{switchType:{ID:53296,type:p.default.enum8}},commands:{},commandsResponse:{}},manuSpecificCentraliteHumidity:{ID:64581,manufacturerCode:ve.default.Centralite,attributes:{measuredValue:{ID:0,type:p.default.uint16}},commands:{},commandsResponse:{}},manuSpecificSmartThingsArrivalSensor:{ID:64517,manufacturerCode:ve.default.SmartThings,attributes:{},commands:{},commandsResponse:{arrivalSensorNotify:{ID:1,parameters:[]}}},manuSpecificSamsungAccelerometer:{ID:64514,manufacturerCode:ve.default.SmartThings,attributes:{motion_threshold_multiplier:{ID:0,type:p.default.uint8},motion_threshold:{ID:2,type:p.default.uint16},acceleration:{ID:16,type:p.default.bitmap8},x_axis:{ID:18,type:p.default.int16},y_axis:{ID:19,type:p.default.int16},z_axis:{ID:20,type:p.default.int16}},commands:{},commandsResponse:{}},heimanSpecificPM25Measurement:{ID:1066,manufacturerCode:ve.default.Heiman,attributes:{measuredValue:{ID:0,type:p.default.uint16},measuredMinValue:{ID:1,type:p.default.uint16},measuredMaxValue:{ID:2,type:p.default.uint16},measuredTolerance:{ID:3,type:p.default.uint16}},commands:{},commandsResponse:{}},heimanSpecificFormaldehydeMeasurement:{ID:1067,manufacturerCode:ve.default.Heiman,attributes:{measuredValue:{ID:0,type:p.default.uint16},measuredMinValue:{ID:1,type:p.default.uint16},measuredMaxValue:{ID:2,type:p.default.uint16},measuredTolerance:{ID:3,type:p.default.uint16}},commands:{},commandsResponse:{}},heimanSpecificAirQuality:{ID:64641,manufacturerCode:ve.default.Heiman,attributes:{language:{ID:61440,type:p.default.uint8},unitOfMeasure:{ID:61441,type:p.default.uint8},batteryState:{ID:61442,type:p.default.uint8},pm10measuredValue:{ID:61443,type:p.default.uint16},tvocMeasuredValue:{ID:61444,type:p.default.uint16},aqiMeasuredValue:{ID:61445,type:p.default.uint16},temperatureMeasuredMax:{ID:61446,type:p.default.int16},temperatureMeasuredMin:{ID:61447,type:p.default.int16},humidityMeasuredMax:{ID:61448,type:p.default.uint16},humidityMeasuredMin:{ID:61449,type:p.default.uint16},alarmEnable:{ID:61450,type:p.default.uint16}},commands:{setLanguage:{ID:283,parameters:[{name:"languageCode",type:p.default.uint8}]},setUnitOfTemperature:{ID:284,parameters:[{name:"unitsCode",type:p.default.uint8}]},getTime:{ID:285,parameters:[]}},commandsResponse:{}},heimanSpecificScenes:{ID:64640,manufacturerCode:ve.default.Heiman,attributes:{},commands:{cinema:{ID:240,parameters:[]},atHome:{ID:241,parameters:[]},sleep:{ID:242,parameters:[]},goOut:{ID:243,parameters:[]},repast:{ID:244,parameters:[]}},commandsResponse:{}},heimanSpecificInfraRedRemote:{ID:64642,manufacturerCode:ve.default.Heiman,attributes:{},commands:{sendKey:{ID:240,parameters:[{name:"id",type:p.default.uint8},{name:"keyCode",type:p.default.uint8}]},studyKey:{ID:241,parameters:[{name:"id",type:p.default.uint8},{name:"keyCode",type:p.default.uint8}]},deleteKey:{ID:243,parameters:[{name:"id",type:p.default.uint8},{name:"keyCode",type:p.default.uint8}]},createId:{ID:244,parameters:[{name:"modelType",type:p.default.uint8}]},getIdAndKeyCodeList:{ID:246,parameters:[]}},commandsResponse:{studyKeyRsp:{ID:242,parameters:[{name:"id",type:p.default.uint8},{name:"keyCode",type:p.default.uint8},{name:"result",type:p.default.uint8}]},createIdRsp:{ID:245,parameters:[{name:"id",type:p.default.uint8},{name:"modelType",type:p.default.uint8}]},getIdAndKeyCodeListRsp:{ID:247,parameters:[{name:"packetsTotal",type:p.default.uint8},{name:"packetNumber",type:p.default.uint8},{name:"packetLength",type:p.default.uint8},{name:"learnedDevicesList",type:Rt.default.LIST_UINT8}]}}},develcoSpecificAirQuality:{ID:64515,manufacturerCode:ve.default.Develco,attributes:{measuredValue:{ID:0,type:p.default.uint16},minMeasuredValue:{ID:1,type:p.default.uint16},maxMeasuredValue:{ID:2,type:p.default.uint16},resolution:{ID:3,type:p.default.uint16}},commands:{},commandsResponse:{}},schneiderSpecificPilotMode:{ID:65315,manufacturerCode:ve.default.SCHNEIDER,attributes:{pilotMode:{ID:49,type:p.default.enum8}},commands:{},commandsResponse:{}},elkoOccupancySettingClusterServer:{ID:65305,manufacturerCode:ve.default.ELKO,attributes:{AmbienceLightThreshold:{ID:0,type:p.default.uint16},OccupancyActions:{ID:1,type:p.default.enum8},UnoccupiedLevelDflt:{ID:2,type:p.default.uint8},UnoccupiedLevel:{ID:3,type:p.default.uint8}},commands:{},commandsResponse:{}},elkoSwitchConfigurationClusterServer:{ID:65303,manufacturerCode:ve.default.ELKO,attributes:{SwitchIndication:{ID:0,type:p.default.enum8},UpSceneID:{ID:16,type:p.default.uint8},UpGroupID:{ID:17,type:p.default.uint16},DownSceneID:{ID:32,type:p.default.uint8},DownGroupID:{ID:33,type:p.default.uint16},SwitchActions:{ID:1,type:p.default.enum8}},commands:{},commandsResponse:{}},sprutDevice:{ID:26112,manufacturerCode:26214,attributes:{debug:{ID:0,type:p.default.boolean}},commands:{},commandsResponse:{}},sprutVoc:{ID:26113,manufacturerCode:26214,attributes:{voc:{ID:26112,type:p.default.uint16}},commands:{},commandsResponse:{}},sprutNoise:{ID:26114,manufacturerCode:26214,attributes:{noise:{ID:26112,type:p.default.singlePrec},noiseDetected:{ID:26113,type:p.default.bitmap8},noiseDetectLevel:{ID:26114,type:p.default.singlePrec},noiseAfterDetectDelay:{ID:26115,type:p.default.uint16}},commands:{},commandsResponse:{}},sprutIrBlaster:{ID:26115,manufacturerCode:26214,attributes:{},commands:{playStore:{ID:0,parameters:[{name:"param",type:p.default.uint8}]},learnStart:{ID:1,parameters:[{name:"value",type:p.default.uint8}]},learnStop:{ID:2,parameters:[{name:"value",type:p.default.uint8}]},clearStore:{ID:3,parameters:[]},playRam:{ID:4,parameters:[]},learnRamStart:{ID:5,parameters:[]},learnRamStop:{ID:6,parameters:[]}},commandsResponse:{}},manuSpecificSiglisZigfred:{ID:64578,manufacturerCode:4764,attributes:{buttonEvent:{ID:8,type:p.default.uint32}},commands:{},commandsResponse:{}},manuSpecificInovelliVZM31SN:{ID:64561,manufacturerCode:4655,attributes:{dimmingSpeedUpRemote:{ID:1,type:p.default.uint8},dimmingSpeedUpLocal:{ID:2,type:p.default.uint8},rampRateOffToOnRemote:{ID:3,type:p.default.uint8},rampRateOffToOnLocal:{ID:4,type:p.default.uint8},dimmingSpeedDownRemote:{ID:5,type:p.default.uint8},dimmingSpeedDownLocal:{ID:6,type:p.default.uint8},rampRateOnToOffRemote:{ID:7,type:p.default.uint8},rampRateOnToOffLocal:{ID:8,type:p.default.uint8},minimumLevel:{ID:9,type:p.default.uint8},maximumLevel:{ID:10,type:p.default.uint8},invertSwitch:{ID:11,type:p.default.boolean},autoTimerOff:{ID:12,type:p.default.uint16},defaultLevelLocal:{ID:13,type:p.default.uint8},defaultLevelRemote:{ID:14,type:p.default.uint8},stateAfterPowerRestored:{ID:15,type:p.default.uint8},loadLevelIndicatorTimeout:{ID:17,type:p.default.uint8},activePowerReports:{ID:18,type:p.default.uint8},periodicPowerAndEnergyReports:{ID:19,type:p.default.uint16},activeEnergyReports:{ID:20,type:p.default.uint16},powerType:{ID:21,type:p.default.boolean},switchType:{ID:22,type:p.default.uint8},buttonDelay:{ID:50,type:p.default.uint8},deviceBindNumber:{ID:51,type:p.default.uint8},smartBulbMode:{ID:52,type:p.default.boolean},doubleTapUpForFullBrightness:{ID:53,type:p.default.boolean},defaultLed1ColorWhenOn:{ID:60,type:p.default.uint8},defaultLed1ColorWhenOff:{ID:61,type:p.default.uint8},defaultLed1IntensityWhenOn:{ID:62,type:p.default.uint8},defaultLed1IntensityWhenOff:{ID:63,type:p.default.uint8},defaultLed2ColorWhenOn:{ID:65,type:p.default.uint8},defaultLed2ColorWhenOff:{ID:66,type:p.default.uint8},defaultLed2IntensityWhenOn:{ID:67,type:p.default.uint8},defaultLed2IntensityWhenOff:{ID:68,type:p.default.uint8},defaultLed3ColorWhenOn:{ID:70,type:p.default.uint8},defaultLed3ColorWhenOff:{ID:71,type:p.default.uint8},defaultLed3IntensityWhenOn:{ID:72,type:p.default.uint8},defaultLed3IntensityWhenOff:{ID:73,type:p.default.uint8},defaultLed4ColorWhenOn:{ID:75,type:p.default.uint8},defaultLed4ColorWhenOff:{ID:76,type:p.default.uint8},defaultLed4IntensityWhenOn:{ID:77,type:p.default.uint8},defaultLed4IntensityWhenOff:{ID:78,type:p.default.uint8},defaultLed5ColorWhenOn:{ID:80,type:p.default.uint8},defaultLed5ColorWhenOff:{ID:81,type:p.default.uint8},defaultLed5IntensityWhenOn:{ID:82,type:p.default.uint8},defaultLed5IntensityWhenOff:{ID:83,type:p.default.uint8},defaultLed6ColorWhenOn:{ID:85,type:p.default.uint8},defaultLed6ColorWhenOff:{ID:86,type:p.default.uint8},defaultLed6IntensityWhenOn:{ID:87,type:p.default.uint8},defaultLed6IntensityWhenOff:{ID:88,type:p.default.uint8},defaultLed7ColorWhenOn:{ID:90,type:p.default.uint8},defaultLed7ColorWhenOff:{ID:91,type:p.default.uint8},defaultLed7IntensityWhenOn:{ID:92,type:p.default.uint8},defaultLed7IntensityWhenOff:{ID:93,type:p.default.uint8},ledColorWhenOn:{ID:95,type:p.default.uint8},ledColorWhenOff:{ID:96,type:p.default.uint8},ledIntensityWhenOn:{ID:97,type:p.default.uint8},ledIntensityWhenOff:{ID:98,type:p.default.uint8},localProtection:{ID:256,type:p.default.boolean},remoteProtection:{ID:257,type:p.default.boolean},outputMode:{ID:258,type:p.default.boolean},onOffLedMode:{ID:259,type:p.default.boolean},firmwareUpdateInProgressIndicator:{ID:260,type:p.default.boolean}},commands:{ledEffect:{ID:1,parameters:[{name:"effect",type:p.default.uint8},{name:"color",type:p.default.uint8},{name:"level",type:p.default.uint8},{name:"duration",type:p.default.uint8}]},individualLedEffect:{ID:3,parameters:[{name:"led",type:p.default.uint8},{name:"effect",type:p.default.uint8},{name:"color",type:p.default.uint8},{name:"level",type:p.default.uint8},{name:"duration",type:p.default.uint8}]}},commandsResponse:{}},owonClearMetering:{ID:65504,manufacturerCode:ve.default.OWON,attributes:{},commands:{owonClearMeasurementData:{ID:0,parameters:[]}},commandsResponse:{}}};var x_=iq.default=_qe;function oq(e){const c=e,{cluster:t,onChange:r,label:n,value:a}=c,i=Mt(c,["cluster","onChange","label","value"]),{t:o}=Ct("zigbee"),s=h=>{const{value:m}=h.target,g=x_[t].attributes[m];r(m,g)};let l=[];const d=x_[t];d&&(l=Object.keys(d.attributes)),a!==void 0&&!l.includes(a)&&l.push(a);const u=l.map(h=>x("option",{value:h,children:h},h));return u.unshift(x("option",{hidden:!0,children:o("select_attribute")},"none")),de("div",{className:"form-group",children:[n&&x("label",{className:"form-label",children:n}),x("select",He(Se({disabled:l.length===0,className:"form-control",onChange:s,value:a},i),{children:u}))]})}const bqe=(e,t,r)=>{let n=Object.keys(x_),a=[];const i=e.endpoints[t];return i&&(a=a.concat(i.clusters.output),n=n.filter(o=>!a.includes(o))),r&&!a.includes(r)&&a.push(r),[{name:"available",clusters:a},{name:"possible",clusters:n}]},wqe=["maximum_report_interval","minimum_report_interval","reportable_change","endpoint","cluster","attribute"],Sqe=e=>wqe.every(t=>e[t]!==void 0);function FF(e){const{onChange:t,label:r,value:n,name:a}=e;return de("div",{className:"form-group",children:[x("label",{className:"form-label text-nowrap",children:r}),x("input",{onChange:t,value:n,required:!0,type:"number",name:a,className:"form-control"})]})}class Aqe extends le.exports.Component{constructor(){super(...arguments),this.state={stateRule:{}},this.setSourceEp=t=>{const{stateRule:r}=this.state;r.endpoint=t,this.setState({stateRule:r})},this.setCluster=t=>{const{stateRule:r}=this.state;r.cluster=t,this.setState({stateRule:r})},this.setAttribute=t=>{const{stateRule:r}=this.state;r.attribute=t,this.setState({stateRule:r})},this.changeHandler=t=>{const{stateRule:r}=this.state,{name:n,value:a}=t.target;r[n]=a,this.setState({stateRule:r})},this.applyRule=()=>{const{onApply:t}=this.props,{stateRule:r}=this.state;t(r)},this.disableRule=()=>{const{onApply:t}=this.props,{stateRule:r}=this.state;t(He(Se({},r),{maximum_report_interval:65535}))}}static getDerivedStateFromProps(t,r){const{rule:n}=t,{stateRule:a}=r;return{stateRule:aq({},n,a)}}render(){const{rule:t,device:r,t:n}=this.props,{stateRule:a}=this.state,i=Fl(r);return de("div",{className:"row pb-2 border-bottom",children:[x("div",{className:"col-md-2",children:x(hf,{label:n("endpoint"),disabled:!t.isNew,values:i,value:a.endpoint,onChange:this.setSourceEp})}),x("div",{className:"col-md-2",children:x(b2,{label:n("cluster"),disabled:!a.endpoint,pickerType:$w.SINGLE,clusters:bqe(r,a.endpoint,a.cluster),value:a.cluster,onChange:this.setCluster})}),x("div",{className:"col-md-2",children:x(oq,{label:n("attribute"),disabled:!a.cluster,value:a.attribute,cluster:a.cluster,onChange:this.setAttribute})}),x("div",{className:"col-md-2",children:x(FF,{onChange:this.changeHandler,value:a.minimum_report_interval,name:"minimum_report_interval",label:n("min_rep_interval")})}),x("div",{className:"col-md-1",children:x(FF,{onChange:this.changeHandler,value:a.maximum_report_interval,name:"maximum_report_interval",label:n("max_rep_interval")})}),x("div",{className:"col-md-1",children:de("div",{className:"form-group",children:[x("label",{className:"form-label text-nowrap",children:n("min_rep_change")}),x("input",{onChange:this.changeHandler,value:a.reportable_change,required:!0,type:"number",name:"reportable_change",className:"form-control"})]})}),x("div",{className:"col-md-2",children:de("div",{className:"form-group",children:[x("label",{className:"form-label",children:n("actions")}),x("div",{className:"form-group",children:de("div",{className:"btn-group",role:"group","aria-label":"Basic example",children:[x(yt,{disabled:!Sqe(a),className:"btn btn-primary",onClick:this.applyRule,children:n("common:apply")}),a.isNew?null:x(yt,{prompt:!0,className:"btn btn-danger",onClick:this.disableRule,children:n("common:disable")})]})})]})})]})}}var Tqe=Mn(["zigbee","common"])(Aqe);const kqe=e=>{const t=[];return Object.entries(e.endpoints).forEach(([r,n])=>{n.configured_reportings.forEach(a=>{t.push(He(Se({},a),{endpoint:r}))})}),t},Cqe=e=>`${e.isNew}${e.endpoint}${e.cluster}-${e.attribute}`;function Eqe(e){const{configureReport:t,device:r}=e,[n]=le.exports.useState({isNew:Date.now(),reportable_change:0,minimum_report_interval:60,maximum_report_interval:3600,endpoint:"",cluster:"",attribute:""}),a=o=>{const{cluster:s,endpoint:l,attribute:d,minimum_report_interval:u,maximum_report_interval:c,reportable_change:h}=o;t(`${r.friendly_name}/${l}`,{cluster:s,attribute:d,minimum_report_interval:u,maximum_report_interval:c,reportable_change:h})},i=kqe(r);return x("div",{className:"container-fluid",children:[...i,n].map(o=>x(Tqe,{rule:o,device:r,onApply:a},Cqe(o)))})}const Iqe=["devices","groups"],Dqe=$r(Iqe,Br)(Eqe);function xqe(e){var a;const{device:t,deviceStates:r}=e,n=(a=r[t.friendly_name])!=null?a:{};return x("pre",{children:JSON.stringify(n,null,4)})}const Oqe=["deviceStates"],Mqe=$r(Oqe,Br)(xqe);function Rqe(e){return e.type==="binary"}function Lqe(e){return e.type==="list"}function Pqe(e){return e.type==="numeric"}function $qe(e){return e.type==="text"}function zqe(e){return e.type==="enum"}function O2(e){return e.type==="light"}function Nqe(e){return e.type==="switch"}function Fqe(e){return e.type==="cover"}function Bqe(e){return e.type==="lock"}function Wqe(e){return e.type==="fan"}function Qv(e){return e.type==="composite"&&e.name!=="color_xy"&&e.name!=="color_hs"}function sq(e){return e.type==="composite"&&(e.name==="color_xy"||e.name==="color_hs")}function lq(e){return e.type==="climate"}var Hqe=gp,jqe=iG,Uqe=Object.prototype,Vqe=Uqe.hasOwnProperty,Gqe=jqe(function(e,t,r){Vqe.call(e,r)?e[r].push(t):Hqe(e,r,[t])}),M2=Gqe,Fr=(e=>(e[e.NONE=0]="NONE",e[e.ACCESS_STATE=1]="ACCESS_STATE",e[e.ACCESS_WRITE=2]="ACCESS_WRITE",e[e.ACCESS_READ=4]="ACCESS_READ",e))(Fr||{});const BF=e=>{const{value:t,onClick:r,name:n}=e;return x(yt,{className:"btn btn-link",item:t,onClick:r,children:x(fc,{value:t,name:n})})},qqe=e=>{const{onChange:t,value:r,valueOn:n,valueOff:a,minimal:i,name:o}=e,s=u=>t(u.target.checked?n:a),l=r!=null,d=!i||i&&!l;return de("div",{children:[d&&x(BF,{value:a,name:o,onClick:t}),l?x("div",{className:"form-check form-switch form-check-inline align-middle me-0",children:x("input",{className:"form-check-input",type:"checkbox",checked:r===n,onChange:s})}):x("i",{className:"fa fa-question",title:"Current value unknown"}),d&&x(BF,{value:n,name:o,onClick:t})]})},Tp=e=>{const{feature:{property:t,unit:r,name:n},deviceState:a}=e;return de("div",{children:[x("strong",{children:x(fc,{value:a[t],name:n})}),r?x("small",{className:"text-muted ms-1",children:r}):null]})},kp=({feature:{access:e}})=>de("div",{className:"alert alert-warning p-0",role:"alert",children:["Unknown access ",JSON.stringify(e,null,4)]}),Kqe=e=>{const{feature:{access:t=Fr.ACCESS_WRITE,endpoint:r,name:n,property:a,value_off:i,value_on:o},deviceState:s,onChange:l,minimal:d}=e;return t&Fr.ACCESS_WRITE?x(qqe,{onChange:u=>l(r,{[a]:u}),value:s[a],valueOn:o,valueOff:i,minimal:d,name:n}):t&Fr.ACCESS_STATE?x(Tp,Se({},e)):x(kp,Se({},e))},Qqe=e=>x(yi,Se({type:"climate"},e)),Zqe={position:[0,25,50,75,100].map(e=>({value:e,name:e+""})),tilt:[0,25,50,75,100].map(e=>({value:e,name:e+""}))},Yqe=e=>x(yi,He(Se({type:"cover"},e),{stepsConfiguration:Zqe}));var Xqe={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]};const mf=Xqe,uq={};for(const e of Object.keys(mf))uq[mf[e]]=e;const Ze={rgb:{channels:3,labels:"rgb"},hsl:{channels:3,labels:"hsl"},hsv:{channels:3,labels:"hsv"},hwb:{channels:3,labels:"hwb"},cmyk:{channels:4,labels:"cmyk"},xyz:{channels:3,labels:"xyz"},lab:{channels:3,labels:"lab"},lch:{channels:3,labels:"lch"},hex:{channels:1,labels:["hex"]},keyword:{channels:1,labels:["keyword"]},ansi16:{channels:1,labels:["ansi16"]},ansi256:{channels:1,labels:["ansi256"]},hcg:{channels:3,labels:["h","c","g"]},apple:{channels:3,labels:["r16","g16","b16"]},gray:{channels:1,labels:["gray"]}};var dq=Ze;for(const e of Object.keys(Ze)){if(!("channels"in Ze[e]))throw new Error("missing channels property: "+e);if(!("labels"in Ze[e]))throw new Error("missing channel labels property: "+e);if(Ze[e].labels.length!==Ze[e].channels)throw new Error("channel and label counts mismatch: "+e);const{channels:t,labels:r}=Ze[e];delete Ze[e].channels,delete Ze[e].labels,Object.defineProperty(Ze[e],"channels",{value:t}),Object.defineProperty(Ze[e],"labels",{value:r})}Ze.rgb.hsl=function(e){const t=e[0]/255,r=e[1]/255,n=e[2]/255,a=Math.min(t,r,n),i=Math.max(t,r,n),o=i-a;let s,l;i===a?s=0:t===i?s=(r-n)/o:r===i?s=2+(n-t)/o:n===i&&(s=4+(t-r)/o),s=Math.min(s*60,360),s<0&&(s+=360);const d=(a+i)/2;return i===a?l=0:d<=.5?l=o/(i+a):l=o/(2-i-a),[s,l*100,d*100]};Ze.rgb.hsv=function(e){let t,r,n,a,i;const o=e[0]/255,s=e[1]/255,l=e[2]/255,d=Math.max(o,s,l),u=d-Math.min(o,s,l),c=function(h){return(d-h)/6/u+1/2};return u===0?(a=0,i=0):(i=u/d,t=c(o),r=c(s),n=c(l),o===d?a=n-r:s===d?a=1/3+t-n:l===d&&(a=2/3+r-t),a<0?a+=1:a>1&&(a-=1)),[a*360,i*100,d*100]};Ze.rgb.hwb=function(e){const t=e[0],r=e[1];let n=e[2];const a=Ze.rgb.hsl(e)[0],i=1/255*Math.min(t,Math.min(r,n));return n=1-1/255*Math.max(t,Math.max(r,n)),[a,i*100,n*100]};Ze.rgb.cmyk=function(e){const t=e[0]/255,r=e[1]/255,n=e[2]/255,a=Math.min(1-t,1-r,1-n),i=(1-t-a)/(1-a)||0,o=(1-r-a)/(1-a)||0,s=(1-n-a)/(1-a)||0;return[i*100,o*100,s*100,a*100]};function Jqe(e,t){return(e[0]-t[0])**2+(e[1]-t[1])**2+(e[2]-t[2])**2}Ze.rgb.keyword=function(e){const t=uq[e];if(t)return t;let r=1/0,n;for(const a of Object.keys(mf)){const i=mf[a],o=Jqe(e,i);o<r&&(r=o,n=a)}return n};Ze.keyword.rgb=function(e){return mf[e]};Ze.rgb.xyz=function(e){let t=e[0]/255,r=e[1]/255,n=e[2]/255;t=t>.04045?((t+.055)/1.055)**2.4:t/12.92,r=r>.04045?((r+.055)/1.055)**2.4:r/12.92,n=n>.04045?((n+.055)/1.055)**2.4:n/12.92;const a=t*.4124+r*.3576+n*.1805,i=t*.2126+r*.7152+n*.0722,o=t*.0193+r*.1192+n*.9505;return[a*100,i*100,o*100]};Ze.rgb.lab=function(e){const t=Ze.rgb.xyz(e);let r=t[0],n=t[1],a=t[2];r/=95.047,n/=100,a/=108.883,r=r>.008856?r**(1/3):7.787*r+16/116,n=n>.008856?n**(1/3):7.787*n+16/116,a=a>.008856?a**(1/3):7.787*a+16/116;const i=116*n-16,o=500*(r-n),s=200*(n-a);return[i,o,s]};Ze.hsl.rgb=function(e){const t=e[0]/360,r=e[1]/100,n=e[2]/100;let a,i,o;if(r===0)return o=n*255,[o,o,o];n<.5?a=n*(1+r):a=n+r-n*r;const s=2*n-a,l=[0,0,0];for(let d=0;d<3;d++)i=t+1/3*-(d-1),i<0&&i++,i>1&&i--,6*i<1?o=s+(a-s)*6*i:2*i<1?o=a:3*i<2?o=s+(a-s)*(2/3-i)*6:o=s,l[d]=o*255;return l};Ze.hsl.hsv=function(e){const t=e[0];let r=e[1]/100,n=e[2]/100,a=r;const i=Math.max(n,.01);n*=2,r*=n<=1?n:2-n,a*=i<=1?i:2-i;const o=(n+r)/2,s=n===0?2*a/(i+a):2*r/(n+r);return[t,s*100,o*100]};Ze.hsv.rgb=function(e){const t=e[0]/60,r=e[1]/100;let n=e[2]/100;const a=Math.floor(t)%6,i=t-Math.floor(t),o=255*n*(1-r),s=255*n*(1-r*i),l=255*n*(1-r*(1-i));switch(n*=255,a){case 0:return[n,l,o];case 1:return[s,n,o];case 2:return[o,n,l];case 3:return[o,s,n];case 4:return[l,o,n];case 5:return[n,o,s]}};Ze.hsv.hsl=function(e){const t=e[0],r=e[1]/100,n=e[2]/100,a=Math.max(n,.01);let i,o;o=(2-r)*n;const s=(2-r)*a;return i=r*a,i/=s<=1?s:2-s,i=i||0,o/=2,[t,i*100,o*100]};Ze.hwb.rgb=function(e){const t=e[0]/360;let r=e[1]/100,n=e[2]/100;const a=r+n;let i;a>1&&(r/=a,n/=a);const o=Math.floor(6*t),s=1-n;i=6*t-o,(o&1)!==0&&(i=1-i);const l=r+i*(s-r);let d,u,c;switch(o){default:case 6:case 0:d=s,u=l,c=r;break;case 1:d=l,u=s,c=r;break;case 2:d=r,u=s,c=l;break;case 3:d=r,u=l,c=s;break;case 4:d=l,u=r,c=s;break;case 5:d=s,u=r,c=l;break}return[d*255,u*255,c*255]};Ze.cmyk.rgb=function(e){const t=e[0]/100,r=e[1]/100,n=e[2]/100,a=e[3]/100,i=1-Math.min(1,t*(1-a)+a),o=1-Math.min(1,r*(1-a)+a),s=1-Math.min(1,n*(1-a)+a);return[i*255,o*255,s*255]};Ze.xyz.rgb=function(e){const t=e[0]/100,r=e[1]/100,n=e[2]/100;let a,i,o;return a=t*3.2406+r*-1.5372+n*-.4986,i=t*-.9689+r*1.8758+n*.0415,o=t*.0557+r*-.204+n*1.057,a=a>.0031308?1.055*a**(1/2.4)-.055:a*12.92,i=i>.0031308?1.055*i**(1/2.4)-.055:i*12.92,o=o>.0031308?1.055*o**(1/2.4)-.055:o*12.92,a=Math.min(Math.max(0,a),1),i=Math.min(Math.max(0,i),1),o=Math.min(Math.max(0,o),1),[a*255,i*255,o*255]};Ze.xyz.lab=function(e){let t=e[0],r=e[1],n=e[2];t/=95.047,r/=100,n/=108.883,t=t>.008856?t**(1/3):7.787*t+16/116,r=r>.008856?r**(1/3):7.787*r+16/116,n=n>.008856?n**(1/3):7.787*n+16/116;const a=116*r-16,i=500*(t-r),o=200*(r-n);return[a,i,o]};Ze.lab.xyz=function(e){const t=e[0],r=e[1],n=e[2];let a,i,o;i=(t+16)/116,a=r/500+i,o=i-n/200;const s=i**3,l=a**3,d=o**3;return i=s>.008856?s:(i-16/116)/7.787,a=l>.008856?l:(a-16/116)/7.787,o=d>.008856?d:(o-16/116)/7.787,a*=95.047,i*=100,o*=108.883,[a,i,o]};Ze.lab.lch=function(e){const t=e[0],r=e[1],n=e[2];let a;a=Math.atan2(n,r)*360/2/Math.PI,a<0&&(a+=360);const o=Math.sqrt(r*r+n*n);return[t,o,a]};Ze.lch.lab=function(e){const t=e[0],r=e[1],a=e[2]/360*2*Math.PI,i=r*Math.cos(a),o=r*Math.sin(a);return[t,i,o]};Ze.rgb.ansi16=function(e,t=null){const[r,n,a]=e;let i=t===null?Ze.rgb.hsv(e)[2]:t;if(i=Math.round(i/50),i===0)return 30;let o=30+(Math.round(a/255)<<2|Math.round(n/255)<<1|Math.round(r/255));return i===2&&(o+=60),o};Ze.hsv.ansi16=function(e){return Ze.rgb.ansi16(Ze.hsv.rgb(e),e[2])};Ze.rgb.ansi256=function(e){const t=e[0],r=e[1],n=e[2];return t===r&&r===n?t<8?16:t>248?231:Math.round((t-8)/247*24)+232:16+36*Math.round(t/255*5)+6*Math.round(r/255*5)+Math.round(n/255*5)};Ze.ansi16.rgb=function(e){let t=e%10;if(t===0||t===7)return e>50&&(t+=3.5),t=t/10.5*255,[t,t,t];const r=(~~(e>50)+1)*.5,n=(t&1)*r*255,a=(t>>1&1)*r*255,i=(t>>2&1)*r*255;return[n,a,i]};Ze.ansi256.rgb=function(e){if(e>=232){const i=(e-232)*10+8;return[i,i,i]}e-=16;let t;const r=Math.floor(e/36)/5*255,n=Math.floor((t=e%36)/6)/5*255,a=t%6/5*255;return[r,n,a]};Ze.rgb.hex=function(e){const r=(((Math.round(e[0])&255)<<16)+((Math.round(e[1])&255)<<8)+(Math.round(e[2])&255)).toString(16).toUpperCase();return"000000".substring(r.length)+r};Ze.hex.rgb=function(e){const t=e.toString(16).match(/[a-f0-9]{6}|[a-f0-9]{3}/i);if(!t)return[0,0,0];let r=t[0];t[0].length===3&&(r=r.split("").map(s=>s+s).join(""));const n=parseInt(r,16),a=n>>16&255,i=n>>8&255,o=n&255;return[a,i,o]};Ze.rgb.hcg=function(e){const t=e[0]/255,r=e[1]/255,n=e[2]/255,a=Math.max(Math.max(t,r),n),i=Math.min(Math.min(t,r),n),o=a-i;let s,l;return o<1?s=i/(1-o):s=0,o<=0?l=0:a===t?l=(r-n)/o%6:a===r?l=2+(n-t)/o:l=4+(t-r)/o,l/=6,l%=1,[l*360,o*100,s*100]};Ze.hsl.hcg=function(e){const t=e[1]/100,r=e[2]/100,n=r<.5?2*t*r:2*t*(1-r);let a=0;return n<1&&(a=(r-.5*n)/(1-n)),[e[0],n*100,a*100]};Ze.hsv.hcg=function(e){const t=e[1]/100,r=e[2]/100,n=t*r;let a=0;return n<1&&(a=(r-n)/(1-n)),[e[0],n*100,a*100]};Ze.hcg.rgb=function(e){const t=e[0]/360,r=e[1]/100,n=e[2]/100;if(r===0)return[n*255,n*255,n*255];const a=[0,0,0],i=t%1*6,o=i%1,s=1-o;let l=0;switch(Math.floor(i)){case 0:a[0]=1,a[1]=o,a[2]=0;break;case 1:a[0]=s,a[1]=1,a[2]=0;break;case 2:a[0]=0,a[1]=1,a[2]=o;break;case 3:a[0]=0,a[1]=s,a[2]=1;break;case 4:a[0]=o,a[1]=0,a[2]=1;break;default:a[0]=1,a[1]=0,a[2]=s}return l=(1-r)*n,[(r*a[0]+l)*255,(r*a[1]+l)*255,(r*a[2]+l)*255]};Ze.hcg.hsv=function(e){const t=e[1]/100,r=e[2]/100,n=t+r*(1-t);let a=0;return n>0&&(a=t/n),[e[0],a*100,n*100]};Ze.hcg.hsl=function(e){const t=e[1]/100,n=e[2]/100*(1-t)+.5*t;let a=0;return n>0&&n<.5?a=t/(2*n):n>=.5&&n<1&&(a=t/(2*(1-n))),[e[0],a*100,n*100]};Ze.hcg.hwb=function(e){const t=e[1]/100,r=e[2]/100,n=t+r*(1-t);return[e[0],(n-t)*100,(1-n)*100]};Ze.hwb.hcg=function(e){const t=e[1]/100,r=e[2]/100,n=1-r,a=n-t;let i=0;return a<1&&(i=(n-a)/(1-a)),[e[0],a*100,i*100]};Ze.apple.rgb=function(e){return[e[0]/65535*255,e[1]/65535*255,e[2]/65535*255]};Ze.rgb.apple=function(e){return[e[0]/255*65535,e[1]/255*65535,e[2]/255*65535]};Ze.gray.rgb=function(e){return[e[0]/100*255,e[0]/100*255,e[0]/100*255]};Ze.gray.hsl=function(e){return[0,0,e[0]]};Ze.gray.hsv=Ze.gray.hsl;Ze.gray.hwb=function(e){return[0,100,e[0]]};Ze.gray.cmyk=function(e){return[0,0,0,e[0]]};Ze.gray.lab=function(e){return[e[0],0,0]};Ze.gray.hex=function(e){const t=Math.round(e[0]/100*255)&255,n=((t<<16)+(t<<8)+t).toString(16).toUpperCase();return"000000".substring(n.length)+n};Ze.rgb.gray=function(e){return[(e[0]+e[1]+e[2])/3/255*100]};const O_=dq;function eKe(){const e={},t=Object.keys(O_);for(let r=t.length,n=0;n<r;n++)e[t[n]]={distance:-1,parent:null};return e}function tKe(e){const t=eKe(),r=[e];for(t[e].distance=0;r.length;){const n=r.pop(),a=Object.keys(O_[n]);for(let i=a.length,o=0;o<i;o++){const s=a[o],l=t[s];l.distance===-1&&(l.distance=t[n].distance+1,l.parent=n,r.unshift(s))}}return t}function rKe(e,t){return function(r){return t(e(r))}}function nKe(e,t){const r=[t[e].parent,e];let n=O_[t[e].parent][e],a=t[e].parent;for(;t[a].parent;)r.unshift(t[a].parent),n=rKe(O_[t[a].parent][a],n),a=t[a].parent;return n.conversion=r,n}var aKe=function(e){const t=tKe(e),r={},n=Object.keys(t);for(let a=n.length,i=0;i<a;i++){const o=n[i];t[o].parent!==null&&(r[o]=nKe(o,t))}return r};const AC=dq,iKe=aKe,hd={},oKe=Object.keys(AC);function sKe(e){const t=function(...r){const n=r[0];return n==null?n:(n.length>1&&(r=n),e(r))};return"conversion"in e&&(t.conversion=e.conversion),t}function lKe(e){const t=function(...r){const n=r[0];if(n==null)return n;n.length>1&&(r=n);const a=e(r);if(typeof a=="object")for(let i=a.length,o=0;o<i;o++)a[o]=Math.round(a[o]);return a};return"conversion"in e&&(t.conversion=e.conversion),t}oKe.forEach(e=>{hd[e]={},Object.defineProperty(hd[e],"channels",{value:AC[e].channels}),Object.defineProperty(hd[e],"labels",{value:AC[e].labels});const t=iKe(e);Object.keys(t).forEach(n=>{const a=t[n];hd[e][n]=lKe(a),hd[e][n].raw=sKe(a)})});var M_=hd;const WF=(e,t)=>{switch(t){case"color_xy":{const{x:r=0,y:n=0}=e,a=1-r-n,i=1,o=i/n*r,s=i/n*a;return"#"+M_.xyz.hex([o*100,i*100,s*100])}case"color_hs":{const{hue:r=0,saturation:n=0}=e;return"#"+M_.hsv.hex([r,n,100])}default:return"#FFFFFF"}},HF=(e,t)=>{switch(t){case"color_hs":const[r,n]=M_.hex.hsv(e);return{hue:r,saturation:n};case"color_xy":const[a,i,o]=M_.hex.xyz(e),s=a/(a+i+o),l=i/(a+i+o);return{x:s,y:l};default:return{hex:e}}},uKe=["#FF0018","#FFA52C","#FFFF41","#008018","#0000F9","#86007D"],dKe=e=>{const d=e,{onChange:t,value:r={},format:n,steps:a=uKe,minimal:i}=d,o=Mt(d,["onChange","value","format","steps","minimal"]),[s,l]=le.exports.useState(WF(r,n));return le.exports.useEffect(()=>{l(WF(r,n))},[r,n]),de(St,{children:[!i&&x("div",{className:"btn-group me-2 float-start",children:a.map(u=>x(yt,{className:"btn",style:{backgroundColor:u},item:u,title:u,onClick:c=>t(HF(c,n)),children:"\xA0\xA0\xA0"},u))}),x("input",Se({type:"color",className:"form-control form-control-color",value:s,style:{minWidth:40},onChange:u=>{u.target.value.toLowerCase()!==s.toLowerCase()&&t(HF(u.target.value,n))}},o))]})},cKe=e=>{var o,s;const{deviceState:t,feature:r,onChange:n,minimal:a}=e,i={};for(const l of r.features)i[l.name]=(s=(o=t[r.property])==null?void 0:o[l.property])!=null?s:0;return x(dKe,{onChange:l=>n(r.endpoint,{color:l}),value:i,format:r.name,minimal:a})};function Ya(e){return e===null||["number","string","undefined"].includes(typeof e)}const cq=e=>{const{onChange:t,values:r,value:n,minimal:a}=e;return a?de("select",{className:"form-control",onChange:o=>{const s=r.find(l=>Ya(l)?l==o.target.value:l.value==o.target.value);t(s)},value:Ya(n)?n:n.value,children:[x("option",{hidden:!0,children:"----"},"hided"),r.map(o=>x("option",{value:Ya(o)?o:o.value,children:Ya(o)?o:o.name},Ya(o)?o:o.name))]}):x("div",{className:"btn-group me-2",children:r.map(i=>x(yt,{className:et("btn btn-outline-secondary",{active:Ya(i)?i===n:i.value===(Ya(n)?n:n.value)}),onClick:o=>t(o),item:Ya(i)?i:i.value,title:Ya(i)?i:i.description,children:Ya(i)?x(fc,{value:i,name:""}):i.name},Ya(i)?i:i.name))})},hKe=4,mKe=e=>{const{onChange:t,feature:{access:r=Fr.ACCESS_WRITE,values:n,endpoint:a,property:i},deviceState:o,minimal:s}=e,l=n.length>hKe;return r&Fr.ACCESS_WRITE?x(cq,{onChange:d=>t(a,{[i]:d}),values:n,value:o[i],minimal:s||l}):r&Fr.ACCESS_STATE?x(Tp,Se({},e)):x(kp,Se({},e))},fKe={brightness:[0,25,50,75,100].map(e=>({value:Pze(e,[0,100],[0,255]),name:e+"%"})),color_temp:[1e3,2e3,3e3,4e3,5e3,6500].map(e=>({value:1e6/e,name:e+"K"}))},pKe=e=>x(yi,He(Se({type:"light"},e),{stepsConfiguration:fKe})),gKe=e=>x(yi,Se({type:"lock"},e)),hq=e=>{const m=e,{onChange:t,value:r,valueStep:n,min:a,max:i,unit:o,steps:s,minimal:l}=m,d=Mt(m,["onChange","value","valueStep","min","max","unit","steps","minimal"]),[u,c]=le.exports.useState(r);le.exports.useEffect(()=>{c(r)},[r]);const h=a!==void 0&&i!==void 0;return de("div",{className:"input-group align-items-center",children:[!l&&s?x(cq,{values:s,onChange:t,value:u}):null,h?x("input",Se({min:a,max:i,step:n,type:"range",className:"form-range form-control border-0",value:u,onChange:f=>c(f.target.valueAsNumber),onTouchEnd:()=>t(u),onMouseUp:()=>t(u)},d)):null,(!l||!h)&&x("input",He(Se({type:"number",className:et("form-control",{"ms-1":h}),value:u,step:n,onChange:f=>c(f.target.valueAsNumber),onBlur:()=>t(u),min:a,max:i},d),{style:h?{maxWidth:"100px"}:{}})),!l&&o?x("span",{className:"input-group-text",style:{minWidth:"66px"},children:o}):null]})},vKe=e=>{var m;const{feature:{presets:t,access:r=Fr.ACCESS_WRITE,endpoint:n,property:a,unit:i,value_max:o,value_min:s,value_step:l},deviceState:d,steps:u,onChange:c,minimal:h}=e;return r&Fr.ACCESS_WRITE?x(hq,{onChange:f=>c(n,{[a]:f}),value:(m=d[a])!=null?m:0,min:s,max:o,step:l,steps:t&&t.length?t:u,unit:i,minimal:h}):r&Fr.ACCESS_STATE?x(Tp,Se({},e)):x(kp,Se({},e))},yKe=e=>{const s=e,{onChange:t,value:r,unit:n}=s,a=Mt(s,["onChange","value","unit"]),[i,o]=le.exports.useState(r);return le.exports.useEffect(()=>{o(r)},[r]),de(le.exports.Fragment,{children:[x("input",Se({type:"text",className:"form-control",value:i,onChange:l=>o(l.target.value),onBlur:()=>t(i)},a)),n?x("span",{className:"input-group-text",style:{minWidth:"66px"},children:n}):null]})},_Ke=e=>{var o;const{feature:{access:t=Fr.ACCESS_WRITE,endpoint:r,property:n},deviceState:a,onChange:i}=e;return t&Fr.ACCESS_WRITE?x(yKe,{onChange:s=>i(r,{[n]:s}),value:(o=a[n])!=null?o:""}):t&Fr.ACCESS_STATE?x(Tp,Se({},e)):x(kp,Se({},e))},bKe=e=>x(yi,Se({type:"switch"},e)),wKe=e=>x(yi,Se({type:"fan"},e)),SKe=e=>{const c=e,{onChange:t,value:r,minimal:n}=c,a=Mt(c,["onChange","value","minimal"]),[i,o]=le.exports.useState(r);le.exports.useEffect(()=>{o(r)},[r]);const s=h=>{o(h),t(h)},l=(h,m)=>{const f=[...i];f[m]=h,s(f)},d=h=>()=>{const m=[...i];m.splice(h,1),s(m)},u=()=>s([...i,0]);return i.length===0?x("div",{className:"mt-3 mb-3 row",children:x(yt,{className:"btn btn-success col-1 me-2",onClick:u,children:"+"})}):x("div",{children:i.map((h,m)=>{const f=i.length-1===m;return de("div",{className:"mt-3 mb-3 row",children:[x("div",{className:"col-10",children:x(hq,Se({onChange:g=>l(g,m),value:h,minimal:n},a))}),de("div",{className:"btn-group col-2",role:"group",children:[x(yt,{className:"btn btn-danger me-2",onClick:d(m),children:"-"}),x(yt,{className:`btn btn-success ${f?"":"invisible"}`,onClick:u,children:"+"})]})]},m)})})},AKe=e=>{var d;const{feature:t,deviceState:r,onChange:n,minimal:a}=e,{access:i=Fr.ACCESS_WRITE,endpoint:o,property:s,item_type:l}=t;if(i&Fr.ACCESS_WRITE)switch(l){case"number":return x(SKe,{onChange:u=>n(o,{[s]:u}),value:(d=r[s])!=null?d:[],minimal:a});default:return x("pre",{children:JSON.stringify(t,null,4)})}else return i&Fr.ACCESS_STATE?x(Tp,Se({},e)):x(kp,Se({},e))},uA=e=>{const{feature:t,device:r,deviceState:n,stepsConfiguration:a,onRead:i,onChange:o,featureWrapperClass:s,minimal:l}=e,d={key:JSON.stringify(t),device:r,deviceState:n,onChange:o,onRead:i,featureWrapperClass:s,minimal:l},u={key:JSON.stringify(t),feature:t,onRead:i,deviceState:n};return Rqe(t)?x(s,He(Se({},u),{children:x(Kqe,Se({feature:t},d))})):Pqe(t)?x(s,He(Se({},u),{children:x(vKe,He(Se({feature:t},d),{steps:a==null?void 0:a[t.name]}))})):Lqe(t)?x(s,He(Se({},u),{children:x(AKe,Se({feature:t},d))})):$qe(t)?x(s,He(Se({},u),{children:x(_Ke,Se({feature:t},d))})):zqe(t)?x(s,He(Se({},u),{children:x(mKe,Se({feature:t},d))})):O2(t)?x(pKe,Se({feature:t},d)):Nqe(t)?x(bKe,Se({feature:t},d)):Fqe(t)?x(Yqe,Se({feature:t},d)):Bqe(t)?x(gKe,Se({feature:t},d)):sq(t)?x(s,He(Se({},u),{children:x(cKe,Se({feature:t},d))})):lq(t)?x(Qqe,Se({feature:t},d)):Wqe(t)?x(wKe,Se({feature:t},d)):Qv(t)?x(s,He(Se({},u),{children:x(yi,Se({type:"composite",feature:t},d))})):x(s,He(Se({},u),{children:x("pre",{children:JSON.stringify(t,null,4)})}))};class TKe extends le.exports.Component{constructor(){super(...arguments),this.state={},this.onChange=(t,r)=>{const{onChange:n,feature:a}=this.props;if(Qv(a)){const{features:i=[]}=a,o=i.length==1;this.setState(r,()=>{o&&this.onCompositeFeatureApply()})}else n(t,r)},this.onCompositeFeatureApply=()=>{const{onChange:t,feature:{endpoint:r,property:n}}=this.props;t(r,n?{[n]:this.state}:this.state)},this.onRead=(t,r)=>{const{onRead:n,feature:a}=this.props;Qv(a)?n(t,{[a.property]:r}):n(t,r)}}render(){const t="MAGIC_NO_ENDPOINT",{t:r,showEndpointLabels:n=!1,feature:a,device:i,deviceState:o,onRead:s,onChange:l,featureWrapperClass:d,minimal:u}=this.props,{features:c=[]}=a,h=Qv(a),m=c.length>1,f=!u;let g=[];if(f){const v=M2(c,y=>{var b;return(b=y.endpoint)!=null?b:t});v[t]&&(g.push(...v[t].map(y=>x(uA,{feature:y,device:i,deviceState:o,onChange:this.onChange,onRead:this.onRead,featureWrapperClass:d,minimal:u},JSON.stringify(y)))),delete v[t]);for(const y in v){const b=v[y];g.push(de("div",{children:[n?`Endpoint: ${y}`:null,x("div",{className:"ps-4",children:b.map(S=>x(uA,{feature:S,device:i,deviceState:o,onChange:this.onChange,onRead:this.onRead,featureWrapperClass:d,minimal:u},S.name+S.endpoint))})]},y))}}else{const v=c.map(y=>x(uA,{feature:y,device:i,deviceState:o,onChange:this.onChange,onRead:this.onRead,featureWrapperClass:d,minimal:u},JSON.stringify(y)));g=g.concat(v)}return h&&m&&g.push(x("div",{children:x(yt,{className:et("btn btn-primary float-end",{"btn-sm":u}),onClick:this.onCompositeFeatureApply,children:r("common:apply")})},a.name+"apply")),g}}var yi=Mn(["composite","common"])(TKe);const mq=e=>{const{t}=Ct(["featureDescriptions"]),{children:r,feature:n,onRead:a}=e,i=sq(n),o=n.access&Fr.ACCESS_READ||i;return de("div",{className:"row border-bottom py-1 w-100 align-items-center",children:[x("div",{className:"col-12 col-md-3",children:de("label",{className:"col-form-label w-100",children:[de("div",{className:"d-flex justify-content-between",children:[x("strong",{title:JSON.stringify(n),children:n.name==="state"?n.property:n.name}),o?x(yt,{item:n,onClick:s=>{a(n.endpoint,{[s.property]:""})},className:"btn btn-primary btn-sm",children:x("i",{className:"fa fa-sync"})}):null]}),n.description?x("small",{className:"d-block text-muted",children:t(n.description)}):null]})}),x("div",{className:"col-12 col-md-9",children:r})]})};function kKe(e){var s,l,d;const{device:t,deviceStates:r,setDeviceState:n,getDeviceState:a}=e,{t:i}=Ct(["exposes"]),o=(s=r[t.friendly_name])!=null?s:{};return(d=(l=t.definition)==null?void 0:l.exposes)!=null&&d.length?x(yi,{showEndpointLabels:!0,feature:{features:t.definition.exposes},type:"composite",device:t,deviceState:o,onChange:(u,c)=>{n(t.friendly_name,c)},onRead:(u,c)=>{a(t.friendly_name,c)},featureWrapperClass:mq}):i("empty_exposes_definition")}const CKe=["deviceStates"],EKe=$r(CKe,Br)(kKe),IKe="_tree_k0evw_1";var DKe={tree:IKe};const jF=e=>{const{label:t,clusters:r}=e;return r.length?de("li",{children:[x("span",{children:t}),x("ul",{children:r.map(n=>x("li",{children:x("span",{children:n})},n))})]}):null};function xKe(e){const{t}=Ct("zigbee"),{device:r}=e;return x("dl",{className:`${DKe.tree} row`,children:x("ul",{children:de("li",{children:[x("span",{children:r.ieee_address}),x("ul",{children:Object.entries(r.endpoints).map(([n,a])=>de("li",{children:[de("span",{children:[t("endpoint")," ",x("strong",{children:n})]}),de("ul",{children:[x(jF,{label:t("output_clusters"),clusters:a.clusters.output}),x(jF,{label:t("input_clusters"),clusters:a.clusters.input})]})]},n))})]})})})}var OKe=T2,MKe=bw,RKe=vw,UF=fa,LKe=Gc;function PKe(e,t,r,n){if(!UF(e))return e;t=MKe(t,e);for(var a=-1,i=t.length,o=i-1,s=e;s!=null&&++a<i;){var l=LKe(t[a]),d=r;if(l==="__proto__"||l==="constructor"||l==="prototype")return e;if(a!=o){var u=s[l];d=n?n(u,l,s):void 0,d===void 0&&(d=UF(u)?u:RKe(t[a+1])?[]:{})}OKe(s,l,d),s=s[l]}return e}var fq=PKe,$Ke=ww,zKe=fq,NKe=bw;function FKe(e,t,r){for(var n=-1,a=t.length,i={};++n<a;){var o=t[n],s=$Ke(e,o);r(s,o)&&zKe(i,NKe(o,e),s)}return i}var BKe=FKe,WKe=BKe,HKe=nG;function jKe(e,t){return WKe(e,t,function(r,n){return HKe(e,n)})}var UKe=jKe,VF=Nc,VKe=mp,GKe=tn,GF=VF?VF.isConcatSpreadable:void 0;function qKe(e){return GKe(e)||VKe(e)||!!(GF&&e&&e[GF])}var KKe=qKe,QKe=Nx,ZKe=KKe;function pq(e,t,r,n,a){var i=-1,o=e.length;for(r||(r=ZKe),a||(a=[]);++i<o;){var s=e[i];t>0&&r(s)?t>1?pq(s,t-1,r,n,a):QKe(a,s):n||(a[a.length]=s)}return a}var Nw=pq,YKe=Nw;function XKe(e){var t=e==null?0:e.length;return t?YKe(e,1):[]}var gq=XKe,JKe=gq,eQe=CG,tQe=EG;function rQe(e){return tQe(eQe(e,void 0,JKe),e+"")}var nQe=rQe,aQe=UKe,iQe=nQe,oQe=iQe(function(e,t){return e==null?{}:aQe(e,t)}),sQe=oQe,lQe=B9,uQe=pp,dQe=mp,cQe=tn,hQe=bu,mQe=eu.exports,fQe=_w,pQe=yw,gQe="[object Map]",vQe="[object Set]",yQe=Object.prototype,_Qe=yQe.hasOwnProperty;function bQe(e){if(e==null)return!0;if(hQe(e)&&(cQe(e)||typeof e=="string"||typeof e.splice=="function"||mQe(e)||pQe(e)||dQe(e)))return!e.length;var t=uQe(e);if(t==gQe||t==vQe)return!e.size;if(fQe(e))return!lQe(e).length;for(var r in e)if(_Qe.call(e,r))return!1;return!0}var wQe=bQe;function SQe(e){var t=e.errors;return q.createElement("div",{className:"panel panel-danger errors"},q.createElement("div",{className:"panel-heading"},q.createElement("h3",{className:"panel-title"},"Errors")),q.createElement("ul",{className:"list-group"},t.map(function(r,n){return q.createElement("li",{key:n,className:"list-group-item text-danger"},r.stack)})))}function AQe(e,t){for(var r=-1,n=e==null?0:e.length;++r<n&&t(e[r],r,e)!==!1;);return e}var vq=AQe,TQe=Ap,kQe=fp;function CQe(e,t){return e&&TQe(t,kQe(t),e)}var EQe=CQe,IQe=Ap,DQe=Kc;function xQe(e,t){return e&&IQe(t,DQe(t),e)}var OQe=xQe,MQe=Ap,RQe=Fx;function LQe(e,t){return MQe(e,RQe(e),t)}var PQe=LQe,$Qe=Nx,zQe=S2,NQe=Fx,FQe=$9,BQe=Object.getOwnPropertySymbols,WQe=BQe?function(e){for(var t=[];e;)$Qe(t,NQe(e)),e=zQe(e);return t}:FQe,yq=WQe,HQe=Ap,jQe=yq;function UQe(e,t){return HQe(e,jQe(e),t)}var VQe=UQe,GQe=P9,qQe=yq,KQe=Kc;function QQe(e){return GQe(e,KQe,qQe)}var ZQe=QQe,YQe=Object.prototype,XQe=YQe.hasOwnProperty;function JQe(e){var t=e.length,r=new e.constructor(t);return t&&typeof e[0]=="string"&&XQe.call(e,"index")&&(r.index=e.index,r.input=e.input),r}var eZe=JQe,tZe=w2;function rZe(e,t){var r=t?tZe(e.buffer):e.buffer;return new e.constructor(r,e.byteOffset,e.byteLength)}var nZe=rZe,aZe=/\w*$/;function iZe(e){var t=new e.constructor(e.source,aZe.exec(e));return t.lastIndex=e.lastIndex,t}var oZe=iZe,qF=Nc,KF=qF?qF.prototype:void 0,QF=KF?KF.valueOf:void 0;function sZe(e){return QF?Object(QF.call(e)):{}}var lZe=sZe,uZe=w2,dZe=nZe,cZe=oZe,hZe=lZe,mZe=XG,fZe="[object Boolean]",pZe="[object Date]",gZe="[object Map]",vZe="[object Number]",yZe="[object RegExp]",_Ze="[object Set]",bZe="[object String]",wZe="[object Symbol]",SZe="[object ArrayBuffer]",AZe="[object DataView]",TZe="[object Float32Array]",kZe="[object Float64Array]",CZe="[object Int8Array]",EZe="[object Int16Array]",IZe="[object Int32Array]",DZe="[object Uint8Array]",xZe="[object Uint8ClampedArray]",OZe="[object Uint16Array]",MZe="[object Uint32Array]";function RZe(e,t,r){var n=e.constructor;switch(t){case SZe:return uZe(e);case fZe:case pZe:return new n(+e);case AZe:return dZe(e,r);case TZe:case kZe:case CZe:case EZe:case IZe:case DZe:case xZe:case OZe:case MZe:return mZe(e,r);case gZe:return new n;case vZe:case bZe:return new n(e);case yZe:return cZe(e);case _Ze:return new n;case wZe:return hZe(e)}}var LZe=RZe,PZe=pp,$Ze=gi,zZe="[object Map]";function NZe(e){return $Ze(e)&&PZe(e)==zZe}var FZe=NZe,BZe=FZe,WZe=_u,ZF=sf.exports,YF=ZF&&ZF.isMap,HZe=YF?WZe(YF):BZe,jZe=HZe,UZe=pp,VZe=gi,GZe="[object Set]";function qZe(e){return VZe(e)&&UZe(e)==GZe}var KZe=qZe,QZe=KZe,ZZe=_u,XF=sf.exports,JF=XF&&XF.isSet,YZe=JF?ZZe(JF):QZe,XZe=YZe,JZe=fw,eYe=vq,tYe=T2,rYe=EQe,nYe=OQe,aYe=D_.exports,iYe=zw,oYe=PQe,sYe=VQe,lYe=W9,uYe=ZQe,dYe=pp,cYe=eZe,hYe=LZe,mYe=JG,fYe=tn,pYe=eu.exports,gYe=jZe,vYe=fa,yYe=XZe,_Ye=fp,bYe=Kc,wYe=1,SYe=2,AYe=4,_q="[object Arguments]",TYe="[object Array]",kYe="[object Boolean]",CYe="[object Date]",EYe="[object Error]",bq="[object Function]",IYe="[object GeneratorFunction]",DYe="[object Map]",xYe="[object Number]",wq="[object Object]",OYe="[object RegExp]",MYe="[object Set]",RYe="[object String]",LYe="[object Symbol]",PYe="[object WeakMap]",$Ye="[object ArrayBuffer]",zYe="[object DataView]",NYe="[object Float32Array]",FYe="[object Float64Array]",BYe="[object Int8Array]",WYe="[object Int16Array]",HYe="[object Int32Array]",jYe="[object Uint8Array]",UYe="[object Uint8ClampedArray]",VYe="[object Uint16Array]",GYe="[object Uint32Array]",cr={};cr[_q]=cr[TYe]=cr[$Ye]=cr[zYe]=cr[kYe]=cr[CYe]=cr[NYe]=cr[FYe]=cr[BYe]=cr[WYe]=cr[HYe]=cr[DYe]=cr[xYe]=cr[wq]=cr[OYe]=cr[MYe]=cr[RYe]=cr[LYe]=cr[jYe]=cr[UYe]=cr[VYe]=cr[GYe]=!0;cr[EYe]=cr[bq]=cr[PYe]=!1;function Zv(e,t,r,n,a,i){var o,s=t&wYe,l=t&SYe,d=t&AYe;if(r&&(o=a?r(e,n,a,i):r(e)),o!==void 0)return o;if(!vYe(e))return e;var u=fYe(e);if(u){if(o=cYe(e),!s)return iYe(e,o)}else{var c=dYe(e),h=c==bq||c==IYe;if(pYe(e))return aYe(e,s);if(c==wq||c==_q||h&&!a){if(o=l||h?{}:mYe(e),!s)return l?sYe(e,nYe(o,e)):oYe(e,rYe(o,e))}else{if(!cr[c])return a?e:{};o=hYe(e,c,s)}}i||(i=new JZe);var m=i.get(e);if(m)return m;i.set(e,o),yYe(e)?e.forEach(function(v){o.add(Zv(v,t,r,v,e,i))}):gYe(e)&&e.forEach(function(v,y){o.set(y,Zv(v,t,r,y,e,i))});var f=d?l?uYe:lYe:l?bYe:_Ye,g=u?void 0:f(e);return eYe(g||e,function(v,y){g&&(y=v,v=e[y]),tYe(o,y,Zv(v,t,r,y,e,i))}),o}var qYe=Zv,KYe=qYe,QYe=1,ZYe=4;function YYe(e){return KYe(e,QYe|ZYe)}var TC=YYe,XYe=jx,JYe=bu;function eXe(e,t){var r=-1,n=JYe(e)?Array(e.length):[];return XYe(e,function(a,i,o){n[++r]=t(a,i,o)}),n}var tXe=eXe;function rXe(e,t){var r=e.length;for(e.sort(t);r--;)e[r]=e[r].value;return e}var nXe=rXe,e6=Fc;function aXe(e,t){if(e!==t){var r=e!==void 0,n=e===null,a=e===e,i=e6(e),o=t!==void 0,s=t===null,l=t===t,d=e6(t);if(!s&&!d&&!i&&e>t||i&&o&&l&&!s&&!d||n&&o&&l||!r&&l||!a)return 1;if(!n&&!i&&!d&&e<t||d&&r&&a&&!n&&!i||s&&r&&a||!o&&a||!l)return-1}return 0}var iXe=aXe,oXe=iXe;function sXe(e,t,r){for(var n=-1,a=e.criteria,i=t.criteria,o=a.length,s=r.length;++n<o;){var l=oXe(a[n],i[n]);if(l){if(n>=s)return l;var d=r[n];return l*(d=="desc"?-1:1)}}return e.index-t.index}var lXe=sXe,dA=Qs,uXe=ww,dXe=aG,cXe=tXe,hXe=nXe,mXe=_u,fXe=lXe,pXe=vp,gXe=tn;function vXe(e,t,r){t.length?t=dA(t,function(i){return gXe(i)?function(o){return uXe(o,i.length===1?i[0]:i)}:i}):t=[pXe];var n=-1;t=dA(t,mXe(dXe));var a=cXe(e,function(i,o,s){var l=dA(t,function(d){return d(i)});return{criteria:l,index:++n,value:i}});return hXe(a,function(i,o){return fXe(i,o,r)})}var Sq=vXe,yXe=Nw,_Xe=Sq,bXe=Zs,t6=C2,wXe=bXe(function(e,t){if(e==null)return[];var r=t.length;return r>1&&t6(e,t[0],t[1])?t=[]:r>2&&t6(t[0],t[1],t[2])&&(t=[t[0]]),_Xe(e,yXe(t,1),[])}),Aq=wXe;function SXe(){}var AXe=SXe,cA=H9,TXe=AXe,kXe=zx,CXe=1/0,EXe=cA&&1/kXe(new cA([,-0]))[1]==CXe?function(e){return new cA(e)}:TXe,IXe=EXe,DXe=pw,xXe=e2,OXe=t2,MXe=gw,RXe=IXe,LXe=zx,PXe=200;function $Xe(e,t,r){var n=-1,a=xXe,i=e.length,o=!0,s=[],l=s;if(r)o=!1,a=OXe;else if(i>=PXe){var d=t?null:RXe(e);if(d)return LXe(d);o=!1,a=MXe,l=new DXe}else l=t?[]:s;e:for(;++n<i;){var u=e[n],c=t?t(u):u;if(u=r||u!==0?u:0,o&&c===c){for(var h=l.length;h--;)if(l[h]===c)continue e;t&&l.push(c),s.push(u)}else a(l,c,r)||(l!==s&&l.push(c),s.push(u))}return s}var R2=$Xe,zXe=R2;function NXe(e){return e&&e.length?zXe(e):[]}var Tq=NXe,FXe=R2;function BXe(e,t){return t=typeof t=="function"?t:void 0,e&&e.length?FXe(e,void 0,t):[]}var kq=BXe,WXe=Zs,HXe=Bc,jXe=C2,UXe=Kc,Cq=Object.prototype,VXe=Cq.hasOwnProperty,GXe=WXe(function(e,t){e=Object(e);var r=-1,n=t.length,a=n>2?t[2]:void 0;for(a&&jXe(t[0],t[1],a)&&(n=1);++r<n;)for(var i=t[r],o=UXe(i),s=-1,l=o.length;++s<l;){var d=o[s],u=e[d];(u===void 0||HXe(u,Cq[d])&&!VXe.call(e,d))&&(e[d]=i[d])}return e}),qXe=GXe;function KXe(e){var t=e==null?0:e.length;return t?e[t-1]:void 0}var QXe=KXe,ZXe=Qs,YXe=TG,XXe=Zs,JXe=IG,eJe=QXe,tJe=XXe(function(e){var t=eJe(e),r=ZXe(e,JXe);return t=typeof t=="function"?t:void 0,t&&r.pop(),r.length&&r[0]===e[0]?YXe(r,void 0,t):[]}),Eq=tJe,rJe=Ks,nJe=gi,aJe="[object Boolean]";function iJe(e){return e===!0||e===!1||nJe(e)&&rJe(e)==aJe}var oJe=iJe,mi=Hx,sJe=Aq,L2=Tq,r6=kq,lJe=qXe,uJe=Eq,R_=A2,hA=oJe,n6=e=>Array.isArray(e)?e:[e],Ia=e=>e===void 0,tv=e=>R_(e)||Array.isArray(e)?Object.keys(e):[],Cd=(e,t)=>e.hasOwnProperty(t),pc=e=>sJe(L2(e)),a6=e=>Ia(e)||Array.isArray(e)&&e.length===0,dJe=(e,t,r,n)=>t&&Cd(t,r)&&e&&Cd(e,r)&&n(e[r],t[r]),mA=(e,t)=>Ia(e)&&t===0||Ia(t)&&e===0||mi(e,t),cJe=(e,t)=>Ia(e)&&t===!1||Ia(t)&&e===!1||mi(e,t),i6=e=>Ia(e)||mi(e,{})||e===!0,rv=e=>Ia(e)||mi(e,{}),o6=e=>Ia(e)||R_(e)||e===!0||e===!1;function s6(e,t){return a6(e)&&a6(t)?!0:mi(pc(e),pc(t))}function hJe(e,t){return e=n6(e),t=n6(t),mi(pc(e),pc(t))}function Yv(e,t,r,n){var a=L2(tv(e).concat(tv(t)));return rv(e)&&rv(t)?!0:rv(e)&&tv(t).length||rv(t)&&tv(e).length?!1:a.every(function(i){var o=e[i],s=t[i];return Array.isArray(o)&&Array.isArray(s)?mi(pc(e),pc(t)):Array.isArray(o)&&!Array.isArray(s)||Array.isArray(s)&&!Array.isArray(o)?!1:dJe(e,t,i,n)})}function mJe(e,t,r,n){return R_(e)&&R_(t)?n(e,t):Array.isArray(e)&&Array.isArray(t)?Yv(e,t,r,n):mi(e,t)}function fA(e,t,r,n){var a=r6(e,n),i=r6(t,n),o=uJe(a,i,n);return o.length===Math.max(a.length,i.length)}var fJe={title:mi,uniqueItems:cJe,minLength:mA,minItems:mA,minProperties:mA,required:s6,enum:s6,type:hJe,items:mJe,anyOf:fA,allOf:fA,oneOf:fA,properties:Yv,patternProperties:Yv,dependencies:Yv},pJe=["properties","patternProperties","dependencies","uniqueItems","minLength","minItems","minProperties","required"],gJe=["additionalProperties","additionalItems","contains","propertyNames","not"];function kC(e,t,r){if(r=lJe(r,{ignore:[]}),i6(e)&&i6(t))return!0;if(!o6(e)||!o6(t))throw new Error("Either of the values are not a JSON schema.");if(e===t)return!0;if(hA(e)&&hA(t))return e===t;if(e===void 0&&t===!1||t===void 0&&e===!1||Ia(e)&&!Ia(t)||!Ia(e)&&Ia(t))return!1;var n=L2(Object.keys(e).concat(Object.keys(t)));if(r.ignore.length&&(n=n.filter(i=>r.ignore.indexOf(i)===-1)),!n.length)return!0;function a(i,o){return kC(i,o,r)}return n.every(function(i){var o=e[i],s=t[i];if(gJe.indexOf(i)!==-1)return kC(o,s,r);var l=fJe[i];if(l||(l=mi),mi(o,s))return!0;if(pJe.indexOf(i)===-1&&(!Cd(e,i)&&Cd(t,i)||Cd(e,i)&&!Cd(t,i)))return o===s;var d=l(o,s,i,a);if(!hA(d))throw new Error("Comparer must return true or false");return d})}var vJe=kC;function yJe(e){return Object.prototype.toString.call(e)==="[object Array]"}var P2=Array.isArray||yJe;function _Je(e){return(typeof e=="number"||Object.prototype.toString.call(e)==="[object Number]")&&e.valueOf()===e.valueOf()}var bJe=_Je,wJe=bJe;function SJe(e){return wJe(e)&&e%1===0}var AJe=SJe,TJe=P2,kJe=AJe;function CJe(e){var t;if(!TJe(e)||(t=e.length,!t))return!1;for(var r=0;r<t;r++)if(!kJe(e[r]))return!1;return!0}var Iq=CJe;function EJe(e){return typeof e=="function"}var Dq=EJe,IJe=P2,l6=Iq,DJe=Dq,nv=Math.pow(2,31)-1;function u6(e,t){var r=1,n;if(e===0)return t;if(t===0)return e;for(;e%2===0&&t%2===0;)e=e/2,t=t/2,r=r*2;for(;e%2===0;)e=e/2;for(;t;){for(;t%2===0;)t=t/2;e>t&&(n=t,t=e,e=n),t=t-e}return r*e}function d6(e,t){var r=0,n;if(e===0)return t;if(t===0)return e;for(;(e&1)===0&&(t&1)===0;)e>>>=1,t>>>=1,r++;for(;(e&1)===0;)e>>>=1;for(;t;){for(;(t&1)===0;)t>>>=1;e>t&&(n=t,t=e,e=n),t=t-e}return e<<r}function xJe(){var e=arguments.length,t,r,n,a,i,o,s;for(t=new Array(e),s=0;s<e;s++)t[s]=arguments[s];if(l6(t)){if(e===2)return i=t[0],o=t[1],i<0&&(i=-i),o<0&&(o=-o),i<=nv&&o<=nv?d6(i,o):u6(i,o);n=t}else if(IJe(t[0]))if(e>1){if(n=t[0],r=t[1],!DJe(r))throw new TypeError("gcd()::invalid input argument. Accessor must be a function. Value: `"+r+"`.")}else n=t[0];else throw new TypeError("gcd()::invalid input argument. Must provide an array of integers. Value: `"+t[0]+"`.");if(a=n.length,a<2)return null;if(r){for(i=new Array(a),s=0;s<a;s++)i[s]=r(n[s],s);n=i}if(e<3&&!l6(n))throw new TypeError("gcd()::invalid input argument. Accessed array values must be integers. Value: `"+n+"`.");for(s=0;s<a;s++)i=n[s],i<0&&(n[s]=-i);for(i=n[0],s=1;s<a;s++)o=n[s],o<=nv&&i<=nv?i=d6(i,o):i=u6(i,o);return i}var OJe=xJe,c6=OJe,MJe=P2,h6=Iq,RJe=Dq;function LJe(){var e=arguments.length,t,r,n,a,i,o,s;for(t=new Array(e),s=0;s<e;s++)t[s]=arguments[s];if(h6(t)){if(e===2)return i=t[0],o=t[1],i<0&&(i=-i),o<0&&(o=-o),i===0||o===0?0:i/c6(i,o)*o;n=t}else if(MJe(t[0]))if(e>1){if(n=t[0],r=t[1],!RJe(r))throw new TypeError("lcm()::invalid input argument. Accessor must be a function. Value: `"+r+"`.")}else n=t[0];else throw new TypeError("lcm()::invalid input argument. Must provide an array of integers. Value: `"+t[0]+"`.");if(a=n.length,a<2)return null;if(r){for(i=new Array(a),s=0;s<a;s++)i[s]=r(n[s],s);n=i}if(e<3&&!h6(n))throw new TypeError("lcm()::invalid input argument. Accessed array values must be integers. Value: `"+n+"`.");for(s=0;s<a;s++)i=n[s],i<0&&(n[s]=-i);for(i=n[0],s=1;s<a;s++){if(o=n[s],i===0||o===0)return 0;i=i/c6(i,o)*o}return i}var PJe=LJe,$Je=k2,m6=fa;function xq(e,t,r,n,a,i){return m6(e)&&m6(t)&&(i.set(t,e),$Je(e,t,void 0,xq,i),i.delete(t)),e}var zJe=xq,NJe=k2,FJe=nq,BJe=FJe(function(e,t,r,n){NJe(e,t,r,n)}),WJe=BJe,HJe=kG,jJe=Zs,UJe=zJe,VJe=WJe,GJe=jJe(function(e){return e.push(void 0,UJe),HJe(VJe,void 0,e)}),qJe=GJe,KJe=Nw,QJe=1/0;function ZJe(e){var t=e==null?0:e.length;return t?KJe(e,QJe):[]}var YJe=ZJe;function XJe(e,t,r,n){for(var a=r-1,i=e.length;++a<i;)if(n(e[a],t))return a;return-1}var JJe=XJe,eet=Qs,tet=AG,ret=JJe,net=_u,aet=zw,iet=Array.prototype,f6=iet.splice;function oet(e,t,r,n){var a=n?ret:tet,i=-1,o=t.length,s=e;for(e===t&&(t=aet(t)),r&&(s=eet(e,net(r)));++i<o;)for(var l=0,d=t[i],u=r?r(d):d;(l=a(s,u,l,n))>-1;)s!==e&&f6.call(s,l,1),f6.call(e,l,1);return e}var set=oet,uet=set;function det(e,t){return e&&e.length&&t&&t.length?uet(e,t):e}var cet=det,het=vp;function met(e){return typeof e=="function"?e:het}var fet=met,pet=vq,get=jx,vet=fet,yet=tn;function _et(e,t){var r=yet(e)?pet:get;return r(e,vet(t))}var bet=_et,wet=pw,Aet=e2,Tet=t2,ket=Qs,Cet=_u,Eet=gw,Iet=200;function Det(e,t,r,n){var a=-1,i=Aet,o=!0,s=e.length,l=[],d=t.length;if(!s)return l;r&&(t=ket(t,Cet(r))),n?(i=Tet,o=!1):t.length>=Iet&&(i=Eet,o=!1,t=new wet(t));e:for(;++a<s;){var u=e[a],c=r==null?u:r(u);if(u=n||u!==0?u:0,o&&c===c){for(var h=d;h--;)if(t[h]===c)continue e;l.push(u)}else i(t,c,n)||l.push(u)}return l}var xet=Det,Oet=xet,Met=Zs,Ret=Tw,Let=Met(function(e,t){return Ret(e)?Oet(e,t):[]}),Pet=Let,Oq=TC,ff=vJe,$et=PJe,zet=qJe,$2=gq,z2=YJe,Net=pC,Fet=Eq,CC=Hx,pf=A2,p6=cet,Mq=Aq,Rq=bet,N2=Tq,Wl=kq,Bet=Pet,g6=(e,...t)=>Bet.apply(null,[e].concat($2(t))),Wet=e=>io(Nq,e),Het=e=>io(Fq,e),io=(e,t)=>e.indexOf(t)!==-1,jet=e=>!kl(e).length&&e!==!1&&e!==!0,EC=e=>pf(e)||e===!0||e===!1,Uet=e=>e===!1,Lq=e=>e===!0,Fw=(e,t,r)=>r(e),Pq=e=>Mq(N2(z2(e))),ru=e=>e!==void 0,F2=e=>N2(z2(e.map(kl))),Qc=e=>e[0],Vet=e=>Pq(e),Cp=e=>Math.max.apply(Math,e),Ep=e=>Math.min.apply(Math,e),Get=e=>e.some(Lq),qet=e=>Wl($2(e),CC);function Ket(e){return function(t,r){return ff({[e]:t},{[e]:r})}}function $q(e){if(Array.isArray(e.allOf)){var t=e.allOf;return delete e.allOf,[e].concat(t.map(function(r){return $q(r)}))}else return[e]}function B2(e,t){return e.map(function(r){return r&&r[t]})}function Qet(e,t){return e.map(function(r){if(!!r)if(Array.isArray(r.items)){var n=r.items[t];if(EC(n))return n;if(r.hasOwnProperty("additionalItems"))return r.additionalItems}else return r.items})}function Zet(e,t){return e.map(function(r,n){try{return t(r,n)}catch{return}}).filter(ru)}function Yet(e){return e.map(function(t){if(!!t)return Array.isArray(t.items)?t.additionalItems:t.items})}function kl(e){return pf(e)||Array.isArray(e)?Object.keys(e):[]}function IC(e,t){if(t=t||[],!e.length)return t;var r=e.slice(0).shift(),n=e.slice(1);return t.length?IC(n,$2(t.map(a=>r.map(i=>[i].concat(a))))):IC(n,r.map(a=>a))}function Xet(e,t){return Array.isArray(e)?(e.splice.apply(e,[0,0].concat(t)),e):t}function zq(e,t){var r;try{r=e.map(function(n){return JSON.stringify(n,null,2)}).join(`
86
86
  `)}catch{r=e.join(", ")}throw new Error('Could not resolve values for path:"'+t.join(".")+`". They are probably incompatible. Values:
87
87
  `+r)}function Jet(e){for(var t in e)e.hasOwnProperty(t)&&jet(e[t])&&delete e[t];return e}function DC(e,t,r){return function(n,a){if(a===void 0)throw new Error("You need to call merger with a key for the property name or index if array.");return a=String(a),e(n,null,r.concat(t,a))}}function v6(e,t,r,n,a,i){if(e.length){var o=a.resolvers[t];if(!o)throw new Error("No resolver found for "+t);var s=Wl(r.map(function(c){return e.reduce(function(h,m){return c[m]!==void 0&&(h[m]=c[m]),h},{})}).filter(ru),ff),l=t==="properties"?Nq:Fq,d=l.reduce(function(c,h){return io(xC,h)?c[h]=DC(n,h,i):c[h]=function(m){return n(m,null,i.concat(h))},c},{});t==="items"&&(d.itemsArray=DC(n,"items",i),d.items=function(c){return n(c,null,i.concat("items"))});var u=o(s,i.concat(t),d,a);return pf(u)||zq(s,i.concat(t)),Jet(u)}}function pA(e,t,r){var n=F2(r||e),a=r?Qet:B2;return n.reduce(function(i,o){var s=a(e,o),l=Wl(s.filter(ru),ff);return i[o]=t(l,o),i},r?[]:{})}function ett(e){Rq(e,function(t,r){t===!1&&delete e[r]})}function ttt(e){Rq(e,function(t,r){t===!1&&e.splice(r,1)})}function rtt(e){return{required:e}}var Nq=["properties","patternProperties","additionalProperties"],Fq=["items","additionalItems"],xC=["properties","patternProperties","definitions","dependencies"],y6=["anyOf","oneOf"],ntt=["additionalProperties","additionalItems","contains","propertyNames","not","items"],er={type(e){if(e.some(Array.isArray)){var t=e.map(function(n){return Array.isArray(n)?n:[n]}),r=Net.apply(null,t);if(r.length===1)return r[0];if(r.length>1)return N2(r)}},properties(e,t,r,n){n.ignoreAdditionalProperties||(e.forEach(function(i){var o=e.filter(u=>u!==i),s=kl(i.properties),l=kl(i.patternProperties),d=l.map(u=>new RegExp(u));o.forEach(function(u){var c=kl(u.properties),h=c.filter(f=>d.some(g=>g.test(f))),m=g6(c,s,h);m.forEach(function(f){u.properties[f]=r.properties([u.properties[f],i.additionalProperties],f)})})}),e.forEach(function(i){var o=e.filter(l=>l!==i),s=kl(i.patternProperties);i.additionalProperties===!1&&o.forEach(function(l){var d=kl(l.patternProperties),u=g6(d,s);u.forEach(c=>delete l.patternProperties[c])})}));var a={additionalProperties:r.additionalProperties(e.map(i=>i.additionalProperties)),patternProperties:pA(e.map(i=>i.patternProperties),r.patternProperties),properties:pA(e.map(i=>i.properties),r.properties)};return a.additionalProperties===!1&&ett(a.properties),a},dependencies(e,t,r){var n=F2(e);return n.reduce(function(a,i){var o=B2(e,i),s=Wl(o.filter(ru),CC),l=s.filter(Array.isArray);if(l.length){if(l.length===s.length)a[i]=Pq(s);else{var d=s.filter(EC),u=l.map(rtt);a[i]=r(d.concat(u),i)}return a}return s=Wl(s,ff),a[i]=r(s,i),a},{})},items(e,t,r){var n=e.map(s=>s.items),a=n.filter(ru),i={};a.every(EC)?i.items=r.items(n):i.items=pA(e,r.itemsArray,n);var o;return a.every(Array.isArray)?o=e.map(s=>s.additionalItems):a.some(Array.isArray)&&(o=Yet(e)),o&&(i.additionalItems=r.additionalItems(o)),i.additionalItems===!1&&Array.isArray(i.items)&&ttt(i.items),i},oneOf(e,t,r){var n=IC(Oq(e)),a=Zet(n,r),i=Wl(a,ff);if(i.length)return i},not(e){return{anyOf:e}},pattern(e,t,r,n,a){var i=t.pop();a(e.map(function(o){return{[i]:o}}))},multipleOf(e){for(var t=e.slice(0),r=1;t.some(n=>!Number.isInteger(n));)t=t.map(n=>n*10),r=r*10;return $et(t)/r},enum(e){var t=Fet.apply(null,e.concat(CC));if(t.length)return Mq(t)}};er.$id=Qc;er.$ref=Qc;er.$schema=Qc;er.additionalItems=Fw;er.additionalProperties=Fw;er.anyOf=er.oneOf;er.contains=Fw;er.default=Qc;er.definitions=er.dependencies;er.description=Qc;er.examples=qet;er.exclusiveMaximum=Ep;er.exclusiveMinimum=Cp;er.maximum=Ep;er.maxItems=Ep;er.maxLength=Ep;er.maxProperties=Ep;er.minimum=Cp;er.minItems=Cp;er.minLength=Cp;er.minProperties=Cp;er.propertyNames=Fw;er.required=Vet;er.title=Qc;er.uniqueItems=Get;function W2(e,t,r){t=zet(t,{ignoreAdditionalProperties:!1,resolvers:er});function n(o,s,l){o=Oq(o.filter(ru)),l=l||[];var d=pf(s)?s:{};if(!o.length)return;if(o.some(Uet))return!1;if(o.every(Lq))return!0;o=o.filter(pf);var u=F2(o);if(io(u,"allOf"))return W2({allOf:o},t);var c=u.filter(Wet);p6(u,c);var h=u.filter(Het);p6(u,h),u.forEach(function(f){var g=B2(o,f),v=Wl(g.filter(ru),Ket(f));if(v.length===1&&io(y6,f))d[f]=v[0].map(function(w){return n([w],w)});else if(v.length===1&&!io(xC,f)&&!io(ntt,f))d[f]=v[0];else{var y=t.resolvers[f]||t.resolvers.defaultResolver;if(!y)throw new Error("No resolver found for key "+f+". You can provide a resolver for this keyword in the options, or provide a default resolver.");var b;io(xC,f)||io(y6,f)?b=DC(n,f,l):b=function(w){return n(w,null,l.concat(f))};var S=!1;d[f]=y(v,l.concat(f),b,t,function(w){return S=Array.isArray(w),m(w)}),d[f]===void 0&&!S?zq(v,l.concat(f)):d[f]===void 0&&delete d[f]}}),Object.assign(d,v6(c,"properties",o,n,t,l)),Object.assign(d,v6(h,"items",o,n,t,l));function m(f){d.allOf=Xet(d.allOf,f)}return d}var a=z2($q(e)),i=n(a,e);return i}W2.options={resolvers:er};var att=W2,av=function(e){return e&&e.Math==Math&&e},dn=av(typeof globalThis=="object"&&globalThis)||av(typeof window=="object"&&window)||av(typeof self=="object"&&self)||av(typeof kt=="object"&&kt)||function(){return this}()||Function("return this")(),Ys=function(e){try{return!!e()}catch{return!0}},itt=Ys,Bw=!itt(function(){var e=function(){}.bind();return typeof e!="function"||e.hasOwnProperty("prototype")}),ott=Bw,Bq=Function.prototype,_6=Bq.apply,b6=Bq.call,stt=typeof Reflect=="object"&&Reflect.apply||(ott?b6.bind(_6):function(){return b6.apply(_6,arguments)}),Wq=Bw,Hq=Function.prototype,ltt=Hq.bind,OC=Hq.call,utt=Wq&&ltt.bind(OC,OC),Su=Wq?function(e){return e&&utt(e)}:function(e){return e&&function(){return OC.apply(e,arguments)}},Au=function(e){return typeof e=="function"},jq={},dtt=Ys,Ip=!dtt(function(){return Object.defineProperty({},1,{get:function(){return 7}})[1]!=7}),ctt=Bw,iv=Function.prototype.call,H2=ctt?iv.bind(iv):function(){return iv.apply(iv,arguments)},Uq={},Vq={}.propertyIsEnumerable,Gq=Object.getOwnPropertyDescriptor,htt=Gq&&!Vq.call({1:2},1);Uq.f=htt?function(t){var r=Gq(this,t);return!!r&&r.enumerable}:Vq;var qq=function(e,t){return{enumerable:!(e&1),configurable:!(e&2),writable:!(e&4),value:t}},Kq=Su,mtt=Kq({}.toString),ftt=Kq("".slice),ptt=function(e){return ftt(mtt(e),8,-1)},gtt=dn,vtt=Su,ytt=Ys,_tt=ptt,gA=gtt.Object,btt=vtt("".split),wtt=ytt(function(){return!gA("z").propertyIsEnumerable(0)})?function(e){return _tt(e)=="String"?btt(e,""):gA(e)}:gA,Stt=dn,Att=Stt.TypeError,Qq=function(e){if(e==null)throw Att("Can't call method on "+e);return e},Ttt=wtt,ktt=Qq,Zq=function(e){return Ttt(ktt(e))},Ctt=Au,Ww=function(e){return typeof e=="object"?e!==null:Ctt(e)},Yq={},vA=Yq,yA=dn,Ett=Au,w6=function(e){return Ett(e)?e:void 0},j2=function(e,t){return arguments.length<2?w6(vA[e])||w6(yA[e]):vA[e]&&vA[e][t]||yA[e]&&yA[e][t]},Itt=Su,Dtt=Itt({}.isPrototypeOf),xtt=j2,Ott=xtt("navigator","userAgent")||"",Xq=dn,_A=Ott,S6=Xq.process,A6=Xq.Deno,T6=S6&&S6.versions||A6&&A6.version,k6=T6&&T6.v8,ai,L_;k6&&(ai=k6.split("."),L_=ai[0]>0&&ai[0]<4?1:+(ai[0]+ai[1]));!L_&&_A&&(ai=_A.match(/Edge\/(\d+)/),(!ai||ai[1]>=74)&&(ai=_A.match(/Chrome\/(\d+)/),ai&&(L_=+ai[1])));var Mtt=L_,C6=Mtt,Rtt=Ys,Jq=!!Object.getOwnPropertySymbols&&!Rtt(function(){var e=Symbol();return!String(e)||!(Object(e)instanceof Symbol)||!Symbol.sham&&C6&&C6<41}),Ltt=Jq,eK=Ltt&&!Symbol.sham&&typeof Symbol.iterator=="symbol",Ptt=dn,$tt=j2,ztt=Au,Ntt=Dtt,Ftt=eK,Btt=Ptt.Object,tK=Ftt?function(e){return typeof e=="symbol"}:function(e){var t=$tt("Symbol");return ztt(t)&&Ntt(t.prototype,Btt(e))},Wtt=dn,Htt=Wtt.String,jtt=function(e){try{return Htt(e)}catch{return"Object"}},Utt=dn,Vtt=Au,Gtt=jtt,qtt=Utt.TypeError,rK=function(e){if(Vtt(e))return e;throw qtt(Gtt(e)+" is not a function")},Ktt=rK,Qtt=function(e,t){var r=e[t];return r==null?void 0:Ktt(r)},Ztt=dn,bA=H2,wA=Au,SA=Ww,Ytt=Ztt.TypeError,Xtt=function(e,t){var r,n;if(t==="string"&&wA(r=e.toString)&&!SA(n=bA(r,e))||wA(r=e.valueOf)&&!SA(n=bA(r,e))||t!=="string"&&wA(r=e.toString)&&!SA(n=bA(r,e)))return n;throw Ytt("Can't convert object to primitive value")},nK={exports:{}},E6=dn,Jtt=Object.defineProperty,ert=function(e,t){try{Jtt(E6,e,{value:t,configurable:!0,writable:!0})}catch{E6[e]=t}return t},trt=dn,rrt=ert,I6="__core-js_shared__",nrt=trt[I6]||rrt(I6,{}),art=nrt,D6=art;(nK.exports=function(e,t){return D6[e]||(D6[e]=t!==void 0?t:{})})("versions",[]).push({version:"3.22.5",mode:"pure",copyright:"\xA9 2014-2022 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.22.5/LICENSE",source:"https://github.com/zloirock/core-js"});var irt=dn,ort=Qq,srt=irt.Object,aK=function(e){return srt(ort(e))},lrt=Su,urt=aK,drt=lrt({}.hasOwnProperty),U2=Object.hasOwn||function(t,r){return drt(urt(t),r)},crt=Su,hrt=0,mrt=Math.random(),frt=crt(1 .toString),prt=function(e){return"Symbol("+(e===void 0?"":e)+")_"+frt(++hrt+mrt,36)},grt=dn,vrt=nK.exports,x6=U2,yrt=prt,O6=Jq,iK=eK,Ju=vrt("wks"),Hl=grt.Symbol,M6=Hl&&Hl.for,_rt=iK?Hl:Hl&&Hl.withoutSetter||yrt,brt=function(e){if(!x6(Ju,e)||!(O6||typeof Ju[e]=="string")){var t="Symbol."+e;O6&&x6(Hl,e)?Ju[e]=Hl[e]:iK&&M6?Ju[e]=M6(t):Ju[e]=_rt(t)}return Ju[e]},wrt=dn,Srt=H2,R6=Ww,L6=tK,Art=Qtt,Trt=Xtt,krt=brt,Crt=wrt.TypeError,Ert=krt("toPrimitive"),Irt=function(e,t){if(!R6(e)||L6(e))return e;var r=Art(e,Ert),n;if(r){if(t===void 0&&(t="default"),n=Srt(r,e,t),!R6(n)||L6(n))return n;throw Crt("Can't convert object to primitive value")}return t===void 0&&(t="number"),Trt(e,t)},Drt=Irt,xrt=tK,oK=function(e){var t=Drt(e,"string");return xrt(t)?t:t+""},Ort=dn,P6=Ww,MC=Ort.document,Mrt=P6(MC)&&P6(MC.createElement),Rrt=function(e){return Mrt?MC.createElement(e):{}},Lrt=Ip,Prt=Ys,$rt=Rrt,sK=!Lrt&&!Prt(function(){return Object.defineProperty($rt("div"),"a",{get:function(){return 7}}).a!=7}),zrt=Ip,Nrt=H2,Frt=Uq,Brt=qq,Wrt=Zq,Hrt=oK,jrt=U2,Urt=sK,$6=Object.getOwnPropertyDescriptor;jq.f=zrt?$6:function(t,r){if(t=Wrt(t),r=Hrt(r),Urt)try{return $6(t,r)}catch{}if(jrt(t,r))return Brt(!Nrt(Frt.f,t,r),t[r])};var Vrt=Ys,Grt=Au,qrt=/#|\.prototype\./,Dp=function(e,t){var r=Qrt[Krt(e)];return r==Yrt?!0:r==Zrt?!1:Grt(t)?Vrt(t):!!t},Krt=Dp.normalize=function(e){return String(e).replace(qrt,".").toLowerCase()},Qrt=Dp.data={},Zrt=Dp.NATIVE="N",Yrt=Dp.POLYFILL="P",Xrt=Dp,z6=Su,Jrt=rK,ent=Bw,tnt=z6(z6.bind),rnt=function(e,t){return Jrt(e),t===void 0?e:ent?tnt(e,t):function(){return e.apply(t,arguments)}},lK={},nnt=Ip,ant=Ys,int=nnt&&ant(function(){return Object.defineProperty(function(){},"prototype",{value:42,writable:!1}).prototype!=42}),uK=dn,ont=Ww,snt=uK.String,lnt=uK.TypeError,unt=function(e){if(ont(e))return e;throw lnt(snt(e)+" is not an object")},dnt=dn,cnt=Ip,hnt=sK,mnt=int,ov=unt,N6=oK,fnt=dnt.TypeError,AA=Object.defineProperty,pnt=Object.getOwnPropertyDescriptor,TA="enumerable",kA="configurable",CA="writable";lK.f=cnt?mnt?function(t,r,n){if(ov(t),r=N6(r),ov(n),typeof t=="function"&&r==="prototype"&&"value"in n&&CA in n&&!n[CA]){var a=pnt(t,r);a&&a[CA]&&(t[r]=n.value,n={configurable:kA in n?n[kA]:a[kA],enumerable:TA in n?n[TA]:a[TA],writable:!1})}return AA(t,r,n)}:AA:function(t,r,n){if(ov(t),r=N6(r),ov(n),hnt)try{return AA(t,r,n)}catch{}if("get"in n||"set"in n)throw fnt("Accessors not supported");return"value"in n&&(t[r]=n.value),t};var gnt=Ip,vnt=lK,ynt=qq,_nt=gnt?function(e,t,r){return vnt.f(e,t,ynt(1,r))}:function(e,t,r){return e[t]=r,e},sv=dn,bnt=stt,wnt=Su,Snt=Au,Ant=jq.f,Tnt=Xrt,ed=Yq,knt=rnt,td=_nt,F6=U2,Cnt=function(e){var t=function(r,n,a){if(this instanceof t){switch(arguments.length){case 0:return new e;case 1:return new e(r);case 2:return new e(r,n)}return new e(r,n,a)}return bnt(e,this,arguments)};return t.prototype=e.prototype,t},dK=function(e,t){var r=e.target,n=e.global,a=e.stat,i=e.proto,o=n?sv:a?sv[r]:(sv[r]||{}).prototype,s=n?ed:ed[r]||td(ed,r,{})[r],l=s.prototype,d,u,c,h,m,f,g,v,y;for(h in t)d=Tnt(n?h:r+(a?".":"#")+h,e.forced),u=!d&&o&&F6(o,h),f=s[h],u&&(e.noTargetGet?(y=Ant(o,h),g=y&&y.value):g=o[h]),m=u&&g?g:t[h],!(u&&typeof f==typeof m)&&(e.bind&&u?v=knt(m,sv):e.wrap&&u?v=Cnt(m):i&&Snt(m)?v=wnt(m):v=m,(e.sham||m&&m.sham||f&&f.sham)&&td(v,"sham",!0),td(s,h,v),i&&(c=r+"Prototype",F6(ed,c)||td(ed,c,{}),td(ed[c],h,m),e.real&&l&&!l[h]&&td(l,h,m)))},Ent=Math.ceil,Int=Math.floor,cK=function(e){var t=+e;return t!==t||t===0?0:(t>0?Int:Ent)(t)},Dnt=cK,xnt=Math.max,Ont=Math.min,hK=function(e,t){var r=Dnt(e);return r<0?xnt(r+t,0):Ont(r,t)},Mnt=cK,Rnt=Math.min,Lnt=function(e){return e>0?Rnt(Mnt(e),9007199254740991):0},Pnt=Lnt,mK=function(e){return Pnt(e.length)},$nt=aK,B6=hK,znt=mK,Nnt=function(t){for(var r=$nt(this),n=znt(r),a=arguments.length,i=B6(a>1?arguments[1]:void 0,n),o=a>2?arguments[2]:void 0,s=o===void 0?n:B6(o,n);s>i;)r[i++]=t;return r},Fnt=dK,Bnt=Nnt;Fnt({target:"Array",proto:!0},{fill:Bnt});var Wnt=j2,fK=Wnt,Hnt=fK,jnt=Hnt("Array","fill"),Unt=jnt,Vnt=Unt,Gnt=Vnt,qnt=Gnt,Knt=qnt,Qnt=Knt,Znt=Qnt,Ynt=Nw,Xnt=Zs,Jnt=R2,eat=Tw,tat=Xnt(function(e){return Jnt(Ynt(e,1,eat,!0))}),rat=tat,Hw={},nat=/~/,aat=/~[01]/g;function iat(e){switch(e){case"~1":return"/";case"~0":return"~"}throw new Error("Invalid tilde escape: "+e)}function pK(e){return nat.test(e)?e.replace(aat,iat):e}function oat(e,t,r){for(var n,a,i=1,o=t.length;i<o;){if(t[i]==="constructor"||t[i]==="prototype"||t[i]==="__proto__")return e;if(n=pK(t[i++]),a=o>i,typeof e[n]=="undefined"&&(Array.isArray(e)&&n==="-"&&(n=e.length),a&&(t[i]!==""&&t[i]<1/0||t[i]==="-"?e[n]=[]:e[n]={})),!a)break;e=e[n]}var s=e[n];return r===void 0?delete e[n]:e[n]=r,s}function V2(e){if(typeof e=="string"){if(e=e.split("/"),e[0]==="")return e;throw new Error("Invalid JSON pointer.")}else if(Array.isArray(e)){for(const t of e)if(typeof t!="string"&&typeof t!="number")throw new Error("Invalid JSON pointer. Must be of type string or number.");return e}throw new Error("Invalid JSON pointer.")}function gK(e,t){if(typeof e!="object")throw new Error("Invalid input object.");t=V2(t);var r=t.length;if(r===1)return e;for(var n=1;n<r;){if(e=e[pK(t[n++])],r===n)return e;if(typeof e!="object")return}}function vK(e,t,r){if(typeof e!="object")throw new Error("Invalid input object.");if(t=V2(t),t.length===0)throw new Error("Invalid JSON pointer for set.");return oat(e,t,r)}function sat(e){var t=V2(e);return{get:function(r){return gK(r,t)},set:function(r,n){return vK(r,t,n)}}}Hw.get=gK;Hw.set=vK;Hw.compile=sat;function RC(){return RC=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},RC.apply(this,arguments)}function lat(e,t){if(e==null)return{};var r=uat(e,t),n,a;if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(a=0;a<i.length;a++)n=i[a],!(t.indexOf(n)>=0)&&(!Object.prototype.propertyIsEnumerable.call(e,n)||(r[n]=e[n]))}return r}function uat(e,t){if(e==null)return{};var r={},n=Object.keys(e),a,i;for(i=0;i<n.length;i++)a=n[i],!(t.indexOf(a)>=0)&&(r[a]=e[a]);return r}function Im(e){var t=e.type,r=t===void 0?"default":t,n=e.icon,a=e.className,i=lat(e,["type","icon","className"]);return q.createElement("button",RC({type:"button",className:"btn btn-".concat(r," ").concat(a)},i),q.createElement("i",{className:"glyphicon glyphicon-".concat(n)}))}function G2(e){var t=e.className,r=e.onClick,n=e.disabled;return q.createElement("div",{className:"row"},q.createElement("p",{className:"col-xs-3 col-xs-offset-9 text-right ".concat(t)},q.createElement(Im,{type:"info",icon:"plus",className:"btn-add col-xs-12","aria-label":"Add",tabIndex:"0",onClick:r,disabled:n})))}var dat=Zq,cat=hK,hat=mK,W6=function(e){return function(t,r,n){var a=dat(t),i=hat(a),o=cat(n,i),s;if(e&&r!=r){for(;i>o;)if(s=a[o++],s!=s)return!0}else for(;i>o;o++)if((e||o in a)&&a[o]===r)return e||o||0;return!e&&-1}},mat={includes:W6(!0),indexOf:W6(!1)},fat=dK,pat=mat.includes,gat=Ys,vat=gat(function(){return!Array(1).includes()});fat({target:"Array",proto:!0,forced:vat},{includes:function(t){return pat(this,t,arguments.length>1?arguments[1]:void 0)}});var yat=fK,_at=yat("Array","includes"),bat=At.shape({ArrayFieldTemplate:At.elementType,FieldTemplate:At.elementType,ObjectFieldTemplate:At.elementType,definitions:At.object.isRequired,rootSchema:At.object,fields:At.objectOf(At.elementType).isRequired,formContext:At.object.isRequired,widgets:At.objectOf(At.oneOfType([At.func,At.object])).isRequired});At.bool,At.bool,At.object,At.any,At.object,At.func,At.func.isRequired,At.func,At.arrayOf(At.string),At.bool,bat.isRequired,At.bool,At.object.isRequired,At.shape({"ui:options":At.shape({addable:At.bool,orderable:At.bool,removable:At.bool})});let wat=(e=21)=>crypto.getRandomValues(new Uint8Array(e)).reduce((t,r)=>(r&=63,r<36?t+=r.toString(36):r<62?t+=(r-26).toString(36).toUpperCase():r>62?t+="-":t+="_",t),"");function Xv(e){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?Xv=function(r){return typeof r}:Xv=function(r){return r&&typeof Symbol=="function"&&r.constructor===Symbol&&r!==Symbol.prototype?"symbol":typeof r},Xv(e)}function EA(e,t){if(e==null)return{};var r=Sat(e,t),n,a;if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(a=0;a<i.length;a++)n=i[a],!(t.indexOf(n)>=0)&&(!Object.prototype.propertyIsEnumerable.call(e,n)||(r[n]=e[n]))}return r}function Sat(e,t){if(e==null)return{};var r={},n=Object.keys(e),a,i;for(i=0;i<n.length;i++)a=n[i],!(t.indexOf(a)>=0)&&(r[a]=e[a]);return r}function IA(e){for(var t=1;t<arguments.length;t++){var r=arguments[t]!=null?arguments[t]:{},n=Object.keys(r);typeof Object.getOwnPropertySymbols=="function"&&(n=n.concat(Object.getOwnPropertySymbols(r).filter(function(a){return Object.getOwnPropertyDescriptor(r,a).enumerable}))),n.forEach(function(a){Ti(e,a,r[a])})}return e}function H6(e){return kat(e)||Tat(e)||Aat()}function Aat(){throw new TypeError("Invalid attempt to spread non-iterable instance")}function Tat(e){if(Symbol.iterator in Object(e)||Object.prototype.toString.call(e)==="[object Arguments]")return Array.from(e)}function kat(e){if(Array.isArray(e)){for(var t=0,r=new Array(e.length);t<e.length;t++)r[t]=e[t];return r}}function Cat(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function j6(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function Eat(e,t,r){return t&&j6(e.prototype,t),r&&j6(e,r),e}function Iat(e,t){return t&&(Xv(t)==="object"||typeof t=="function")?t:Yo(e)}function LC(e){return LC=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},LC(e)}function Yo(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Dat(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&PC(e,t)}function PC(e,t){return PC=Object.setPrototypeOf||function(n,a){return n.__proto__=a,n},PC(e,t)}function Ti(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function yK(e){var t=e.TitleField,r=e.idSchema,n=e.title,a=e.required;if(!n)return null;var i="".concat(r.$id,"__title");return x(t,{id:i,title:n,required:a})}function xat(e){var t=e.DescriptionField,r=e.idSchema,n=e.description;if(!n)return null;var a="".concat(r.$id,"__description");return x(t,{id:a,description:n})}function _K(e){var t={flex:1,paddingLeft:6,paddingRight:6,fontWeight:"bold"};return de("div",{className:e.className,children:[x("div",{className:e.hasToolbar?"col-xs-9":"col-xs-12",children:e.children}),e.hasToolbar&&x("div",{className:"col-xs-3 array-item-toolbox",children:de("div",{className:"btn-group",style:{display:"flex",justifyContent:"space-around"},children:[(e.hasMoveUp||e.hasMoveDown)&&x(Im,{icon:"arrow-up","aria-label":"Move up",className:"array-item-move-up",tabIndex:"-1",style:t,disabled:e.disabled||e.readonly||!e.hasMoveUp,onClick:e.onReorderClick(e.index,e.index-1)}),(e.hasMoveUp||e.hasMoveDown)&&x(Im,{icon:"arrow-down",className:"array-item-move-down","aria-label":"Move down",tabIndex:"-1",style:t,disabled:e.disabled||e.readonly||!e.hasMoveDown,onClick:e.onReorderClick(e.index,e.index+1)}),e.hasRemove&&x(Im,{type:"danger",icon:"remove","aria-label":"Remove",className:"array-item-remove",tabIndex:"-1",style:t,disabled:e.disabled||e.readonly,onClick:e.onDropIndexClick(e.index)})]})})]},e.key)}function Oat(e){return de("fieldset",{className:e.className,id:e.idSchema.$id,children:[x(yK,{TitleField:e.TitleField,idSchema:e.idSchema,title:e.uiSchema["ui:title"]||e.title,required:e.required},"array-field-title-".concat(e.idSchema.$id)),(e.uiSchema["ui:description"]||e.schema.description)&&x("div",{className:"field-description",children:e.uiSchema["ui:description"]||e.schema.description},"field-description-".concat(e.idSchema.$id)),x("div",{className:"row array-item-list",children:e.items&&e.items.map(_K)},"array-item-list-".concat(e.idSchema.$id)),e.canAdd&&x(G2,{className:"array-item-add",onClick:e.onAddClick,disabled:e.disabled||e.readonly})]})}function Mat(e){return de("fieldset",{className:e.className,id:e.idSchema.$id,children:[x(yK,{TitleField:e.TitleField,idSchema:e.idSchema,title:e.uiSchema["ui:title"]||e.title,required:e.required},"array-field-title-".concat(e.idSchema.$id)),(e.uiSchema["ui:description"]||e.schema.description)&&x(xat,{DescriptionField:e.DescriptionField,idSchema:e.idSchema,description:e.uiSchema["ui:description"]||e.schema.description},"array-field-description-".concat(e.idSchema.$id)),x("div",{className:"row array-item-list",children:e.items&&e.items.map(function(t){return _K(t)})},"array-item-list-".concat(e.idSchema.$id)),e.canAdd&&x(G2,{className:"array-item-add",onClick:e.onAddClick,disabled:e.disabled||e.readonly})]})}function $C(){return wat()}function U6(e){return Array.isArray(e)?e.map(function(t){return{key:$C(),item:t}}):[]}function Fh(e){return e.map(function(t){return t.item})}var bK=function(e){Dat(t,e);function t(r){var n;Cat(this,t),n=Iat(this,LC(t).call(this,r)),Ti(Yo(n),"_getNewFormDataRow",function(){var o=n.props,s=o.schema,l=o.registry,d=l===void 0?mn():l,u=d.rootSchema,c=s.items;return TE(s)&&mB(s)&&(c=s.additionalItems),Qw(c,void 0,u)}),Ti(Yo(n),"onAddClick",function(o){o&&o.preventDefault();var s=n.props.onChange,l={key:$C(),item:n._getNewFormDataRow()},d=[].concat(H6(n.state.keyedFormData),[l]);n.setState({keyedFormData:d,updatedKeyedFormData:!0},function(){return s(Fh(d))})}),Ti(Yo(n),"onAddIndexClick",function(o){return function(s){s&&s.preventDefault();var l=n.props.onChange,d={key:$C(),item:n._getNewFormDataRow()},u=H6(n.state.keyedFormData);u.splice(o,0,d),n.setState({keyedFormData:u,updatedKeyedFormData:!0},function(){return l(Fh(u))})}}),Ti(Yo(n),"onDropIndexClick",function(o){return function(s){s&&s.preventDefault();var l=n.props.onChange,d=n.state.keyedFormData,u;if(n.props.errorSchema){u={};var c=n.props.errorSchema;for(var h in c)h=parseInt(h),h<o?u[h]=c[h]:h>o&&(u[h-1]=c[h])}var m=d.filter(function(f,g){return g!==o});n.setState({keyedFormData:m,updatedKeyedFormData:!0},function(){return l(Fh(m),u)})}}),Ti(Yo(n),"onReorderClick",function(o,s){return function(l){l&&(l.preventDefault(),l.target.blur());var d=n.props.onChange,u;if(n.props.errorSchema){u={};var c=n.props.errorSchema;for(var h in c)h==o?u[s]=c[o]:h==s?u[o]=c[s]:u[h]=c[h]}var m=n.state.keyedFormData;function f(){var v=m.slice();return v.splice(o,1),v.splice(s,0,m[o]),v}var g=f();n.setState({keyedFormData:g},function(){return d(Fh(g),u)})}}),Ti(Yo(n),"onChangeForIndex",function(o){return function(s,l){var d=n.props,u=d.formData,c=d.onChange,h=u.map(function(m,f){var g=typeof s=="undefined"?null:s;return o===f?g:m});c(h,l&&n.props.errorSchema&&IA({},n.props.errorSchema,Ti({},o,l)))}}),Ti(Yo(n),"onSelectChange",function(o){n.props.onChange(o)});var a=r.formData,i=U6(a);return n.state={keyedFormData:i,updatedKeyedFormData:!1},n}return Eat(t,[{key:"isItemRequired",value:function(n){return Array.isArray(n.type)?!_at(n.type,"null"):n.type!=="null"}},{key:"canAddItem",value:function(n){var a=this.props,i=a.schema,o=a.uiSchema,s=ra(o),l=s.addable;return l!==!1&&(i.maxItems!==void 0?l=n.length<i.maxItems:l=!0),l}},{key:"render",value:function(){var n=this.props,a=n.schema,i=n.uiSchema,o=n.idSchema,s=n.registry,l=s===void 0?mn():s,d=l.rootSchema;if(!a.hasOwnProperty("items")){var u=l.fields,c=u.UnsupportedField;return x(c,{schema:a,idSchema:o,reason:"Missing items definition"})}return Zw(a,d)?this.renderMultiSelect():SQ(i)?this.renderCustomWidget():TE(a)?this.renderFixedArray():wQ(a,i,d)?this.renderFiles():this.renderNormalArray()}},{key:"renderNormalArray",value:function(){var n=this,a=this.props,i=a.schema,o=a.uiSchema,s=a.errorSchema,l=a.idSchema,d=a.name,u=a.required,c=a.disabled,h=a.readonly,m=a.hideError,f=a.autofocus,g=a.registry,v=g===void 0?mn():g,y=a.onBlur,b=a.onFocus,S=a.idPrefix,w=a.idSeparator,_=w===void 0?"_":w,A=a.rawErrors,I=i.title===void 0?d:i.title,k=v.ArrayFieldTemplate,C=v.rootSchema,T=v.fields,O=v.formContext,D=T.TitleField,M=T.DescriptionField,E=Zt(i.items,C),L=Fh(this.state.keyedFormData),P={canAdd:this.canAddItem(L),items:this.state.keyedFormData.map(function(H,$){var B=H.key,z=H.item,F=Zt(i.items,C,z),V=s?s[$]:void 0,K=l.$id+_+$,Z=Ul(F,K,C,z,S,_);return n.renderArrayFieldItem({key:B,index:$,canMoveUp:$>0,canMoveDown:$<L.length-1,itemSchema:F,itemIdSchema:Z,itemErrorSchema:V,itemData:z,itemUiSchema:o.items,autofocus:f&&$===0,onBlur:y,onFocus:b})}),className:"field field-array field-array-of-".concat(E.type),DescriptionField:M,disabled:c,idSchema:l,uiSchema:o,onAddClick:this.onAddClick,readonly:h,hideError:m,required:u,schema:i,title:I,TitleField:D,formContext:O,formData:L,rawErrors:A,registry:v},j=o["ui:ArrayFieldTemplate"]||k||Mat;return x(j,Se({},P))}},{key:"renderCustomWidget",value:function(){var n=this.props,a=n.schema,i=n.idSchema,o=n.uiSchema,s=n.disabled,l=n.readonly,d=n.hideError,u=n.required,c=n.placeholder,h=n.autofocus,m=n.onBlur,f=n.onFocus,g=n.formData,v=n.registry,y=v===void 0?mn():v,b=n.rawErrors,S=n.name,w=y.widgets,_=y.formContext,A=a.title||S,I=IA({},ra(o)),k=I.widget,C=EA(I,["widget"]),T=po(a,k,w);return x(T,{id:i&&i.$id,multiple:!0,onChange:this.onSelectChange,onBlur:m,onFocus:f,options:C,schema:a,registry:y,value:g,disabled:s,readonly:l,hideError:d,required:u,label:A,placeholder:c,formContext:_,autofocus:h,rawErrors:b})}},{key:"renderMultiSelect",value:function(){var n=this.props,a=n.schema,i=n.idSchema,o=n.uiSchema,s=n.formData,l=n.disabled,d=n.readonly,u=n.required,c=n.placeholder,h=n.autofocus,m=n.onBlur,f=n.onFocus,g=n.registry,v=g===void 0?mn():g,y=n.rawErrors,b=n.name,S=this.props.formData,w=v.widgets,_=v.rootSchema,A=v.formContext,I=Zt(a.items,_,s),k=a.title||b,C=j_(I),T=IA({},ra(o),{enumOptions:C}),O=T.widget,D=O===void 0?"select":O,M=EA(T,["widget"]),E=po(a,D,w);return x(E,{id:i&&i.$id,multiple:!0,onChange:this.onSelectChange,onBlur:m,onFocus:f,options:M,schema:a,registry:v,value:S,disabled:l,readonly:d,required:u,label:k,placeholder:c,formContext:A,autofocus:h,rawErrors:y})}},{key:"renderFiles",value:function(){var n=this.props,a=n.schema,i=n.uiSchema,o=n.idSchema,s=n.name,l=n.disabled,d=n.readonly,u=n.autofocus,c=n.onBlur,h=n.onFocus,m=n.registry,f=m===void 0?mn():m,g=n.rawErrors,v=a.title||s,y=this.props.formData,b=f.widgets,S=f.formContext,w=ra(i),_=w.widget,A=_===void 0?"files":_,I=EA(w,["widget"]),k=po(a,A,b);return x(k,{options:I,id:o&&o.$id,multiple:!0,onChange:this.onSelectChange,onBlur:c,onFocus:h,schema:a,title:v,value:y,disabled:l,readonly:d,formContext:S,autofocus:u,rawErrors:g})}},{key:"renderFixedArray",value:function(){var n=this,a=this.props,i=a.schema,o=a.uiSchema,s=a.formData,l=a.errorSchema,d=a.idPrefix,u=a.idSeparator,c=u===void 0?"_":u,h=a.idSchema,m=a.name,f=a.required,g=a.disabled,v=a.readonly,y=a.autofocus,b=a.registry,S=b===void 0?mn():b,w=a.onBlur,_=a.onFocus,A=a.rawErrors,I=i.title||m,k=this.props.formData,C=S.ArrayFieldTemplate,T=S.rootSchema,O=S.fields,D=S.formContext,M=O.TitleField,E=i.items.map(function(H,$){return Zt(H,T,s[$])}),L=mB(i)?Zt(i.additionalItems,T,s):null;(!k||k.length<E.length)&&(k=k||[],k=k.concat(new Array(E.length-k.length)));var P={canAdd:this.canAddItem(k)&&L,className:"field field-array field-array-fixed-items",disabled:g,idSchema:h,formData:s,items:this.state.keyedFormData.map(function(H,$){var B=H.key,z=H.item,F=$>=E.length,V=F?Zt(i.additionalItems,T,z):E[$],K=h.$id+c+$,Z=Ul(V,K,T,z,d,c),ue=F?o.additionalItems||{}:Array.isArray(o.items)?o.items[$]:o.items||{},fe=l?l[$]:void 0;return n.renderArrayFieldItem({key:B,index:$,canRemove:F,canMoveUp:$>=E.length+1,canMoveDown:F&&$<k.length-1,itemSchema:V,itemData:z,itemUiSchema:ue,itemIdSchema:Z,itemErrorSchema:fe,autofocus:y&&$===0,onBlur:w,onFocus:_})}),onAddClick:this.onAddClick,readonly:v,required:f,schema:i,uiSchema:o,title:I,TitleField:M,formContext:D,rawErrors:A},j=o["ui:ArrayFieldTemplate"]||C||Oat;return x(j,Se({},P))}},{key:"renderArrayFieldItem",value:function(n){var a=n.key,i=n.index,o=n.canRemove,s=o===void 0?!0:o,l=n.canMoveUp,d=l===void 0?!0:l,u=n.canMoveDown,c=u===void 0?!0:u,h=n.itemSchema,m=n.itemData,f=n.itemUiSchema,g=n.itemIdSchema,v=n.itemErrorSchema,y=n.autofocus,b=n.onBlur,S=n.onFocus,w=n.rawErrors,_=this.props,A=_.disabled,I=_.readonly,k=_.uiSchema,C=_.registry,T=C===void 0?mn():C,O=T.fields.SchemaField,D=ra(k),M=D.orderable,E=M===void 0?!0:M,L=D.removable,P=L===void 0?!0:L,j={moveUp:E&&d,moveDown:E&&c,remove:P&&s};return j.toolbar=Object.keys(j).some(function(H){return j[H]}),{children:x(O,{index:i,schema:h,uiSchema:f,formData:m,errorSchema:v,idPrefix:this.props.idPrefix,idSeparator:this.props.idSeparator,idSchema:g,required:this.isItemRequired(h),onChange:this.onChangeForIndex(i),onBlur:b,onFocus:S,registry:this.props.registry,disabled:this.props.disabled,readonly:this.props.readonly,hideError:this.props.hideError,autofocus:y,rawErrors:w}),className:"array-item",disabled:A,hasToolbar:j.toolbar,hasMoveUp:j.moveUp,hasMoveDown:j.moveDown,hasRemove:j.remove,index:i,key:a,onAddIndexClick:this.onAddIndexClick,onDropIndexClick:this.onDropIndexClick,onReorderClick:this.onReorderClick,readonly:I}}},{key:"itemTitle",get:function(){var n=this.props.schema;return n.items.title||n.items.description||"Item"}}],[{key:"getDerivedStateFromProps",value:function(n,a){if(a.updatedKeyedFormData)return{updatedKeyedFormData:!1};var i=n.formData||[],o=a.keyedFormData||[],s=i.length===o.length?o.map(function(l,d){return{key:l.key,item:i[d]}}):U6(i);return{keyedFormData:s}}}]),t}(le.exports.Component);Ti(bK,"defaultProps",{uiSchema:{},formData:[],idSchema:{},required:!1,disabled:!1,readonly:!1,autofocus:!1});function V6(e){for(var t=1;t<arguments.length;t++){var r=arguments[t]!=null?arguments[t]:{},n=Object.keys(r);typeof Object.getOwnPropertySymbols=="function"&&(n=n.concat(Object.getOwnPropertySymbols(r).filter(function(a){return Object.getOwnPropertyDescriptor(r,a).enumerable}))),n.forEach(function(a){Rat(e,a,r[a])})}return e}function Rat(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function Lat(e,t){if(e==null)return{};var r=Pat(e,t),n,a;if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(a=0;a<i.length;a++)n=i[a],!(t.indexOf(n)>=0)&&(!Object.prototype.propertyIsEnumerable.call(e,n)||(r[n]=e[n]))}return r}function Pat(e,t){if(e==null)return{};var r={},n=Object.keys(e),a,i;for(i=0;i<n.length;i++)a=n[i],!(t.indexOf(a)>=0)&&(r[a]=e[a]);return r}function wK(e){var t=e.schema,r=e.name,n=e.uiSchema,a=e.idSchema,i=e.formData,o=e.registry,s=o===void 0?mn():o,l=e.required,d=e.disabled,u=e.readonly,c=e.autofocus,h=e.onChange,m=e.onFocus,f=e.onBlur,g=e.rawErrors,v=t.title,y=s.widgets,b=s.formContext,S=s.fields,w=ra(n),_=w.widget,A=_===void 0?"checkbox":_,I=Lat(w,["widget"]),k=po(t,A,y),C;return Array.isArray(t.oneOf)?C=j_({oneOf:t.oneOf.map(function(T){return V6({},T,{title:T.title||(T.const===!0?"Yes":"No")})})}):C=j_({enum:t.enum||[!0,!1],enumNames:t.enumNames||(t.enum&&t.enum[0]===!1?["No","Yes"]:["Yes","No"])}),q.createElement(k,{options:V6({},I,{enumOptions:C}),schema:t,uiSchema:n,id:a&&a.$id,onChange:h,onFocus:m,onBlur:f,label:v===void 0?r:v,value:i,required:l,disabled:d,readonly:u,registry:s,formContext:b,autofocus:c,rawErrors:g,DescriptionField:S.DescriptionField})}wK.defaultProps={uiSchema:{},disabled:!1,readonly:!1,autofocus:!1};function $at(e){var t=e.id,r=e.description;return r?typeof r=="string"?q.createElement("p",{id:t,className:"field-description"},r):q.createElement("div",{id:t,className:"field-description"},r):null}function Jv(e){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?Jv=function(r){return typeof r}:Jv=function(r){return r&&typeof Symbol=="function"&&r.constructor===Symbol&&r!==Symbol.prototype?"symbol":typeof r},Jv(e)}function zat(e,t){if(e==null)return{};var r=Nat(e,t),n,a;if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(a=0;a<i.length;a++)n=i[a],!(t.indexOf(n)>=0)&&(!Object.prototype.propertyIsEnumerable.call(e,n)||(r[n]=e[n]))}return r}function Nat(e,t){if(e==null)return{};var r={},n=Object.keys(e),a,i;for(i=0;i<n.length;i++)a=n[i],!(t.indexOf(a)>=0)&&(r[a]=e[a]);return r}function Fat(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function G6(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function Bat(e,t,r){return t&&G6(e.prototype,t),r&&G6(e,r),e}function Wat(e,t){return t&&(Jv(t)==="object"||typeof t=="function")?t:SK(e)}function zC(e){return zC=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},zC(e)}function SK(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Hat(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&NC(e,t)}function NC(e,t){return NC=Object.setPrototypeOf||function(n,a){return n.__proto__=a,n},NC(e,t)}function jat(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var FC=function(e){Hat(t,e);function t(r){var n;Fat(this,t),n=Wat(this,zC(t).call(this,r)),jat(SK(n),"onOptionChange",function(s){var l=parseInt(s,10),d=n.props,u=d.formData,c=d.onChange,h=d.options,m=d.registry,f=m.rootSchema,g=Zt(h[l],f,u),v=void 0;if(yc(u)==="object"&&(g.type==="object"||g.properties)){v=Object.assign({},u);var y=h.slice();y.splice(l,1);var b=!0,S=!1,w=void 0;try{for(var _=y[Symbol.iterator](),A;!(b=(A=_.next()).done);b=!0){var I=A.value;if(I.properties)for(var k in I.properties)v.hasOwnProperty(k)&&delete v[k]}}catch(C){S=!0,w=C}finally{try{!b&&_.return!=null&&_.return()}finally{if(S)throw w}}}c(Qw(h[l],v,f)),n.setState({selectedOption:parseInt(s,10)})});var a=n.props,i=a.formData,o=a.options;return n.state={selectedOption:n.getMatchingOption(i,o)},n}return Bat(t,[{key:"componentDidUpdate",value:function(n,a){if(!di(this.props.formData,n.formData)&&this.props.idSchema.$id===n.idSchema.$id){var i=this.getMatchingOption(this.props.formData,this.props.options);if(!a||i===this.state.selectedOption)return;this.setState({selectedOption:i})}}},{key:"getMatchingOption",value:function(n,a){var i=this.props.registry.rootSchema,o=vf(n,a,i);return o!==0?o:this&&this.state?this.state.selectedOption:0}},{key:"render",value:function(){var n=this.props,a=n.baseType,i=n.disabled,o=n.readonly,s=n.hideError,l=n.errorSchema,d=n.formData,u=n.idPrefix,c=n.idSeparator,h=n.idSchema,m=n.onBlur,f=n.onChange,g=n.onFocus,v=n.options,y=n.registry,b=n.uiSchema,S=n.schema,w=y.fields.SchemaField,_=y.widgets,A=this.state.selectedOption,I=ra(b),k=I.widget,C=k===void 0?"select":k,T=zat(I,["widget"]),O=po({type:"number"},C,_),D=v[A]||null,M;D&&(M=D.type?D:Object.assign({},D,{type:a}));var E=v.map(function(L,P){return{label:L.title||"Option ".concat(P+1),value:P}});return de("div",{className:"panel panel-default panel-body",children:[x("div",{className:"form-group",children:x(O,Se({id:"".concat(h.$id).concat(S.oneOf?"__oneof_select":"__anyof_select"),schema:{type:"number",default:0},onChange:this.onOptionChange,onBlur:m,onFocus:g,value:A,options:{enumOptions:E}},T))}),D!==null&&q.createElement(w,{schema:M,uiSchema:b,errorSchema:l,idSchema:h,idPrefix:u,idSeparator:c,formData:d,onChange:f,onBlur:m,onFocus:g,registry:y,disabled:i,readonly:o,hideError:s})]})}}]),t}(le.exports.Component);FC.defaultProps={disabled:!1,readonly:!1,hideError:!1,errorSchema:{},idSchema:{},uiSchema:{}};function ey(e){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?ey=function(r){return typeof r}:ey=function(r){return r&&typeof Symbol=="function"&&r.constructor===Symbol&&r!==Symbol.prototype?"symbol":typeof r},ey(e)}function BC(){return BC=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},BC.apply(this,arguments)}function Uat(e,t){if(e==null)return{};var r=Vat(e,t),n,a;if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(a=0;a<i.length;a++)n=i[a],!(t.indexOf(n)>=0)&&(!Object.prototype.propertyIsEnumerable.call(e,n)||(r[n]=e[n]))}return r}function Vat(e,t){if(e==null)return{};var r={},n=Object.keys(e),a,i;for(i=0;i<n.length;i++)a=n[i],!(t.indexOf(a)>=0)&&(r[a]=e[a]);return r}function Gat(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function q6(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function qat(e,t,r){return t&&q6(e.prototype,t),r&&q6(e,r),e}function Kat(e,t){return t&&(ey(t)==="object"||typeof t=="function")?t:AK(e)}function WC(e){return WC=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},WC(e)}function AK(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Qat(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&HC(e,t)}function HC(e,t){return HC=Object.setPrototypeOf||function(n,a){return n.__proto__=a,n},HC(e,t)}function Zat(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var Yat=/\.([0-9]*0)*$/,Xat=/[0.]0*$/,TK=function(e){Qat(t,e);function t(r){var n;return Gat(this,t),n=Kat(this,WC(t).call(this,r)),Zat(AK(n),"handleChange",function(a){n.setState({lastValue:a}),"".concat(a).charAt(0)==="."&&(a="0".concat(a));var i=typeof a=="string"&&a.match(Yat)?qd(a.replace(Xat,"")):qd(a);n.props.onChange(i)}),n.state={lastValue:r.value},n}return qat(t,[{key:"render",value:function(){var n=this.props.registry.fields.StringField,a=this.props,i=a.formData,o=Uat(a,["formData"]),s=this.state.lastValue,l=i;if(typeof s=="string"&&typeof l=="number"){var d=new RegExp("".concat(l).replace(".","\\.")+"\\.?0*$");s.match(d)&&(l=s)}return q.createElement(n,BC({},o,{formData:l,onChange:this.handleChange}))}}]),t}(q.Component);TK.defaultProps={uiSchema:{}};function ty(e){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?ty=function(r){return typeof r}:ty=function(r){return r&&typeof Symbol=="function"&&r.constructor===Symbol&&r!==Symbol.prototype?"symbol":typeof r},ty(e)}function Jat(e){return rit(e)||tit(e)||eit()}function eit(){throw new TypeError("Invalid attempt to spread non-iterable instance")}function tit(e){if(Symbol.iterator in Object(e)||Object.prototype.toString.call(e)==="[object Arguments]")return Array.from(e)}function rit(e){if(Array.isArray(e)){for(var t=0,r=new Array(e.length);t<e.length;t++)r[t]=e[t];return r}}function rd(e){for(var t=1;t<arguments.length;t++){var r=arguments[t]!=null?arguments[t]:{},n=Object.keys(r);typeof Object.getOwnPropertySymbols=="function"&&(n=n.concat(Object.getOwnPropertySymbols(r).filter(function(a){return Object.getOwnPropertyDescriptor(r,a).enumerable}))),n.forEach(function(a){Jn(e,a,r[a])})}return e}function nit(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function K6(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function ait(e,t,r){return t&&K6(e.prototype,t),r&&K6(e,r),e}function iit(e,t){return t&&(ty(t)==="object"||typeof t=="function")?t:_l(e)}function jC(e){return jC=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},jC(e)}function _l(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function oit(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&UC(e,t)}function UC(e,t){return UC=Object.setPrototypeOf||function(n,a){return n.__proto__=a,n},UC(e,t)}function Jn(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function sit(e){var t=e.TitleField,r=e.DescriptionField;return de("fieldset",{id:e.idSchema.$id,children:[(e.uiSchema["ui:title"]||e.title)&&x(t,{id:"".concat(e.idSchema.$id,"__title"),title:e.title||e.uiSchema["ui:title"],required:e.required,formContext:e.formContext}),e.description&&x(r,{id:"".concat(e.idSchema.$id,"__description"),description:e.description,formContext:e.formContext}),e.properties.map(function(n){return n.content}),_Q(e.schema,e.uiSchema,e.formData)&&x(G2,{className:"object-property-expand",onClick:e.onAddClick(e.schema),disabled:e.disabled||e.readonly})]})}var kK=function(e){oit(t,e);function t(){var r,n;nit(this,t);for(var a=arguments.length,i=new Array(a),o=0;o<a;o++)i[o]=arguments[o];return n=iit(this,(r=jC(t)).call.apply(r,[this].concat(i))),Jn(_l(n),"state",{wasPropertyKeyModified:!1,additionalProperties:{}}),Jn(_l(n),"onPropertyChange",function(s){var l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;return function(d,u){d===void 0&&l&&(d="");var c=rd({},n.props.formData,Jn({},s,d));n.props.onChange(c,u&&n.props.errorSchema&&rd({},n.props.errorSchema,Jn({},s,u)))}}),Jn(_l(n),"onDropPropertyClick",function(s){return function(l){l.preventDefault();var d=n.props,u=d.onChange,c=d.formData,h=rd({},c);delete h[s],u(h)}}),Jn(_l(n),"getAvailableKey",function(s,l){for(var d=0,u=s;l.hasOwnProperty(u);)u="".concat(s,"-").concat(++d);return u}),Jn(_l(n),"onKeyChange",function(s){return function(l,d){if(s!==l){l=n.getAvailableKey(l,n.props.formData);var u=rd({},n.props.formData),c=Jn({},s,l),h=Object.keys(u).map(function(f){var g=c[f]||f;return Jn({},g,u[f])}),m=Object.assign.apply(Object,[{}].concat(Jat(h)));n.setState({wasPropertyKeyModified:!0}),n.props.onChange(m,d&&n.props.errorSchema&&rd({},n.props.errorSchema,Jn({},l,d)))}}}),Jn(_l(n),"handleAddClick",function(s){return function(){var l=s.additionalProperties.type,d=rd({},n.props.formData);if(s.additionalProperties.hasOwnProperty("$ref")){var u=n.props.registry,c=u===void 0?mn():u,h=Zt({$ref:s.additionalProperties.$ref},c.rootSchema,n.props.formData);l=h.type}d[n.getAvailableKey("newKey",d)]=n.getDefaultValue(l),n.props.onChange(d)}}),n}return ait(t,[{key:"isRequired",value:function(n){var a=this.props.schema;return Array.isArray(a.required)&&a.required.indexOf(n)!==-1}},{key:"getDefaultValue",value:function(n){switch(n){case"string":return"New Value";case"array":return[];case"boolean":return!1;case"null":return null;case"number":return 0;case"object":return{};default:return"New Value"}}},{key:"render",value:function(){var n=this,a=this.props,i=a.uiSchema,o=a.formData,s=a.errorSchema,l=a.idSchema,d=a.name,u=a.required,c=a.disabled,h=a.readonly,m=a.hideError,f=a.idPrefix,g=a.idSeparator,v=a.onBlur,y=a.onFocus,b=a.registry,S=b===void 0?mn():b,w=S.rootSchema,_=S.fields,A=S.formContext,I=_.SchemaField,k=_.TitleField,C=_.DescriptionField,T=Zt(this.props.schema,w,o),O=T.title===void 0?d:T.title,D=i["ui:description"]||T.description,M;try{var E=Object.keys(T.properties||{});M=hut(E,i["ui:order"])}catch(j){return de("div",{children:[de("p",{className:"config-error",style:{color:"red"},children:["Invalid ",d||"root"," object field configuration:",x("em",{children:j.message}),"."]}),x("pre",{children:JSON.stringify(T)})]})}var L=i["ui:ObjectFieldTemplate"]||S.ObjectFieldTemplate||sit,P={title:i["ui:title"]||O,description:D,TitleField:k,DescriptionField:C,properties:M.map(function(j){var H=T.properties[j].hasOwnProperty(Kw),$=H?i.additionalProperties:i[j],B=$&&$["ui:widget"]==="hidden";return{content:x(I,{name:j,required:n.isRequired(j),schema:T.properties[j],uiSchema:$,errorSchema:s[j],idSchema:l[j],idPrefix:f,idSeparator:g,formData:(o||{})[j],wasPropertyKeyModified:n.state.wasPropertyKeyModified,onKeyChange:n.onKeyChange(j),onChange:n.onPropertyChange(j,H),onBlur:v,onFocus:y,registry:S,disabled:c,readonly:h,hideError:m,onDropPropertyClick:n.onDropPropertyClick},j),name:j,readonly:h,disabled:c,required:u,hidden:B}}),readonly:h,disabled:c,required:u,idSchema:l,uiSchema:i,schema:T,formData:o,formContext:A,registry:S};return x(L,He(Se({},P),{onAddClick:this.handleAddClick}))}}]),t}(le.exports.Component);Jn(kK,"defaultProps",{uiSchema:{},formData:{},errorSchema:{},idSchema:{},required:!1,disabled:!1,readonly:!1});function ry(e){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?ry=function(r){return typeof r}:ry=function(r){return r&&typeof Symbol=="function"&&r.constructor===Symbol&&r!==Symbol.prototype?"symbol":typeof r},ry(e)}function lit(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Q6(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function uit(e,t,r){return t&&Q6(e.prototype,t),r&&Q6(e,r),e}function dit(e,t){return t&&(ry(t)==="object"||typeof t=="function")?t:cit(e)}function cit(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function VC(e){return VC=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},VC(e)}function hit(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&GC(e,t)}function GC(e,t){return GC=Object.setPrototypeOf||function(n,a){return n.__proto__=a,n},GC(e,t)}function qC(){return qC=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},qC.apply(this,arguments)}function mit(e){for(var t=1;t<arguments.length;t++){var r=arguments[t]!=null?arguments[t]:{},n=Object.keys(r);typeof Object.getOwnPropertySymbols=="function"&&(n=n.concat(Object.getOwnPropertySymbols(r).filter(function(a){return Object.getOwnPropertyDescriptor(r,a).enumerable}))),n.forEach(function(a){fit(e,a,r[a])})}return e}function fit(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function pit(e,t){if(e==null)return{};var r=git(e,t),n,a;if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(a=0;a<i.length;a++)n=i[a],!(t.indexOf(n)>=0)&&(!Object.prototype.propertyIsEnumerable.call(e,n)||(r[n]=e[n]))}return r}function git(e,t){if(e==null)return{};var r={},n=Object.keys(e),a,i;for(i=0;i<n.length;i++)a=n[i],!(t.indexOf(a)>=0)&&(r[a]=e[a]);return r}var vit="*",yit={array:"ArrayField",boolean:"BooleanField",integer:"NumberField",number:"NumberField",object:"ObjectField",string:"StringField",null:"NullField"};function _it(e,t,r,n){var a=t["ui:field"];if(typeof a=="function")return a;if(typeof a=="string"&&a in n)return n[a];var i=yit[vc(e)];return!i&&(e.anyOf||e.oneOf)?function(){return null}:i in n?n[i]:function(){var o=n.UnsupportedField;return q.createElement(o,{schema:e,idSchema:r,reason:"Unknown field type ".concat(e.type)})}}function CK(e){var t=e.label,r=e.required,n=e.id;return t?q.createElement("label",{className:"control-label",htmlFor:n},t,r&&q.createElement("span",{className:"required"},vit)):null}function bit(e){var t=e.id,r=e.label,n=e.onChange;return q.createElement("input",{className:"form-control",type:"text",id:t,onBlur:function(i){return n(i.target.value)},defaultValue:r})}function wit(e){var t=e.id,r=e.help;return r?typeof r=="string"?q.createElement("p",{id:t,className:"help-block"},r):q.createElement("div",{id:t,className:"help-block"},r):null}function Sit(e){var t=e.errors,r=t===void 0?[]:t;return r.length===0?null:q.createElement("div",null,q.createElement("ul",{className:"error-detail bs-callout bs-callout-info"},r.filter(function(n){return!!n}).map(function(n,a){return q.createElement("li",{className:"text-danger",key:a},n)})))}function EK(e){var t=e.id,r=e.label,n=e.children,a=e.errors,i=e.help,o=e.description,s=e.hidden,l=e.required,d=e.displayLabel;return s?q.createElement("div",{className:"hidden"},n):q.createElement(Ait,e,d&&q.createElement(CK,{label:r,required:l,id:t}),d&&o?o:null,n,a,i)}EK.defaultProps={hidden:!1,readonly:!1,required:!1,displayLabel:!0};function Ait(e){var t=e.id,r=e.classNames,n=e.disabled,a=e.label,i=e.onKeyChange,o=e.onDropPropertyClick,s=e.readonly,l=e.required,d=e.schema,u="".concat(a," Key"),c=d.hasOwnProperty(Kw);return c?q.createElement("div",{className:r},q.createElement("div",{className:"row"},q.createElement("div",{className:"col-xs-5 form-additional"},q.createElement("div",{className:"form-group"},q.createElement(CK,{label:u,required:l,id:"".concat(t,"-key")}),q.createElement(bit,{label:a,required:l,id:"".concat(t,"-key"),onChange:i}))),q.createElement("div",{className:"form-additional form-group col-xs-5"},e.children),q.createElement("div",{className:"col-xs-2"},q.createElement(Im,{type:"danger",icon:"remove",className:"array-item-remove btn-block",tabIndex:"-1",style:{border:"0"},disabled:n||s,onClick:o(a)})))):q.createElement("div",{className:r},e.children)}function Tit(e){var t=e.uiSchema,r=e.formData,n=e.errorSchema,a=e.idPrefix,i=e.idSeparator,o=e.name,s=e.onChange,l=e.onKeyChange,d=e.onDropPropertyClick,u=e.required,c=e.registry,h=c===void 0?mn():c,m=e.wasPropertyKeyModified,f=m===void 0?!1:m,g=h.rootSchema,v=h.fields,y=h.formContext,b=t["ui:FieldTemplate"]||h.FieldTemplate||EK,S=e.idSchema,w=Zt(e.schema,g,r);S=ps(Ul(w,null,g,r,a,i),S);var _=_it(w,t,S,v),A=v.DescriptionField,I=Boolean(e.disabled||t["ui:disabled"]),k=Boolean(e.readonly||t["ui:readonly"]||e.schema.readOnly||w.readOnly),C=t["ui:hideError"],T=C===void 0?e.hideError:Boolean(C),O=Boolean(e.autofocus||t["ui:autofocus"]);if(Object.keys(w).length===0)return null;var D=cut(w,t,g),M=n.__errors,E=pit(n,["__errors"]),L=q.createElement(_,qC({},e,{idSchema:S,schema:w,uiSchema:mit({},t,{classNames:void 0}),disabled:I,readonly:k,hideError:T,autofocus:O,errorSchema:E,formContext:y,rawErrors:M})),P=S.$id,j;f?j=o:j=t["ui:title"]||e.schema.title||w.title||o;var H=t["ui:description"]||e.schema.description||w.description,$=M,B=t["ui:help"],z=t["ui:widget"]==="hidden",F=["form-group","field","field-".concat(w.type)];!T&&$&&$.length>0&&F.push("field-error has-error has-danger"),F.push(t.classNames),F=F.join(" ").trim();var V={description:q.createElement(A,{id:P+"__description",description:H,formContext:y}),rawDescription:H,help:q.createElement(wit,{id:P+"__help",help:B}),rawHelp:typeof B=="string"?B:void 0,errors:T?void 0:q.createElement(Sit,{errors:$}),rawErrors:T?void 0:$,id:P,label:j,hidden:z,onChange:s,onKeyChange:l,onDropPropertyClick:d,required:u,disabled:I,readonly:k,hideError:T,displayLabel:D,classNames:F,formContext:y,formData:r,fields:v,schema:w,uiSchema:t,registry:h},K=h.fields.AnyOfField,Z=h.fields.OneOfField;return q.createElement(b,V,q.createElement(q.Fragment,null,L,w.anyOf&&!H_(w)&&q.createElement(K,{disabled:I,readonly:k,hideError:T,errorSchema:n,formData:r,idPrefix:a,idSchema:S,idSeparator:i,onBlur:e.onBlur,onChange:e.onChange,onFocus:e.onFocus,options:w.anyOf.map(function(ue){return Zt(ue,g,r)}),baseType:w.type,registry:h,schema:w,uiSchema:t}),w.oneOf&&!H_(w)&&q.createElement(Z,{disabled:I,readonly:k,hideError:T,errorSchema:n,formData:r,idPrefix:a,idSchema:S,idSeparator:i,onBlur:e.onBlur,onChange:e.onChange,onFocus:e.onFocus,options:w.oneOf.map(function(ue){return Zt(ue,g,r)}),baseType:w.type,registry:h,schema:w,uiSchema:t})))}var IK=function(e){hit(t,e);function t(){return lit(this,t),dit(this,VC(t).apply(this,arguments))}return uit(t,[{key:"shouldComponentUpdate",value:function(n,a){return!di(this.props,n)}},{key:"render",value:function(){return Tit(this.props)}}]),t}(q.Component);IK.defaultProps={uiSchema:{},errorSchema:{},idSchema:{},disabled:!1,readonly:!1,autofocus:!1,hideError:!1};function kit(e){for(var t=1;t<arguments.length;t++){var r=arguments[t]!=null?arguments[t]:{},n=Object.keys(r);typeof Object.getOwnPropertySymbols=="function"&&(n=n.concat(Object.getOwnPropertySymbols(r).filter(function(a){return Object.getOwnPropertyDescriptor(r,a).enumerable}))),n.forEach(function(a){Cit(e,a,r[a])})}return e}function Cit(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function Eit(e,t){if(e==null)return{};var r=Iit(e,t),n,a;if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(a=0;a<i.length;a++)n=i[a],!(t.indexOf(n)>=0)&&(!Object.prototype.propertyIsEnumerable.call(e,n)||(r[n]=e[n]))}return r}function Iit(e,t){if(e==null)return{};var r={},n=Object.keys(e),a,i;for(i=0;i<n.length;i++)a=n[i],!(t.indexOf(a)>=0)&&(r[a]=e[a]);return r}function DK(e){var t=e.schema,r=e.name,n=e.uiSchema,a=e.idSchema,i=e.formData,o=e.required,s=e.disabled,l=e.readonly,d=e.autofocus,u=e.onChange,c=e.onBlur,h=e.onFocus,m=e.registry,f=m===void 0?mn():m,g=e.rawErrors,v=t.title,y=t.format,b=f.widgets,S=f.formContext,w=H_(t)&&j_(t),_=w?"select":"text";y&&dut(t,y,b)&&(_=y);var A=ra(n),I=A.widget,k=I===void 0?_:I,C=A.placeholder,T=C===void 0?"":C,O=Eit(A,["widget","placeholder"]),D=po(t,k,b);return q.createElement(D,{options:kit({},O,{enumOptions:w}),schema:t,uiSchema:n,id:a&&a.$id,label:v===void 0?r:v,value:i,onChange:u,onBlur:c,onFocus:h,required:o,disabled:s,readonly:l,formContext:S,autofocus:d,registry:f,placeholder:T,rawErrors:g})}DK.defaultProps={uiSchema:{},disabled:!1,readonly:!1,autofocus:!1};var Dit="*";function xit(e){var t=e.id,r=e.title,n=e.required;return q.createElement("legend",{id:t},r,n&&q.createElement("span",{className:"required"},Dit))}function ny(e){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?ny=function(r){return typeof r}:ny=function(r){return r&&typeof Symbol=="function"&&r.constructor===Symbol&&r!==Symbol.prototype?"symbol":typeof r},ny(e)}function Oit(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Z6(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function Mit(e,t,r){return t&&Z6(e.prototype,t),r&&Z6(e,r),e}function Rit(e,t){return t&&(ny(t)==="object"||typeof t=="function")?t:Lit(e)}function Lit(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function KC(e){return KC=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},KC(e)}function Pit(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&QC(e,t)}function QC(e,t){return QC=Object.setPrototypeOf||function(n,a){return n.__proto__=a,n},QC(e,t)}var $it=function(e){Pit(t,e);function t(){return Oit(this,t),Rit(this,KC(t).apply(this,arguments))}return Mit(t,[{key:"componentDidMount",value:function(){this.props.formData===void 0&&this.props.onChange(null)}},{key:"render",value:function(){return null}}]),t}(le.exports.Component);function zit(e){var t=e.schema,r=e.idSchema,n=e.reason;return q.createElement("div",{className:"unsupported-field"},q.createElement("p",null,"Unsupported field schema",r&&r.$id&&q.createElement("span",null," for"," field ",q.createElement("code",null,r.$id)),n&&q.createElement("em",null,": ",n),"."),t&&q.createElement("pre",null,JSON.stringify(t,null,2)))}var Nit={AnyOfField:FC,ArrayField:bK,BooleanField:wK,DescriptionField:$at,NumberField:TK,ObjectField:kK,OneOfField:FC,SchemaField:IK,StringField:DK,TitleField:xit,NullField:$it,UnsupportedField:zit};function ay(e){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?ay=function(r){return typeof r}:ay=function(r){return r&&typeof Symbol=="function"&&r.constructor===Symbol&&r!==Symbol.prototype?"symbol":typeof r},ay(e)}function Fit(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Y6(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function Bit(e,t,r){return t&&Y6(e.prototype,t),r&&Y6(e,r),e}function Wit(e,t){return t&&(ay(t)==="object"||typeof t=="function")?t:iy(e)}function ZC(e){return ZC=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},ZC(e)}function iy(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Hit(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&YC(e,t)}function YC(e,t){return YC=Object.setPrototypeOf||function(n,a){return n.__proto__=a,n},YC(e,t)}function im(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function jit(e,t){for(var r=[],n=e;n<=t;n++)r.push({value:n,label:Jo(n,2)});return r}function Uit(e){return Object.keys(e).every(function(t){return e[t]!==-1})}function Vit(e){var t=e.type,r=e.range,n=e.value,a=e.select,i=e.rootId,o=e.disabled,s=e.readonly,l=e.autofocus,d=e.registry,u=e.onBlur,c=i+"_"+t,h=d.widgets.SelectWidget;return x(h,{schema:{type:"integer"},id:c,className:"form-control",options:{enumOptions:jit(r[0],r[1])},placeholder:t,value:n,disabled:o,readonly:s,autofocus:l,onChange:function(f){return a(t,f)},onBlur:u})}var q2=function(e){Hit(t,e);function t(r){var n;return Fit(this,t),n=Wit(this,ZC(t).call(this,r)),im(iy(n),"onChange",function(a,i){n.setState(im({},a,typeof i=="undefined"?-1:i),function(){Uit(n.state)&&n.props.onChange(fB(n.state,n.props.time))})}),im(iy(n),"setNow",function(a){a.preventDefault();var i=n.props,o=i.time,s=i.disabled,l=i.readonly,d=i.onChange;if(!(s||l)){var u=Bh(new Date().toJSON(),o);n.setState(u,function(){return d(fB(n.state,o))})}}),im(iy(n),"clear",function(a){a.preventDefault();var i=n.props,o=i.time,s=i.disabled,l=i.readonly,d=i.onChange;s||l||n.setState(Bh("",o),function(){return d(void 0)})}),n.state=Bh(r.value,r.time),n}return Bit(t,[{key:"componentDidUpdate",value:function(n,a){n.value&&n.value!==Bh(this.props.value,this.props.time)&&this.setState(Bh(this.props.value,this.props.time))}},{key:"shouldComponentUpdate",value:function(n,a){return iO(this,n,a)}},{key:"render",value:function(){var n=this,a=this.props,i=a.id,o=a.disabled,s=a.readonly,l=a.autofocus,d=a.registry,u=a.onBlur,c=a.options;return de("ul",{className:"list-inline",children:[this.dateElementProps.map(function(h,m){return x("li",{children:x(Vit,He(Se({rootId:i,select:n.onChange},h),{disabled:o,readonly:s,registry:d,onBlur:u,autofocus:l&&m===0}))},m)}),(c.hideNowButton!=="undefined"?!c.hideNowButton:!0)&&x("li",{children:x("a",{href:"#",className:"btn btn-info btn-now",onClick:this.setNow,children:"Now"})}),(c.hideClearButton!=="undefined"?!c.hideClearButton:!0)&&x("li",{children:x("a",{href:"#",className:"btn btn-warning btn-clear",onClick:this.clear,children:"Clear"})})]})}},{key:"dateElementProps",get:function(){var n=this.props,a=n.time,i=n.options,o=this.state,s=o.year,l=o.month,d=o.day,u=o.hour,c=o.minute,h=o.second,m=[{type:"year",range:i.yearsRange,value:s},{type:"month",range:[1,12],value:l},{type:"day",range:[1,31],value:d}];return a&&m.push({type:"hour",range:[0,23],value:u},{type:"minute",range:[0,59],value:c},{type:"second",range:[0,59],value:h}),m}}]),t}(le.exports.Component);im(q2,"defaultProps",{time:!1,disabled:!1,readonly:!1,autofocus:!1,options:{yearsRange:[1900,new Date().getFullYear()+2]}});function Git(e){for(var t=1;t<arguments.length;t++){var r=arguments[t]!=null?arguments[t]:{},n=Object.keys(r);typeof Object.getOwnPropertySymbols=="function"&&(n=n.concat(Object.getOwnPropertySymbols(r).filter(function(a){return Object.getOwnPropertyDescriptor(r,a).enumerable}))),n.forEach(function(a){qit(e,a,r[a])})}return e}function qit(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function XC(){return XC=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},XC.apply(this,arguments)}function xK(e){var t=e.registry.widgets.AltDateWidget;return q.createElement(t,XC({time:!0},e))}xK.defaultProps=Git({},q2.defaultProps,{time:!0});function Kit(e){return Yit(e)||Zit(e)||Qit()}function Qit(){throw new TypeError("Invalid attempt to spread non-iterable instance")}function Zit(e){if(Symbol.iterator in Object(e)||Object.prototype.toString.call(e)==="[object Arguments]")return Array.from(e)}function Yit(e){if(Array.isArray(e)){for(var t=0,r=new Array(e.length);t<e.length;t++)r[t]=e[t];return r}}function JC(){return JC=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},JC.apply(this,arguments)}function Xit(e,t){if(e==null)return{};var r=Jit(e,t),n,a;if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(a=0;a<i.length;a++)n=i[a],!(t.indexOf(n)>=0)&&(!Object.prototype.propertyIsEnumerable.call(e,n)||(r[n]=e[n]))}return r}function Jit(e,t){if(e==null)return{};var r={},n=Object.keys(e),a,i;for(i=0;i<n.length;i++)a=n[i],!(t.indexOf(a)>=0)&&(r[a]=e[a]);return r}function OK(e){if(!e.id)throw console.log("No id for",e),new Error("no id for props ".concat(JSON.stringify(e)));var t=e.value,r=e.readonly,n=e.disabled,a=e.autofocus,i=e.onBlur,o=e.onFocus,s=e.options,l=e.schema;e.uiSchema,e.formContext,e.registry,e.rawErrors;var d=Xit(e,["value","readonly","disabled","autofocus","onBlur","onFocus","options","schema","uiSchema","formContext","registry","rawErrors"]);s.inputType?d.type=s.inputType:d.type||(l.type==="number"?(d.type="number",d.step="any"):l.type==="integer"?(d.type="number",d.step="1"):d.type="text"),s.autocomplete&&(d.autoComplete=s.autocomplete),l.multipleOf&&(d.step=l.multipleOf),typeof l.minimum!="undefined"&&(d.min=l.minimum),typeof l.maximum!="undefined"&&(d.max=l.maximum);var u=function(h){var m=h.target.value;return e.onChange(m===""?s.emptyValue:m)};return[q.createElement("input",JC({key:d.id,className:"form-control",readOnly:r,disabled:n,autoFocus:a,value:t==null?"":t},d,{list:l.examples?"examples_".concat(d.id):null,onChange:u,onBlur:i&&function(c){return i(d.id,c.target.value)},onFocus:o&&function(c){return o(d.id,c.target.value)}})),l.examples?q.createElement("datalist",{key:"datalist_".concat(d.id),id:"examples_".concat(d.id)},Kit(new Set(l.examples.concat(l.default?[l.default]:[]))).map(function(c){return q.createElement("option",{key:c,value:c})})):null]}OK.defaultProps={required:!1,disabled:!1,readonly:!1,autofocus:!1};function MK(e){var t=e.schema,r=e.id,n=e.value,a=e.disabled,i=e.readonly,o=e.label,s=e.autofocus,l=e.onBlur,d=e.onFocus,u=e.onChange,c=e.DescriptionField,h=ly(t);return q.createElement("div",{className:"checkbox ".concat(a||i?"disabled":"")},t.description&&q.createElement(c,{description:t.description}),q.createElement("label",null,q.createElement("input",{type:"checkbox",id:r,checked:typeof n=="undefined"?!1:n,required:h,disabled:a||i,autoFocus:s,onChange:function(f){return u(f.target.checked)},onBlur:l&&function(m){return l(r,m.target.checked)},onFocus:d&&function(m){return d(r,m.target.checked)}}),q.createElement("span",null,o)))}MK.defaultProps={autofocus:!1};function eot(e,t,r){var n=r.indexOf(e),a=t.slice(0,n).concat(e,t.slice(n));return a.sort(function(i,o){return r.indexOf(i)>r.indexOf(o)})}function tot(e,t){return t.filter(function(r){return r!==e})}function RK(e){var t=e.id,r=e.disabled,n=e.options,a=e.value,i=e.autofocus,o=e.readonly,s=e.onChange,l=n.enumOptions,d=n.enumDisabled,u=n.inline;return q.createElement("div",{className:"checkboxes",id:t},l.map(function(c,h){var m=a.indexOf(c.value)!==-1,f=d&&d.indexOf(c.value)!=-1,g=r||f||o?"disabled":"",v=q.createElement("span",null,q.createElement("input",{type:"checkbox",id:"".concat(t,"_").concat(h),checked:m,disabled:r||f||o,autoFocus:i&&h===0,onChange:function(b){var S=l.map(function(w){var _=w.value;return _});b.target.checked?s(eot(c.value,a,S)):s(tot(c.value,a))}}),q.createElement("span",null,c.label));return u?q.createElement("label",{key:h,className:"checkbox-inline ".concat(g)},v):q.createElement("div",{key:h,className:"checkbox ".concat(g)},q.createElement("label",null,v))}))}RK.defaultProps={autofocus:!1,options:{inline:!1}};function eE(){return eE=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},eE.apply(this,arguments)}function rot(e){var t=e.disabled,r=e.readonly,n=e.registry.widgets.BaseInput;return q.createElement(n,eE({type:"color"},e,{disabled:t||r}))}function tE(){return tE=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},tE.apply(this,arguments)}function not(e){var t=e.onChange,r=e.registry.widgets.BaseInput;return q.createElement(r,tE({type:"date"},e,{onChange:function(a){return t(a||void 0)}}))}function rE(){return rE=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},rE.apply(this,arguments)}function aot(e){var t=e.value,r=e.onChange,n=e.registry.widgets.BaseInput;return q.createElement(n,rE({type:"datetime-local"},e,{value:CQ(t),onChange:function(i){return r(EQ(i))}}))}function nE(){return nE=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},nE.apply(this,arguments)}function iot(e){var t=e.registry.widgets.BaseInput;return q.createElement(t,nE({type:"email"},e))}function oy(e){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?oy=function(r){return typeof r}:oy=function(r){return r&&typeof Symbol=="function"&&r.constructor===Symbol&&r!==Symbol.prototype?"symbol":typeof r},oy(e)}function oot(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function X6(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function sot(e,t,r){return t&&X6(e.prototype,t),r&&X6(e,r),e}function lot(e,t){return t&&(oy(t)==="object"||typeof t=="function")?t:LK(e)}function aE(e){return aE=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},aE(e)}function LK(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function uot(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&iE(e,t)}function iE(e,t){return iE=Object.setPrototypeOf||function(n,a){return n.__proto__=a,n},iE(e,t)}function dot(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function cot(e,t){return e.replace(";base64",";name=".concat(encodeURIComponent(t),";base64"))}function hot(e){var t=e.name,r=e.size,n=e.type;return new Promise(function(a,i){var o=new window.FileReader;o.onerror=i,o.onload=function(s){a({dataURL:cot(s.target.result,t),name:t,size:r,type:n})},o.readAsDataURL(e)})}function mot(e){return Promise.all([].map.call(e,hot))}function fot(e){var t=e.filesInfo;return t.length===0?null:x("ul",{className:"file-info",children:t.map(function(r,n){var a=r.name,i=r.size,o=r.type;return de("li",{children:[x("strong",{children:a})," (",o,", ",i," bytes)"]},n)})})}function pot(e){return e.filter(function(t){return typeof t!="undefined"}).map(function(t){var r=wut(t),n=r.blob,a=r.name;return{name:a,size:n.size,type:n.type}})}var PK=function(e){uot(t,e);function t(r){var n;oot(this,t),n=lot(this,aE(t).call(this,r)),dot(LK(n),"onChange",function(o){var s=n.props,l=s.multiple,d=s.onChange;mot(o.target.files).then(function(u){var c={values:u.map(function(h){return h.dataURL}),filesInfo:u};n.setState(c,function(){d(l?c.values:c.values[0])})})});var a=r.value,i=Array.isArray(a)?a:[a];return n.state={values:i,filesInfo:pot(i)},n}return sot(t,[{key:"shouldComponentUpdate",value:function(n,a){return iO(this,n,a)}},{key:"render",value:function(){var n=this,a=this.props,i=a.multiple,o=a.id,s=a.readonly,l=a.disabled,d=a.autofocus,u=a.options,c=this.state.filesInfo;return de("div",{children:[x("p",{children:x("input",{ref:function(m){return n.inputRef=m},id:o,type:"file",disabled:s||l,onChange:this.onChange,defaultValue:"",autoFocus:d,multiple:i,accept:u.accept})}),x(fot,{filesInfo:c})]})}}]),t}(le.exports.Component);PK.defaultProps={autofocus:!1};function got(e){var t=e.id,r=e.value;return q.createElement("input",{type:"hidden",id:t,value:typeof r=="undefined"?"":r})}function oE(){return oE=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},oE.apply(this,arguments)}function vot(e){var t=e.registry.widgets.BaseInput;return q.createElement(t,oE({type:"password"},e))}function $K(e){var t=e.options,r=e.value,n=e.required,a=e.disabled,i=e.readonly,o=e.autofocus,s=e.onBlur,l=e.onFocus,d=e.onChange,u=e.id,c=Math.random().toString(),h=t.enumOptions,m=t.enumDisabled,f=t.inline;return q.createElement("div",{className:"field-radio-group",id:u},h.map(function(g,v){var y=g.value===r,b=m&&m.indexOf(g.value)!=-1,S=a||b||i?"disabled":"",w=q.createElement("span",null,q.createElement("input",{type:"radio",checked:y,name:c,required:n,value:g.value,disabled:a||b||i,autoFocus:o&&v===0,onChange:function(A){return d(g.value)},onBlur:s&&function(_){return s(u,_.target.value)},onFocus:l&&function(_){return l(u,_.target.value)}}),q.createElement("span",null,g.label));return f?q.createElement("label",{key:v,className:"radio-inline ".concat(S)},w):q.createElement("div",{key:v,className:"radio ".concat(S)},q.createElement("label",null,w))}))}$K.defaultProps={autofocus:!1};function sE(){return sE=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},sE.apply(this,arguments)}function yot(e){var t=e.schema,r=e.value,n=e.registry.widgets.BaseInput;return q.createElement("div",{className:"field-range-wrapper"},q.createElement(n,sE({type:"range"},e,oO(t))),q.createElement("span",{className:"range-view"},r))}var _ot=new Set(["number","integer"]);function DA(e,t){var r=e.type,n=e.items;if(t!==""){{if(r==="array"&&n&&_ot.has(n.type))return t.map(qd);if(r==="boolean")return t==="true";if(r==="number")return qd(t)}if(e.enum){if(e.enum.every(function(a){return yc(a)==="number"}))return qd(t);if(e.enum.every(function(a){return yc(a)==="boolean"}))return t==="true"}return t}}function xA(e,t){return t?[].slice.call(e.target.options).filter(function(r){return r.selected}).map(function(r){return r.value}):e.target.value}function zK(e){var t=e.schema,r=e.id,n=e.options,a=e.value,i=e.required,o=e.disabled,s=e.readonly,l=e.multiple,d=e.autofocus,u=e.onChange,c=e.onBlur,h=e.onFocus,m=e.placeholder,f=n.enumOptions,g=n.enumDisabled,v=l?[]:"";return q.createElement("select",{id:r,multiple:l,className:"form-control",value:typeof a=="undefined"?v:a,required:i,disabled:o||s,autoFocus:d,onBlur:c&&function(y){var b=xA(y,l);c(r,DA(t,b))},onFocus:h&&function(y){var b=xA(y,l);h(r,DA(t,b))},onChange:function(b){var S=xA(b,l);u(DA(t,S))}},!l&&t.default===void 0&&q.createElement("option",{value:""},m),f.map(function(y,b){var S=y.value,w=y.label,_=g&&g.indexOf(S)!=-1;return q.createElement("option",{key:b,value:S,disabled:_},w)}))}zK.defaultProps={autofocus:!1};function NK(e){var t=e.id,r=e.options,n=e.placeholder,a=e.value,i=e.required,o=e.disabled,s=e.readonly,l=e.autofocus,d=e.onChange,u=e.onBlur,c=e.onFocus,h=function(f){var g=f.target.value;return d(g===""?r.emptyValue:g)};return q.createElement("textarea",{id:t,className:"form-control",value:a||"",placeholder:n,required:i,disabled:o,readOnly:s,autoFocus:l,rows:r.rows,onBlur:u&&function(m){return u(t,m.target.value)},onFocus:c&&function(m){return c(t,m.target.value)},onChange:h})}NK.defaultProps={autofocus:!1,options:{}};function bot(e){var t=e.registry.widgets.BaseInput;return q.createElement(t,e)}function lE(){return lE=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},lE.apply(this,arguments)}function wot(e){var t=e.registry.widgets.BaseInput;return q.createElement(t,lE({type:"url"},e))}function uE(){return uE=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},uE.apply(this,arguments)}function Sot(e){var t=e.registry.widgets.BaseInput;return q.createElement(t,uE({type:"number"},e,oO(e.schema)))}function dE(){return dE=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},dE.apply(this,arguments)}function Aot(e){var t=e.uiSchema,r=bQ(t),n=r.submitText,a=r.norender,i=r.props;return q.createElement("div",null,!a&&q.createElement("button",dE({type:"submit"},i,{className:"btn btn-info"}),n))}var Tot={BaseInput:OK,PasswordWidget:vot,RadioWidget:$K,UpDownWidget:Sot,RangeWidget:yot,SelectWidget:zK,TextWidget:bot,DateWidget:not,DateTimeWidget:aot,AltDateWidget:q2,AltDateTimeWidget:xK,EmailWidget:iot,URLWidget:wot,TextareaWidget:NK,HiddenWidget:got,ColorWidget:rot,FileWidget:PK,CheckboxWidget:MK,CheckboxesWidget:RK,SubmitButton:Aot},kot=Qs,Cot=zw,Eot=tn,Iot=Fc,Dot=tG,xot=Gc,Oot=wu;function Mot(e){return Eot(e)?kot(e,xot):Iot(e)?[e]:Cot(Dot(Oot(e)))}var Rot=Mot,cE={exports:{}};/** @license URI.js v4.4.1 (c) 2011 Gary Court. License: http://github.com/garycourt/uri-js */(function(e,t){(function(r,n){n(t)})(kt,function(r){function n(){for(var ae=arguments.length,X=Array(ae),ie=0;ie<ae;ie++)X[ie]=arguments[ie];if(X.length>1){X[0]=X[0].slice(0,-1);for(var we=X.length-1,_e=1;_e<we;++_e)X[_e]=X[_e].slice(1,-1);return X[we]=X[we].slice(1),X.join("")}else return X[0]}function a(ae){return"(?:"+ae+")"}function i(ae){return ae===void 0?"undefined":ae===null?"null":Object.prototype.toString.call(ae).split(" ").pop().split("]").shift().toLowerCase()}function o(ae){return ae.toUpperCase()}function s(ae){return ae!=null?ae instanceof Array?ae:typeof ae.length!="number"||ae.split||ae.setInterval||ae.call?[ae]:Array.prototype.slice.call(ae):[]}function l(ae,X){var ie=ae;if(X)for(var we in X)ie[we]=X[we];return ie}function d(ae){var X="[A-Za-z]",ie="[0-9]",we=n(ie,"[A-Fa-f]"),_e=a(a("%[EFef]"+we+"%"+we+we+"%"+we+we)+"|"+a("%[89A-Fa-f]"+we+"%"+we+we)+"|"+a("%"+we+we)),Ye="[\\:\\/\\?\\#\\[\\]\\@]",rt="[\\!\\$\\&\\'\\(\\)\\*\\+\\,\\;\\=]",Et=n(Ye,rt),It=ae?"[\\xA0-\\u200D\\u2010-\\u2029\\u202F-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF]":"[]",lr=ae?"[\\uE000-\\uF8FF]":"[]",wt=n(X,ie,"[\\-\\.\\_\\~]",It);a(X+n(X,ie,"[\\+\\-\\.]")+"*"),a(a(_e+"|"+n(wt,rt,"[\\:]"))+"*");var Wt=a(a("25[0-5]")+"|"+a("2[0-4]"+ie)+"|"+a("1"+ie+ie)+"|"+a("0?[1-9]"+ie)+"|0?0?"+ie),ur=a(Wt+"\\."+Wt+"\\."+Wt+"\\."+Wt),ft=a(we+"{1,4}"),$t=a(a(ft+"\\:"+ft)+"|"+ur),vr=a(a(ft+"\\:")+"{6}"+$t),nr=a("\\:\\:"+a(ft+"\\:")+"{5}"+$t),ya=a(a(ft)+"?\\:\\:"+a(ft+"\\:")+"{4}"+$t),vn=a(a(a(ft+"\\:")+"{0,1}"+ft)+"?\\:\\:"+a(ft+"\\:")+"{3}"+$t),yn=a(a(a(ft+"\\:")+"{0,2}"+ft)+"?\\:\\:"+a(ft+"\\:")+"{2}"+$t),Zn=a(a(a(ft+"\\:")+"{0,3}"+ft)+"?\\:\\:"+ft+"\\:"+$t),Ua=a(a(a(ft+"\\:")+"{0,4}"+ft)+"?\\:\\:"+$t),nn=a(a(a(ft+"\\:")+"{0,5}"+ft)+"?\\:\\:"+ft),Tr=a(a(a(ft+"\\:")+"{0,6}"+ft)+"?\\:\\:"),Va=a([vr,nr,ya,vn,yn,Zn,Ua,nn,Tr].join("|")),Yn=a(a(wt+"|"+_e)+"+");a("[vV]"+we+"+\\."+n(wt,rt,"[\\:]")+"+"),a(a(_e+"|"+n(wt,rt))+"*");var qi=a(_e+"|"+n(wt,rt,"[\\:\\@]"));return a(a(_e+"|"+n(wt,rt,"[\\@]"))+"+"),a(a(qi+"|"+n("[\\/\\?]",lr))+"*"),{NOT_SCHEME:new RegExp(n("[^]",X,ie,"[\\+\\-\\.]"),"g"),NOT_USERINFO:new RegExp(n("[^\\%\\:]",wt,rt),"g"),NOT_HOST:new RegExp(n("[^\\%\\[\\]\\:]",wt,rt),"g"),NOT_PATH:new RegExp(n("[^\\%\\/\\:\\@]",wt,rt),"g"),NOT_PATH_NOSCHEME:new RegExp(n("[^\\%\\/\\@]",wt,rt),"g"),NOT_QUERY:new RegExp(n("[^\\%]",wt,rt,"[\\:\\@\\/\\?]",lr),"g"),NOT_FRAGMENT:new RegExp(n("[^\\%]",wt,rt,"[\\:\\@\\/\\?]"),"g"),ESCAPE:new RegExp(n("[^]",wt,rt),"g"),UNRESERVED:new RegExp(wt,"g"),OTHER_CHARS:new RegExp(n("[^\\%]",wt,Et),"g"),PCT_ENCODED:new RegExp(_e,"g"),IPV4ADDRESS:new RegExp("^("+ur+")$"),IPV6ADDRESS:new RegExp("^\\[?("+Va+")"+a(a("\\%25|\\%(?!"+we+"{2})")+"("+Yn+")")+"?\\]?$")}}var u=d(!1),c=d(!0),h=function(){function ae(X,ie){var we=[],_e=!0,Ye=!1,rt=void 0;try{for(var Et=X[Symbol.iterator](),It;!(_e=(It=Et.next()).done)&&(we.push(It.value),!(ie&&we.length===ie));_e=!0);}catch(lr){Ye=!0,rt=lr}finally{try{!_e&&Et.return&&Et.return()}finally{if(Ye)throw rt}}return we}return function(X,ie){if(Array.isArray(X))return X;if(Symbol.iterator in Object(X))return ae(X,ie);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),m=function(ae){if(Array.isArray(ae)){for(var X=0,ie=Array(ae.length);X<ae.length;X++)ie[X]=ae[X];return ie}else return Array.from(ae)},f=2147483647,g=36,v=1,y=26,b=38,S=700,w=72,_=128,A="-",I=/^xn--/,k=/[^\0-\x7E]/,C=/[\x2E\u3002\uFF0E\uFF61]/g,T={overflow:"Overflow: input needs wider integers to process","not-basic":"Illegal input >= 0x80 (not a basic code point)","invalid-input":"Invalid input"},O=g-v,D=Math.floor,M=String.fromCharCode;function E(ae){throw new RangeError(T[ae])}function L(ae,X){for(var ie=[],we=ae.length;we--;)ie[we]=X(ae[we]);return ie}function P(ae,X){var ie=ae.split("@"),we="";ie.length>1&&(we=ie[0]+"@",ae=ie[1]),ae=ae.replace(C,".");var _e=ae.split("."),Ye=L(_e,X).join(".");return we+Ye}function j(ae){for(var X=[],ie=0,we=ae.length;ie<we;){var _e=ae.charCodeAt(ie++);if(_e>=55296&&_e<=56319&&ie<we){var Ye=ae.charCodeAt(ie++);(Ye&64512)==56320?X.push(((_e&1023)<<10)+(Ye&1023)+65536):(X.push(_e),ie--)}else X.push(_e)}return X}var H=function(X){return String.fromCodePoint.apply(String,m(X))},$=function(X){return X-48<10?X-22:X-65<26?X-65:X-97<26?X-97:g},B=function(X,ie){return X+22+75*(X<26)-((ie!=0)<<5)},z=function(X,ie,we){var _e=0;for(X=we?D(X/S):X>>1,X+=D(X/ie);X>O*y>>1;_e+=g)X=D(X/O);return D(_e+(O+1)*X/(X+b))},F=function(X){var ie=[],we=X.length,_e=0,Ye=_,rt=w,Et=X.lastIndexOf(A);Et<0&&(Et=0);for(var It=0;It<Et;++It)X.charCodeAt(It)>=128&&E("not-basic"),ie.push(X.charCodeAt(It));for(var lr=Et>0?Et+1:0;lr<we;){for(var wt=_e,Wt=1,ur=g;;ur+=g){lr>=we&&E("invalid-input");var ft=$(X.charCodeAt(lr++));(ft>=g||ft>D((f-_e)/Wt))&&E("overflow"),_e+=ft*Wt;var $t=ur<=rt?v:ur>=rt+y?y:ur-rt;if(ft<$t)break;var vr=g-$t;Wt>D(f/vr)&&E("overflow"),Wt*=vr}var nr=ie.length+1;rt=z(_e-wt,nr,wt==0),D(_e/nr)>f-Ye&&E("overflow"),Ye+=D(_e/nr),_e%=nr,ie.splice(_e++,0,Ye)}return String.fromCodePoint.apply(String,ie)},V=function(X){var ie=[];X=j(X);var we=X.length,_e=_,Ye=0,rt=w,Et=!0,It=!1,lr=void 0;try{for(var wt=X[Symbol.iterator](),Wt;!(Et=(Wt=wt.next()).done);Et=!0){var ur=Wt.value;ur<128&&ie.push(M(ur))}}catch(bi){It=!0,lr=bi}finally{try{!Et&&wt.return&&wt.return()}finally{if(It)throw lr}}var ft=ie.length,$t=ft;for(ft&&ie.push(A);$t<we;){var vr=f,nr=!0,ya=!1,vn=void 0;try{for(var yn=X[Symbol.iterator](),Zn;!(nr=(Zn=yn.next()).done);nr=!0){var Ua=Zn.value;Ua>=_e&&Ua<vr&&(vr=Ua)}}catch(bi){ya=!0,vn=bi}finally{try{!nr&&yn.return&&yn.return()}finally{if(ya)throw vn}}var nn=$t+1;vr-_e>D((f-Ye)/nn)&&E("overflow"),Ye+=(vr-_e)*nn,_e=vr;var Tr=!0,Va=!1,Yn=void 0;try{for(var qi=X[Symbol.iterator](),xu;!(Tr=(xu=qi.next()).done);Tr=!0){var Ou=xu.value;if(Ou<_e&&++Ye>f&&E("overflow"),Ou==_e){for(var Bo=Ye,Ga=g;;Ga+=g){var Wo=Ga<=rt?v:Ga>=rt+y?y:Ga-rt;if(Bo<Wo)break;var _i=Bo-Wo,rl=g-Wo;ie.push(M(B(Wo+_i%rl,0))),Bo=D(_i/rl)}ie.push(M(B(Bo,0))),rt=z(Ye,nn,$t==ft),Ye=0,++$t}}}catch(bi){Va=!0,Yn=bi}finally{try{!Tr&&qi.return&&qi.return()}finally{if(Va)throw Yn}}++Ye,++_e}return ie.join("")},K=function(X){return P(X,function(ie){return I.test(ie)?F(ie.slice(4).toLowerCase()):ie})},Z=function(X){return P(X,function(ie){return k.test(ie)?"xn--"+V(ie):ie})},ue={version:"2.1.0",ucs2:{decode:j,encode:H},decode:F,encode:V,toASCII:Z,toUnicode:K},fe={};function ye(ae){var X=ae.charCodeAt(0),ie=void 0;return X<16?ie="%0"+X.toString(16).toUpperCase():X<128?ie="%"+X.toString(16).toUpperCase():X<2048?ie="%"+(X>>6|192).toString(16).toUpperCase()+"%"+(X&63|128).toString(16).toUpperCase():ie="%"+(X>>12|224).toString(16).toUpperCase()+"%"+(X>>6&63|128).toString(16).toUpperCase()+"%"+(X&63|128).toString(16).toUpperCase(),ie}function De(ae){for(var X="",ie=0,we=ae.length;ie<we;){var _e=parseInt(ae.substr(ie+1,2),16);if(_e<128)X+=String.fromCharCode(_e),ie+=3;else if(_e>=194&&_e<224){if(we-ie>=6){var Ye=parseInt(ae.substr(ie+4,2),16);X+=String.fromCharCode((_e&31)<<6|Ye&63)}else X+=ae.substr(ie,6);ie+=6}else if(_e>=224){if(we-ie>=9){var rt=parseInt(ae.substr(ie+4,2),16),Et=parseInt(ae.substr(ie+7,2),16);X+=String.fromCharCode((_e&15)<<12|(rt&63)<<6|Et&63)}else X+=ae.substr(ie,9);ie+=9}else X+=ae.substr(ie,3),ie+=3}return X}function xe(ae,X){function ie(we){var _e=De(we);return _e.match(X.UNRESERVED)?_e:we}return ae.scheme&&(ae.scheme=String(ae.scheme).replace(X.PCT_ENCODED,ie).toLowerCase().replace(X.NOT_SCHEME,"")),ae.userinfo!==void 0&&(ae.userinfo=String(ae.userinfo).replace(X.PCT_ENCODED,ie).replace(X.NOT_USERINFO,ye).replace(X.PCT_ENCODED,o)),ae.host!==void 0&&(ae.host=String(ae.host).replace(X.PCT_ENCODED,ie).toLowerCase().replace(X.NOT_HOST,ye).replace(X.PCT_ENCODED,o)),ae.path!==void 0&&(ae.path=String(ae.path).replace(X.PCT_ENCODED,ie).replace(ae.scheme?X.NOT_PATH:X.NOT_PATH_NOSCHEME,ye).replace(X.PCT_ENCODED,o)),ae.query!==void 0&&(ae.query=String(ae.query).replace(X.PCT_ENCODED,ie).replace(X.NOT_QUERY,ye).replace(X.PCT_ENCODED,o)),ae.fragment!==void 0&&(ae.fragment=String(ae.fragment).replace(X.PCT_ENCODED,ie).replace(X.NOT_FRAGMENT,ye).replace(X.PCT_ENCODED,o)),ae}function $e(ae){return ae.replace(/^0*(.*)/,"$1")||"0"}function at(ae,X){var ie=ae.match(X.IPV4ADDRESS)||[],we=h(ie,2),_e=we[1];return _e?_e.split(".").map($e).join("."):ae}function it(ae,X){var ie=ae.match(X.IPV6ADDRESS)||[],we=h(ie,3),_e=we[1],Ye=we[2];if(_e){for(var rt=_e.toLowerCase().split("::").reverse(),Et=h(rt,2),It=Et[0],lr=Et[1],wt=lr?lr.split(":").map($e):[],Wt=It.split(":").map($e),ur=X.IPV4ADDRESS.test(Wt[Wt.length-1]),ft=ur?7:8,$t=Wt.length-ft,vr=Array(ft),nr=0;nr<ft;++nr)vr[nr]=wt[nr]||Wt[$t+nr]||"";ur&&(vr[ft-1]=at(vr[ft-1],X));var ya=vr.reduce(function(nn,Tr,Va){if(!Tr||Tr==="0"){var Yn=nn[nn.length-1];Yn&&Yn.index+Yn.length===Va?Yn.length++:nn.push({index:Va,length:1})}return nn},[]),vn=ya.sort(function(nn,Tr){return Tr.length-nn.length})[0],yn=void 0;if(vn&&vn.length>1){var Zn=vr.slice(0,vn.index),Ua=vr.slice(vn.index+vn.length);yn=Zn.join(":")+"::"+Ua.join(":")}else yn=vr.join(":");return Ye&&(yn+="%"+Ye),yn}else return ae}var N=/^(?:([^:\/?#]+):)?(?:\/\/((?:([^\/?#@]*)@)?(\[[^\/?#\]]+\]|[^\/?#:]*)(?:\:(\d*))?))?([^?#]*)(?:\?([^#]*))?(?:#((?:.|\n|\r)*))?/i,ge="".match(/(){0}/)[1]===void 0;function me(ae){var X=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},ie={},we=X.iri!==!1?c:u;X.reference==="suffix"&&(ae=(X.scheme?X.scheme+":":"")+"//"+ae);var _e=ae.match(N);if(_e){ge?(ie.scheme=_e[1],ie.userinfo=_e[3],ie.host=_e[4],ie.port=parseInt(_e[5],10),ie.path=_e[6]||"",ie.query=_e[7],ie.fragment=_e[8],isNaN(ie.port)&&(ie.port=_e[5])):(ie.scheme=_e[1]||void 0,ie.userinfo=ae.indexOf("@")!==-1?_e[3]:void 0,ie.host=ae.indexOf("//")!==-1?_e[4]:void 0,ie.port=parseInt(_e[5],10),ie.path=_e[6]||"",ie.query=ae.indexOf("?")!==-1?_e[7]:void 0,ie.fragment=ae.indexOf("#")!==-1?_e[8]:void 0,isNaN(ie.port)&&(ie.port=ae.match(/\/\/(?:.|\n)*\:(?:\/|\?|\#|$)/)?_e[4]:void 0)),ie.host&&(ie.host=it(at(ie.host,we),we)),ie.scheme===void 0&&ie.userinfo===void 0&&ie.host===void 0&&ie.port===void 0&&!ie.path&&ie.query===void 0?ie.reference="same-document":ie.scheme===void 0?ie.reference="relative":ie.fragment===void 0?ie.reference="absolute":ie.reference="uri",X.reference&&X.reference!=="suffix"&&X.reference!==ie.reference&&(ie.error=ie.error||"URI is not a "+X.reference+" reference.");var Ye=fe[(X.scheme||ie.scheme||"").toLowerCase()];if(!X.unicodeSupport&&(!Ye||!Ye.unicodeSupport)){if(ie.host&&(X.domainHost||Ye&&Ye.domainHost))try{ie.host=ue.toASCII(ie.host.replace(we.PCT_ENCODED,De).toLowerCase())}catch(rt){ie.error=ie.error||"Host's domain name can not be converted to ASCII via punycode: "+rt}xe(ie,u)}else xe(ie,we);Ye&&Ye.parse&&Ye.parse(ie,X)}else ie.error=ie.error||"URI can not be parsed.";return ie}function ee(ae,X){var ie=X.iri!==!1?c:u,we=[];return ae.userinfo!==void 0&&(we.push(ae.userinfo),we.push("@")),ae.host!==void 0&&we.push(it(at(String(ae.host),ie),ie).replace(ie.IPV6ADDRESS,function(_e,Ye,rt){return"["+Ye+(rt?"%25"+rt:"")+"]"})),(typeof ae.port=="number"||typeof ae.port=="string")&&(we.push(":"),we.push(String(ae.port))),we.length?we.join(""):void 0}var Q=/^\.\.?\//,se=/^\/\.(\/|$)/,Ce=/^\/\.\.(\/|$)/,oe=/^\/?(?:.|\n)*?(?=\/|$)/;function re(ae){for(var X=[];ae.length;)if(ae.match(Q))ae=ae.replace(Q,"");else if(ae.match(se))ae=ae.replace(se,"/");else if(ae.match(Ce))ae=ae.replace(Ce,"/"),X.pop();else if(ae==="."||ae==="..")ae="";else{var ie=ae.match(oe);if(ie){var we=ie[0];ae=ae.slice(we.length),X.push(we)}else throw new Error("Unexpected dot segment condition")}return X.join("")}function pe(ae){var X=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},ie=X.iri?c:u,we=[],_e=fe[(X.scheme||ae.scheme||"").toLowerCase()];if(_e&&_e.serialize&&_e.serialize(ae,X),ae.host&&!ie.IPV6ADDRESS.test(ae.host)){if(X.domainHost||_e&&_e.domainHost)try{ae.host=X.iri?ue.toUnicode(ae.host):ue.toASCII(ae.host.replace(ie.PCT_ENCODED,De).toLowerCase())}catch(Et){ae.error=ae.error||"Host's domain name can not be converted to "+(X.iri?"Unicode":"ASCII")+" via punycode: "+Et}}xe(ae,ie),X.reference!=="suffix"&&ae.scheme&&(we.push(ae.scheme),we.push(":"));var Ye=ee(ae,X);if(Ye!==void 0&&(X.reference!=="suffix"&&we.push("//"),we.push(Ye),ae.path&&ae.path.charAt(0)!=="/"&&we.push("/")),ae.path!==void 0){var rt=ae.path;!X.absolutePath&&(!_e||!_e.absolutePath)&&(rt=re(rt)),Ye===void 0&&(rt=rt.replace(/^\/\//,"/%2F")),we.push(rt)}return ae.query!==void 0&&(we.push("?"),we.push(ae.query)),ae.fragment!==void 0&&(we.push("#"),we.push(ae.fragment)),we.join("")}function Ee(ae,X){var ie=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},we=arguments[3],_e={};return we||(ae=me(pe(ae,ie),ie),X=me(pe(X,ie),ie)),ie=ie||{},!ie.tolerant&&X.scheme?(_e.scheme=X.scheme,_e.userinfo=X.userinfo,_e.host=X.host,_e.port=X.port,_e.path=re(X.path||""),_e.query=X.query):(X.userinfo!==void 0||X.host!==void 0||X.port!==void 0?(_e.userinfo=X.userinfo,_e.host=X.host,_e.port=X.port,_e.path=re(X.path||""),_e.query=X.query):(X.path?(X.path.charAt(0)==="/"?_e.path=re(X.path):((ae.userinfo!==void 0||ae.host!==void 0||ae.port!==void 0)&&!ae.path?_e.path="/"+X.path:ae.path?_e.path=ae.path.slice(0,ae.path.lastIndexOf("/")+1)+X.path:_e.path=X.path,_e.path=re(_e.path)),_e.query=X.query):(_e.path=ae.path,X.query!==void 0?_e.query=X.query:_e.query=ae.query),_e.userinfo=ae.userinfo,_e.host=ae.host,_e.port=ae.port),_e.scheme=ae.scheme),_e.fragment=X.fragment,_e}function ke(ae,X,ie){var we=l({scheme:"null"},ie);return pe(Ee(me(ae,we),me(X,we),we,!0),we)}function Be(ae,X){return typeof ae=="string"?ae=pe(me(ae,X),X):i(ae)==="object"&&(ae=me(pe(ae,X),X)),ae}function tt(ae,X,ie){return typeof ae=="string"?ae=pe(me(ae,ie),ie):i(ae)==="object"&&(ae=pe(ae,ie)),typeof X=="string"?X=pe(me(X,ie),ie):i(X)==="object"&&(X=pe(X,ie)),ae===X}function Ke(ae,X){return ae&&ae.toString().replace(!X||!X.iri?u.ESCAPE:c.ESCAPE,ye)}function ot(ae,X){return ae&&ae.toString().replace(!X||!X.iri?u.PCT_ENCODED:c.PCT_ENCODED,De)}var lt={scheme:"http",domainHost:!0,parse:function(X,ie){return X.host||(X.error=X.error||"HTTP URIs must have a host."),X},serialize:function(X,ie){var we=String(X.scheme).toLowerCase()==="https";return(X.port===(we?443:80)||X.port==="")&&(X.port=void 0),X.path||(X.path="/"),X}},Jt={scheme:"https",domainHost:lt.domainHost,parse:lt.parse,serialize:lt.serialize};function jr(ae){return typeof ae.secure=="boolean"?ae.secure:String(ae.scheme).toLowerCase()==="wss"}var Bt={scheme:"ws",domainHost:!0,parse:function(X,ie){var we=X;return we.secure=jr(we),we.resourceName=(we.path||"/")+(we.query?"?"+we.query:""),we.path=void 0,we.query=void 0,we},serialize:function(X,ie){if((X.port===(jr(X)?443:80)||X.port==="")&&(X.port=void 0),typeof X.secure=="boolean"&&(X.scheme=X.secure?"wss":"ws",X.secure=void 0),X.resourceName){var we=X.resourceName.split("?"),_e=h(we,2),Ye=_e[0],rt=_e[1];X.path=Ye&&Ye!=="/"?Ye:void 0,X.query=rt,X.resourceName=void 0}return X.fragment=void 0,X}},qn={scheme:"wss",domainHost:Bt.domainHost,parse:Bt.parse,serialize:Bt.serialize},Kn={},Ur="[A-Za-z0-9\\-\\.\\_\\~\\xA0-\\u200D\\u2010-\\u2029\\u202F-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF]",zr="[0-9A-Fa-f]",zo=a(a("%[EFef]"+zr+"%"+zr+zr+"%"+zr+zr)+"|"+a("%[89A-Fa-f]"+zr+"%"+zr+zr)+"|"+a("%"+zr+zr)),Pn="[A-Za-z0-9\\!\\$\\%\\'\\*\\+\\-\\^\\_\\`\\{\\|\\}\\~]",Vi="[\\!\\$\\%\\'\\(\\)\\*\\+\\,\\-\\.0-9\\<\\>A-Z\\x5E-\\x7E]",Gi=n(Vi,'[\\"\\\\]'),ga="[\\!\\$\\'\\(\\)\\*\\+\\,\\;\\:\\@]",Qn=new RegExp(Ur,"g"),Vr=new RegExp(zo,"g"),No=new RegExp(n("[^]",Pn,"[\\.]",'[\\"]',Gi),"g"),Fo=new RegExp(n("[^]",Ur,ga),"g"),el=Fo;function va(ae){var X=De(ae);return X.match(Qn)?X:ae}var Eu={scheme:"mailto",parse:function(X,ie){var we=X,_e=we.to=we.path?we.path.split(","):[];if(we.path=void 0,we.query){for(var Ye=!1,rt={},Et=we.query.split("&"),It=0,lr=Et.length;It<lr;++It){var wt=Et[It].split("=");switch(wt[0]){case"to":for(var Wt=wt[1].split(","),ur=0,ft=Wt.length;ur<ft;++ur)_e.push(Wt[ur]);break;case"subject":we.subject=ot(wt[1],ie);break;case"body":we.body=ot(wt[1],ie);break;default:Ye=!0,rt[ot(wt[0],ie)]=ot(wt[1],ie);break}}Ye&&(we.headers=rt)}we.query=void 0;for(var $t=0,vr=_e.length;$t<vr;++$t){var nr=_e[$t].split("@");if(nr[0]=ot(nr[0]),ie.unicodeSupport)nr[1]=ot(nr[1],ie).toLowerCase();else try{nr[1]=ue.toASCII(ot(nr[1],ie).toLowerCase())}catch(ya){we.error=we.error||"Email address's domain name can not be converted to ASCII via punycode: "+ya}_e[$t]=nr.join("@")}return we},serialize:function(X,ie){var we=X,_e=s(X.to);if(_e){for(var Ye=0,rt=_e.length;Ye<rt;++Ye){var Et=String(_e[Ye]),It=Et.lastIndexOf("@"),lr=Et.slice(0,It).replace(Vr,va).replace(Vr,o).replace(No,ye),wt=Et.slice(It+1);try{wt=ie.iri?ue.toUnicode(wt):ue.toASCII(ot(wt,ie).toLowerCase())}catch($t){we.error=we.error||"Email address's domain name can not be converted to "+(ie.iri?"Unicode":"ASCII")+" via punycode: "+$t}_e[Ye]=lr+"@"+wt}we.path=_e.join(",")}var Wt=X.headers=X.headers||{};X.subject&&(Wt.subject=X.subject),X.body&&(Wt.body=X.body);var ur=[];for(var ft in Wt)Wt[ft]!==Kn[ft]&&ur.push(ft.replace(Vr,va).replace(Vr,o).replace(Fo,ye)+"="+Wt[ft].replace(Vr,va).replace(Vr,o).replace(el,ye));return ur.length&&(we.query=ur.join("&")),we}},Xc=/^([^\:]+)\:(.*)/,tl={scheme:"urn",parse:function(X,ie){var we=X.path&&X.path.match(Xc),_e=X;if(we){var Ye=ie.scheme||_e.scheme||"urn",rt=we[1].toLowerCase(),Et=we[2],It=Ye+":"+(ie.nid||rt),lr=fe[It];_e.nid=rt,_e.nss=Et,_e.path=void 0,lr&&(_e=lr.parse(_e,ie))}else _e.error=_e.error||"URN can not be parsed.";return _e},serialize:function(X,ie){var we=ie.scheme||X.scheme||"urn",_e=X.nid,Ye=we+":"+(ie.nid||_e),rt=fe[Ye];rt&&(X=rt.serialize(X,ie));var Et=X,It=X.nss;return Et.path=(_e||ie.nid)+":"+It,Et}},Iu=/^[0-9A-Fa-f]{8}(?:\-[0-9A-Fa-f]{4}){3}\-[0-9A-Fa-f]{12}$/,Du={scheme:"urn:uuid",parse:function(X,ie){var we=X;return we.uuid=we.nss,we.nss=void 0,!ie.tolerant&&(!we.uuid||!we.uuid.match(Iu))&&(we.error=we.error||"UUID is not valid."),we},serialize:function(X,ie){var we=X;return we.nss=(X.uuid||"").toLowerCase(),we}};fe[lt.scheme]=lt,fe[Jt.scheme]=Jt,fe[Bt.scheme]=Bt,fe[qn.scheme]=qn,fe[Eu.scheme]=Eu,fe[tl.scheme]=tl,fe[Du.scheme]=Du,r.SCHEMES=fe,r.pctEncChar=ye,r.pctDecChars=De,r.parse=me,r.removeDotSegments=re,r.serialize=pe,r.resolveComponents=Ee,r.resolve=ke,r.normalize=Be,r.equal=tt,r.escapeComponent=Ke,r.unescapeComponent=ot,Object.defineProperty(r,"__esModule",{value:!0})})})(cE,cE.exports);var K2=function e(t,r){if(t===r)return!0;if(t&&r&&typeof t=="object"&&typeof r=="object"){if(t.constructor!==r.constructor)return!1;var n,a,i;if(Array.isArray(t)){if(n=t.length,n!=r.length)return!1;for(a=n;a--!==0;)if(!e(t[a],r[a]))return!1;return!0}if(t.constructor===RegExp)return t.source===r.source&&t.flags===r.flags;if(t.valueOf!==Object.prototype.valueOf)return t.valueOf()===r.valueOf();if(t.toString!==Object.prototype.toString)return t.toString()===r.toString();if(i=Object.keys(t),n=i.length,n!==Object.keys(r).length)return!1;for(a=n;a--!==0;)if(!Object.prototype.hasOwnProperty.call(r,i[a]))return!1;for(a=n;a--!==0;){var o=i[a];if(!e(t[o],r[o]))return!1}return!0}return t!==t&&r!==r},Lot=function(t){for(var r=0,n=t.length,a=0,i;a<n;)r++,i=t.charCodeAt(a++),i>=55296&&i<=56319&&a<n&&(i=t.charCodeAt(a),(i&64512)==56320&&a++);return r},Zc={copy:Pot,checkDataType:hE,checkDataTypes:$ot,coerceToTypes:zot,toHash:Q2,getProperty:Z2,escapeQuotes:Y2,equal:K2,ucs2length:Lot,varOccurences:Bot,varReplace:Wot,schemaHasRules:Hot,schemaHasRulesExcept:jot,schemaUnknownRules:Uot,toQuotedString:mE,getPathExpr:Vot,getPath:Got,getData:Qot,unescapeFragment:Zot,unescapeJsonPointer:J2,escapeFragment:Yot,escapeJsonPointer:X2};function Pot(e,t){t=t||{};for(var r in e)t[r]=e[r];return t}function hE(e,t,r,n){var a=n?" !== ":" === ",i=n?" || ":" && ",o=n?"!":"",s=n?"":"!";switch(e){case"null":return t+a+"null";case"array":return o+"Array.isArray("+t+")";case"object":return"("+o+t+i+"typeof "+t+a+'"object"'+i+s+"Array.isArray("+t+"))";case"integer":return"(typeof "+t+a+'"number"'+i+s+"("+t+" % 1)"+i+t+a+t+(r?i+o+"isFinite("+t+")":"")+")";case"number":return"(typeof "+t+a+'"'+e+'"'+(r?i+o+"isFinite("+t+")":"")+")";default:return"typeof "+t+a+'"'+e+'"'}}function $ot(e,t,r){switch(e.length){case 1:return hE(e[0],t,r,!0);default:var n="",a=Q2(e);a.array&&a.object&&(n=a.null?"(":"(!"+t+" || ",n+="typeof "+t+' !== "object")',delete a.null,delete a.array,delete a.object),a.number&&delete a.integer;for(var i in a)n+=(n?" && ":"")+hE(i,t,r,!0);return n}}var J6=Q2(["string","number","integer","boolean","null"]);function zot(e,t){if(Array.isArray(t)){for(var r=[],n=0;n<t.length;n++){var a=t[n];(J6[a]||e==="array"&&a==="array")&&(r[r.length]=a)}if(r.length)return r}else{if(J6[t])return[t];if(e==="array"&&t==="array")return["array"]}}function Q2(e){for(var t={},r=0;r<e.length;r++)t[e[r]]=!0;return t}var Not=/^[a-z$_][a-z$_0-9]*$/i,Fot=/'|\\/g;function Z2(e){return typeof e=="number"?"["+e+"]":Not.test(e)?"."+e:"['"+Y2(e)+"']"}function Y2(e){return e.replace(Fot,"\\$&").replace(/\n/g,"\\n").replace(/\r/g,"\\r").replace(/\f/g,"\\f").replace(/\t/g,"\\t")}function Bot(e,t){t+="[^0-9]";var r=e.match(new RegExp(t,"g"));return r?r.length:0}function Wot(e,t,r){return t+="([^0-9])",r=r.replace(/\$/g,"$$$$"),e.replace(new RegExp(t,"g"),r+"$1")}function Hot(e,t){if(typeof e=="boolean")return!e;for(var r in e)if(t[r])return!0}function jot(e,t,r){if(typeof e=="boolean")return!e&&r!="not";for(var n in e)if(n!=r&&t[n])return!0}function Uot(e,t){if(typeof e!="boolean"){for(var r in e)if(!t[r])return r}}function mE(e){return"'"+Y2(e)+"'"}function Vot(e,t,r,n){var a=r?"'/' + "+t+(n?"":".replace(/~/g, '~0').replace(/\\//g, '~1')"):n?"'[' + "+t+" + ']'":"'[\\'' + "+t+" + '\\']'";return FK(e,a)}function Got(e,t,r){var n=mE(r?"/"+X2(t):Z2(t));return FK(e,n)}var qot=/^\/(?:[^~]|~0|~1)*$/,Kot=/^([0-9]+)(#|\/(?:[^~]|~0|~1)*)?$/;function Qot(e,t,r){var n,a,i,o;if(e==="")return"rootData";if(e[0]=="/"){if(!qot.test(e))throw new Error("Invalid JSON-pointer: "+e);a=e,i="rootData"}else{if(o=e.match(Kot),!o)throw new Error("Invalid JSON-pointer: "+e);if(n=+o[1],a=o[2],a=="#"){if(n>=t)throw new Error("Cannot access property/index "+n+" levels up, current level is "+t);return r[t-n]}if(n>t)throw new Error("Cannot access data "+n+" levels up, current level is "+t);if(i="data"+(t-n||""),!a)return i}for(var s=i,l=a.split("/"),d=0;d<l.length;d++){var u=l[d];u&&(i+=Z2(J2(u)),s+=" && "+i)}return s}function FK(e,t){return e=='""'?t:(e+" + "+t).replace(/([^\\])' \+ '/g,"$1")}function Zot(e){return J2(decodeURIComponent(e))}function Yot(e){return encodeURIComponent(X2(e))}function X2(e){return e.replace(/~/g,"~0").replace(/\//g,"~1")}function J2(e){return e.replace(/~1/g,"/").replace(/~0/g,"~")}var Xot=Zc,BK=Jot;function Jot(e){Xot.copy(e,this)}var WK={exports:{}},fs=WK.exports=function(e,t,r){typeof t=="function"&&(r=t,t={}),r=t.cb||r;var n=typeof r=="function"?r:r.pre||function(){},a=r.post||function(){};sy(t,n,a,e,"",e)};fs.keywords={additionalItems:!0,items:!0,contains:!0,additionalProperties:!0,propertyNames:!0,not:!0};fs.arrayKeywords={items:!0,allOf:!0,anyOf:!0,oneOf:!0};fs.propsKeywords={definitions:!0,properties:!0,patternProperties:!0,dependencies:!0};fs.skipKeywords={default:!0,enum:!0,const:!0,required:!0,maximum:!0,minimum:!0,exclusiveMaximum:!0,exclusiveMinimum:!0,multipleOf:!0,maxLength:!0,minLength:!0,pattern:!0,format:!0,maxItems:!0,minItems:!0,uniqueItems:!0,maxProperties:!0,minProperties:!0};function sy(e,t,r,n,a,i,o,s,l,d){if(n&&typeof n=="object"&&!Array.isArray(n)){t(n,a,i,o,s,l,d);for(var u in n){var c=n[u];if(Array.isArray(c)){if(u in fs.arrayKeywords)for(var h=0;h<c.length;h++)sy(e,t,r,c[h],a+"/"+u+"/"+h,i,a,u,n,h)}else if(u in fs.propsKeywords){if(c&&typeof c=="object")for(var m in c)sy(e,t,r,c[m],a+"/"+u+"/"+est(m),i,a,u,n,m)}else(u in fs.keywords||e.allKeys&&!(u in fs.skipKeywords))&&sy(e,t,r,c,a+"/"+u,i,a,u,n)}r(n,a,i,o,s,l,d)}}function est(e){return e.replace(/~/g,"~0").replace(/\//g,"~1")}var xp=cE.exports,eB=K2,jw=Zc,P_=BK,tst=WK.exports,eO=Xs;Xs.normalizeId=Es;Xs.fullPath=$_;Xs.url=z_;Xs.ids=ost;Xs.inlineRef=fE;Xs.schema=Uw;function Xs(e,t,r){var n=this._refs[r];if(typeof n=="string")if(this._refs[n])n=this._refs[n];else return Xs.call(this,e,t,n);if(n=n||this._schemas[r],n instanceof P_)return fE(n.schema,this._opts.inlineRefs)?n.schema:n.validate||this._compile(n);var a=Uw.call(this,t,r),i,o,s;return a&&(i=a.schema,t=a.root,s=a.baseId),i instanceof P_?o=i.validate||e.call(this,i.schema,t,void 0,s):i!==void 0&&(o=fE(i,this._opts.inlineRefs)?i:e.call(this,i,t,void 0,s)),o}function Uw(e,t){var r=xp.parse(t),n=jK(r),a=$_(this._getId(e.schema));if(Object.keys(e.schema).length===0||n!==a){var i=Es(n),o=this._refs[i];if(typeof o=="string")return rst.call(this,e,o,r);if(o instanceof P_)o.validate||this._compile(o),e=o;else if(o=this._schemas[i],o instanceof P_){if(o.validate||this._compile(o),i==Es(t))return{schema:o,root:e,baseId:a};e=o}else return;if(!e.schema)return;a=$_(this._getId(e.schema))}return HK.call(this,r,a,e.schema,e)}function rst(e,t,r){var n=Uw.call(this,e,t);if(n){var a=n.schema,i=n.baseId;e=n.root;var o=this._getId(a);return o&&(i=z_(i,o)),HK.call(this,r,i,a,e)}}var nst=jw.toHash(["properties","patternProperties","enum","dependencies","definitions"]);function HK(e,t,r,n){if(e.fragment=e.fragment||"",e.fragment.slice(0,1)=="/"){for(var a=e.fragment.split("/"),i=1;i<a.length;i++){var o=a[i];if(o){if(o=jw.unescapeFragment(o),r=r[o],r===void 0)break;var s;if(!nst[o]&&(s=this._getId(r),s&&(t=z_(t,s)),r.$ref)){var l=z_(t,r.$ref),d=Uw.call(this,n,l);d&&(r=d.schema,n=d.root,t=d.baseId)}}}if(r!==void 0&&r!==n.schema)return{schema:r,root:n,baseId:t}}}var ast=jw.toHash(["type","format","pattern","maxLength","minLength","maxProperties","minProperties","maxItems","minItems","maximum","minimum","uniqueItems","multipleOf","required","enum"]);function fE(e,t){if(t===!1)return!1;if(t===void 0||t===!0)return pE(e);if(t)return gE(e)<=t}function pE(e){var t;if(Array.isArray(e)){for(var r=0;r<e.length;r++)if(t=e[r],typeof t=="object"&&!pE(t))return!1}else for(var n in e)if(n=="$ref"||(t=e[n],typeof t=="object"&&!pE(t)))return!1;return!0}function gE(e){var t=0,r;if(Array.isArray(e)){for(var n=0;n<e.length;n++)if(r=e[n],typeof r=="object"&&(t+=gE(r)),t==1/0)return 1/0}else for(var a in e){if(a=="$ref")return 1/0;if(ast[a])t++;else if(r=e[a],typeof r=="object"&&(t+=gE(r)+1),t==1/0)return 1/0}return t}function $_(e,t){t!==!1&&(e=Es(e));var r=xp.parse(e);return jK(r)}function jK(e){return xp.serialize(e).split("#")[0]+"#"}var ist=/#\/?$/;function Es(e){return e?e.replace(ist,""):""}function z_(e,t){return t=Es(t),xp.resolve(e,t)}function ost(e){var t=Es(this._getId(e)),r={"":t},n={"":$_(t,!1)},a={},i=this;return tst(e,{allKeys:!0},function(o,s,l,d,u,c,h){if(s!==""){var m=i._getId(o),f=r[d],g=n[d]+"/"+u;if(h!==void 0&&(g+="/"+(typeof h=="number"?h:jw.escapeFragment(h))),typeof m=="string"){m=f=Es(f?xp.resolve(f,m):m);var v=i._refs[m];if(typeof v=="string"&&(v=i._refs[v]),v&&v.schema){if(!eB(o,v.schema))throw new Error('id "'+m+'" resolves to more than one schema')}else if(m!=Es(g))if(m[0]=="#"){if(a[m]&&!eB(o,a[m]))throw new Error('id "'+m+'" resolves to more than one schema');a[m]=o}else i._refs[m]=g}r[s]=f,n[s]=g}}),a}var OA=eO,tO={Validation:tB(sst),MissingRef:tB(rO)};function sst(e){this.message="validation failed",this.errors=e,this.ajv=this.validation=!0}rO.message=function(e,t){return"can't resolve reference "+t+" from id "+e};function rO(e,t,r){this.message=r||rO.message(e,t),this.missingRef=OA.url(e,t),this.missingSchema=OA.normalizeId(OA.fullPath(this.missingRef))}function tB(e){return e.prototype=Object.create(Error.prototype),e.prototype.constructor=e,e}var UK=function(e,t){t||(t={}),typeof t=="function"&&(t={cmp:t});var r=typeof t.cycles=="boolean"?t.cycles:!1,n=t.cmp&&function(i){return function(o){return function(s,l){var d={key:s,value:o[s]},u={key:l,value:o[l]};return i(d,u)}}}(t.cmp),a=[];return function i(o){if(o&&o.toJSON&&typeof o.toJSON=="function"&&(o=o.toJSON()),o!==void 0){if(typeof o=="number")return isFinite(o)?""+o:"null";if(typeof o!="object")return JSON.stringify(o);var s,l;if(Array.isArray(o)){for(l="[",s=0;s<o.length;s++)s&&(l+=","),l+=i(o[s])||"null";return l+"]"}if(o===null)return"null";if(a.indexOf(o)!==-1){if(r)return JSON.stringify("__cycle__");throw new TypeError("Converting circular structure to JSON")}var d=a.push(o)-1,u=Object.keys(o).sort(n&&n(o));for(l="",s=0;s<u.length;s++){var c=u[s],h=i(o[c]);!h||(l&&(l+=","),l+=JSON.stringify(c)+":"+h)}return a.splice(d,1),"{"+l+"}"}}(e)},VK=function(t,r,n){var a="",i=t.schema.$async===!0,o=t.util.schemaHasRulesExcept(t.schema,t.RULES.all,"$ref"),s=t.self._getId(t.schema);if(t.opts.strictKeywords){var l=t.util.schemaUnknownRules(t.schema,t.RULES.keywords);if(l){var d="unknown keyword: "+l;if(t.opts.strictKeywords==="log")t.logger.warn(d);else throw new Error(d)}}if(t.isTop&&(a+=" var validate = ",i&&(t.async=!0,a+="async "),a+="function(data, dataPath, parentData, parentDataProperty, rootData) { 'use strict'; ",s&&(t.opts.sourceCode||t.opts.processCode)&&(a+=" "+("/*# sourceURL="+s+" */")+" ")),typeof t.schema=="boolean"||!(o||t.schema.$ref)){var r="false schema",u=t.level,c=t.dataLevel,h=t.schema[r],m=t.schemaPath+t.util.getProperty(r),f=t.errSchemaPath+"/"+r,_=!t.opts.allErrors,k,g="data"+(c||""),w="valid"+u;if(t.schema===!1){t.isTop?_=!0:a+=" var "+w+" = false; ";var v=v||[];v.push(a),a="",t.createErrors!==!1?(a+=" { keyword: '"+(k||"false schema")+"' , dataPath: (dataPath || '') + "+t.errorPath+" , schemaPath: "+t.util.toQuotedString(f)+" , params: {} ",t.opts.messages!==!1&&(a+=" , message: 'boolean schema is false' "),t.opts.verbose&&(a+=" , schema: false , parentSchema: validate.schema"+t.schemaPath+" , data: "+g+" "),a+=" } "):a+=" {} ";var y=a;a=v.pop(),!t.compositeRule&&_?t.async?a+=" throw new ValidationError(["+y+"]); ":a+=" validate.errors = ["+y+"]; return false; ":a+=" var err = "+y+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; "}else t.isTop?i?a+=" return data; ":a+=" validate.errors = null; return true; ":a+=" var "+w+" = true; ";return t.isTop&&(a+=" }; return validate; "),a}if(t.isTop){var b=t.isTop,u=t.level=0,c=t.dataLevel=0,g="data";if(t.rootId=t.resolve.fullPath(t.self._getId(t.root.schema)),t.baseId=t.baseId||t.rootId,delete t.isTop,t.dataPathArr=[""],t.schema.default!==void 0&&t.opts.useDefaults&&t.opts.strictDefaults){var S="default is ignored in the schema root";if(t.opts.strictDefaults==="log")t.logger.warn(S);else throw new Error(S)}a+=" var vErrors = null; ",a+=" var errors = 0; ",a+=" if (rootData === undefined) rootData = data; "}else{var u=t.level,c=t.dataLevel,g="data"+(c||"");if(s&&(t.baseId=t.resolve.url(t.baseId,s)),i&&!t.async)throw new Error("async schema in sync schema");a+=" var errs_"+u+" = errors;"}var w="valid"+u,_=!t.opts.allErrors,A="",I="",k,C=t.schema.type,T=Array.isArray(C);if(C&&t.opts.nullable&&t.schema.nullable===!0&&(T?C.indexOf("null")==-1&&(C=C.concat("null")):C!="null"&&(C=[C,"null"],T=!0)),T&&C.length==1&&(C=C[0],T=!1),t.schema.$ref&&o){if(t.opts.extendRefs=="fail")throw new Error('$ref: validation keywords used in schema at path "'+t.errSchemaPath+'" (see option extendRefs)');t.opts.extendRefs!==!0&&(o=!1,t.logger.warn('$ref: keywords ignored in schema at path "'+t.errSchemaPath+'"'))}if(t.schema.$comment&&t.opts.$comment&&(a+=" "+t.RULES.all.$comment.code(t,"$comment")),C){if(t.opts.coerceTypes)var O=t.util.coerceToTypes(t.opts.coerceTypes,C);var D=t.RULES.types[C];if(O||T||D===!0||D&&!se(D)){var m=t.schemaPath+".type",f=t.errSchemaPath+"/type",m=t.schemaPath+".type",f=t.errSchemaPath+"/type",M=T?"checkDataTypes":"checkDataType";if(a+=" if ("+t.util[M](C,g,t.opts.strictNumbers,!0)+") { ",O){var E="dataType"+u,L="coerced"+u;a+=" var "+E+" = typeof "+g+"; var "+L+" = undefined; ",t.opts.coerceTypes=="array"&&(a+=" if ("+E+" == 'object' && Array.isArray("+g+") && "+g+".length == 1) { "+g+" = "+g+"[0]; "+E+" = typeof "+g+"; if ("+t.util.checkDataType(t.schema.type,g,t.opts.strictNumbers)+") "+L+" = "+g+"; } "),a+=" if ("+L+" !== undefined) ; ";var P=O;if(P)for(var j,H=-1,$=P.length-1;H<$;)j=P[H+=1],j=="string"?a+=" else if ("+E+" == 'number' || "+E+" == 'boolean') "+L+" = '' + "+g+"; else if ("+g+" === null) "+L+" = ''; ":j=="number"||j=="integer"?(a+=" else if ("+E+" == 'boolean' || "+g+" === null || ("+E+" == 'string' && "+g+" && "+g+" == +"+g+" ",j=="integer"&&(a+=" && !("+g+" % 1)"),a+=")) "+L+" = +"+g+"; "):j=="boolean"?a+=" else if ("+g+" === 'false' || "+g+" === 0 || "+g+" === null) "+L+" = false; else if ("+g+" === 'true' || "+g+" === 1) "+L+" = true; ":j=="null"?a+=" else if ("+g+" === '' || "+g+" === 0 || "+g+" === false) "+L+" = null; ":t.opts.coerceTypes=="array"&&j=="array"&&(a+=" else if ("+E+" == 'string' || "+E+" == 'number' || "+E+" == 'boolean' || "+g+" == null) "+L+" = ["+g+"]; ");a+=" else { ";var v=v||[];v.push(a),a="",t.createErrors!==!1?(a+=" { keyword: '"+(k||"type")+"' , dataPath: (dataPath || '') + "+t.errorPath+" , schemaPath: "+t.util.toQuotedString(f)+" , params: { type: '",T?a+=""+C.join(","):a+=""+C,a+="' } ",t.opts.messages!==!1&&(a+=" , message: 'should be ",T?a+=""+C.join(","):a+=""+C,a+="' "),t.opts.verbose&&(a+=" , schema: validate.schema"+m+" , parentSchema: validate.schema"+t.schemaPath+" , data: "+g+" "),a+=" } "):a+=" {} ";var y=a;a=v.pop(),!t.compositeRule&&_?t.async?a+=" throw new ValidationError(["+y+"]); ":a+=" validate.errors = ["+y+"]; return false; ":a+=" var err = "+y+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",a+=" } if ("+L+" !== undefined) { ";var B=c?"data"+(c-1||""):"parentData",z=c?t.dataPathArr[c]:"parentDataProperty";a+=" "+g+" = "+L+"; ",c||(a+="if ("+B+" !== undefined)"),a+=" "+B+"["+z+"] = "+L+"; } "}else{var v=v||[];v.push(a),a="",t.createErrors!==!1?(a+=" { keyword: '"+(k||"type")+"' , dataPath: (dataPath || '') + "+t.errorPath+" , schemaPath: "+t.util.toQuotedString(f)+" , params: { type: '",T?a+=""+C.join(","):a+=""+C,a+="' } ",t.opts.messages!==!1&&(a+=" , message: 'should be ",T?a+=""+C.join(","):a+=""+C,a+="' "),t.opts.verbose&&(a+=" , schema: validate.schema"+m+" , parentSchema: validate.schema"+t.schemaPath+" , data: "+g+" "),a+=" } "):a+=" {} ";var y=a;a=v.pop(),!t.compositeRule&&_?t.async?a+=" throw new ValidationError(["+y+"]); ":a+=" validate.errors = ["+y+"]; return false; ":a+=" var err = "+y+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; "}a+=" } "}}if(t.schema.$ref&&!o)a+=" "+t.RULES.all.$ref.code(t,"$ref")+" ",_&&(a+=" } if (errors === ",b?a+="0":a+="errs_"+u,a+=") { ",I+="}");else{var F=t.RULES;if(F){for(var D,V=-1,K=F.length-1;V<K;)if(D=F[V+=1],se(D)){if(D.type&&(a+=" if ("+t.util.checkDataType(D.type,g,t.opts.strictNumbers)+") { "),t.opts.useDefaults){if(D.type=="object"&&t.schema.properties){var h=t.schema.properties,Z=Object.keys(h),ue=Z;if(ue)for(var fe,ye=-1,De=ue.length-1;ye<De;){fe=ue[ye+=1];var xe=h[fe];if(xe.default!==void 0){var $e=g+t.util.getProperty(fe);if(t.compositeRule){if(t.opts.strictDefaults){var S="default is ignored for: "+$e;if(t.opts.strictDefaults==="log")t.logger.warn(S);else throw new Error(S)}}else a+=" if ("+$e+" === undefined ",t.opts.useDefaults=="empty"&&(a+=" || "+$e+" === null || "+$e+" === '' "),a+=" ) "+$e+" = ",t.opts.useDefaults=="shared"?a+=" "+t.useDefault(xe.default)+" ":a+=" "+JSON.stringify(xe.default)+" ",a+="; "}}}else if(D.type=="array"&&Array.isArray(t.schema.items)){var at=t.schema.items;if(at){for(var xe,H=-1,it=at.length-1;H<it;)if(xe=at[H+=1],xe.default!==void 0){var $e=g+"["+H+"]";if(t.compositeRule){if(t.opts.strictDefaults){var S="default is ignored for: "+$e;if(t.opts.strictDefaults==="log")t.logger.warn(S);else throw new Error(S)}}else a+=" if ("+$e+" === undefined ",t.opts.useDefaults=="empty"&&(a+=" || "+$e+" === null || "+$e+" === '' "),a+=" ) "+$e+" = ",t.opts.useDefaults=="shared"?a+=" "+t.useDefault(xe.default)+" ":a+=" "+JSON.stringify(xe.default)+" ",a+="; "}}}}var N=D.rules;if(N){for(var ge,me=-1,ee=N.length-1;me<ee;)if(ge=N[me+=1],Ce(ge)){var Q=ge.code(t,ge.keyword,D.type);Q&&(a+=" "+Q+" ",_&&(A+="}"))}}if(_&&(a+=" "+A+" ",A=""),D.type&&(a+=" } ",C&&C===D.type&&!O)){a+=" else { ";var m=t.schemaPath+".type",f=t.errSchemaPath+"/type",v=v||[];v.push(a),a="",t.createErrors!==!1?(a+=" { keyword: '"+(k||"type")+"' , dataPath: (dataPath || '') + "+t.errorPath+" , schemaPath: "+t.util.toQuotedString(f)+" , params: { type: '",T?a+=""+C.join(","):a+=""+C,a+="' } ",t.opts.messages!==!1&&(a+=" , message: 'should be ",T?a+=""+C.join(","):a+=""+C,a+="' "),t.opts.verbose&&(a+=" , schema: validate.schema"+m+" , parentSchema: validate.schema"+t.schemaPath+" , data: "+g+" "),a+=" } "):a+=" {} ";var y=a;a=v.pop(),!t.compositeRule&&_?t.async?a+=" throw new ValidationError(["+y+"]); ":a+=" validate.errors = ["+y+"]; return false; ":a+=" var err = "+y+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",a+=" } "}_&&(a+=" if (errors === ",b?a+="0":a+="errs_"+u,a+=") { ",I+="}")}}}_&&(a+=" "+I+" "),b?(i?(a+=" if (errors === 0) return data; ",a+=" else throw new ValidationError(vErrors); "):(a+=" validate.errors = vErrors; ",a+=" return errors === 0; "),a+=" }; return validate;"):a+=" var "+w+" = errors === errs_"+u+";";function se(re){for(var pe=re.rules,Ee=0;Ee<pe.length;Ee++)if(Ce(pe[Ee]))return!0}function Ce(re){return t.schema[re.keyword]!==void 0||re.implements&&oe(re)}function oe(re){for(var pe=re.implements,Ee=0;Ee<pe.length;Ee++)if(t.schema[pe[Ee]]!==void 0)return!0}return a},lv=eO,N_=Zc,GK=tO,lst=UK,rB=VK,ust=N_.ucs2length,dst=K2,cst=GK.Validation,hst=vE;function vE(e,t,r,n){var a=this,i=this._opts,o=[void 0],s={},l=[],d={},u=[],c={},h=[];t=t||{schema:e,refVal:o,refs:s};var m=mst.call(this,e,t,n),f=this._compilations[m.index];if(m.compiling)return f.callValidate=S;var g=this._formats,v=this.RULES;try{var y=w(e,t,r,n);f.validate=y;var b=f.callValidate;return b&&(b.schema=y.schema,b.errors=null,b.refs=y.refs,b.refVal=y.refVal,b.root=y.root,b.$async=y.$async,i.sourceCode&&(b.source=y.source)),y}finally{fst.call(this,e,t,n)}function S(){var M=f.validate,E=M.apply(this,arguments);return S.errors=M.errors,E}function w(M,E,L,P){var j=!E||E&&E.schema==M;if(E.schema!=t.schema)return vE.call(a,M,E,L,P);var H=M.$async===!0,$=rB({isTop:!0,schema:M,isRoot:j,baseId:P,root:E,schemaPath:"",errSchemaPath:"#",errorPath:'""',MissingRefError:GK.MissingRef,RULES:v,validate:rB,util:N_,resolve:lv,resolveRef:_,usePattern:T,useDefault:O,useCustomRule:D,opts:i,formats:g,logger:a.logger,self:a});$=uv(o,vst)+uv(l,pst)+uv(u,gst)+uv(h,yst)+$,i.processCode&&($=i.processCode($,M));var B;try{var z=new Function("self","RULES","formats","root","refVal","defaults","customRules","equal","ucs2length","ValidationError",$);B=z(a,v,g,t,o,u,h,dst,ust,cst),o[0]=B}catch(F){throw a.logger.error("Error compiling schema, function code:",$),F}return B.schema=M,B.errors=null,B.refs=s,B.refVal=o,B.root=j?B:E,H&&(B.$async=!0),i.sourceCode===!0&&(B.source={code:$,patterns:l,defaults:u}),B}function _(M,E,L){E=lv.url(M,E);var P=s[E],j,H;if(P!==void 0)return j=o[P],H="refVal["+P+"]",C(j,H);if(!L&&t.refs){var $=t.refs[E];if($!==void 0)return j=t.refVal[$],H=A(E,j),C(j,H)}H=A(E);var B=lv.call(a,w,t,E);if(B===void 0){var z=r&&r[E];z&&(B=lv.inlineRef(z,i.inlineRefs)?z:vE.call(a,z,t,r,M))}if(B===void 0)I(E);else return k(E,B),C(B,H)}function A(M,E){var L=o.length;return o[L]=E,s[M]=L,"refVal"+L}function I(M){delete s[M]}function k(M,E){var L=s[M];o[L]=E}function C(M,E){return typeof M=="object"||typeof M=="boolean"?{code:E,schema:M,inline:!0}:{code:E,$async:M&&!!M.$async}}function T(M){var E=d[M];return E===void 0&&(E=d[M]=l.length,l[E]=M),"pattern"+E}function O(M){switch(typeof M){case"boolean":case"number":return""+M;case"string":return N_.toQuotedString(M);case"object":if(M===null)return"null";var E=lst(M),L=c[E];return L===void 0&&(L=c[E]=u.length,u[L]=M),"default"+L}}function D(M,E,L,P){if(a._opts.validateSchema!==!1){var j=M.definition.dependencies;if(j&&!j.every(function(ue){return Object.prototype.hasOwnProperty.call(L,ue)}))throw new Error("parent schema must have all required keywords: "+j.join(","));var H=M.definition.validateSchema;if(H){var $=H(E);if(!$){var B="keyword schema is invalid: "+a.errorsText(H.errors);if(a._opts.validateSchema=="log")a.logger.error(B);else throw new Error(B)}}}var z=M.definition.compile,F=M.definition.inline,V=M.definition.macro,K;if(z)K=z.call(a,E,L,P);else if(V)K=V.call(a,E,L,P),i.validateSchema!==!1&&a.validateSchema(K,!0);else if(F)K=F.call(a,P,M.keyword,E,L);else if(K=M.definition.validate,!K)return;if(K===void 0)throw new Error('custom keyword "'+M.keyword+'"failed to compile');var Z=h.length;return h[Z]=K,{code:"customRule"+Z,validate:K}}}function mst(e,t,r){var n=qK.call(this,e,t,r);return n>=0?{index:n,compiling:!0}:(n=this._compilations.length,this._compilations[n]={schema:e,root:t,baseId:r},{index:n,compiling:!1})}function fst(e,t,r){var n=qK.call(this,e,t,r);n>=0&&this._compilations.splice(n,1)}function qK(e,t,r){for(var n=0;n<this._compilations.length;n++){var a=this._compilations[n];if(a.schema==e&&a.root==t&&a.baseId==r)return n}return-1}function pst(e,t){return"var pattern"+e+" = new RegExp("+N_.toQuotedString(t[e])+");"}function gst(e){return"var default"+e+" = defaults["+e+"];"}function vst(e,t){return t[e]===void 0?"":"var refVal"+e+" = refVal["+e+"];"}function yst(e){return"var customRule"+e+" = customRules["+e+"];"}function uv(e,t){if(!e.length)return"";for(var r="",n=0;n<e.length;n++)r+=t(n,e);return r}var KK={exports:{}},Vw=KK.exports=function(){this._cache={}};Vw.prototype.put=function(t,r){this._cache[t]=r};Vw.prototype.get=function(t){return this._cache[t]};Vw.prototype.del=function(t){delete this._cache[t]};Vw.prototype.clear=function(){this._cache={}};var _st=Zc,bst=/^(\d\d\d\d)-(\d\d)-(\d\d)$/,wst=[0,31,28,31,30,31,30,31,31,30,31,30,31],Sst=/^(\d\d):(\d\d):(\d\d)(\.\d+)?(z|[+-]\d\d(?::?\d\d)?)?$/i,QK=/^(?=.{1,253}\.?$)[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?(?:\.[a-z0-9](?:[-0-9a-z]{0,61}[0-9a-z])?)*\.?$/i,Ast=/^(?:[a-z][a-z0-9+\-.]*:)(?:\/?\/(?:(?:[a-z0-9\-._~!$&'()*+,;=:]|%[0-9a-f]{2})*@)?(?:\[(?:(?:(?:(?:[0-9a-f]{1,4}:){6}|::(?:[0-9a-f]{1,4}:){5}|(?:[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){4}|(?:(?:[0-9a-f]{1,4}:){0,1}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){3}|(?:(?:[0-9a-f]{1,4}:){0,2}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){2}|(?:(?:[0-9a-f]{1,4}:){0,3}[0-9a-f]{1,4})?::[0-9a-f]{1,4}:|(?:(?:[0-9a-f]{1,4}:){0,4}[0-9a-f]{1,4})?::)(?:[0-9a-f]{1,4}:[0-9a-f]{1,4}|(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?))|(?:(?:[0-9a-f]{1,4}:){0,5}[0-9a-f]{1,4})?::[0-9a-f]{1,4}|(?:(?:[0-9a-f]{1,4}:){0,6}[0-9a-f]{1,4})?::)|[Vv][0-9a-f]+\.[a-z0-9\-._~!$&'()*+,;=:]+)\]|(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?)|(?:[a-z0-9\-._~!$&'()*+,;=]|%[0-9a-f]{2})*)(?::\d*)?(?:\/(?:[a-z0-9\-._~!$&'()*+,;=:@]|%[0-9a-f]{2})*)*|\/(?:(?:[a-z0-9\-._~!$&'()*+,;=:@]|%[0-9a-f]{2})+(?:\/(?:[a-z0-9\-._~!$&'()*+,;=:@]|%[0-9a-f]{2})*)*)?|(?:[a-z0-9\-._~!$&'()*+,;=:@]|%[0-9a-f]{2})+(?:\/(?:[a-z0-9\-._~!$&'()*+,;=:@]|%[0-9a-f]{2})*)*)(?:\?(?:[a-z0-9\-._~!$&'()*+,;=:@/?]|%[0-9a-f]{2})*)?(?:#(?:[a-z0-9\-._~!$&'()*+,;=:@/?]|%[0-9a-f]{2})*)?$/i,Tst=/^(?:[a-z][a-z0-9+\-.]*:)?(?:\/?\/(?:(?:[a-z0-9\-._~!$&'()*+,;=:]|%[0-9a-f]{2})*@)?(?:\[(?:(?:(?:(?:[0-9a-f]{1,4}:){6}|::(?:[0-9a-f]{1,4}:){5}|(?:[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){4}|(?:(?:[0-9a-f]{1,4}:){0,1}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){3}|(?:(?:[0-9a-f]{1,4}:){0,2}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){2}|(?:(?:[0-9a-f]{1,4}:){0,3}[0-9a-f]{1,4})?::[0-9a-f]{1,4}:|(?:(?:[0-9a-f]{1,4}:){0,4}[0-9a-f]{1,4})?::)(?:[0-9a-f]{1,4}:[0-9a-f]{1,4}|(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?))|(?:(?:[0-9a-f]{1,4}:){0,5}[0-9a-f]{1,4})?::[0-9a-f]{1,4}|(?:(?:[0-9a-f]{1,4}:){0,6}[0-9a-f]{1,4})?::)|[Vv][0-9a-f]+\.[a-z0-9\-._~!$&'()*+,;=:]+)\]|(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?)|(?:[a-z0-9\-._~!$&'"()*+,;=]|%[0-9a-f]{2})*)(?::\d*)?(?:\/(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})*)*|\/(?:(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})+(?:\/(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})*)*)?|(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})+(?:\/(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})*)*)?(?:\?(?:[a-z0-9\-._~!$&'"()*+,;=:@/?]|%[0-9a-f]{2})*)?(?:#(?:[a-z0-9\-._~!$&'"()*+,;=:@/?]|%[0-9a-f]{2})*)?$/i,ZK=/^(?:(?:[^\x00-\x20"'<>%\\^`{|}]|%[0-9a-f]{2})|\{[+#./;?&=,!@|]?(?:[a-z0-9_]|%[0-9a-f]{2})+(?::[1-9][0-9]{0,3}|\*)?(?:,(?:[a-z0-9_]|%[0-9a-f]{2})+(?::[1-9][0-9]{0,3}|\*)?)*\})*$/i,YK=/^(?:(?:http[s\u017F]?|ftp):\/\/)(?:(?:[\0-\x08\x0E-\x1F!-\x9F\xA1-\u167F\u1681-\u1FFF\u200B-\u2027\u202A-\u202E\u2030-\u205E\u2060-\u2FFF\u3001-\uD7FF\uE000-\uFEFE\uFF00-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])+(?::(?:[\0-\x08\x0E-\x1F!-\x9F\xA1-\u167F\u1681-\u1FFF\u200B-\u2027\u202A-\u202E\u2030-\u205E\u2060-\u2FFF\u3001-\uD7FF\uE000-\uFEFE\uFF00-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])*)?@)?(?:(?!10(?:\.[0-9]{1,3}){3})(?!127(?:\.[0-9]{1,3}){3})(?!169\.254(?:\.[0-9]{1,3}){2})(?!192\.168(?:\.[0-9]{1,3}){2})(?!172\.(?:1[6-9]|2[0-9]|3[01])(?:\.[0-9]{1,3}){2})(?:[1-9][0-9]?|1[0-9][0-9]|2[01][0-9]|22[0-3])(?:\.(?:1?[0-9]{1,2}|2[0-4][0-9]|25[0-5])){2}(?:\.(?:[1-9][0-9]?|1[0-9][0-9]|2[0-4][0-9]|25[0-4]))|(?:(?:(?:[0-9a-z\xA1-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])+-)*(?:[0-9a-z\xA1-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])+)(?:\.(?:(?:[0-9a-z\xA1-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])+-)*(?:[0-9a-z\xA1-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])+)*(?:\.(?:(?:[a-z\xA1-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]){2,})))(?::[0-9]{2,5})?(?:\/(?:[\0-\x08\x0E-\x1F!-\x9F\xA1-\u167F\u1681-\u1FFF\u200B-\u2027\u202A-\u202E\u2030-\u205E\u2060-\u2FFF\u3001-\uD7FF\uE000-\uFEFE\uFF00-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])*)?$/i,XK=/^(?:urn:uuid:)?[0-9a-f]{8}-(?:[0-9a-f]{4}-){3}[0-9a-f]{12}$/i,JK=/^(?:\/(?:[^~/]|~0|~1)*)*$/,eQ=/^#(?:\/(?:[a-z0-9_\-.!$&'()*+,;:=@]|%[0-9a-f]{2}|~0|~1)*)*$/i,tQ=/^(?:0|[1-9][0-9]*)(?:#|(?:\/(?:[^~/]|~0|~1)*)*)$/,kst=Gw;function Gw(e){return e=e=="full"?"full":"fast",_st.copy(Gw[e])}Gw.fast={date:/^\d\d\d\d-[0-1]\d-[0-3]\d$/,time:/^(?:[0-2]\d:[0-5]\d:[0-5]\d|23:59:60)(?:\.\d+)?(?:z|[+-]\d\d(?::?\d\d)?)?$/i,"date-time":/^\d\d\d\d-[0-1]\d-[0-3]\d[t\s](?:[0-2]\d:[0-5]\d:[0-5]\d|23:59:60)(?:\.\d+)?(?:z|[+-]\d\d(?::?\d\d)?)$/i,uri:/^(?:[a-z][a-z0-9+\-.]*:)(?:\/?\/)?[^\s]*$/i,"uri-reference":/^(?:(?:[a-z][a-z0-9+\-.]*:)?\/?\/)?(?:[^\\\s#][^\s#]*)?(?:#[^\\\s]*)?$/i,"uri-template":ZK,url:YK,email:/^[a-z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?(?:\.[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?)*$/i,hostname:QK,ipv4:/^(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?)$/,ipv6:/^\s*(?:(?:(?:[0-9a-f]{1,4}:){7}(?:[0-9a-f]{1,4}|:))|(?:(?:[0-9a-f]{1,4}:){6}(?::[0-9a-f]{1,4}|(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(?:(?:[0-9a-f]{1,4}:){5}(?:(?:(?::[0-9a-f]{1,4}){1,2})|:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(?:(?:[0-9a-f]{1,4}:){4}(?:(?:(?::[0-9a-f]{1,4}){1,3})|(?:(?::[0-9a-f]{1,4})?:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?:(?:[0-9a-f]{1,4}:){3}(?:(?:(?::[0-9a-f]{1,4}){1,4})|(?:(?::[0-9a-f]{1,4}){0,2}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?:(?:[0-9a-f]{1,4}:){2}(?:(?:(?::[0-9a-f]{1,4}){1,5})|(?:(?::[0-9a-f]{1,4}){0,3}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?:(?:[0-9a-f]{1,4}:){1}(?:(?:(?::[0-9a-f]{1,4}){1,6})|(?:(?::[0-9a-f]{1,4}){0,4}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?::(?:(?:(?::[0-9a-f]{1,4}){1,7})|(?:(?::[0-9a-f]{1,4}){0,5}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:)))(?:%.+)?\s*$/i,regex:aQ,uuid:XK,"json-pointer":JK,"json-pointer-uri-fragment":eQ,"relative-json-pointer":tQ};Gw.full={date:rQ,time:nQ,"date-time":Ist,uri:xst,"uri-reference":Tst,"uri-template":ZK,url:YK,email:/^[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?$/i,hostname:QK,ipv4:/^(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?)$/,ipv6:/^\s*(?:(?:(?:[0-9a-f]{1,4}:){7}(?:[0-9a-f]{1,4}|:))|(?:(?:[0-9a-f]{1,4}:){6}(?::[0-9a-f]{1,4}|(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(?:(?:[0-9a-f]{1,4}:){5}(?:(?:(?::[0-9a-f]{1,4}){1,2})|:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(?:(?:[0-9a-f]{1,4}:){4}(?:(?:(?::[0-9a-f]{1,4}){1,3})|(?:(?::[0-9a-f]{1,4})?:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?:(?:[0-9a-f]{1,4}:){3}(?:(?:(?::[0-9a-f]{1,4}){1,4})|(?:(?::[0-9a-f]{1,4}){0,2}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?:(?:[0-9a-f]{1,4}:){2}(?:(?:(?::[0-9a-f]{1,4}){1,5})|(?:(?::[0-9a-f]{1,4}){0,3}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?:(?:[0-9a-f]{1,4}:){1}(?:(?:(?::[0-9a-f]{1,4}){1,6})|(?:(?::[0-9a-f]{1,4}){0,4}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?::(?:(?:(?::[0-9a-f]{1,4}){1,7})|(?:(?::[0-9a-f]{1,4}){0,5}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:)))(?:%.+)?\s*$/i,regex:aQ,uuid:XK,"json-pointer":JK,"json-pointer-uri-fragment":eQ,"relative-json-pointer":tQ};function Cst(e){return e%4===0&&(e%100!==0||e%400===0)}function rQ(e){var t=e.match(bst);if(!t)return!1;var r=+t[1],n=+t[2],a=+t[3];return n>=1&&n<=12&&a>=1&&a<=(n==2&&Cst(r)?29:wst[n])}function nQ(e,t){var r=e.match(Sst);if(!r)return!1;var n=r[1],a=r[2],i=r[3],o=r[5];return(n<=23&&a<=59&&i<=59||n==23&&a==59&&i==60)&&(!t||o)}var Est=/t|\s/i;function Ist(e){var t=e.split(Est);return t.length==2&&rQ(t[0])&&nQ(t[1],!0)}var Dst=/\/|:/;function xst(e){return Dst.test(e)&&Ast.test(e)}var Ost=/[^\\]\\Z/;function aQ(e){if(Ost.test(e))return!1;try{return new RegExp(e),!0}catch{return!1}}var Mst=function(t,r,n){var a=" ",i=t.level,o=t.dataLevel,s=t.schema[r],l=t.errSchemaPath+"/"+r,d=!t.opts.allErrors,u="data"+(o||""),c="valid"+i,h,m;if(s=="#"||s=="#/")t.isRoot?(h=t.async,m="validate"):(h=t.root.schema.$async===!0,m="root.refVal[0]");else{var f=t.resolveRef(t.baseId,s,t.isRoot);if(f===void 0){var g=t.MissingRefError.message(t.baseId,s);if(t.opts.missingRefs=="fail"){t.logger.error(g);var v=v||[];v.push(a),a="",t.createErrors!==!1?(a+=" { keyword: '$ref' , dataPath: (dataPath || '') + "+t.errorPath+" , schemaPath: "+t.util.toQuotedString(l)+" , params: { ref: '"+t.util.escapeQuotes(s)+"' } ",t.opts.messages!==!1&&(a+=" , message: 'can\\'t resolve reference "+t.util.escapeQuotes(s)+"' "),t.opts.verbose&&(a+=" , schema: "+t.util.toQuotedString(s)+" , parentSchema: validate.schema"+t.schemaPath+" , data: "+u+" "),a+=" } "):a+=" {} ";var y=a;a=v.pop(),!t.compositeRule&&d?t.async?a+=" throw new ValidationError(["+y+"]); ":a+=" validate.errors = ["+y+"]; return false; ":a+=" var err = "+y+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",d&&(a+=" if (false) { ")}else if(t.opts.missingRefs=="ignore")t.logger.warn(g),d&&(a+=" if (true) { ");else throw new t.MissingRefError(t.baseId,s,g)}else if(f.inline){var b=t.util.copy(t);b.level++;var S="valid"+b.level;b.schema=f.schema,b.schemaPath="",b.errSchemaPath=s;var w=t.validate(b).replace(/validate\.schema/g,f.code);a+=" "+w+" ",d&&(a+=" if ("+S+") { ")}else h=f.$async===!0||t.async&&f.$async!==!1,m=f.code}if(m){var v=v||[];v.push(a),a="",t.opts.passContext?a+=" "+m+".call(this, ":a+=" "+m+"( ",a+=" "+u+", (dataPath || '')",t.errorPath!='""'&&(a+=" + "+t.errorPath);var _=o?"data"+(o-1||""):"parentData",A=o?t.dataPathArr[o]:"parentDataProperty";a+=" , "+_+" , "+A+", rootData) ";var I=a;if(a=v.pop(),h){if(!t.async)throw new Error("async schema referenced by sync schema");d&&(a+=" var "+c+"; "),a+=" try { await "+I+"; ",d&&(a+=" "+c+" = true; "),a+=" } catch (e) { if (!(e instanceof ValidationError)) throw e; if (vErrors === null) vErrors = e.errors; else vErrors = vErrors.concat(e.errors); errors = vErrors.length; ",d&&(a+=" "+c+" = false; "),a+=" } ",d&&(a+=" if ("+c+") { ")}else a+=" if (!"+I+") { if (vErrors === null) vErrors = "+m+".errors; else vErrors = vErrors.concat("+m+".errors); errors = vErrors.length; } ",d&&(a+=" else { ")}return a},Rst=function(t,r,n){var a=" ",i=t.schema[r],o=t.schemaPath+t.util.getProperty(r),s=t.errSchemaPath+"/"+r,l=!t.opts.allErrors,d=t.util.copy(t),u="";d.level++;var c="valid"+d.level,h=d.baseId,m=!0,f=i;if(f)for(var g,v=-1,y=f.length-1;v<y;)g=f[v+=1],(t.opts.strictKeywords?typeof g=="object"&&Object.keys(g).length>0||g===!1:t.util.schemaHasRules(g,t.RULES.all))&&(m=!1,d.schema=g,d.schemaPath=o+"["+v+"]",d.errSchemaPath=s+"/"+v,a+=" "+t.validate(d)+" ",d.baseId=h,l&&(a+=" if ("+c+") { ",u+="}"));return l&&(m?a+=" if (true) { ":a+=" "+u.slice(0,-1)+" "),a},Lst=function(t,r,n){var a=" ",i=t.level,o=t.dataLevel,s=t.schema[r],l=t.schemaPath+t.util.getProperty(r),d=t.errSchemaPath+"/"+r,u=!t.opts.allErrors,c="data"+(o||""),h="valid"+i,m="errs__"+i,f=t.util.copy(t),g="";f.level++;var v="valid"+f.level,y=s.every(function(k){return t.opts.strictKeywords?typeof k=="object"&&Object.keys(k).length>0||k===!1:t.util.schemaHasRules(k,t.RULES.all)});if(y){var b=f.baseId;a+=" var "+m+" = errors; var "+h+" = false; ";var S=t.compositeRule;t.compositeRule=f.compositeRule=!0;var w=s;if(w)for(var _,A=-1,I=w.length-1;A<I;)_=w[A+=1],f.schema=_,f.schemaPath=l+"["+A+"]",f.errSchemaPath=d+"/"+A,a+=" "+t.validate(f)+" ",f.baseId=b,a+=" "+h+" = "+h+" || "+v+"; if (!"+h+") { ",g+="}";t.compositeRule=f.compositeRule=S,a+=" "+g+" if (!"+h+") { var err = ",t.createErrors!==!1?(a+=" { keyword: 'anyOf' , dataPath: (dataPath || '') + "+t.errorPath+" , schemaPath: "+t.util.toQuotedString(d)+" , params: {} ",t.opts.messages!==!1&&(a+=" , message: 'should match some schema in anyOf' "),t.opts.verbose&&(a+=" , schema: validate.schema"+l+" , parentSchema: validate.schema"+t.schemaPath+" , data: "+c+" "),a+=" } "):a+=" {} ",a+="; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",!t.compositeRule&&u&&(t.async?a+=" throw new ValidationError(vErrors); ":a+=" validate.errors = vErrors; return false; "),a+=" } else { errors = "+m+"; if (vErrors !== null) { if ("+m+") vErrors.length = "+m+"; else vErrors = null; } ",t.opts.allErrors&&(a+=" } ")}else u&&(a+=" if (true) { ");return a},Pst=function(t,r,n){var a=" ",i=t.schema[r],o=t.errSchemaPath+"/"+r;t.opts.allErrors;var s=t.util.toQuotedString(i);return t.opts.$comment===!0?a+=" console.log("+s+");":typeof t.opts.$comment=="function"&&(a+=" self._opts.$comment("+s+", "+t.util.toQuotedString(o)+", validate.root.schema);"),a},$st=function(t,r,n){var a=" ",i=t.level,o=t.dataLevel,s=t.schema[r],l=t.schemaPath+t.util.getProperty(r),d=t.errSchemaPath+"/"+r,u=!t.opts.allErrors,c="data"+(o||""),h="valid"+i,m=t.opts.$data&&s&&s.$data;m&&(a+=" var schema"+i+" = "+t.util.getData(s.$data,o,t.dataPathArr)+"; "),m||(a+=" var schema"+i+" = validate.schema"+l+";"),a+="var "+h+" = equal("+c+", schema"+i+"); if (!"+h+") { ";var f=f||[];f.push(a),a="",t.createErrors!==!1?(a+=" { keyword: 'const' , dataPath: (dataPath || '') + "+t.errorPath+" , schemaPath: "+t.util.toQuotedString(d)+" , params: { allowedValue: schema"+i+" } ",t.opts.messages!==!1&&(a+=" , message: 'should be equal to constant' "),t.opts.verbose&&(a+=" , schema: validate.schema"+l+" , parentSchema: validate.schema"+t.schemaPath+" , data: "+c+" "),a+=" } "):a+=" {} ";var g=a;return a=f.pop(),!t.compositeRule&&u?t.async?a+=" throw new ValidationError(["+g+"]); ":a+=" validate.errors = ["+g+"]; return false; ":a+=" var err = "+g+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",a+=" }",u&&(a+=" else { "),a},zst=function(t,r,n){var a=" ",i=t.level,o=t.dataLevel,s=t.schema[r],l=t.schemaPath+t.util.getProperty(r),d=t.errSchemaPath+"/"+r,u=!t.opts.allErrors,c="data"+(o||""),h="valid"+i,m="errs__"+i,f=t.util.copy(t),g="";f.level++;var v="valid"+f.level,y="i"+i,b=f.dataLevel=t.dataLevel+1,S="data"+b,w=t.baseId,_=t.opts.strictKeywords?typeof s=="object"&&Object.keys(s).length>0||s===!1:t.util.schemaHasRules(s,t.RULES.all);if(a+="var "+m+" = errors;var "+h+";",_){var A=t.compositeRule;t.compositeRule=f.compositeRule=!0,f.schema=s,f.schemaPath=l,f.errSchemaPath=d,a+=" var "+v+" = false; for (var "+y+" = 0; "+y+" < "+c+".length; "+y+"++) { ",f.errorPath=t.util.getPathExpr(t.errorPath,y,t.opts.jsonPointers,!0);var I=c+"["+y+"]";f.dataPathArr[b]=y;var k=t.validate(f);f.baseId=w,t.util.varOccurences(k,S)<2?a+=" "+t.util.varReplace(k,S,I)+" ":a+=" var "+S+" = "+I+"; "+k+" ",a+=" if ("+v+") break; } ",t.compositeRule=f.compositeRule=A,a+=" "+g+" if (!"+v+") {"}else a+=" if ("+c+".length == 0) {";var C=C||[];C.push(a),a="",t.createErrors!==!1?(a+=" { keyword: 'contains' , dataPath: (dataPath || '') + "+t.errorPath+" , schemaPath: "+t.util.toQuotedString(d)+" , params: {} ",t.opts.messages!==!1&&(a+=" , message: 'should contain a valid item' "),t.opts.verbose&&(a+=" , schema: validate.schema"+l+" , parentSchema: validate.schema"+t.schemaPath+" , data: "+c+" "),a+=" } "):a+=" {} ";var T=a;return a=C.pop(),!t.compositeRule&&u?t.async?a+=" throw new ValidationError(["+T+"]); ":a+=" validate.errors = ["+T+"]; return false; ":a+=" var err = "+T+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",a+=" } else { ",_&&(a+=" errors = "+m+"; if (vErrors !== null) { if ("+m+") vErrors.length = "+m+"; else vErrors = null; } "),t.opts.allErrors&&(a+=" } "),a},Nst=function(t,r,n){var a=" ",i=t.level,o=t.dataLevel,s=t.schema[r],l=t.schemaPath+t.util.getProperty(r),d=t.errSchemaPath+"/"+r,u=!t.opts.allErrors,c="data"+(o||""),h="errs__"+i,m=t.util.copy(t),f="";m.level++;var g="valid"+m.level,v={},y={},b=t.opts.ownProperties;for(A in s)if(A!="__proto__"){var S=s[A],w=Array.isArray(S)?y:v;w[A]=S}a+="var "+h+" = errors;";var _=t.errorPath;a+="var missing"+i+";";for(var A in y)if(w=y[A],w.length){if(a+=" if ( "+c+t.util.getProperty(A)+" !== undefined ",b&&(a+=" && Object.prototype.hasOwnProperty.call("+c+", '"+t.util.escapeQuotes(A)+"') "),u){a+=" && ( ";var I=w;if(I)for(var k,C=-1,T=I.length-1;C<T;){k=I[C+=1],C&&(a+=" || ");var O=t.util.getProperty(k),D=c+O;a+=" ( ( "+D+" === undefined ",b&&(a+=" || ! Object.prototype.hasOwnProperty.call("+c+", '"+t.util.escapeQuotes(k)+"') "),a+=") && (missing"+i+" = "+t.util.toQuotedString(t.opts.jsonPointers?k:O)+") ) "}a+=")) { ";var M="missing"+i,E="' + "+M+" + '";t.opts._errorDataPathProperty&&(t.errorPath=t.opts.jsonPointers?t.util.getPathExpr(_,M,!0):_+" + "+M);var L=L||[];L.push(a),a="",t.createErrors!==!1?(a+=" { keyword: 'dependencies' , dataPath: (dataPath || '') + "+t.errorPath+" , schemaPath: "+t.util.toQuotedString(d)+" , params: { property: '"+t.util.escapeQuotes(A)+"', missingProperty: '"+E+"', depsCount: "+w.length+", deps: '"+t.util.escapeQuotes(w.length==1?w[0]:w.join(", "))+"' } ",t.opts.messages!==!1&&(a+=" , message: 'should have ",w.length==1?a+="property "+t.util.escapeQuotes(w[0]):a+="properties "+t.util.escapeQuotes(w.join(", ")),a+=" when property "+t.util.escapeQuotes(A)+" is present' "),t.opts.verbose&&(a+=" , schema: validate.schema"+l+" , parentSchema: validate.schema"+t.schemaPath+" , data: "+c+" "),a+=" } "):a+=" {} ";var P=a;a=L.pop(),!t.compositeRule&&u?t.async?a+=" throw new ValidationError(["+P+"]); ":a+=" validate.errors = ["+P+"]; return false; ":a+=" var err = "+P+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; "}else{a+=" ) { ";var j=w;if(j)for(var k,H=-1,$=j.length-1;H<$;){k=j[H+=1];var O=t.util.getProperty(k),E=t.util.escapeQuotes(k),D=c+O;t.opts._errorDataPathProperty&&(t.errorPath=t.util.getPath(_,k,t.opts.jsonPointers)),a+=" if ( "+D+" === undefined ",b&&(a+=" || ! Object.prototype.hasOwnProperty.call("+c+", '"+t.util.escapeQuotes(k)+"') "),a+=") { var err = ",t.createErrors!==!1?(a+=" { keyword: 'dependencies' , dataPath: (dataPath || '') + "+t.errorPath+" , schemaPath: "+t.util.toQuotedString(d)+" , params: { property: '"+t.util.escapeQuotes(A)+"', missingProperty: '"+E+"', depsCount: "+w.length+", deps: '"+t.util.escapeQuotes(w.length==1?w[0]:w.join(", "))+"' } ",t.opts.messages!==!1&&(a+=" , message: 'should have ",w.length==1?a+="property "+t.util.escapeQuotes(w[0]):a+="properties "+t.util.escapeQuotes(w.join(", ")),a+=" when property "+t.util.escapeQuotes(A)+" is present' "),t.opts.verbose&&(a+=" , schema: validate.schema"+l+" , parentSchema: validate.schema"+t.schemaPath+" , data: "+c+" "),a+=" } "):a+=" {} ",a+="; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; } "}}a+=" } ",u&&(f+="}",a+=" else { ")}t.errorPath=_;var B=m.baseId;for(var A in v){var S=v[A];(t.opts.strictKeywords?typeof S=="object"&&Object.keys(S).length>0||S===!1:t.util.schemaHasRules(S,t.RULES.all))&&(a+=" "+g+" = true; if ( "+c+t.util.getProperty(A)+" !== undefined ",b&&(a+=" && Object.prototype.hasOwnProperty.call("+c+", '"+t.util.escapeQuotes(A)+"') "),a+=") { ",m.schema=S,m.schemaPath=l+t.util.getProperty(A),m.errSchemaPath=d+"/"+t.util.escapeFragment(A),a+=" "+t.validate(m)+" ",m.baseId=B,a+=" } ",u&&(a+=" if ("+g+") { ",f+="}"))}return u&&(a+=" "+f+" if ("+h+" == errors) {"),a},Fst=function(t,r,n){var a=" ",i=t.level,o=t.dataLevel,s=t.schema[r],l=t.schemaPath+t.util.getProperty(r),d=t.errSchemaPath+"/"+r,u=!t.opts.allErrors,c="data"+(o||""),h="valid"+i,m=t.opts.$data&&s&&s.$data;m&&(a+=" var schema"+i+" = "+t.util.getData(s.$data,o,t.dataPathArr)+"; ");var f="i"+i,g="schema"+i;m||(a+=" var "+g+" = validate.schema"+l+";"),a+="var "+h+";",m&&(a+=" if (schema"+i+" === undefined) "+h+" = true; else if (!Array.isArray(schema"+i+")) "+h+" = false; else {"),a+=""+h+" = false;for (var "+f+"=0; "+f+"<"+g+".length; "+f+"++) if (equal("+c+", "+g+"["+f+"])) { "+h+" = true; break; }",m&&(a+=" } "),a+=" if (!"+h+") { ";var v=v||[];v.push(a),a="",t.createErrors!==!1?(a+=" { keyword: 'enum' , dataPath: (dataPath || '') + "+t.errorPath+" , schemaPath: "+t.util.toQuotedString(d)+" , params: { allowedValues: schema"+i+" } ",t.opts.messages!==!1&&(a+=" , message: 'should be equal to one of the allowed values' "),t.opts.verbose&&(a+=" , schema: validate.schema"+l+" , parentSchema: validate.schema"+t.schemaPath+" , data: "+c+" "),a+=" } "):a+=" {} ";var y=a;return a=v.pop(),!t.compositeRule&&u?t.async?a+=" throw new ValidationError(["+y+"]); ":a+=" validate.errors = ["+y+"]; return false; ":a+=" var err = "+y+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",a+=" }",u&&(a+=" else { "),a},Bst=function(t,r,n){var a=" ",i=t.level,o=t.dataLevel,s=t.schema[r],l=t.schemaPath+t.util.getProperty(r),d=t.errSchemaPath+"/"+r,u=!t.opts.allErrors,c="data"+(o||"");if(t.opts.format===!1)return u&&(a+=" if (true) { "),a;var h=t.opts.$data&&s&&s.$data,m;h?(a+=" var schema"+i+" = "+t.util.getData(s.$data,o,t.dataPathArr)+"; ",m="schema"+i):m=s;var f=t.opts.unknownFormats,g=Array.isArray(f);if(h){var v="format"+i,y="isObject"+i,b="formatType"+i;a+=" var "+v+" = formats["+m+"]; var "+y+" = typeof "+v+" == 'object' && !("+v+" instanceof RegExp) && "+v+".validate; var "+b+" = "+y+" && "+v+".type || 'string'; if ("+y+") { ",t.async&&(a+=" var async"+i+" = "+v+".async; "),a+=" "+v+" = "+v+".validate; } if ( ",h&&(a+=" ("+m+" !== undefined && typeof "+m+" != 'string') || "),a+=" (",f!="ignore"&&(a+=" ("+m+" && !"+v+" ",g&&(a+=" && self._opts.unknownFormats.indexOf("+m+") == -1 "),a+=") || "),a+=" ("+v+" && "+b+" == '"+n+"' && !(typeof "+v+" == 'function' ? ",t.async?a+=" (async"+i+" ? await "+v+"("+c+") : "+v+"("+c+")) ":a+=" "+v+"("+c+") ",a+=" : "+v+".test("+c+"))))) {"}else{var v=t.formats[s];if(!v){if(f=="ignore")return t.logger.warn('unknown format "'+s+'" ignored in schema at path "'+t.errSchemaPath+'"'),u&&(a+=" if (true) { "),a;if(g&&f.indexOf(s)>=0)return u&&(a+=" if (true) { "),a;throw new Error('unknown format "'+s+'" is used in schema at path "'+t.errSchemaPath+'"')}var y=typeof v=="object"&&!(v instanceof RegExp)&&v.validate,b=y&&v.type||"string";if(y){var S=v.async===!0;v=v.validate}if(b!=n)return u&&(a+=" if (true) { "),a;if(S){if(!t.async)throw new Error("async format in sync schema");var w="formats"+t.util.getProperty(s)+".validate";a+=" if (!(await "+w+"("+c+"))) { "}else{a+=" if (! ";var w="formats"+t.util.getProperty(s);y&&(w+=".validate"),typeof v=="function"?a+=" "+w+"("+c+") ":a+=" "+w+".test("+c+") ",a+=") { "}}var _=_||[];_.push(a),a="",t.createErrors!==!1?(a+=" { keyword: 'format' , dataPath: (dataPath || '') + "+t.errorPath+" , schemaPath: "+t.util.toQuotedString(d)+" , params: { format: ",h?a+=""+m:a+=""+t.util.toQuotedString(s),a+=" } ",t.opts.messages!==!1&&(a+=` , message: 'should match format "`,h?a+="' + "+m+" + '":a+=""+t.util.escapeQuotes(s),a+=`"' `),t.opts.verbose&&(a+=" , schema: ",h?a+="validate.schema"+l:a+=""+t.util.toQuotedString(s),a+=" , parentSchema: validate.schema"+t.schemaPath+" , data: "+c+" "),a+=" } "):a+=" {} ";var A=a;return a=_.pop(),!t.compositeRule&&u?t.async?a+=" throw new ValidationError(["+A+"]); ":a+=" validate.errors = ["+A+"]; return false; ":a+=" var err = "+A+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",a+=" } ",u&&(a+=" else { "),a},Wst=function(t,r,n){var a=" ",i=t.level,o=t.dataLevel,s=t.schema[r],l=t.schemaPath+t.util.getProperty(r),d=t.errSchemaPath+"/"+r,u=!t.opts.allErrors,c="data"+(o||""),h="valid"+i,m="errs__"+i,f=t.util.copy(t);f.level++;var g="valid"+f.level,v=t.schema.then,y=t.schema.else,b=v!==void 0&&(t.opts.strictKeywords?typeof v=="object"&&Object.keys(v).length>0||v===!1:t.util.schemaHasRules(v,t.RULES.all)),S=y!==void 0&&(t.opts.strictKeywords?typeof y=="object"&&Object.keys(y).length>0||y===!1:t.util.schemaHasRules(y,t.RULES.all)),w=f.baseId;if(b||S){var _;f.createErrors=!1,f.schema=s,f.schemaPath=l,f.errSchemaPath=d,a+=" var "+m+" = errors; var "+h+" = true; ";var A=t.compositeRule;t.compositeRule=f.compositeRule=!0,a+=" "+t.validate(f)+" ",f.baseId=w,f.createErrors=!0,a+=" errors = "+m+"; if (vErrors !== null) { if ("+m+") vErrors.length = "+m+"; else vErrors = null; } ",t.compositeRule=f.compositeRule=A,b?(a+=" if ("+g+") { ",f.schema=t.schema.then,f.schemaPath=t.schemaPath+".then",f.errSchemaPath=t.errSchemaPath+"/then",a+=" "+t.validate(f)+" ",f.baseId=w,a+=" "+h+" = "+g+"; ",b&&S?(_="ifClause"+i,a+=" var "+_+" = 'then'; "):_="'then'",a+=" } ",S&&(a+=" else { ")):a+=" if (!"+g+") { ",S&&(f.schema=t.schema.else,f.schemaPath=t.schemaPath+".else",f.errSchemaPath=t.errSchemaPath+"/else",a+=" "+t.validate(f)+" ",f.baseId=w,a+=" "+h+" = "+g+"; ",b&&S?(_="ifClause"+i,a+=" var "+_+" = 'else'; "):_="'else'",a+=" } "),a+=" if (!"+h+") { var err = ",t.createErrors!==!1?(a+=" { keyword: 'if' , dataPath: (dataPath || '') + "+t.errorPath+" , schemaPath: "+t.util.toQuotedString(d)+" , params: { failingKeyword: "+_+" } ",t.opts.messages!==!1&&(a+=` , message: 'should match "' + `+_+` + '" schema' `),t.opts.verbose&&(a+=" , schema: validate.schema"+l+" , parentSchema: validate.schema"+t.schemaPath+" , data: "+c+" "),a+=" } "):a+=" {} ",a+="; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",!t.compositeRule&&u&&(t.async?a+=" throw new ValidationError(vErrors); ":a+=" validate.errors = vErrors; return false; "),a+=" } ",u&&(a+=" else { ")}else u&&(a+=" if (true) { ");return a},Hst=function(t,r,n){var a=" ",i=t.level,o=t.dataLevel,s=t.schema[r],l=t.schemaPath+t.util.getProperty(r),d=t.errSchemaPath+"/"+r,u=!t.opts.allErrors,c="data"+(o||""),h="valid"+i,m="errs__"+i,f=t.util.copy(t),g="";f.level++;var v="valid"+f.level,y="i"+i,b=f.dataLevel=t.dataLevel+1,S="data"+b,w=t.baseId;if(a+="var "+m+" = errors;var "+h+";",Array.isArray(s)){var _=t.schema.additionalItems;if(_===!1){a+=" "+h+" = "+c+".length <= "+s.length+"; ";var A=d;d=t.errSchemaPath+"/additionalItems",a+=" if (!"+h+") { ";var I=I||[];I.push(a),a="",t.createErrors!==!1?(a+=" { keyword: 'additionalItems' , dataPath: (dataPath || '') + "+t.errorPath+" , schemaPath: "+t.util.toQuotedString(d)+" , params: { limit: "+s.length+" } ",t.opts.messages!==!1&&(a+=" , message: 'should NOT have more than "+s.length+" items' "),t.opts.verbose&&(a+=" , schema: false , parentSchema: validate.schema"+t.schemaPath+" , data: "+c+" "),a+=" } "):a+=" {} ";var k=a;a=I.pop(),!t.compositeRule&&u?t.async?a+=" throw new ValidationError(["+k+"]); ":a+=" validate.errors = ["+k+"]; return false; ":a+=" var err = "+k+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",a+=" } ",d=A,u&&(g+="}",a+=" else { ")}var C=s;if(C){for(var T,O=-1,D=C.length-1;O<D;)if(T=C[O+=1],t.opts.strictKeywords?typeof T=="object"&&Object.keys(T).length>0||T===!1:t.util.schemaHasRules(T,t.RULES.all)){a+=" "+v+" = true; if ("+c+".length > "+O+") { ";var M=c+"["+O+"]";f.schema=T,f.schemaPath=l+"["+O+"]",f.errSchemaPath=d+"/"+O,f.errorPath=t.util.getPathExpr(t.errorPath,O,t.opts.jsonPointers,!0),f.dataPathArr[b]=O;var E=t.validate(f);f.baseId=w,t.util.varOccurences(E,S)<2?a+=" "+t.util.varReplace(E,S,M)+" ":a+=" var "+S+" = "+M+"; "+E+" ",a+=" } ",u&&(a+=" if ("+v+") { ",g+="}")}}if(typeof _=="object"&&(t.opts.strictKeywords?typeof _=="object"&&Object.keys(_).length>0||_===!1:t.util.schemaHasRules(_,t.RULES.all))){f.schema=_,f.schemaPath=t.schemaPath+".additionalItems",f.errSchemaPath=t.errSchemaPath+"/additionalItems",a+=" "+v+" = true; if ("+c+".length > "+s.length+") { for (var "+y+" = "+s.length+"; "+y+" < "+c+".length; "+y+"++) { ",f.errorPath=t.util.getPathExpr(t.errorPath,y,t.opts.jsonPointers,!0);var M=c+"["+y+"]";f.dataPathArr[b]=y;var E=t.validate(f);f.baseId=w,t.util.varOccurences(E,S)<2?a+=" "+t.util.varReplace(E,S,M)+" ":a+=" var "+S+" = "+M+"; "+E+" ",u&&(a+=" if (!"+v+") break; "),a+=" } } ",u&&(a+=" if ("+v+") { ",g+="}")}}else if(t.opts.strictKeywords?typeof s=="object"&&Object.keys(s).length>0||s===!1:t.util.schemaHasRules(s,t.RULES.all)){f.schema=s,f.schemaPath=l,f.errSchemaPath=d,a+=" for (var "+y+" = "+0+"; "+y+" < "+c+".length; "+y+"++) { ",f.errorPath=t.util.getPathExpr(t.errorPath,y,t.opts.jsonPointers,!0);var M=c+"["+y+"]";f.dataPathArr[b]=y;var E=t.validate(f);f.baseId=w,t.util.varOccurences(E,S)<2?a+=" "+t.util.varReplace(E,S,M)+" ":a+=" var "+S+" = "+M+"; "+E+" ",u&&(a+=" if (!"+v+") break; "),a+=" }"}return u&&(a+=" "+g+" if ("+m+" == errors) {"),a},nB=function(t,r,n){var a=" ",i=t.level,o=t.dataLevel,s=t.schema[r],l=t.schemaPath+t.util.getProperty(r),d=t.errSchemaPath+"/"+r,u=!t.opts.allErrors,w,c="data"+(o||""),h=t.opts.$data&&s&&s.$data,m;h?(a+=" var schema"+i+" = "+t.util.getData(s.$data,o,t.dataPathArr)+"; ",m="schema"+i):m=s;var f=r=="maximum",g=f?"exclusiveMaximum":"exclusiveMinimum",v=t.schema[g],y=t.opts.$data&&v&&v.$data,b=f?"<":">",S=f?">":"<",w=void 0;if(!(h||typeof s=="number"||s===void 0))throw new Error(r+" must be number");if(!(y||v===void 0||typeof v=="number"||typeof v=="boolean"))throw new Error(g+" must be number or boolean");if(y){var _=t.util.getData(v.$data,o,t.dataPathArr),A="exclusive"+i,I="exclType"+i,k="exclIsNumber"+i,C="op"+i,T="' + "+C+" + '";a+=" var schemaExcl"+i+" = "+_+"; ",_="schemaExcl"+i,a+=" var "+A+"; var "+I+" = typeof "+_+"; if ("+I+" != 'boolean' && "+I+" != 'undefined' && "+I+" != 'number') { ";var w=g,O=O||[];O.push(a),a="",t.createErrors!==!1?(a+=" { keyword: '"+(w||"_exclusiveLimit")+"' , dataPath: (dataPath || '') + "+t.errorPath+" , schemaPath: "+t.util.toQuotedString(d)+" , params: {} ",t.opts.messages!==!1&&(a+=" , message: '"+g+" should be boolean' "),t.opts.verbose&&(a+=" , schema: validate.schema"+l+" , parentSchema: validate.schema"+t.schemaPath+" , data: "+c+" "),a+=" } "):a+=" {} ";var D=a;a=O.pop(),!t.compositeRule&&u?t.async?a+=" throw new ValidationError(["+D+"]); ":a+=" validate.errors = ["+D+"]; return false; ":a+=" var err = "+D+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",a+=" } else if ( ",h&&(a+=" ("+m+" !== undefined && typeof "+m+" != 'number') || "),a+=" "+I+" == 'number' ? ( ("+A+" = "+m+" === undefined || "+_+" "+b+"= "+m+") ? "+c+" "+S+"= "+_+" : "+c+" "+S+" "+m+" ) : ( ("+A+" = "+_+" === true) ? "+c+" "+S+"= "+m+" : "+c+" "+S+" "+m+" ) || "+c+" !== "+c+") { var op"+i+" = "+A+" ? '"+b+"' : '"+b+"='; ",s===void 0&&(w=g,d=t.errSchemaPath+"/"+g,m=_,h=y)}else{var k=typeof v=="number",T=b;if(k&&h){var C="'"+T+"'";a+=" if ( ",h&&(a+=" ("+m+" !== undefined && typeof "+m+" != 'number') || "),a+=" ( "+m+" === undefined || "+v+" "+b+"= "+m+" ? "+c+" "+S+"= "+v+" : "+c+" "+S+" "+m+" ) || "+c+" !== "+c+") { "}else{k&&s===void 0?(A=!0,w=g,d=t.errSchemaPath+"/"+g,m=v,S+="="):(k&&(m=Math[f?"min":"max"](v,s)),v===(k?m:!0)?(A=!0,w=g,d=t.errSchemaPath+"/"+g,S+="="):(A=!1,T+="="));var C="'"+T+"'";a+=" if ( ",h&&(a+=" ("+m+" !== undefined && typeof "+m+" != 'number') || "),a+=" "+c+" "+S+" "+m+" || "+c+" !== "+c+") { "}}w=w||r;var O=O||[];O.push(a),a="",t.createErrors!==!1?(a+=" { keyword: '"+(w||"_limit")+"' , dataPath: (dataPath || '') + "+t.errorPath+" , schemaPath: "+t.util.toQuotedString(d)+" , params: { comparison: "+C+", limit: "+m+", exclusive: "+A+" } ",t.opts.messages!==!1&&(a+=" , message: 'should be "+T+" ",h?a+="' + "+m:a+=""+m+"'"),t.opts.verbose&&(a+=" , schema: ",h?a+="validate.schema"+l:a+=""+s,a+=" , parentSchema: validate.schema"+t.schemaPath+" , data: "+c+" "),a+=" } "):a+=" {} ";var D=a;return a=O.pop(),!t.compositeRule&&u?t.async?a+=" throw new ValidationError(["+D+"]); ":a+=" validate.errors = ["+D+"]; return false; ":a+=" var err = "+D+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",a+=" } ",u&&(a+=" else { "),a},aB=function(t,r,n){var a=" ",i=t.level,o=t.dataLevel,s=t.schema[r],l=t.schemaPath+t.util.getProperty(r),d=t.errSchemaPath+"/"+r,u=!t.opts.allErrors,g,c="data"+(o||""),h=t.opts.$data&&s&&s.$data,m;if(h?(a+=" var schema"+i+" = "+t.util.getData(s.$data,o,t.dataPathArr)+"; ",m="schema"+i):m=s,!(h||typeof s=="number"))throw new Error(r+" must be number");var f=r=="maxItems"?">":"<";a+="if ( ",h&&(a+=" ("+m+" !== undefined && typeof "+m+" != 'number') || "),a+=" "+c+".length "+f+" "+m+") { ";var g=r,v=v||[];v.push(a),a="",t.createErrors!==!1?(a+=" { keyword: '"+(g||"_limitItems")+"' , dataPath: (dataPath || '') + "+t.errorPath+" , schemaPath: "+t.util.toQuotedString(d)+" , params: { limit: "+m+" } ",t.opts.messages!==!1&&(a+=" , message: 'should NOT have ",r=="maxItems"?a+="more":a+="fewer",a+=" than ",h?a+="' + "+m+" + '":a+=""+s,a+=" items' "),t.opts.verbose&&(a+=" , schema: ",h?a+="validate.schema"+l:a+=""+s,a+=" , parentSchema: validate.schema"+t.schemaPath+" , data: "+c+" "),a+=" } "):a+=" {} ";var y=a;return a=v.pop(),!t.compositeRule&&u?t.async?a+=" throw new ValidationError(["+y+"]); ":a+=" validate.errors = ["+y+"]; return false; ":a+=" var err = "+y+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",a+="} ",u&&(a+=" else { "),a},iB=function(t,r,n){var a=" ",i=t.level,o=t.dataLevel,s=t.schema[r],l=t.schemaPath+t.util.getProperty(r),d=t.errSchemaPath+"/"+r,u=!t.opts.allErrors,g,c="data"+(o||""),h=t.opts.$data&&s&&s.$data,m;if(h?(a+=" var schema"+i+" = "+t.util.getData(s.$data,o,t.dataPathArr)+"; ",m="schema"+i):m=s,!(h||typeof s=="number"))throw new Error(r+" must be number");var f=r=="maxLength"?">":"<";a+="if ( ",h&&(a+=" ("+m+" !== undefined && typeof "+m+" != 'number') || "),t.opts.unicode===!1?a+=" "+c+".length ":a+=" ucs2length("+c+") ",a+=" "+f+" "+m+") { ";var g=r,v=v||[];v.push(a),a="",t.createErrors!==!1?(a+=" { keyword: '"+(g||"_limitLength")+"' , dataPath: (dataPath || '') + "+t.errorPath+" , schemaPath: "+t.util.toQuotedString(d)+" , params: { limit: "+m+" } ",t.opts.messages!==!1&&(a+=" , message: 'should NOT be ",r=="maxLength"?a+="longer":a+="shorter",a+=" than ",h?a+="' + "+m+" + '":a+=""+s,a+=" characters' "),t.opts.verbose&&(a+=" , schema: ",h?a+="validate.schema"+l:a+=""+s,a+=" , parentSchema: validate.schema"+t.schemaPath+" , data: "+c+" "),a+=" } "):a+=" {} ";var y=a;return a=v.pop(),!t.compositeRule&&u?t.async?a+=" throw new ValidationError(["+y+"]); ":a+=" validate.errors = ["+y+"]; return false; ":a+=" var err = "+y+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",a+="} ",u&&(a+=" else { "),a},oB=function(t,r,n){var a=" ",i=t.level,o=t.dataLevel,s=t.schema[r],l=t.schemaPath+t.util.getProperty(r),d=t.errSchemaPath+"/"+r,u=!t.opts.allErrors,g,c="data"+(o||""),h=t.opts.$data&&s&&s.$data,m;if(h?(a+=" var schema"+i+" = "+t.util.getData(s.$data,o,t.dataPathArr)+"; ",m="schema"+i):m=s,!(h||typeof s=="number"))throw new Error(r+" must be number");var f=r=="maxProperties"?">":"<";a+="if ( ",h&&(a+=" ("+m+" !== undefined && typeof "+m+" != 'number') || "),a+=" Object.keys("+c+").length "+f+" "+m+") { ";var g=r,v=v||[];v.push(a),a="",t.createErrors!==!1?(a+=" { keyword: '"+(g||"_limitProperties")+"' , dataPath: (dataPath || '') + "+t.errorPath+" , schemaPath: "+t.util.toQuotedString(d)+" , params: { limit: "+m+" } ",t.opts.messages!==!1&&(a+=" , message: 'should NOT have ",r=="maxProperties"?a+="more":a+="fewer",a+=" than ",h?a+="' + "+m+" + '":a+=""+s,a+=" properties' "),t.opts.verbose&&(a+=" , schema: ",h?a+="validate.schema"+l:a+=""+s,a+=" , parentSchema: validate.schema"+t.schemaPath+" , data: "+c+" "),a+=" } "):a+=" {} ";var y=a;return a=v.pop(),!t.compositeRule&&u?t.async?a+=" throw new ValidationError(["+y+"]); ":a+=" validate.errors = ["+y+"]; return false; ":a+=" var err = "+y+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",a+="} ",u&&(a+=" else { "),a},jst=function(t,r,n){var a=" ",i=t.level,o=t.dataLevel,s=t.schema[r],l=t.schemaPath+t.util.getProperty(r),d=t.errSchemaPath+"/"+r,u=!t.opts.allErrors,c="data"+(o||""),h=t.opts.$data&&s&&s.$data,m;if(h?(a+=" var schema"+i+" = "+t.util.getData(s.$data,o,t.dataPathArr)+"; ",m="schema"+i):m=s,!(h||typeof s=="number"))throw new Error(r+" must be number");a+="var division"+i+";if (",h&&(a+=" "+m+" !== undefined && ( typeof "+m+" != 'number' || "),a+=" (division"+i+" = "+c+" / "+m+", ",t.opts.multipleOfPrecision?a+=" Math.abs(Math.round(division"+i+") - division"+i+") > 1e-"+t.opts.multipleOfPrecision+" ":a+=" division"+i+" !== parseInt(division"+i+") ",a+=" ) ",h&&(a+=" ) "),a+=" ) { ";var f=f||[];f.push(a),a="",t.createErrors!==!1?(a+=" { keyword: 'multipleOf' , dataPath: (dataPath || '') + "+t.errorPath+" , schemaPath: "+t.util.toQuotedString(d)+" , params: { multipleOf: "+m+" } ",t.opts.messages!==!1&&(a+=" , message: 'should be multiple of ",h?a+="' + "+m:a+=""+m+"'"),t.opts.verbose&&(a+=" , schema: ",h?a+="validate.schema"+l:a+=""+s,a+=" , parentSchema: validate.schema"+t.schemaPath+" , data: "+c+" "),a+=" } "):a+=" {} ";var g=a;return a=f.pop(),!t.compositeRule&&u?t.async?a+=" throw new ValidationError(["+g+"]); ":a+=" validate.errors = ["+g+"]; return false; ":a+=" var err = "+g+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",a+="} ",u&&(a+=" else { "),a},Ust=function(t,r,n){var a=" ",i=t.level,o=t.dataLevel,s=t.schema[r],l=t.schemaPath+t.util.getProperty(r),d=t.errSchemaPath+"/"+r,u=!t.opts.allErrors,c="data"+(o||""),h="errs__"+i,m=t.util.copy(t);m.level++;var f="valid"+m.level;if(t.opts.strictKeywords?typeof s=="object"&&Object.keys(s).length>0||s===!1:t.util.schemaHasRules(s,t.RULES.all)){m.schema=s,m.schemaPath=l,m.errSchemaPath=d,a+=" var "+h+" = errors; ";var g=t.compositeRule;t.compositeRule=m.compositeRule=!0,m.createErrors=!1;var v;m.opts.allErrors&&(v=m.opts.allErrors,m.opts.allErrors=!1),a+=" "+t.validate(m)+" ",m.createErrors=!0,v&&(m.opts.allErrors=v),t.compositeRule=m.compositeRule=g,a+=" if ("+f+") { ";var y=y||[];y.push(a),a="",t.createErrors!==!1?(a+=" { keyword: 'not' , dataPath: (dataPath || '') + "+t.errorPath+" , schemaPath: "+t.util.toQuotedString(d)+" , params: {} ",t.opts.messages!==!1&&(a+=" , message: 'should NOT be valid' "),t.opts.verbose&&(a+=" , schema: validate.schema"+l+" , parentSchema: validate.schema"+t.schemaPath+" , data: "+c+" "),a+=" } "):a+=" {} ";var b=a;a=y.pop(),!t.compositeRule&&u?t.async?a+=" throw new ValidationError(["+b+"]); ":a+=" validate.errors = ["+b+"]; return false; ":a+=" var err = "+b+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",a+=" } else { errors = "+h+"; if (vErrors !== null) { if ("+h+") vErrors.length = "+h+"; else vErrors = null; } ",t.opts.allErrors&&(a+=" } ")}else a+=" var err = ",t.createErrors!==!1?(a+=" { keyword: 'not' , dataPath: (dataPath || '') + "+t.errorPath+" , schemaPath: "+t.util.toQuotedString(d)+" , params: {} ",t.opts.messages!==!1&&(a+=" , message: 'should NOT be valid' "),t.opts.verbose&&(a+=" , schema: validate.schema"+l+" , parentSchema: validate.schema"+t.schemaPath+" , data: "+c+" "),a+=" } "):a+=" {} ",a+="; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",u&&(a+=" if (false) { ");return a},Vst=function(t,r,n){var a=" ",i=t.level,o=t.dataLevel,s=t.schema[r],l=t.schemaPath+t.util.getProperty(r),d=t.errSchemaPath+"/"+r,u=!t.opts.allErrors,c="data"+(o||""),h="valid"+i,m="errs__"+i,f=t.util.copy(t),g="";f.level++;var v="valid"+f.level,y=f.baseId,b="prevValid"+i,S="passingSchemas"+i;a+="var "+m+" = errors , "+b+" = false , "+h+" = false , "+S+" = null; ";var w=t.compositeRule;t.compositeRule=f.compositeRule=!0;var _=s;if(_)for(var A,I=-1,k=_.length-1;I<k;)A=_[I+=1],(t.opts.strictKeywords?typeof A=="object"&&Object.keys(A).length>0||A===!1:t.util.schemaHasRules(A,t.RULES.all))?(f.schema=A,f.schemaPath=l+"["+I+"]",f.errSchemaPath=d+"/"+I,a+=" "+t.validate(f)+" ",f.baseId=y):a+=" var "+v+" = true; ",I&&(a+=" if ("+v+" && "+b+") { "+h+" = false; "+S+" = ["+S+", "+I+"]; } else { ",g+="}"),a+=" if ("+v+") { "+h+" = "+b+" = true; "+S+" = "+I+"; }";return t.compositeRule=f.compositeRule=w,a+=""+g+"if (!"+h+") { var err = ",t.createErrors!==!1?(a+=" { keyword: 'oneOf' , dataPath: (dataPath || '') + "+t.errorPath+" , schemaPath: "+t.util.toQuotedString(d)+" , params: { passingSchemas: "+S+" } ",t.opts.messages!==!1&&(a+=" , message: 'should match exactly one schema in oneOf' "),t.opts.verbose&&(a+=" , schema: validate.schema"+l+" , parentSchema: validate.schema"+t.schemaPath+" , data: "+c+" "),a+=" } "):a+=" {} ",a+="; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",!t.compositeRule&&u&&(t.async?a+=" throw new ValidationError(vErrors); ":a+=" validate.errors = vErrors; return false; "),a+="} else { errors = "+m+"; if (vErrors !== null) { if ("+m+") vErrors.length = "+m+"; else vErrors = null; }",t.opts.allErrors&&(a+=" } "),a},Gst=function(t,r,n){var a=" ",i=t.level,o=t.dataLevel,s=t.schema[r],l=t.schemaPath+t.util.getProperty(r),d=t.errSchemaPath+"/"+r,u=!t.opts.allErrors,c="data"+(o||""),h=t.opts.$data&&s&&s.$data,m;h?(a+=" var schema"+i+" = "+t.util.getData(s.$data,o,t.dataPathArr)+"; ",m="schema"+i):m=s;var f=h?"(new RegExp("+m+"))":t.usePattern(s);a+="if ( ",h&&(a+=" ("+m+" !== undefined && typeof "+m+" != 'string') || "),a+=" !"+f+".test("+c+") ) { ";var g=g||[];g.push(a),a="",t.createErrors!==!1?(a+=" { keyword: 'pattern' , dataPath: (dataPath || '') + "+t.errorPath+" , schemaPath: "+t.util.toQuotedString(d)+" , params: { pattern: ",h?a+=""+m:a+=""+t.util.toQuotedString(s),a+=" } ",t.opts.messages!==!1&&(a+=` , message: 'should match pattern "`,h?a+="' + "+m+" + '":a+=""+t.util.escapeQuotes(s),a+=`"' `),t.opts.verbose&&(a+=" , schema: ",h?a+="validate.schema"+l:a+=""+t.util.toQuotedString(s),a+=" , parentSchema: validate.schema"+t.schemaPath+" , data: "+c+" "),a+=" } "):a+=" {} ";var v=a;return a=g.pop(),!t.compositeRule&&u?t.async?a+=" throw new ValidationError(["+v+"]); ":a+=" validate.errors = ["+v+"]; return false; ":a+=" var err = "+v+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",a+="} ",u&&(a+=" else { "),a},qst=function(t,r,n){var a=" ",i=t.level,o=t.dataLevel,s=t.schema[r],l=t.schemaPath+t.util.getProperty(r),d=t.errSchemaPath+"/"+r,u=!t.opts.allErrors,c="data"+(o||""),h="errs__"+i,m=t.util.copy(t),f="";m.level++;var g="valid"+m.level,v="key"+i,y="idx"+i,b=m.dataLevel=t.dataLevel+1,S="data"+b,w="dataProperties"+i,_=Object.keys(s||{}).filter(H),A=t.schema.patternProperties||{},I=Object.keys(A).filter(H),k=t.schema.additionalProperties,C=_.length||I.length,T=k===!1,O=typeof k=="object"&&Object.keys(k).length,D=t.opts.removeAdditional,M=T||O||D,E=t.opts.ownProperties,L=t.baseId,P=t.schema.required;if(P&&!(t.opts.$data&&P.$data)&&P.length<t.opts.loopRequired)var j=t.util.toHash(P);function H(tt){return tt!=="__proto__"}if(a+="var "+h+" = errors;var "+g+" = true;",E&&(a+=" var "+w+" = undefined;"),M){if(E?a+=" "+w+" = "+w+" || Object.keys("+c+"); for (var "+y+"=0; "+y+"<"+w+".length; "+y+"++) { var "+v+" = "+w+"["+y+"]; ":a+=" for (var "+v+" in "+c+") { ",C){if(a+=" var isAdditional"+i+" = !(false ",_.length)if(_.length>8)a+=" || validate.schema"+l+".hasOwnProperty("+v+") ";else{var $=_;if($)for(var B,z=-1,F=$.length-1;z<F;)B=$[z+=1],a+=" || "+v+" == "+t.util.toQuotedString(B)+" "}if(I.length){var V=I;if(V)for(var K,Z=-1,ue=V.length-1;Z<ue;)K=V[Z+=1],a+=" || "+t.usePattern(K)+".test("+v+") "}a+=" ); if (isAdditional"+i+") { "}if(D=="all")a+=" delete "+c+"["+v+"]; ";else{var fe=t.errorPath,ye="' + "+v+" + '";if(t.opts._errorDataPathProperty&&(t.errorPath=t.util.getPathExpr(t.errorPath,v,t.opts.jsonPointers)),T)if(D)a+=" delete "+c+"["+v+"]; ";else{a+=" "+g+" = false; ";var De=d;d=t.errSchemaPath+"/additionalProperties";var xe=xe||[];xe.push(a),a="",t.createErrors!==!1?(a+=" { keyword: 'additionalProperties' , dataPath: (dataPath || '') + "+t.errorPath+" , schemaPath: "+t.util.toQuotedString(d)+" , params: { additionalProperty: '"+ye+"' } ",t.opts.messages!==!1&&(a+=" , message: '",t.opts._errorDataPathProperty?a+="is an invalid additional property":a+="should NOT have additional properties",a+="' "),t.opts.verbose&&(a+=" , schema: false , parentSchema: validate.schema"+t.schemaPath+" , data: "+c+" "),a+=" } "):a+=" {} ";var $e=a;a=xe.pop(),!t.compositeRule&&u?t.async?a+=" throw new ValidationError(["+$e+"]); ":a+=" validate.errors = ["+$e+"]; return false; ":a+=" var err = "+$e+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",d=De,u&&(a+=" break; ")}else if(O)if(D=="failing"){a+=" var "+h+" = errors; ";var at=t.compositeRule;t.compositeRule=m.compositeRule=!0,m.schema=k,m.schemaPath=t.schemaPath+".additionalProperties",m.errSchemaPath=t.errSchemaPath+"/additionalProperties",m.errorPath=t.opts._errorDataPathProperty?t.errorPath:t.util.getPathExpr(t.errorPath,v,t.opts.jsonPointers);var it=c+"["+v+"]";m.dataPathArr[b]=v;var N=t.validate(m);m.baseId=L,t.util.varOccurences(N,S)<2?a+=" "+t.util.varReplace(N,S,it)+" ":a+=" var "+S+" = "+it+"; "+N+" ",a+=" if (!"+g+") { errors = "+h+"; if (validate.errors !== null) { if (errors) validate.errors.length = errors; else validate.errors = null; } delete "+c+"["+v+"]; } ",t.compositeRule=m.compositeRule=at}else{m.schema=k,m.schemaPath=t.schemaPath+".additionalProperties",m.errSchemaPath=t.errSchemaPath+"/additionalProperties",m.errorPath=t.opts._errorDataPathProperty?t.errorPath:t.util.getPathExpr(t.errorPath,v,t.opts.jsonPointers);var it=c+"["+v+"]";m.dataPathArr[b]=v;var N=t.validate(m);m.baseId=L,t.util.varOccurences(N,S)<2?a+=" "+t.util.varReplace(N,S,it)+" ":a+=" var "+S+" = "+it+"; "+N+" ",u&&(a+=" if (!"+g+") break; ")}t.errorPath=fe}C&&(a+=" } "),a+=" } ",u&&(a+=" if ("+g+") { ",f+="}")}var ge=t.opts.useDefaults&&!t.compositeRule;if(_.length){var me=_;if(me)for(var B,ee=-1,Q=me.length-1;ee<Q;){B=me[ee+=1];var se=s[B];if(t.opts.strictKeywords?typeof se=="object"&&Object.keys(se).length>0||se===!1:t.util.schemaHasRules(se,t.RULES.all)){var Ce=t.util.getProperty(B),it=c+Ce,oe=ge&&se.default!==void 0;m.schema=se,m.schemaPath=l+Ce,m.errSchemaPath=d+"/"+t.util.escapeFragment(B),m.errorPath=t.util.getPath(t.errorPath,B,t.opts.jsonPointers),m.dataPathArr[b]=t.util.toQuotedString(B);var N=t.validate(m);if(m.baseId=L,t.util.varOccurences(N,S)<2){N=t.util.varReplace(N,S,it);var re=it}else{var re=S;a+=" var "+S+" = "+it+"; "}if(oe)a+=" "+N+" ";else{if(j&&j[B]){a+=" if ( "+re+" === undefined ",E&&(a+=" || ! Object.prototype.hasOwnProperty.call("+c+", '"+t.util.escapeQuotes(B)+"') "),a+=") { "+g+" = false; ";var fe=t.errorPath,De=d,pe=t.util.escapeQuotes(B);t.opts._errorDataPathProperty&&(t.errorPath=t.util.getPath(fe,B,t.opts.jsonPointers)),d=t.errSchemaPath+"/required";var xe=xe||[];xe.push(a),a="",t.createErrors!==!1?(a+=" { keyword: 'required' , dataPath: (dataPath || '') + "+t.errorPath+" , schemaPath: "+t.util.toQuotedString(d)+" , params: { missingProperty: '"+pe+"' } ",t.opts.messages!==!1&&(a+=" , message: '",t.opts._errorDataPathProperty?a+="is a required property":a+="should have required property \\'"+pe+"\\'",a+="' "),t.opts.verbose&&(a+=" , schema: validate.schema"+l+" , parentSchema: validate.schema"+t.schemaPath+" , data: "+c+" "),a+=" } "):a+=" {} ";var $e=a;a=xe.pop(),!t.compositeRule&&u?t.async?a+=" throw new ValidationError(["+$e+"]); ":a+=" validate.errors = ["+$e+"]; return false; ":a+=" var err = "+$e+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",d=De,t.errorPath=fe,a+=" } else { "}else u?(a+=" if ( "+re+" === undefined ",E&&(a+=" || ! Object.prototype.hasOwnProperty.call("+c+", '"+t.util.escapeQuotes(B)+"') "),a+=") { "+g+" = true; } else { "):(a+=" if ("+re+" !== undefined ",E&&(a+=" && Object.prototype.hasOwnProperty.call("+c+", '"+t.util.escapeQuotes(B)+"') "),a+=" ) { ");a+=" "+N+" } "}}u&&(a+=" if ("+g+") { ",f+="}")}}if(I.length){var Ee=I;if(Ee)for(var K,ke=-1,Be=Ee.length-1;ke<Be;){K=Ee[ke+=1];var se=A[K];if(t.opts.strictKeywords?typeof se=="object"&&Object.keys(se).length>0||se===!1:t.util.schemaHasRules(se,t.RULES.all)){m.schema=se,m.schemaPath=t.schemaPath+".patternProperties"+t.util.getProperty(K),m.errSchemaPath=t.errSchemaPath+"/patternProperties/"+t.util.escapeFragment(K),E?a+=" "+w+" = "+w+" || Object.keys("+c+"); for (var "+y+"=0; "+y+"<"+w+".length; "+y+"++) { var "+v+" = "+w+"["+y+"]; ":a+=" for (var "+v+" in "+c+") { ",a+=" if ("+t.usePattern(K)+".test("+v+")) { ",m.errorPath=t.util.getPathExpr(t.errorPath,v,t.opts.jsonPointers);var it=c+"["+v+"]";m.dataPathArr[b]=v;var N=t.validate(m);m.baseId=L,t.util.varOccurences(N,S)<2?a+=" "+t.util.varReplace(N,S,it)+" ":a+=" var "+S+" = "+it+"; "+N+" ",u&&(a+=" if (!"+g+") break; "),a+=" } ",u&&(a+=" else "+g+" = true; "),a+=" } ",u&&(a+=" if ("+g+") { ",f+="}")}}}return u&&(a+=" "+f+" if ("+h+" == errors) {"),a},Kst=function(t,r,n){var a=" ",i=t.level,o=t.dataLevel,s=t.schema[r],l=t.schemaPath+t.util.getProperty(r),d=t.errSchemaPath+"/"+r,u=!t.opts.allErrors,c="data"+(o||""),h="errs__"+i,m=t.util.copy(t),f="";m.level++;var g="valid"+m.level;if(a+="var "+h+" = errors;",t.opts.strictKeywords?typeof s=="object"&&Object.keys(s).length>0||s===!1:t.util.schemaHasRules(s,t.RULES.all)){m.schema=s,m.schemaPath=l,m.errSchemaPath=d;var v="key"+i,y="idx"+i,b="i"+i,S="' + "+v+" + '",w=m.dataLevel=t.dataLevel+1,_="data"+w,A="dataProperties"+i,I=t.opts.ownProperties,k=t.baseId;I&&(a+=" var "+A+" = undefined; "),I?a+=" "+A+" = "+A+" || Object.keys("+c+"); for (var "+y+"=0; "+y+"<"+A+".length; "+y+"++) { var "+v+" = "+A+"["+y+"]; ":a+=" for (var "+v+" in "+c+") { ",a+=" var startErrs"+i+" = errors; ";var C=v,T=t.compositeRule;t.compositeRule=m.compositeRule=!0;var O=t.validate(m);m.baseId=k,t.util.varOccurences(O,_)<2?a+=" "+t.util.varReplace(O,_,C)+" ":a+=" var "+_+" = "+C+"; "+O+" ",t.compositeRule=m.compositeRule=T,a+=" if (!"+g+") { for (var "+b+"=startErrs"+i+"; "+b+"<errors; "+b+"++) { vErrors["+b+"].propertyName = "+v+"; } var err = ",t.createErrors!==!1?(a+=" { keyword: 'propertyNames' , dataPath: (dataPath || '') + "+t.errorPath+" , schemaPath: "+t.util.toQuotedString(d)+" , params: { propertyName: '"+S+"' } ",t.opts.messages!==!1&&(a+=" , message: 'property name \\'"+S+"\\' is invalid' "),t.opts.verbose&&(a+=" , schema: validate.schema"+l+" , parentSchema: validate.schema"+t.schemaPath+" , data: "+c+" "),a+=" } "):a+=" {} ",a+="; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",!t.compositeRule&&u&&(t.async?a+=" throw new ValidationError(vErrors); ":a+=" validate.errors = vErrors; return false; "),u&&(a+=" break; "),a+=" } }"}return u&&(a+=" "+f+" if ("+h+" == errors) {"),a},Qst=function(t,r,n){var a=" ",i=t.level,o=t.dataLevel,s=t.schema[r],l=t.schemaPath+t.util.getProperty(r),d=t.errSchemaPath+"/"+r,u=!t.opts.allErrors,c="data"+(o||""),h="valid"+i,m=t.opts.$data&&s&&s.$data;m&&(a+=" var schema"+i+" = "+t.util.getData(s.$data,o,t.dataPathArr)+"; ");var f="schema"+i;if(!m)if(s.length<t.opts.loopRequired&&t.schema.properties&&Object.keys(t.schema.properties).length){var g=[],v=s;if(v)for(var y,b=-1,S=v.length-1;b<S;){y=v[b+=1];var w=t.schema.properties[y];w&&(t.opts.strictKeywords?typeof w=="object"&&Object.keys(w).length>0||w===!1:t.util.schemaHasRules(w,t.RULES.all))||(g[g.length]=y)}}else var g=s;if(m||g.length){var _=t.errorPath,A=m||g.length>=t.opts.loopRequired,I=t.opts.ownProperties;if(u)if(a+=" var missing"+i+"; ",A){m||(a+=" var "+f+" = validate.schema"+l+"; ");var k="i"+i,C="schema"+i+"["+k+"]",T="' + "+C+" + '";t.opts._errorDataPathProperty&&(t.errorPath=t.util.getPathExpr(_,C,t.opts.jsonPointers)),a+=" var "+h+" = true; ",m&&(a+=" if (schema"+i+" === undefined) "+h+" = true; else if (!Array.isArray(schema"+i+")) "+h+" = false; else {"),a+=" for (var "+k+" = 0; "+k+" < "+f+".length; "+k+"++) { "+h+" = "+c+"["+f+"["+k+"]] !== undefined ",I&&(a+=" && Object.prototype.hasOwnProperty.call("+c+", "+f+"["+k+"]) "),a+="; if (!"+h+") break; } ",m&&(a+=" } "),a+=" if (!"+h+") { ";var O=O||[];O.push(a),a="",t.createErrors!==!1?(a+=" { keyword: 'required' , dataPath: (dataPath || '') + "+t.errorPath+" , schemaPath: "+t.util.toQuotedString(d)+" , params: { missingProperty: '"+T+"' } ",t.opts.messages!==!1&&(a+=" , message: '",t.opts._errorDataPathProperty?a+="is a required property":a+="should have required property \\'"+T+"\\'",a+="' "),t.opts.verbose&&(a+=" , schema: validate.schema"+l+" , parentSchema: validate.schema"+t.schemaPath+" , data: "+c+" "),a+=" } "):a+=" {} ";var D=a;a=O.pop(),!t.compositeRule&&u?t.async?a+=" throw new ValidationError(["+D+"]); ":a+=" validate.errors = ["+D+"]; return false; ":a+=" var err = "+D+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",a+=" } else { "}else{a+=" if ( ";var M=g;if(M)for(var E,k=-1,L=M.length-1;k<L;){E=M[k+=1],k&&(a+=" || ");var P=t.util.getProperty(E),j=c+P;a+=" ( ( "+j+" === undefined ",I&&(a+=" || ! Object.prototype.hasOwnProperty.call("+c+", '"+t.util.escapeQuotes(E)+"') "),a+=") && (missing"+i+" = "+t.util.toQuotedString(t.opts.jsonPointers?E:P)+") ) "}a+=") { ";var C="missing"+i,T="' + "+C+" + '";t.opts._errorDataPathProperty&&(t.errorPath=t.opts.jsonPointers?t.util.getPathExpr(_,C,!0):_+" + "+C);var O=O||[];O.push(a),a="",t.createErrors!==!1?(a+=" { keyword: 'required' , dataPath: (dataPath || '') + "+t.errorPath+" , schemaPath: "+t.util.toQuotedString(d)+" , params: { missingProperty: '"+T+"' } ",t.opts.messages!==!1&&(a+=" , message: '",t.opts._errorDataPathProperty?a+="is a required property":a+="should have required property \\'"+T+"\\'",a+="' "),t.opts.verbose&&(a+=" , schema: validate.schema"+l+" , parentSchema: validate.schema"+t.schemaPath+" , data: "+c+" "),a+=" } "):a+=" {} ";var D=a;a=O.pop(),!t.compositeRule&&u?t.async?a+=" throw new ValidationError(["+D+"]); ":a+=" validate.errors = ["+D+"]; return false; ":a+=" var err = "+D+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",a+=" } else { "}else if(A){m||(a+=" var "+f+" = validate.schema"+l+"; ");var k="i"+i,C="schema"+i+"["+k+"]",T="' + "+C+" + '";t.opts._errorDataPathProperty&&(t.errorPath=t.util.getPathExpr(_,C,t.opts.jsonPointers)),m&&(a+=" if ("+f+" && !Array.isArray("+f+")) { var err = ",t.createErrors!==!1?(a+=" { keyword: 'required' , dataPath: (dataPath || '') + "+t.errorPath+" , schemaPath: "+t.util.toQuotedString(d)+" , params: { missingProperty: '"+T+"' } ",t.opts.messages!==!1&&(a+=" , message: '",t.opts._errorDataPathProperty?a+="is a required property":a+="should have required property \\'"+T+"\\'",a+="' "),t.opts.verbose&&(a+=" , schema: validate.schema"+l+" , parentSchema: validate.schema"+t.schemaPath+" , data: "+c+" "),a+=" } "):a+=" {} ",a+="; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; } else if ("+f+" !== undefined) { "),a+=" for (var "+k+" = 0; "+k+" < "+f+".length; "+k+"++) { if ("+c+"["+f+"["+k+"]] === undefined ",I&&(a+=" || ! Object.prototype.hasOwnProperty.call("+c+", "+f+"["+k+"]) "),a+=") { var err = ",t.createErrors!==!1?(a+=" { keyword: 'required' , dataPath: (dataPath || '') + "+t.errorPath+" , schemaPath: "+t.util.toQuotedString(d)+" , params: { missingProperty: '"+T+"' } ",t.opts.messages!==!1&&(a+=" , message: '",t.opts._errorDataPathProperty?a+="is a required property":a+="should have required property \\'"+T+"\\'",a+="' "),t.opts.verbose&&(a+=" , schema: validate.schema"+l+" , parentSchema: validate.schema"+t.schemaPath+" , data: "+c+" "),a+=" } "):a+=" {} ",a+="; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; } } ",m&&(a+=" } ")}else{var H=g;if(H)for(var E,$=-1,B=H.length-1;$<B;){E=H[$+=1];var P=t.util.getProperty(E),T=t.util.escapeQuotes(E),j=c+P;t.opts._errorDataPathProperty&&(t.errorPath=t.util.getPath(_,E,t.opts.jsonPointers)),a+=" if ( "+j+" === undefined ",I&&(a+=" || ! Object.prototype.hasOwnProperty.call("+c+", '"+t.util.escapeQuotes(E)+"') "),a+=") { var err = ",t.createErrors!==!1?(a+=" { keyword: 'required' , dataPath: (dataPath || '') + "+t.errorPath+" , schemaPath: "+t.util.toQuotedString(d)+" , params: { missingProperty: '"+T+"' } ",t.opts.messages!==!1&&(a+=" , message: '",t.opts._errorDataPathProperty?a+="is a required property":a+="should have required property \\'"+T+"\\'",a+="' "),t.opts.verbose&&(a+=" , schema: validate.schema"+l+" , parentSchema: validate.schema"+t.schemaPath+" , data: "+c+" "),a+=" } "):a+=" {} ",a+="; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; } "}}t.errorPath=_}else u&&(a+=" if (true) {");return a},Zst=function(t,r,n){var a=" ",i=t.level,o=t.dataLevel,s=t.schema[r],l=t.schemaPath+t.util.getProperty(r),d=t.errSchemaPath+"/"+r,u=!t.opts.allErrors,c="data"+(o||""),h="valid"+i,m=t.opts.$data&&s&&s.$data,f;if(m?(a+=" var schema"+i+" = "+t.util.getData(s.$data,o,t.dataPathArr)+"; ",f="schema"+i):f=s,(s||m)&&t.opts.uniqueItems!==!1){m&&(a+=" var "+h+"; if ("+f+" === false || "+f+" === undefined) "+h+" = true; else if (typeof "+f+" != 'boolean') "+h+" = false; else { "),a+=" var i = "+c+".length , "+h+" = true , j; if (i > 1) { ";var g=t.schema.items&&t.schema.items.type,v=Array.isArray(g);if(!g||g=="object"||g=="array"||v&&(g.indexOf("object")>=0||g.indexOf("array")>=0))a+=" outer: for (;i--;) { for (j = i; j--;) { if (equal("+c+"[i], "+c+"[j])) { "+h+" = false; break outer; } } } ";else{a+=" var itemIndices = {}, item; for (;i--;) { var item = "+c+"[i]; ";var y="checkDataType"+(v?"s":"");a+=" if ("+t.util[y](g,"item",t.opts.strictNumbers,!0)+") continue; ",v&&(a+=` if (typeof item == 'string') item = '"' + item; `),a+=" if (typeof itemIndices[item] == 'number') { "+h+" = false; j = itemIndices[item]; break; } itemIndices[item] = i; } "}a+=" } ",m&&(a+=" } "),a+=" if (!"+h+") { ";var b=b||[];b.push(a),a="",t.createErrors!==!1?(a+=" { keyword: 'uniqueItems' , dataPath: (dataPath || '') + "+t.errorPath+" , schemaPath: "+t.util.toQuotedString(d)+" , params: { i: i, j: j } ",t.opts.messages!==!1&&(a+=" , message: 'should NOT have duplicate items (items ## ' + j + ' and ' + i + ' are identical)' "),t.opts.verbose&&(a+=" , schema: ",m?a+="validate.schema"+l:a+=""+s,a+=" , parentSchema: validate.schema"+t.schemaPath+" , data: "+c+" "),a+=" } "):a+=" {} ";var S=a;a=b.pop(),!t.compositeRule&&u?t.async?a+=" throw new ValidationError(["+S+"]); ":a+=" validate.errors = ["+S+"]; return false; ":a+=" var err = "+S+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",a+=" } ",u&&(a+=" else { ")}else u&&(a+=" if (true) { ");return a},Yst={$ref:Mst,allOf:Rst,anyOf:Lst,$comment:Pst,const:$st,contains:zst,dependencies:Nst,enum:Fst,format:Bst,if:Wst,items:Hst,maximum:nB,minimum:nB,maxItems:aB,minItems:aB,maxLength:iB,minLength:iB,maxProperties:oB,minProperties:oB,multipleOf:jst,not:Ust,oneOf:Vst,pattern:Gst,properties:qst,propertyNames:Kst,required:Qst,uniqueItems:Zst,validate:VK},sB=Yst,MA=Zc.toHash,Xst=function(){var t=[{type:"number",rules:[{maximum:["exclusiveMaximum"]},{minimum:["exclusiveMinimum"]},"multipleOf","format"]},{type:"string",rules:["maxLength","minLength","pattern","format"]},{type:"array",rules:["maxItems","minItems","items","contains","uniqueItems"]},{type:"object",rules:["maxProperties","minProperties","required","dependencies","propertyNames",{properties:["additionalProperties","patternProperties"]}]},{rules:["$ref","const","enum","not","anyOf","oneOf","allOf","if"]}],r=["type","$comment"],n=["$schema","$id","id","$data","$async","title","description","default","definitions","examples","readOnly","writeOnly","contentMediaType","contentEncoding","additionalItems","then","else"],a=["number","integer","string","array","object","boolean","null"];return t.all=MA(r),t.types=MA(a),t.forEach(function(i){i.rules=i.rules.map(function(o){var s;if(typeof o=="object"){var l=Object.keys(o)[0];s=o[l],o=l,s.forEach(function(u){r.push(u),t.all[u]=!0})}r.push(o);var d=t.all[o]={keyword:o,code:sB[o],implements:s};return d}),t.all.$comment={keyword:"$comment",code:sB.$comment},i.type&&(t.types[i.type]=i)}),t.keywords=MA(r.concat(n)),t.custom={},t},lB=["multipleOf","maximum","exclusiveMaximum","minimum","exclusiveMinimum","maxLength","minLength","pattern","additionalItems","maxItems","minItems","uniqueItems","maxProperties","minProperties","required","additionalProperties","enum","format","const"],Jst=function(e,t){for(var r=0;r<t.length;r++){e=JSON.parse(JSON.stringify(e));var n=t[r].split("/"),a=e,i;for(i=1;i<n.length;i++)a=a[n[i]];for(i=0;i<lB.length;i++){var o=lB[i],s=a[o];s&&(a[o]={anyOf:[s,{$ref:"https://raw.githubusercontent.com/ajv-validator/ajv/master/lib/refs/data.json#"}]})}}return e},elt=tO.MissingRef,tlt=iQ;function iQ(e,t,r){var n=this;if(typeof this._opts.loadSchema!="function")throw new Error("options.loadSchema should be a function");typeof t=="function"&&(r=t,t=void 0);var a=i(e).then(function(){var s=n._addSchema(e,void 0,t);return s.validate||o(s)});return r&&a.then(function(s){r(null,s)},r),a;function i(s){var l=s.$schema;return l&&!n.getSchema(l)?iQ.call(n,{$ref:l},!0):Promise.resolve()}function o(s){try{return n._compile(s)}catch(d){if(d instanceof elt)return l(d);throw d}function l(d){var u=d.missingSchema;if(m(u))throw new Error("Schema "+u+" is loaded but "+d.missingRef+" cannot be resolved");var c=n._loadingSchemas[u];return c||(c=n._loadingSchemas[u]=n._opts.loadSchema(u),c.then(h,h)),c.then(function(f){if(!m(u))return i(f).then(function(){m(u)||n.addSchema(f,u,void 0,t)})}).then(function(){return o(s)});function h(){delete n._loadingSchemas[u]}function m(f){return n._refs[f]||n._schemas[f]}}}}var rlt=function(t,r,n){var a=" ",i=t.level,o=t.dataLevel,s=t.schema[r],l=t.schemaPath+t.util.getProperty(r),d=t.errSchemaPath+"/"+r,u=!t.opts.allErrors,c,h="data"+(o||""),m="valid"+i,f="errs__"+i,g=t.opts.$data&&s&&s.$data,v;g?(a+=" var schema"+i+" = "+t.util.getData(s.$data,o,t.dataPathArr)+"; ",v="schema"+i):v=s;var y=this,b="definition"+i,S=y.definition,w="",_,A,I,k,C;if(g&&S.$data){C="keywordValidate"+i;var T=S.validateSchema;a+=" var "+b+" = RULES.custom['"+r+"'].definition; var "+C+" = "+b+".validate;"}else{if(k=t.useCustomRule(y,s,t.schema,t),!k)return;v="validate.schema"+l,C=k.code,_=S.compile,A=S.inline,I=S.macro}var O=C+".errors",D="i"+i,M="ruleErr"+i,E=S.async;if(E&&!t.async)throw new Error("async keyword in sync schema");if(A||I||(a+=""+O+" = null;"),a+="var "+f+" = errors;var "+m+";",g&&S.$data&&(w+="}",a+=" if ("+v+" === undefined) { "+m+" = true; } else { ",T&&(w+="}",a+=" "+m+" = "+b+".validateSchema("+v+"); if ("+m+") { ")),A)S.statements?a+=" "+k.validate+" ":a+=" "+m+" = "+k.validate+"; ";else if(I){var L=t.util.copy(t),w="";L.level++;var P="valid"+L.level;L.schema=k.validate,L.schemaPath="";var j=t.compositeRule;t.compositeRule=L.compositeRule=!0;var H=t.validate(L).replace(/validate\.schema/g,C);t.compositeRule=L.compositeRule=j,a+=" "+H}else{var $=$||[];$.push(a),a="",a+=" "+C+".call( ",t.opts.passContext?a+="this":a+="self",_||S.schema===!1?a+=" , "+h+" ":a+=" , "+v+" , "+h+" , validate.schema"+t.schemaPath+" ",a+=" , (dataPath || '')",t.errorPath!='""'&&(a+=" + "+t.errorPath);var B=o?"data"+(o-1||""):"parentData",z=o?t.dataPathArr[o]:"parentDataProperty";a+=" , "+B+" , "+z+" , rootData ) ";var F=a;a=$.pop(),S.errors===!1?(a+=" "+m+" = ",E&&(a+="await "),a+=""+F+"; "):E?(O="customErrors"+i,a+=" var "+O+" = null; try { "+m+" = await "+F+"; } catch (e) { "+m+" = false; if (e instanceof ValidationError) "+O+" = e.errors; else throw e; } "):a+=" "+O+" = null; "+m+" = "+F+"; "}if(S.modifying&&(a+=" if ("+B+") "+h+" = "+B+"["+z+"];"),a+=""+w,S.valid)u&&(a+=" if (true) { ");else{a+=" if ( ",S.valid===void 0?(a+=" !",I?a+=""+P:a+=""+m):a+=" "+!S.valid+" ",a+=") { ",c=y.keyword;var $=$||[];$.push(a),a="";var $=$||[];$.push(a),a="",t.createErrors!==!1?(a+=" { keyword: '"+(c||"custom")+"' , dataPath: (dataPath || '') + "+t.errorPath+" , schemaPath: "+t.util.toQuotedString(d)+" , params: { keyword: '"+y.keyword+"' } ",t.opts.messages!==!1&&(a+=` , message: 'should pass "`+y.keyword+`" keyword validation' `),t.opts.verbose&&(a+=" , schema: validate.schema"+l+" , parentSchema: validate.schema"+t.schemaPath+" , data: "+h+" "),a+=" } "):a+=" {} ";var V=a;a=$.pop(),!t.compositeRule&&u?t.async?a+=" throw new ValidationError(["+V+"]); ":a+=" validate.errors = ["+V+"]; return false; ":a+=" var err = "+V+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ";var K=a;a=$.pop(),A?S.errors?S.errors!="full"&&(a+=" for (var "+D+"="+f+"; "+D+"<errors; "+D+"++) { var "+M+" = vErrors["+D+"]; if ("+M+".dataPath === undefined) "+M+".dataPath = (dataPath || '') + "+t.errorPath+"; if ("+M+".schemaPath === undefined) { "+M+'.schemaPath = "'+d+'"; } ',t.opts.verbose&&(a+=" "+M+".schema = "+v+"; "+M+".data = "+h+"; "),a+=" } "):S.errors===!1?a+=" "+K+" ":(a+=" if ("+f+" == errors) { "+K+" } else { for (var "+D+"="+f+"; "+D+"<errors; "+D+"++) { var "+M+" = vErrors["+D+"]; if ("+M+".dataPath === undefined) "+M+".dataPath = (dataPath || '') + "+t.errorPath+"; if ("+M+".schemaPath === undefined) { "+M+'.schemaPath = "'+d+'"; } ',t.opts.verbose&&(a+=" "+M+".schema = "+v+"; "+M+".data = "+h+"; "),a+=" } } "):I?(a+=" var err = ",t.createErrors!==!1?(a+=" { keyword: '"+(c||"custom")+"' , dataPath: (dataPath || '') + "+t.errorPath+" , schemaPath: "+t.util.toQuotedString(d)+" , params: { keyword: '"+y.keyword+"' } ",t.opts.messages!==!1&&(a+=` , message: 'should pass "`+y.keyword+`" keyword validation' `),t.opts.verbose&&(a+=" , schema: validate.schema"+l+" , parentSchema: validate.schema"+t.schemaPath+" , data: "+h+" "),a+=" } "):a+=" {} ",a+="; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",!t.compositeRule&&u&&(t.async?a+=" throw new ValidationError(vErrors); ":a+=" validate.errors = vErrors; return false; ")):S.errors===!1?a+=" "+K+" ":(a+=" if (Array.isArray("+O+")) { if (vErrors === null) vErrors = "+O+"; else vErrors = vErrors.concat("+O+"); errors = vErrors.length; for (var "+D+"="+f+"; "+D+"<errors; "+D+"++) { var "+M+" = vErrors["+D+"]; if ("+M+".dataPath === undefined) "+M+".dataPath = (dataPath || '') + "+t.errorPath+"; "+M+'.schemaPath = "'+d+'"; ',t.opts.verbose&&(a+=" "+M+".schema = "+v+"; "+M+".data = "+h+"; "),a+=" } } else { "+K+" } "),a+=" } ",u&&(a+=" else { ")}return a};const nlt="http://json-schema.org/draft-07/schema#",alt="http://json-schema.org/draft-07/schema#",ilt="Core schema meta-schema",olt={schemaArray:{type:"array",minItems:1,items:{$ref:"#"}},nonNegativeInteger:{type:"integer",minimum:0},nonNegativeIntegerDefault0:{allOf:[{$ref:"#/definitions/nonNegativeInteger"},{default:0}]},simpleTypes:{enum:["array","boolean","integer","null","number","object","string"]},stringArray:{type:"array",items:{type:"string"},uniqueItems:!0,default:[]}},slt=["object","boolean"],llt={$id:{type:"string",format:"uri-reference"},$schema:{type:"string",format:"uri"},$ref:{type:"string",format:"uri-reference"},$comment:{type:"string"},title:{type:"string"},description:{type:"string"},default:!0,readOnly:{type:"boolean",default:!1},examples:{type:"array",items:!0},multipleOf:{type:"number",exclusiveMinimum:0},maximum:{type:"number"},exclusiveMaximum:{type:"number"},minimum:{type:"number"},exclusiveMinimum:{type:"number"},maxLength:{$ref:"#/definitions/nonNegativeInteger"},minLength:{$ref:"#/definitions/nonNegativeIntegerDefault0"},pattern:{type:"string",format:"regex"},additionalItems:{$ref:"#"},items:{anyOf:[{$ref:"#"},{$ref:"#/definitions/schemaArray"}],default:!0},maxItems:{$ref:"#/definitions/nonNegativeInteger"},minItems:{$ref:"#/definitions/nonNegativeIntegerDefault0"},uniqueItems:{type:"boolean",default:!1},contains:{$ref:"#"},maxProperties:{$ref:"#/definitions/nonNegativeInteger"},minProperties:{$ref:"#/definitions/nonNegativeIntegerDefault0"},required:{$ref:"#/definitions/stringArray"},additionalProperties:{$ref:"#"},definitions:{type:"object",additionalProperties:{$ref:"#"},default:{}},properties:{type:"object",additionalProperties:{$ref:"#"},default:{}},patternProperties:{type:"object",additionalProperties:{$ref:"#"},propertyNames:{format:"regex"},default:{}},dependencies:{type:"object",additionalProperties:{anyOf:[{$ref:"#"},{$ref:"#/definitions/stringArray"}]}},propertyNames:{$ref:"#"},const:!0,enum:{type:"array",items:!0,minItems:1,uniqueItems:!0},type:{anyOf:[{$ref:"#/definitions/simpleTypes"},{type:"array",items:{$ref:"#/definitions/simpleTypes"},minItems:1,uniqueItems:!0}]},format:{type:"string"},contentMediaType:{type:"string"},contentEncoding:{type:"string"},if:{$ref:"#"},then:{$ref:"#"},else:{$ref:"#"},allOf:{$ref:"#/definitions/schemaArray"},anyOf:{$ref:"#/definitions/schemaArray"},oneOf:{$ref:"#/definitions/schemaArray"},not:{$ref:"#"}};var oQ={$schema:nlt,$id:alt,title:ilt,definitions:olt,type:slt,properties:llt,default:!0},uB=oQ,ult={$id:"https://github.com/ajv-validator/ajv/blob/master/lib/definition_schema.js",definitions:{simpleTypes:uB.definitions.simpleTypes},type:"object",dependencies:{schema:["validate"],$data:["validate"],statements:["inline"],valid:{not:{required:["macro"]}}},properties:{type:uB.properties.type,schema:{type:"boolean"},statements:{type:"boolean"},dependencies:{type:"array",items:{type:"string"}},metaSchema:{type:"object"},modifying:{type:"boolean"},valid:{type:"boolean"},$data:{type:"boolean"},async:{type:"boolean"},errors:{anyOf:[{type:"boolean"},{const:"full"}]}}},dlt=/^[a-z_$][a-z0-9_$-]*$/i,clt=rlt,hlt=ult,mlt={add:flt,get:plt,remove:glt,validate:yE};function flt(e,t){var r=this.RULES;if(r.keywords[e])throw new Error("Keyword "+e+" is already defined");if(!dlt.test(e))throw new Error("Keyword "+e+" is not a valid identifier");if(t){this.validateKeyword(t,!0);var n=t.type;if(Array.isArray(n))for(var a=0;a<n.length;a++)o(e,n[a],t);else o(e,n,t);var i=t.metaSchema;i&&(t.$data&&this._opts.$data&&(i={anyOf:[i,{$ref:"https://raw.githubusercontent.com/ajv-validator/ajv/master/lib/refs/data.json#"}]}),t.validateSchema=this.compile(i,!0))}r.keywords[e]=r.all[e]=!0;function o(s,l,d){for(var u,c=0;c<r.length;c++){var h=r[c];if(h.type==l){u=h;break}}u||(u={type:l,rules:[]},r.push(u));var m={keyword:s,definition:d,custom:!0,code:clt,implements:d.implements};u.rules.push(m),r.custom[s]=m}return this}function plt(e){var t=this.RULES.custom[e];return t?t.definition:this.RULES.keywords[e]||!1}function glt(e){var t=this.RULES;delete t.keywords[e],delete t.all[e],delete t.custom[e];for(var r=0;r<t.length;r++)for(var n=t[r].rules,a=0;a<n.length;a++)if(n[a].keyword==e){n.splice(a,1);break}return this}function yE(e,t){yE.errors=null;var r=this._validateKeyword=this._validateKeyword||this.compile(hlt,!0);if(r(e))return!0;if(yE.errors=r.errors,t)throw new Error("custom keyword definition is invalid: "+this.errorsText(r.errors));return!1}const vlt="http://json-schema.org/draft-07/schema#",ylt="https://raw.githubusercontent.com/ajv-validator/ajv/master/lib/refs/data.json#",_lt="Meta-schema for $data reference (JSON Schema extension proposal)",blt="object",wlt=["$data"],Slt={$data:{type:"string",anyOf:[{format:"relative-json-pointer"},{format:"json-pointer"}]}},Alt=!1;var Tlt={$schema:vlt,$id:ylt,description:_lt,type:blt,required:wlt,properties:Slt,additionalProperties:Alt},sQ=hst,jl=eO,klt=KK.exports,lQ=BK,Clt=UK,Elt=kst,Ilt=Xst,uQ=Jst,dQ=Zc,Dlt=Ir;Ir.prototype.validate=Olt;Ir.prototype.compile=Mlt;Ir.prototype.addSchema=Rlt;Ir.prototype.addMetaSchema=Llt;Ir.prototype.validateSchema=Plt;Ir.prototype.getSchema=zlt;Ir.prototype.removeSchema=Flt;Ir.prototype.addFormat=qlt;Ir.prototype.errorsText=Glt;Ir.prototype._addSchema=Blt;Ir.prototype._compile=Wlt;Ir.prototype.compileAsync=tlt;var qw=mlt;Ir.prototype.addKeyword=qw.add;Ir.prototype.getKeyword=qw.get;Ir.prototype.removeKeyword=qw.remove;Ir.prototype.validateKeyword=qw.validate;var cQ=tO;Ir.ValidationError=cQ.Validation;Ir.MissingRefError=cQ.MissingRef;Ir.$dataMetaSchema=uQ;var F_="http://json-schema.org/draft-07/schema",dB=["removeAdditional","useDefaults","coerceTypes","strictDefaults"],xlt=["/properties"];function Ir(e){if(!(this instanceof Ir))return new Ir(e);e=this._opts=dQ.copy(e)||{},Jlt(this),this._schemas={},this._refs={},this._fragments={},this._formats=Elt(e.format),this._cache=e.cache||new klt,this._loadingSchemas={},this._compilations=[],this.RULES=Ilt(),this._getId=Hlt(e),e.loopRequired=e.loopRequired||1/0,e.errorDataPath=="property"&&(e._errorDataPathProperty=!0),e.serialize===void 0&&(e.serialize=Clt),this._metaOpts=Xlt(this),e.formats&&Zlt(this),e.keywords&&Ylt(this),Klt(this),typeof e.meta=="object"&&this.addMetaSchema(e.meta),e.nullable&&this.addKeyword("nullable",{metaSchema:{type:"boolean"}}),Qlt(this)}function Olt(e,t){var r;if(typeof e=="string"){if(r=this.getSchema(e),!r)throw new Error('no schema with key or ref "'+e+'"')}else{var n=this._addSchema(e);r=n.validate||this._compile(n)}var a=r(t);return r.$async!==!0&&(this.errors=r.errors),a}function Mlt(e,t){var r=this._addSchema(e,void 0,t);return r.validate||this._compile(r)}function Rlt(e,t,r,n){if(Array.isArray(e)){for(var a=0;a<e.length;a++)this.addSchema(e[a],void 0,r,n);return this}var i=this._getId(e);if(i!==void 0&&typeof i!="string")throw new Error("schema id must be string");return t=jl.normalizeId(t||i),mQ(this,t),this._schemas[t]=this._addSchema(e,r,n,!0),this}function Llt(e,t,r){return this.addSchema(e,t,r,!0),this}function Plt(e,t){var r=e.$schema;if(r!==void 0&&typeof r!="string")throw new Error("$schema must be a string");if(r=r||this._opts.defaultMeta||$lt(this),!r)return this.logger.warn("meta-schema not available"),this.errors=null,!0;var n=this.validate(r,e);if(!n&&t){var a="schema is invalid: "+this.errorsText();if(this._opts.validateSchema=="log")this.logger.error(a);else throw new Error(a)}return n}function $lt(e){var t=e._opts.meta;return e._opts.defaultMeta=typeof t=="object"?e._getId(t)||t:e.getSchema(F_)?F_:void 0,e._opts.defaultMeta}function zlt(e){var t=hQ(this,e);switch(typeof t){case"object":return t.validate||this._compile(t);case"string":return this.getSchema(t);case"undefined":return Nlt(this,e)}}function Nlt(e,t){var r=jl.schema.call(e,{schema:{}},t);if(r){var n=r.schema,a=r.root,i=r.baseId,o=sQ.call(e,n,a,void 0,i);return e._fragments[t]=new lQ({ref:t,fragment:!0,schema:n,root:a,baseId:i,validate:o}),o}}function hQ(e,t){return t=jl.normalizeId(t),e._schemas[t]||e._refs[t]||e._fragments[t]}function Flt(e){if(e instanceof RegExp)return dv(this,this._schemas,e),dv(this,this._refs,e),this;switch(typeof e){case"undefined":return dv(this,this._schemas),dv(this,this._refs),this._cache.clear(),this;case"string":var t=hQ(this,e);return t&&this._cache.del(t.cacheKey),delete this._schemas[e],delete this._refs[e],this;case"object":var r=this._opts.serialize,n=r?r(e):e;this._cache.del(n);var a=this._getId(e);a&&(a=jl.normalizeId(a),delete this._schemas[a],delete this._refs[a])}return this}function dv(e,t,r){for(var n in t){var a=t[n];!a.meta&&(!r||r.test(n))&&(e._cache.del(a.cacheKey),delete t[n])}}function Blt(e,t,r,n){if(typeof e!="object"&&typeof e!="boolean")throw new Error("schema should be object or boolean");var a=this._opts.serialize,i=a?a(e):e,o=this._cache.get(i);if(o)return o;n=n||this._opts.addUsedSchema!==!1;var s=jl.normalizeId(this._getId(e));s&&n&&mQ(this,s);var l=this._opts.validateSchema!==!1&&!t,d;l&&!(d=s&&s==jl.normalizeId(e.$schema))&&this.validateSchema(e,!0);var u=jl.ids.call(this,e),c=new lQ({id:s,schema:e,localRefs:u,cacheKey:i,meta:r});return s[0]!="#"&&n&&(this._refs[s]=c),this._cache.put(i,c),l&&d&&this.validateSchema(e,!0),c}function Wlt(e,t){if(e.compiling)return e.validate=a,a.schema=e.schema,a.errors=null,a.root=t||a,e.schema.$async===!0&&(a.$async=!0),a;e.compiling=!0;var r;e.meta&&(r=this._opts,this._opts=this._metaOpts);var n;try{n=sQ.call(this,e.schema,t,e.localRefs)}catch(i){throw delete e.validate,i}finally{e.compiling=!1,e.meta&&(this._opts=r)}return e.validate=n,e.refs=n.refs,e.refVal=n.refVal,e.root=n.root,n;function a(){var i=e.validate,o=i.apply(this,arguments);return a.errors=i.errors,o}}function Hlt(e){switch(e.schemaId){case"auto":return Vlt;case"id":return jlt;default:return Ult}}function jlt(e){return e.$id&&this.logger.warn("schema $id ignored",e.$id),e.id}function Ult(e){return e.id&&this.logger.warn("schema id ignored",e.id),e.$id}function Vlt(e){if(e.$id&&e.id&&e.$id!=e.id)throw new Error("schema $id is different from id");return e.$id||e.id}function Glt(e,t){if(e=e||this.errors,!e)return"No errors";t=t||{};for(var r=t.separator===void 0?", ":t.separator,n=t.dataVar===void 0?"data":t.dataVar,a="",i=0;i<e.length;i++){var o=e[i];o&&(a+=n+o.dataPath+" "+o.message+r)}return a.slice(0,-r.length)}function qlt(e,t){return typeof t=="string"&&(t=new RegExp(t)),this._formats[e]=t,this}function Klt(e){var t;if(e._opts.$data&&(t=Tlt,e.addMetaSchema(t,t.$id,!0)),e._opts.meta!==!1){var r=oQ;e._opts.$data&&(r=uQ(r,xlt)),e.addMetaSchema(r,F_,!0),e._refs["http://json-schema.org/schema"]=F_}}function Qlt(e){var t=e._opts.schemas;if(!!t)if(Array.isArray(t))e.addSchema(t);else for(var r in t)e.addSchema(t[r],r)}function Zlt(e){for(var t in e._opts.formats){var r=e._opts.formats[t];e.addFormat(t,r)}}function Ylt(e){for(var t in e._opts.keywords){var r=e._opts.keywords[t];e.addKeyword(t,r)}}function mQ(e,t){if(e._schemas[t]||e._refs[t])throw new Error('schema with key or id "'+t+'" already exists')}function Xlt(e){for(var t=dQ.copy(e._opts),r=0;r<dB.length;r++)delete t[dB[r]];return t}function Jlt(e){var t=e._opts.logger;if(t===!1)e.logger={log:RA,warn:RA,error:RA};else{if(t===void 0&&(t=console),!(typeof t=="object"&&t.log&&t.warn&&t.error))throw new Error("logger must implement log, warn and error methods");e.logger=t}}function RA(){}function fQ(e){return rut(e)||tut(e)||eut()}function eut(){throw new TypeError("Invalid attempt to spread non-iterable instance")}function tut(e){if(Symbol.iterator in Object(e)||Object.prototype.toString.call(e)==="[object Arguments]")return Array.from(e)}function rut(e){if(Array.isArray(e)){for(var t=0,r=new Array(e.length);t<e.length;t++)r[t]=e[t];return r}}function gc(e){for(var t=1;t<arguments.length;t++){var r=arguments[t]!=null?arguments[t]:{},n=Object.keys(r);typeof Object.getOwnPropertySymbols=="function"&&(n=n.concat(Object.getOwnPropertySymbols(r).filter(function(a){return Object.getOwnPropertyDescriptor(r,a).enumerable}))),n.forEach(function(a){gf(e,a,r[a])})}return e}function gf(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var rs=pQ(),cB=null,hB=null,_E="__rjsf_rootSchema";function pQ(){var e=new Dlt({errorDataPath:"property",allErrors:!0,multipleOfPrecision:8,schemaId:"auto",unknownFormats:"ignore"});return e.addFormat("data-url",/^data:([a-z]+\/[a-z0-9-+.]+)?;(?:name=(.*);)?base64,(.*)$/),e.addFormat("color",/^(#?([0-9A-Fa-f]{3}){1,2}\b|aqua|black|blue|fuchsia|gray|green|lime|maroon|navy|olive|orange|purple|red|silver|teal|white|yellow|(rgb\(\s*\b([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\b\s*,\s*\b([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\b\s*,\s*\b([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\b\s*\))|(rgb\(\s*(\d?\d%|100%)+\s*,\s*(\d?\d%|100%)+\s*,\s*(\d?\d%|100%)+\s*\)))$/),e}function nut(e){return e.length?e.reduce(function(t,r){var n=r.property,a=r.message,i=Rot(n),o=t;i.length>0&&i[0]===""&&i.splice(0,1);var s=!0,l=!1,d=void 0;try{for(var u=i.slice(0)[Symbol.iterator](),c;!(s=(c=u.next()).done);s=!0){var h=c.value;h in o||(o[h]={}),o=o[h]}}catch(m){l=!0,d=m}finally{try{!s&&u.return!=null&&u.return()}finally{if(l)throw d}}return Array.isArray(o.__errors)?o.__errors=o.__errors.concat(a):a&&(o.__errors=[a]),t},{}):{}}function Cl(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"root",r=[];return"__errors"in e&&(r=r.concat(e.__errors.map(function(n){return{stack:"".concat(t,": ").concat(n)}}))),Object.keys(e).reduce(function(n,a){return a!=="__errors"&&(n=n.concat(Cl(e[a],a))),n},r)}function bE(e){var t={__errors:[],addError:function(n){this.__errors.push(n)}};return xr(e)?Object.keys(e).reduce(function(r,n){return gc({},r,gf({},n,bE(e[n])))},t):Array.isArray(e)?e.reduce(function(r,n,a){return gc({},r,gf({},a,bE(n)))},t):t}function gQ(e){return Object.keys(e).reduce(function(t,r){return r==="addError"?t:r==="__errors"?gc({},t,gf({},r,e[r])):gc({},t,gf({},r,gQ(e[r])))},{})}function aut(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[];return e===null?[]:e.map(function(t){var r=t.dataPath,n=t.keyword,a=t.message,i=t.params,o=t.schemaPath,s="".concat(r);return{name:n,property:s,message:a,params:i,stack:"".concat(s," ").concat(a).trim(),schemaPath:o}})}function vQ(e,t,r,n){var a=arguments.length>4&&arguments[4]!==void 0?arguments[4]:[],i=arguments.length>5&&arguments[5]!==void 0?arguments[5]:{},o=t;e=Qw(t,e,o,!0);var s=!di(hB,a),l=!di(cB,i);(s||l)&&(rs=pQ()),a&&s&&Array.isArray(a)&&(rs.addMetaSchema(a),hB=a),i&&l&&xr(i)&&(Object.keys(i).forEach(function(y){rs.addFormat(y,i[y])}),cB=i);var d=null;try{rs.validate(t,e)}catch(y){d=y}var u=aut(rs.errors);rs.errors=null;var c=d&&d.message&&typeof d.message=="string"&&d.message.includes("no schema with key or ref ");c&&(u=[].concat(fQ(u),[{stack:d.message}])),typeof n=="function"&&(u=n(u));var h=nut(u);if(c&&(h=gc({},h,{$schema:{__errors:[d.message]}})),typeof r!="function")return{errors:u,errorSchema:h};var m=r(e,bE(e)),f=gQ(m),g=ps(h,f,!0),v=Cl(g);return{errors:v,errorSchema:g}}function wE(e){var t=e;if(e.constructor===Object){t=gc({},e);for(var r in t){var n=t[r];r==="$ref"&&typeof n=="string"&&n.startsWith("#")?t[r]=_E+n:t[r]=wE(n)}}else if(Array.isArray(e)){t=fQ(e);for(var a=0;a<t.length;a++)t[a]=wE(t[a])}return t}function SE(e,t,r){try{return rs.addSchema(r,_E).validate(wE(e),t)}catch{return!1}finally{rs.removeSchema(_E)}}function yQ(e){var t=iut(e,"string");return xa(t)==="symbol"?t:String(t)}function iut(e,t){if(xa(e)!=="object"||e===null)return e;var r=e[Symbol.toPrimitive];if(r!==void 0){var n=r.call(e,t||"default");if(xa(n)!=="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(e)}function B_(e){return lut(e)||sut(e)||out()}function out(){throw new TypeError("Invalid attempt to spread non-iterable instance")}function sut(e){if(Symbol.iterator in Object(e)||Object.prototype.toString.call(e)==="[object Arguments]")return Array.from(e)}function lut(e){if(Array.isArray(e)){for(var t=0,r=new Array(e.length);t<e.length;t++)r[t]=e[t];return r}}function xa(e){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?xa=function(r){return typeof r}:xa=function(r){return r&&typeof Symbol=="function"&&r.constructor===Symbol&&r!==Symbol.prototype?"symbol":typeof r},xa(e)}function W_(){return W_=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},W_.apply(this,arguments)}function oa(e){for(var t=1;t<arguments.length;t++){var r=arguments[t]!=null?arguments[t]:{},n=Object.keys(r);typeof Object.getOwnPropertySymbols=="function"&&(n=n.concat(Object.getOwnPropertySymbols(r).filter(function(a){return Object.getOwnPropertyDescriptor(r,a).enumerable}))),n.forEach(function(a){nO(e,a,r[a])})}return e}function nO(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function Js(e,t){if(e==null)return{};var r=uut(e,t),n,a;if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(a=0;a<i.length;a++)n=i[a],!(t.indexOf(n)>=0)&&(!Object.prototype.propertyIsEnumerable.call(e,n)||(r[n]=e[n]))}return r}function uut(e,t){if(e==null)return{};var r={},n=Object.keys(e),a,i;for(i=0;i<n.length;i++)a=n[i],!(t.indexOf(a)>=0)&&(r[a]=e[a]);return r}var Kw="__additional_property",LA={boolean:{checkbox:"CheckboxWidget",radio:"RadioWidget",select:"SelectWidget",hidden:"HiddenWidget"},string:{text:"TextWidget",password:"PasswordWidget",email:"EmailWidget",hostname:"TextWidget",ipv4:"TextWidget",ipv6:"TextWidget",uri:"URLWidget","data-url":"FileWidget",radio:"RadioWidget",select:"SelectWidget",textarea:"TextareaWidget",hidden:"HiddenWidget",date:"DateWidget",datetime:"DateTimeWidget","date-time":"DateTimeWidget","alt-date":"AltDateWidget","alt-datetime":"AltDateTimeWidget",color:"ColorWidget",file:"FileWidget"},number:{text:"TextWidget",select:"SelectWidget",updown:"UpDownWidget",range:"RangeWidget",radio:"RadioWidget",hidden:"HiddenWidget"},integer:{text:"TextWidget",select:"SelectWidget",updown:"UpDownWidget",range:"RangeWidget",radio:"RadioWidget",hidden:"HiddenWidget"},array:{select:"SelectWidget",checkboxes:"CheckboxesWidget",files:"FileWidget",hidden:"HiddenWidget"}};function _Q(e,t,r){if(!e.additionalProperties)return!1;var n=ra(t),a=n.expandable;return a===!1?a:e.maxProperties!==void 0?Object.keys(r).length<e.maxProperties:!0}function mn(){return{fields:Nit,widgets:Tot,definitions:{},rootSchema:{},formContext:{}}}function vc(e){var t=e.type;return!t&&e.const?yc(e.const):!t&&e.enum?"string":!t&&(e.properties||e.additionalProperties)?"object":t instanceof Array&&t.length===2&&t.includes("null")?t.find(function(r){return r!=="null"}):t}function po(e,t){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},n=vc(e);function a(s){if(!s.MergedWidget){var l=s.defaultProps&&s.defaultProps.options||{};s.MergedWidget=function(d){var u=d.options,c=u===void 0?{}:u,h=Js(d,["options"]);return q.createElement(s,W_({options:oa({},l,c)},h))}}return s.MergedWidget}if(typeof t=="function"||E_.exports.isForwardRef(q.createElement(t))||E_.exports.isMemo(t))return a(t);if(typeof t!="string")throw new Error("Unsupported widget definition: ".concat(xa(t)));if(r.hasOwnProperty(t)){var i=r[t];return po(e,i,r)}if(!LA.hasOwnProperty(n))throw new Error('No widget for type "'.concat(n,'"'));if(LA[n].hasOwnProperty(t)){var o=r[LA[n][t]];return po(e,o,r)}throw new Error('No widget "'.concat(t,'" for type "').concat(n,'"'))}function dut(e,t){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};try{return po(e,t,r),!0}catch(n){if(n.message&&(n.message.startsWith("No widget")||n.message.startsWith("Unsupported widget")))return!1;throw n}}function Xo(e,t,r){var n=arguments.length>3&&arguments[3]!==void 0?arguments[3]:{},a=arguments.length>4&&arguments[4]!==void 0?arguments[4]:!1,i=xr(e)?e:{},o=xr(n)?n:{},s=t;if(xr(s)&&xr(i.default))s=ps(s,i.default);else if("default"in i)s=i.default;else if("$ref"in i){var l=aO(i.$ref,r);return Xo(l,s,r,o,a)}else if("dependencies"in i){var d=TQ(i,r,o);return Xo(d,s,r,o,a)}else TE(i)?s=i.items.map(function(f,g){return Xo(f,Array.isArray(t)?t[g]:void 0,r,o,a)}):"oneOf"in i?i=i.oneOf[vf(void 0,i.oneOf,r)]:"anyOf"in i&&(i=i.anyOf[vf(void 0,i.anyOf,r)]);switch(typeof s=="undefined"&&(s=i.default),vc(i)){case"object":return Object.keys(i.properties||{}).reduce(function(f,g){var v=Xo(i.properties[g],(s||{})[g],r,(o||{})[g],a);return(a||v!==void 0)&&(f[g]=v),f},{});case"array":if(Array.isArray(s)&&(s=s.map(function(f,g){return Xo(i.items[g]||i.additionalItems||{},f,r)})),Array.isArray(n)&&(s=n.map(function(f,g){return Xo(i.items,(s||{})[g],r,f)})),i.minItems){if(Zw(i,r))return s||[];var u=s?s.length:0;if(i.minItems>u){var c=s||[],h=Array.isArray(i.items)?i.additionalItems:i.items,m=Znt(new Array(i.minItems-u),Xo(h,h.defaults,r));return c.concat(m)}}}return s}function Qw(e,t){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},n=arguments.length>3&&arguments[3]!==void 0?arguments[3]:!1;if(!xr(e))throw new Error("Invalid schema: "+e);var a=Zt(e,r,t),i=Xo(a,e.default,r,t,n);return typeof t=="undefined"?i:xr(t)||Array.isArray(t)?AE(i,t):t===0||t===!1||t===""?t:t||i}function AE(e,t){if(Array.isArray(t))return Array.isArray(e)||(e=[]),t.map(function(n,a){return e[a]?AE(e[a],n):n});if(xr(t)){var r=Object.assign({},e);return Object.keys(t).reduce(function(n,a){return n[a]=AE(e?e[a]:{},t[a]),n},r)}else return t}function ra(e){return Object.keys(e).filter(function(t){return t.indexOf("ui:")===0}).reduce(function(t,r){var n=e[r];return r==="ui:widget"&&xr(n)?(console.warn("Setting options via ui:widget object is deprecated, use ui:options instead"),oa({},t,n.options||{},{widget:n.component})):r==="ui:options"&&xr(n)?oa({},t,n):oa({},t,nO({},r.substring(3),n))},{})}function bQ(e){var t=ra(e),r={props:{disabled:!1},submitText:"Submit",norender:!1};return t&&t.submitButtonOptions?Object.assign({},r,t.submitButtonOptions):r}function cut(e,t,r){var n=ra(t),a=n.label,i=a===void 0?!0:a,o=vc(e);return o==="array"&&(i=Zw(e,r)||wQ(e,t,r)||SQ(t)),o==="object"&&(i=!1),o==="boolean"&&!t["ui:widget"]&&(i=!1),t["ui:field"]&&(i=!1),i}function xr(e){return typeof File!="undefined"&&e instanceof File?!1:xa(e)==="object"&&e!==null&&!Array.isArray(e)}function ps(e,t){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!1,n=Object.assign({},e);return Object.keys(t).reduce(function(a,i){var o=e?e[i]:{},s=t[i];return e&&e.hasOwnProperty(i)&&xr(s)?a[i]=ps(o,s,r):r&&Array.isArray(o)&&Array.isArray(s)?a[i]=o.concat(s):a[i]=s,a},n)}function qd(e){if(e!==""){if(e===null)return null;if(/\.$/.test(e)||/\.0$/.test(e))return e;var t=Number(e),r=typeof t=="number"&&!Number.isNaN(t);return/\.\d*0$/.test(e)?e:r?t:e}}function hut(e,t){if(!Array.isArray(t))return e;var r=function(c){return c.reduce(function(h,m){return h[m]=!0,h},{})},n=function(c){return c.length>1?"properties '".concat(c.join("', '"),"'"):"property '".concat(c[0],"'")},a=r(e),i=t.filter(function(u){return u==="*"||a[u]}),o=r(i),s=e.filter(function(u){return!o[u]}),l=i.indexOf("*");if(l===-1){if(s.length)throw new Error("uiSchema order list does not contain ".concat(n(s)));return i}if(l!==i.lastIndexOf("*"))throw new Error("uiSchema order list contains more than one wildcard item");var d=B_(i);return d.splice.apply(d,[l,1].concat(B_(s))),d}function mut(e){return Array.isArray(e.enum)&&e.enum.length===1||e.hasOwnProperty("const")}function fut(e){if(Array.isArray(e.enum)&&e.enum.length===1)return e.enum[0];if(e.hasOwnProperty("const"))return e.const;throw new Error("schema cannot be inferred as a constant")}function H_(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=Zt(e,t),n=r.oneOf||r.anyOf;return Array.isArray(r.enum)?!0:Array.isArray(n)?n.every(function(a){return mut(a)}):!1}function Zw(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};return!e.uniqueItems||!e.items?!1:H_(e.items,t)}function wQ(e,t){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};if(t["ui:widget"]==="files")return!0;if(e.items){var n=Zt(e.items,r);return n.type==="string"&&n.format==="data-url"}return!1}function TE(e){return Array.isArray(e.items)&&e.items.length>0&&e.items.every(function(t){return xr(t)})}function SQ(e){return"widget"in ra(e)&&ra(e).widget!=="hidden"}function mB(e){return e.additionalItems===!0&&console.warn("additionalItems=true is currently not supported"),xr(e.additionalItems)}function j_(e){if(e.enum)return e.enum.map(function(r,n){var a=e.enumNames&&e.enumNames[n]||String(r);return{label:a,value:r}});var t=e.oneOf||e.anyOf;return t.map(function(r){var n=fut(r),a=r.title||String(n);return{schema:r,label:a,value:n}})}function aO(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=e;if(e.startsWith("#"))e=decodeURIComponent(e.substring(1));else throw new Error("Could not find a definition for ".concat(r,"."));var n=Hw.get(t,e);if(n===void 0)throw new Error("Could not find a definition for ".concat(r,"."));return n.hasOwnProperty("$ref")?aO(n.$ref,t):n}var yc=function(t){if(Array.isArray(t))return"array";if(typeof t=="string")return"string";if(t==null)return"null";if(typeof t=="boolean")return"boolean";if(isNaN(t)){if(xa(t)==="object")return"object"}else return"number";return"string"};function put(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};return e=oa({},e,{properties:oa({},e.properties)}),r=xr(r)?r:{},Object.keys(r).forEach(function(n){if(!e.properties.hasOwnProperty(n)){var a;e.additionalProperties.hasOwnProperty("$ref")?a=Zt({$ref:e.additionalProperties.$ref},t,r):e.additionalProperties.hasOwnProperty("type")?a=oa({},e.additionalProperties):a={type:yc(r[n])},e.properties[n]=a,e.properties[n][Kw]=!0}}),e}var gut=function(t,r,n){var a=t.if,i=t.then,o=t.else,s=Js(t,["if","then","else"]),l=SE(a,n,r)?i:o;return Zt(l?Yw(s,Zt(l,r,n)):s,r,n)};function vut(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};if(e.hasOwnProperty("$ref"))return AQ(e,t,r);if(e.hasOwnProperty("dependencies")){var n=TQ(e,t,r);return Zt(n,t,r)}else return e.hasOwnProperty("allOf")?oa({},e,{allOf:e.allOf.map(function(a){return Zt(a,t,r)})}):e}function AQ(e,t,r){var n=aO(e.$ref,t);e.$ref;var a=Js(e,["$ref"]);return Zt(oa({},n,a),t,r)}function Zt(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};if(!xr(e))return{};var n=vut(e,t,r);if(e.hasOwnProperty("if"))return gut(e,t,r);if(n.properties){var a={};Object.entries(n.properties).forEach(function(l){var d=l[0],u=l[1],c=r&&r[d],h=xr(c)?c:{},m=Zt(u,t,h);a[d]=m,u!==m&&n.properties!==a&&(n=oa({},n,{properties:a}))})}if("allOf"in e)try{n=att(oa({},n,{allOf:n.allOf}))}catch(l){console.warn(`could not merge subschemas in allOf:
88
- `+l);var i=n;i.allOf;var o=Js(i,["allOf"]);return o}var s=n.hasOwnProperty("additionalProperties")&&n.additionalProperties!==!1;return s?put(n,t,r):n}function TQ(e,t,r){var n=e.dependencies,a=n===void 0?{}:n,i=Js(e,["dependencies"]);return"oneOf"in i?i=i.oneOf[vf(r,i.oneOf,t)]:"anyOf"in i&&(i=i.anyOf[vf(r,i.anyOf,t)]),kQ(a,i,t,r)}function kQ(e,t,r,n){for(var a in e)if(n[a]!==void 0&&!(t.properties&&!(a in t.properties))){var i=e[a],o=Js(e,[a].map(yQ));return Array.isArray(i)?t=yut(t,i):xr(i)&&(t=_ut(t,r,n,a,i)),kQ(o,t,r,n)}return t}function yut(e,t){if(!t)return e;var r=Array.isArray(e.required)?Array.from(new Set([].concat(B_(e.required),B_(t)))):t;return oa({},e,{required:r})}function _ut(e,t,r,n,a){var i=Zt(a,t,r),o=i.oneOf,s=Js(i,["oneOf"]);if(e=Yw(e,s),o===void 0)return e;if(!Array.isArray(o))throw new Error("invalid: it is some ".concat(xa(o)," instead of an array"));var l=o.map(function(d){return d.hasOwnProperty("$ref")?AQ(d,t,r):d});return but(e,t,r,n,l)}function but(e,t,r,n,a){var i=a.filter(function(u){if(!u.properties)return!1;var c=u.properties[n];if(c){var h={type:"object",properties:nO({},n,c)},m=vQ(r,h),f=m.errors;return f.length===0}});if(i.length!==1)return console.warn("ignoring oneOf in dependencies because there isn't exactly one subschema that is valid"),e;var o=i[0],s=o.properties;s[n];var l=Js(s,[n].map(yQ)),d=oa({},o,{properties:l});return Yw(e,Zt(d,t,r))}function Yw(e,t){var r=Object.assign({},e);return Object.keys(t).reduce(function(n,a){var i=e?e[a]:{},o=t[a];return e&&e.hasOwnProperty(a)&&xr(o)?n[a]=Yw(i,o):e&&t&&(vc(e)==="object"||vc(t)==="object")&&a==="required"&&Array.isArray(i)&&Array.isArray(o)?n[a]=rat(i,o):n[a]=o,n},r)}function cv(e){return Object.prototype.toString.call(e)==="[object Arguments]"}function di(e,t){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:[],n=arguments.length>3&&arguments[3]!==void 0?arguments[3]:[];if(e===t)return!0;if(typeof e=="function"||typeof t=="function")return!0;if(xa(e)!=="object"||xa(t)!=="object")return!1;if(e===null||t===null)return!1;if(e instanceof Date&&t instanceof Date)return e.getTime()===t.getTime();if(e instanceof RegExp&&t instanceof RegExp)return e.source===t.source&&e.global===t.global&&e.multiline===t.multiline&&e.lastIndex===t.lastIndex&&e.ignoreCase===t.ignoreCase;if(cv(e)||cv(t)){if(!(cv(e)&&cv(t)))return!1;var a=Array.prototype.slice;return di(a.call(e),a.call(t),r,n)}else{if(e.constructor!==t.constructor)return!1;var i=Object.keys(e),o=Object.keys(t);if(i.length===0&&o.length===0)return!0;if(i.length!==o.length)return!1;for(var s=r.length;s--;)if(r[s]===e)return n[s]===t;r.push(e),n.push(t),i.sort(),o.sort();for(var l=i.length-1;l>=0;l--)if(i[l]!==o[l])return!1;for(var d,u=i.length-1;u>=0;u--)if(d=i[u],!di(e[d],t[d],r,n))return!1;return r.pop(),n.pop(),!0}}function iO(e,t,r){var n=e.props,a=e.state;return!di(n,t)||!di(a,r)}function Ul(e,t,r){var n=arguments.length>3&&arguments[3]!==void 0?arguments[3]:{},a=arguments.length>4&&arguments[4]!==void 0?arguments[4]:"root",i=arguments.length>5&&arguments[5]!==void 0?arguments[5]:"_",o={$id:t||a};if("$ref"in e||"dependencies"in e||"allOf"in e){var s=Zt(e,r,n);return Ul(s,t,r,n,a,i)}if("items"in e&&!e.items.$ref)return Ul(e.items,t,r,n,a,i);if(e.type!=="object")return o;for(var l in e.properties||{}){var d=e.properties[l],u=o.$id+i+l;o[l]=Ul(xr(d)?d:{},u,r,(n||{})[l],a,i)}return o}function Dm(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"",r=arguments.length>2?arguments[2]:void 0,n=arguments.length>3&&arguments[3]!==void 0?arguments[3]:{},a={$name:t.replace(/^\./,"")};if("$ref"in e||"dependencies"in e||"allOf"in e){var i=Zt(e,r,n);return Dm(i,t,r,n)}if(e.hasOwnProperty("additionalProperties")&&(a.__rjsf_additionalProperties=!0),e.hasOwnProperty("items")&&Array.isArray(n))n.forEach(function(s,l){a[l]=Dm(e.items,"".concat(t,".").concat(l),r,s)});else if(e.hasOwnProperty("properties"))for(var o in e.properties)a[o]=Dm(e.properties[o],"".concat(t,".").concat(o),r,(n||{})[o]);return a}function Bh(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0;if(!e)return{year:-1,month:-1,day:-1,hour:t?-1:0,minute:t?-1:0,second:t?-1:0};var r=new Date(e);if(Number.isNaN(r.getTime()))throw new Error("Unable to parse date "+e);return{year:r.getUTCFullYear(),month:r.getUTCMonth()+1,day:r.getUTCDate(),hour:t?r.getUTCHours():0,minute:t?r.getUTCMinutes():0,second:t?r.getUTCSeconds():0}}function fB(e){var t=e.year,r=e.month,n=e.day,a=e.hour,i=a===void 0?0:a,o=e.minute,s=o===void 0?0:o,l=e.second,d=l===void 0?0:l,u=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0,c=Date.UTC(t,r-1,n,i,s,d),h=new Date(c).toJSON();return u?h:h.slice(0,10)}function CQ(e){if(!e)return"";var t=new Date(e),r=Jo(t.getFullYear(),4),n=Jo(t.getMonth()+1,2),a=Jo(t.getDate(),2),i=Jo(t.getHours(),2),o=Jo(t.getMinutes(),2),s=Jo(t.getSeconds(),2),l=Jo(t.getMilliseconds(),3);return"".concat(r,"-").concat(n,"-").concat(a,"T").concat(i,":").concat(o,":").concat(s,".").concat(l)}function EQ(e){if(e)return new Date(e).toJSON()}function Jo(e,t){for(var r=String(e);r.length<t;)r="0"+r;return r}function wut(e){var t=e.split(","),r=t[0].split(";"),n=r[0].replace("data:",""),a=r.filter(function(u){return u.split("=")[0]==="name"}),i;a.length!==1?i="unknown":i=a[0].split("=")[1];for(var o=atob(t[1]),s=[],l=0;l<o.length;l++)s.push(o.charCodeAt(l));var d=new window.Blob([new Uint8Array(s)],{type:n});return{blob:d,name:i}}function oO(e){var t={};return e.multipleOf&&(t.step=e.multipleOf),(e.minimum||e.minimum===0)&&(t.min=e.minimum),(e.maximum||e.maximum===0)&&(t.max=e.maximum),t}function vf(e,t,r){if(e===void 0)return 0;for(var n=0;n<t.length;n++){var a=t[n];if(a.properties){var i={anyOf:Object.keys(a.properties).map(function(l){return{required:[l]}})},o=void 0;if(a.anyOf){var s=W_({},a);s.allOf?s.allOf=s.allOf.slice():s.allOf=[],s.allOf.push(i),o=s}else o=Object.assign({},a,i);if(delete o.required,SE(o,e,r))return n}else if(SE(a,e,r))return n}return 0}function ly(e){return e.const||e.enum&&e.enum.length===1&&e.enum[0]===!0?!0:e.anyOf&&e.anyOf.length===1?ly(e.anyOf[0]):e.oneOf&&e.oneOf.length===1?ly(e.oneOf[0]):e.allOf?e.allOf.some(ly):!1}function PA(e){for(var t=1;t<arguments.length;t++){var r=arguments[t]!=null?arguments[t]:{},n=Object.keys(r);typeof Object.getOwnPropertySymbols=="function"&&(n=n.concat(Object.getOwnPropertySymbols(r).filter(function(a){return Object.getOwnPropertyDescriptor(r,a).enumerable}))),n.forEach(function(a){ns(e,a,r[a])})}return e}function Vl(e){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?Vl=function(r){return typeof r}:Vl=function(r){return r&&typeof Symbol=="function"&&r.constructor===Symbol&&r!==Symbol.prototype?"symbol":typeof r},Vl(e)}function Sut(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function pB(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function Aut(e,t,r){return t&&pB(e.prototype,t),r&&pB(e,r),e}function Tut(e,t){return t&&(Vl(t)==="object"||typeof t=="function")?t:bl(e)}function kE(e){return kE=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},kE(e)}function bl(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function kut(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&CE(e,t)}function CE(e,t){return CE=Object.setPrototypeOf||function(n,a){return n.__proto__=a,n},CE(e,t)}function ns(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var IQ=function(e){kut(t,e);function t(r){var n;return Sut(this,t),n=Tut(this,kE(t).call(this,r)),ns(bl(n),"getUsedFormData",function(a,i){if(i.length===0&&Vl(a)!=="object")return a;var o=sQe(a,i);return Array.isArray(a)?Object.keys(o).map(function(s){return o[s]}):o}),ns(bl(n),"getFieldNames",function(a,i){var o=function s(l){var d=arguments.length>1&&arguments[1]!==void 0?arguments[1]:[],u=arguments.length>2&&arguments[2]!==void 0?arguments[2]:[""];return Object.keys(l).forEach(function(c){if(Vl(l[c])==="object"){var h=u.map(function(m){return"".concat(m,".").concat(c)});l[c].__rjsf_additionalProperties&&l[c].$name!==""?d.push(l[c].$name):s(l[c],d,h)}else c==="$name"&&l[c]!==""&&u.forEach(function(m){m=m.replace(/^\./,"");var f=cc(i,m);(Vl(f)!=="object"||wQe(f))&&d.push(m)})}),d};return o(a)}),ns(bl(n),"onChange",function(a,i){if(xr(a)||Array.isArray(a)){var o=n.getStateFromProps(n.props,a);a=o.formData}var s=!n.props.noValidate&&n.props.liveValidate,l={formData:a},d=a;if(n.props.omitExtraData===!0&&n.props.liveOmit===!0){var u=Zt(n.state.schema,n.state.schema,a),c=Dm(u,"",n.state.schema,a),h=n.getFieldNames(c,a);d=n.getUsedFormData(a,h),l={formData:d}}if(s){var m=n.validate(d),f=m.errors,g=m.errorSchema,v=f,y=g;n.props.extraErrors&&(g=ps(g,n.props.extraErrors,!0),f=Cl(g)),l={formData:d,errors:f,errorSchema:g,schemaValidationErrors:v,schemaValidationErrorSchema:y}}else if(!n.props.noValidate&&i){var b=n.props.extraErrors?ps(i,n.props.extraErrors,!0):i;l={formData:d,errorSchema:b,errors:Cl(b)}}n.setState(l,function(){return n.props.onChange&&n.props.onChange(n.state)})}),ns(bl(n),"onBlur",function(){if(n.props.onBlur){var a;(a=n.props).onBlur.apply(a,arguments)}}),ns(bl(n),"onFocus",function(){if(n.props.onFocus){var a;(a=n.props).onFocus.apply(a,arguments)}}),ns(bl(n),"onSubmit",function(a){if(a.preventDefault(),a.target===a.currentTarget){a.persist();var i=n.state.formData;if(n.props.omitExtraData===!0){var o=Zt(n.state.schema,n.state.schema,i),s=Dm(o,"",n.state.schema,i),l=n.getFieldNames(s,i);i=n.getUsedFormData(i,l)}if(!n.props.noValidate){var d=n.validate(i),u=d.errors,c=d.errorSchema,h=u,m=c;if(Object.keys(u).length>0){n.props.extraErrors&&(c=ps(c,n.props.extraErrors,!0),u=Cl(c)),n.setState({errors:u,errorSchema:c,schemaValidationErrors:h,schemaValidationErrorSchema:m},function(){n.props.onError?n.props.onError(u):console.error("Form validation failed",u)});return}}var f,g;n.props.extraErrors?(f=n.props.extraErrors,g=Cl(f)):(f={},g=[]),n.setState({formData:i,errors:g,errorSchema:f,schemaValidationErrors:[],schemaValidationErrorSchema:{}},function(){n.props.onSubmit&&n.props.onSubmit(PA({},n.state,{formData:i,status:"submitted"}),a)})}}),n.state=n.getStateFromProps(r,r.formData),n.props.onChange&&!di(n.state.formData,n.props.formData)&&n.props.onChange(n.state),n.formElement=null,n}return Aut(t,[{key:"UNSAFE_componentWillReceiveProps",value:function(n){var a=this.getStateFromProps(n,n.formData);!di(a.formData,n.formData)&&!di(a.formData,this.state.formData)&&this.props.onChange&&this.props.onChange(a),this.setState(a)}},{key:"getStateFromProps",value:function(n,a){var i=this.state||{},o="schema"in n?n.schema:this.props.schema,s="uiSchema"in n?n.uiSchema:this.props.uiSchema,l=typeof a!="undefined",d="liveValidate"in n?n.liveValidate:this.props.liveValidate,u=l&&!n.noValidate&&d,c=o,h=Qw(o,a,c),m=Zt(o,c,h),f=n.customFormats,g=n.additionalMetaSchemas,v=function(){return n.noValidate?{errors:[],errorSchema:{}}:n.liveValidate?{errors:i.errors||[],errorSchema:i.errorSchema||{}}:{errors:i.schemaValidationErrors||[],errorSchema:i.schemaValidationErrorSchema||{}}},y,b,S,w;if(u){var _=this.validate(h,o,g,f);y=_.errors,b=_.errorSchema,S=y,w=b}else{var A=v();y=A.errors,b=A.errorSchema,S=i.schemaValidationErrors,w=i.schemaValidationErrorSchema}n.extraErrors&&(b=ps(b,n.extraErrors,!0),y=Cl(b));var I=Ul(m,s["ui:rootFieldId"],c,h,n.idPrefix,n.idSeparator),k={schema:o,uiSchema:s,idSchema:I,formData:h,edit:l,errors:y,errorSchema:b,additionalMetaSchemas:g};return S&&(k.schemaValidationErrors=S,k.schemaValidationErrorSchema=w),k}},{key:"shouldComponentUpdate",value:function(n,a){return iO(this,n,a)}},{key:"validate",value:function(n){var a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:this.props.schema,i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:this.props.additionalMetaSchemas,o=arguments.length>3&&arguments[3]!==void 0?arguments[3]:this.props.customFormats,s=this.props,l=s.validate,d=s.transformErrors,u=this.getRegistry(),c=u.rootSchema,h=Zt(a,c,n);return vQ(n,h,l,d,i,o)}},{key:"renderErrors",value:function(){var n=this.state,a=n.errors,i=n.errorSchema,o=n.schema,s=n.uiSchema,l=this.props,d=l.ErrorList,u=l.showErrorList,c=l.formContext;return a.length&&u!=!1?x(d,{errors:a,errorSchema:i,schema:o,uiSchema:s,formContext:c}):null}},{key:"getRegistry",value:function(){var n=mn(),a=n.fields,i=n.widgets;return{fields:PA({},a,this.props.fields),widgets:PA({},i,this.props.widgets),ArrayFieldTemplate:this.props.ArrayFieldTemplate,ObjectFieldTemplate:this.props.ObjectFieldTemplate,FieldTemplate:this.props.FieldTemplate,definitions:this.props.schema.definitions||{},rootSchema:this.props.schema,formContext:this.props.formContext||{}}}},{key:"submit",value:function(){this.formElement&&this.formElement.dispatchEvent(new CustomEvent("submit",{cancelable:!0}))}},{key:"render",value:function(){var n=this,a=this.props,i=a.children,o=a.id,s=a.idPrefix,l=a.idSeparator,d=a.className,u=a.tagName,c=a.name,h=a.method,m=a.target,f=a.action,g=a.autocomplete,v=a.autoComplete,y=a.enctype,b=a.acceptcharset,S=a.noHtml5Validate,w=a.disabled,_=a.readonly,A=a.formContext,I=a._internalFormWrapper,k=this.state,C=k.schema,T=k.uiSchema,O=k.formData,D=k.errorSchema,M=k.idSchema,E=this.getRegistry(),L=E.fields.SchemaField,P=I?u:void 0,j=I||u||"form",H=E.widgets.SubmitButton;g&&console.warn("Using autocomplete property of Form is deprecated, use autoComplete instead.");var $=v||g;return q.createElement(j,{className:d||"rjsf",id:o,name:c,method:h,target:m,action:f,autoComplete:$,encType:y,acceptCharset:b,noValidate:S,onSubmit:this.onSubmit,as:P,ref:function(z){n.formElement=z}},this.renderErrors(),q.createElement(L,{schema:C,uiSchema:T,errorSchema:D,idSchema:M,idPrefix:s,idSeparator:l,formContext:A,formData:O,onChange:this.onChange,onBlur:this.onBlur,onFocus:this.onFocus,registry:E,disabled:w,readonly:_}),i||x(H,{uiSchema:T}))}}]),t}(le.exports.Component);ns(IQ,"defaultProps",{uiSchema:{},noValidate:!1,liveValidate:!1,disabled:!1,readonly:!1,noHtml5Validate:!1,ErrorList:SQe,omitExtraData:!1});function gB(e){for(var t=1;t<arguments.length;t++){var r=arguments[t]!=null?arguments[t]:{},n=Object.keys(r);typeof Object.getOwnPropertySymbols=="function"&&(n=n.concat(Object.getOwnPropertySymbols(r).filter(function(a){return Object.getOwnPropertyDescriptor(r,a).enumerable}))),n.forEach(function(a){Cut(e,a,r[a])})}return e}function Cut(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function Eut(e,t){if(e==null)return{};var r=Iut(e,t),n,a;if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(a=0;a<i.length;a++)n=i[a],!(t.indexOf(n)>=0)&&(!Object.prototype.propertyIsEnumerable.call(e,n)||(r[n]=e[n]))}return r}function Iut(e,t){if(e==null)return{};var r={},n=Object.keys(e),a,i;for(i=0;i<n.length;i++)a=n[i],!(t.indexOf(a)>=0)&&(r[a]=e[a]);return r}function Xw(e){return le.exports.forwardRef(function(t,r){var n=t.fields,a=t.widgets,i=Eut(t,["fields","widgets"]);return n=gB({},e.fields,n),a=gB({},e.widgets,a),x(IQ,He(Se(Se({},e),i),{fields:n,widgets:a,ref:r}))})}Xw.propTypes={widgets:At.object,fields:At.object};const Dut=["xxl","xl","lg","md","sm","xs"],DQ=le.exports.createContext({prefixes:{},breakpoints:Dut});function Rr(e,t){const{prefixes:r}=le.exports.useContext(DQ);return e||r[t]||t}function xQ(){const{breakpoints:e}=le.exports.useContext(DQ);return e}const nu=le.exports.forwardRef((i,a)=>{var o=i,{bsPrefix:e,className:t,as:r="div"}=o,n=Mt(o,["bsPrefix","className","as"]);const s=Rr(e,"row"),l=xQ(),d=`${s}-cols`,u=[];return l.forEach(c=>{const h=n[c];delete n[c];let m;h!=null&&typeof h=="object"?{cols:m}=h:m=h;const f=c!=="xs"?`-${c}`:"";m!=null&&u.push(`${d}${f}-${m}`)}),x(r,He(Se({ref:a},n),{className:et(t,s,...u)}))});nu.displayName="Row";function xut(a){var i=a,{as:e,bsPrefix:t,className:r}=i,n=Mt(i,["as","bsPrefix","className"]);t=Rr(t,"col");const o=xQ(),s=[],l=[];return o.forEach(d=>{const u=n[d];delete n[d];let c,h,m;typeof u=="object"&&u!=null?{span:c,offset:h,order:m}=u:c=u;const f=d!=="xs"?`-${d}`:"";c&&s.push(c===!0?`${t}${f}`:`${t}${f}-${c}`),m!=null&&l.push(`order${f}-${m}`),h!=null&&l.push(`offset${f}-${h}`)}),[He(Se({},n),{className:et(r,...s,...l)}),{as:e,bsPrefix:t,spans:s}]}const Oa=le.exports.forwardRef((e,t)=>{const[s,...l]=xut(e),d=s,{className:r}=d,n=Mt(d,["className"]),[{as:a="div",bsPrefix:i,spans:o}]=l;return x(a,He(Se({},n),{ref:t,className:et(r,!o.length&&i)}))});Oa.displayName="Col";const Out={fluid:!1},yf=le.exports.forwardRef((o,i)=>{var s=o,{bsPrefix:e,fluid:t,as:r="div",className:n}=s,a=Mt(s,["bsPrefix","fluid","as","className"]);const l=Rr(e,"container"),d=typeof t=="string"?`-${t}`:"-fluid";return x(r,He(Se({ref:i},a),{className:et(n,t?`${l}${d}`:l)}))});yf.displayName="Container";yf.defaultProps=Out;const Mut=["as","disabled"];function Rut(e,t){if(e==null)return{};var r={},n=Object.keys(e),a,i;for(i=0;i<n.length;i++)a=n[i],!(t.indexOf(a)>=0)&&(r[a]=e[a]);return r}function Lut(e){return!e||e.trim()==="#"}function OQ({tagName:e,disabled:t,href:r,target:n,rel:a,onClick:i,tabIndex:o=0,type:s}){e||(r!=null||n!=null||a!=null?e="a":e="button");const l={tagName:e};if(e==="button")return[{type:s||"button",disabled:t},l];const d=c=>{if((t||e==="a"&&Lut(r))&&c.preventDefault(),t){c.stopPropagation();return}i==null||i(c)},u=c=>{c.key===" "&&(c.preventDefault(),d(c))};return e==="a"&&(r||(r="#"),t&&(r=void 0)),[{role:"button",disabled:void 0,tabIndex:t?void 0:o,href:r,target:e==="a"?n:void 0,"aria-disabled":t||void 0,rel:e==="a"?a:void 0,onClick:d,onKeyDown:u},l]}const MQ=le.exports.forwardRef((e,t)=>{let{as:r,disabled:n}=e,a=Rut(e,Mut);const[i,{tagName:o}]=OQ(Object.assign({tagName:r,disabled:n},a));return x(o,Object.assign({},a,i,{ref:t}))});MQ.displayName="Button";const Put={variant:"primary",active:!1,disabled:!1},Op=le.exports.forwardRef((l,s)=>{var d=l,{as:e,bsPrefix:t,variant:r,size:n,active:a,className:i}=d,o=Mt(d,["as","bsPrefix","variant","size","active","className"]);const u=Rr(t,"btn"),[c,{tagName:h}]=OQ(Se({tagName:e},o));return x(h,He(Se(Se({},c),o),{ref:s,className:et(i,u,a&&"active",r&&`${u}-${r}`,n&&`${u}-${n}`,o.href&&o.disabled&&"disabled")}))});Op.displayName="Button";Op.defaultProps=Put;var RQ={color:void 0,size:void 0,className:void 0,style:void 0,attr:void 0},vB=q.createContext&&q.createContext(RQ),Is=globalThis&&globalThis.__assign||function(){return Is=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var a in t)Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a])}return e},Is.apply(this,arguments)},$ut=globalThis&&globalThis.__rest||function(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(e!=null&&typeof Object.getOwnPropertySymbols=="function")for(var a=0,n=Object.getOwnPropertySymbols(e);a<n.length;a++)t.indexOf(n[a])<0&&Object.prototype.propertyIsEnumerable.call(e,n[a])&&(r[n[a]]=e[n[a]]);return r};function LQ(e){return e&&e.map(function(t,r){return q.createElement(t.tag,Is({key:r},t.attr),LQ(t.child))})}function Mp(e){return function(t){return q.createElement(zut,Is({attr:Is({},e.attr)},t),LQ(e.child))}}function zut(e){var t=function(r){var n=e.attr,a=e.size,i=e.title,o=$ut(e,["attr","size","title"]),s=a||r.size||"1em",l;return r.className&&(l=r.className),e.className&&(l=(l?l+" ":"")+e.className),q.createElement("svg",Is({stroke:"currentColor",fill:"currentColor",strokeWidth:"0"},r.attr,n,o,{className:l,style:Is(Is({color:e.color||r.color},r.style),e.style),height:s,width:s,xmlns:"http://www.w3.org/2000/svg"}),i&&q.createElement("title",null,i),e.children)};return vB!==void 0?q.createElement(vB.Consumer,null,function(r){return t(r)}):t(RQ)}function Nut(e){return Mp({tag:"svg",attr:{fill:"currentColor",viewBox:"0 0 16 16"},child:[{tag:"path",attr:{d:"M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z"}}]})(e)}function Fut(e){return Mp({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M368.5 240h-225c-8.8 0-16 7.2-16 16 0 4.4 1.8 8.4 4.7 11.3 2.9 2.9 6.9 4.7 11.3 4.7h225c8.8 0 16-7.2 16-16s-7.2-16-16-16z"}}]})(e)}function But(e){return Mp({tag:"svg",attr:{viewBox:"0 0 24 24"},child:[{tag:"path",attr:{fill:"none",stroke:"#000",strokeWidth:"2",d:"M12,22 L12,2 M2,12 L22,12"}}]})(e)}function Wut(e){return Mp({tag:"svg",attr:{viewBox:"0 0 1024 1024"},child:[{tag:"path",attr:{d:"M862 465.3h-81c-4.6 0-9 2-12.1 5.5L550 723.1V160c0-4.4-3.6-8-8-8h-60c-4.4 0-8 3.6-8 8v563.1L255.1 470.8c-3-3.5-7.4-5.5-12.1-5.5h-81c-6.8 0-10.5 8.1-6 13.2L487.9 861a31.96 31.96 0 0 0 48.3 0L868 478.5c4.5-5.2.8-13.2-6-13.2z"}}]})(e)}function Hut(e){return Mp({tag:"svg",attr:{viewBox:"0 0 1024 1024"},child:[{tag:"path",attr:{d:"M868 545.5L536.1 163a31.96 31.96 0 0 0-48.3 0L156 545.5a7.97 7.97 0 0 0 6 13.2h81c4.6 0 9-2 12.1-5.5L474 300.9V864c0 4.4 3.6 8 8 8h60c4.4 0 8-3.6 8-8V300.9l218.9 252.3c3 3.5 7.4 5.5 12.1 5.5h81c6.8 0 10.5-8 6-13.2z"}}]})(e)}var jut=/-(.)/g;function Uut(e){return e.replace(jut,function(t,r){return r.toUpperCase()})}const Vut=e=>e[0].toUpperCase()+Uut(e).slice(1);function $o(e,{displayName:t=Vut(e),Component:r,defaultProps:n}={}){const a=le.exports.forwardRef((u,d)=>{var c=u,{className:i,bsPrefix:o,as:s=r||"div"}=c,l=Mt(c,["className","bsPrefix","as"]);const h=Rr(o,e);return x(s,Se({ref:d,className:et(i,h)},l))});return a.defaultProps=n,a.displayName=t,a}var PQ=e=>le.exports.forwardRef((t,r)=>x("div",He(Se({},t),{ref:r,className:et(t.className,e)})));const $Q=le.exports.forwardRef((o,i)=>{var s=o,{bsPrefix:e,className:t,variant:r,as:n="img"}=s,a=Mt(s,["bsPrefix","className","variant","as"]);const l=Rr(e,"card-img");return x(n,Se({ref:i,className:et(r?`${l}-${r}`:l,t)},a))});$Q.displayName="CardImg";const zQ=le.exports.createContext(null);zQ.displayName="CardHeaderContext";const NQ=le.exports.forwardRef((i,a)=>{var o=i,{bsPrefix:e,className:t,as:r="div"}=o,n=Mt(o,["bsPrefix","className","as"]);const s=Rr(e,"card-header"),l=le.exports.useMemo(()=>({cardHeaderBsPrefix:s}),[s]);return x(zQ.Provider,{value:l,children:x(r,He(Se({ref:a},n),{className:et(t,s)}))})});NQ.displayName="CardHeader";const Gut=PQ("h5"),qut=PQ("h6"),FQ=$o("card-body"),Kut=$o("card-title",{Component:Gut}),Qut=$o("card-subtitle",{Component:qut}),Zut=$o("card-link",{Component:"a"}),Yut=$o("card-text",{Component:"p"}),Xut=$o("card-footer"),Jut=$o("card-img-overlay"),edt={body:!1},sO=le.exports.forwardRef((u,d)=>{var c=u,{bsPrefix:e,className:t,bg:r,text:n,border:a,body:i,children:o,as:s="div"}=c,l=Mt(c,["bsPrefix","className","bg","text","border","body","children","as"]);const h=Rr(e,"card");return x(s,He(Se({ref:d},l),{className:et(t,h,r&&`bg-${r}`,n&&`text-${n}`,a&&`border-${a}`),children:i?x(FQ,{children:o}):o}))});sO.displayName="Card";sO.defaultProps=edt;var $A=Object.assign(sO,{Img:$Q,Title:Kut,Subtitle:Qut,Body:FQ,Link:Zut,Text:Yut,Header:NQ,Footer:Xut,ImgOverlay:Jut});function yB(e){return"default"+e.charAt(0).toUpperCase()+e.substr(1)}function tdt(e){var t=rdt(e,"string");return typeof t=="symbol"?t:String(t)}function rdt(e,t){if(typeof e!="object"||e===null)return e;var r=e[Symbol.toPrimitive];if(r!==void 0){var n=r.call(e,t||"default");if(typeof n!="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(e)}function ndt(e,t,r){var n=le.exports.useRef(e!==void 0),a=le.exports.useState(t),i=a[0],o=a[1],s=e!==void 0,l=n.current;return n.current=s,!s&&l&&i!==t&&o(t),[s?e:i,le.exports.useCallback(function(d){for(var u=arguments.length,c=new Array(u>1?u-1:0),h=1;h<u;h++)c[h-1]=arguments[h];r&&r.apply(void 0,[d].concat(c)),o(d)},[r])]}function adt(e,t){return Object.keys(t).reduce(function(r,n){var a,i=r,o=i[yB(n)],s=i[n],l=fi(i,[yB(n),n].map(tdt)),d=t[n],u=ndt(s,o,e[d]),c=u[0],h=u[1];return Mr({},l,(a={},a[n]=c,a[d]=h,a))},e)}var idt=Function.prototype.bind.call(Function.prototype.call,[].slice);function odt(e,t){return idt(e.querySelectorAll(t))}function sdt(){var e=le.exports.useReducer(function(r){return!r},!1),t=e[1];return t}var _B=function(t){return!t||typeof t=="function"?t:function(r){t.current=r}};function ldt(e,t){var r=_B(e),n=_B(t);return function(a){r&&r(a),n&&n(a)}}function udt(e,t){return le.exports.useMemo(function(){return ldt(e,t)},[e,t])}const lO=le.exports.createContext(null);lO.displayName="NavContext";const EE=le.exports.createContext(null),uO=(e,t=null)=>e!=null?String(e):t||null,BQ=le.exports.createContext(null),ddt="data-rr-ui-",cdt="rrUi";function dO(e){return`${ddt}${e}`}function hdt(e){return`${cdt}${e}`}function mdt(e){var t=le.exports.useRef(e);return le.exports.useEffect(function(){t.current=e},[e]),t}function WQ(e){var t=mdt(e);return le.exports.useCallback(function(){return t.current&&t.current.apply(t,arguments)},[t])}const fdt=["as","active","eventKey"];function pdt(e,t){if(e==null)return{};var r={},n=Object.keys(e),a,i;for(i=0;i<n.length;i++)a=n[i],!(t.indexOf(a)>=0)&&(r[a]=e[a]);return r}function HQ({key:e,onClick:t,active:r,id:n,role:a,disabled:i}){const o=le.exports.useContext(EE),s=le.exports.useContext(lO),l=le.exports.useContext(BQ);let d=r;const u={role:a};if(s){!a&&s.role==="tablist"&&(u.role="tab");const c=s.getControllerId(e!=null?e:null),h=s.getControlledId(e!=null?e:null);u[dO("event-key")]=e,u.id=c||n,d=r==null&&e!=null?s.activeKey===e:r,(d||!(l!=null&&l.unmountOnExit)&&!(l!=null&&l.mountOnEnter))&&(u["aria-controls"]=h)}return u.role==="tab"&&(i&&(u.tabIndex=-1,u["aria-disabled"]=!0),d?u["aria-selected"]=d:u.tabIndex=-1),u.onClick=WQ(c=>{i||(t==null||t(c),e!=null&&o&&!c.isPropagationStopped()&&o(e,c))}),[u,{isActive:d}]}const jQ=le.exports.forwardRef((e,t)=>{let{as:r=MQ,active:n,eventKey:a}=e,i=pdt(e,fdt);const[o,s]=HQ(Object.assign({key:uO(a,i.href),active:n},i));return o[dO("active")]=s.isActive,x(r,Object.assign({},i,o,{ref:t}))});jQ.displayName="NavItem";const gdt=["as","onSelect","activeKey","role","onKeyDown"];function vdt(e,t){if(e==null)return{};var r={},n=Object.keys(e),a,i;for(i=0;i<n.length;i++)a=n[i],!(t.indexOf(a)>=0)&&(r[a]=e[a]);return r}const bB=()=>{},wB=dO("event-key"),UQ=le.exports.forwardRef((e,t)=>{let{as:r="div",onSelect:n,activeKey:a,role:i,onKeyDown:o}=e,s=vdt(e,gdt);const l=sdt(),d=le.exports.useRef(!1),u=le.exports.useContext(EE),c=le.exports.useContext(BQ);let h,m;c&&(i=i||"tablist",a=c.activeKey,h=c.getControlledId,m=c.getControllerId);const f=le.exports.useRef(null),g=S=>{const w=f.current;if(!w)return null;const _=odt(w,`[${wB}]:not([aria-disabled=true])`),A=w.querySelector("[aria-selected=true]");if(!A||A!==document.activeElement)return null;const I=_.indexOf(A);if(I===-1)return null;let k=I+S;return k>=_.length&&(k=0),k<0&&(k=_.length-1),_[k]},v=(S,w)=>{S!=null&&(n==null||n(S,w),u==null||u(S,w))},y=S=>{if(o==null||o(S),!c)return;let w;switch(S.key){case"ArrowLeft":case"ArrowUp":w=g(-1);break;case"ArrowRight":case"ArrowDown":w=g(1);break;default:return}!w||(S.preventDefault(),v(w.dataset[hdt("EventKey")]||null,S),d.current=!0,l())};le.exports.useEffect(()=>{if(f.current&&d.current){const S=f.current.querySelector(`[${wB}][aria-selected=true]`);S==null||S.focus()}d.current=!1});const b=udt(t,f);return x(EE.Provider,{value:v,children:x(lO.Provider,{value:{role:i,activeKey:uO(a),getControlledId:h||bB,getControllerId:m||bB},children:x(r,Object.assign({},s,{onKeyDown:y,ref:b,role:i}))})})});UQ.displayName="Nav";var ydt=Object.assign(UQ,{Item:jQ});const VQ=le.exports.forwardRef((u,d)=>{var c=u,{bsPrefix:e,active:t,disabled:r,eventKey:n,className:a,variant:i,action:o,as:s}=c,l=Mt(c,["bsPrefix","active","disabled","eventKey","className","variant","action","as"]);e=Rr(e,"list-group-item");const[h,m]=HQ(Se({key:uO(n,l.href),active:t},l)),f=WQ(v=>{if(r){v.preventDefault(),v.stopPropagation();return}h.onClick(v)});r&&l.tabIndex===void 0&&(l.tabIndex=-1,l["aria-disabled"]=!0);const g=s||(o?l.href?"a":"button":"div");return x(g,He(Se(Se({ref:d},l),h),{onClick:f,className:et(a,e,m.isActive&&"active",r&&"disabled",i&&`${e}-${i}`,o&&`${e}-action`)}))});VQ.displayName="ListGroupItem";const GQ=le.exports.forwardRef((e,t)=>{const c=adt(e,{activeKey:"onSelect"}),{className:r,bsPrefix:n,variant:a,horizontal:i,numbered:o,as:s="div"}=c,l=Mt(c,["className","bsPrefix","variant","horizontal","numbered","as"]),d=Rr(n,"list-group");let u;return i&&(u=i===!0?"horizontal":`horizontal-${i}`),x(ydt,He(Se({ref:t},l),{as:s,className:et(r,d,a&&`${d}-${a}`,u&&`${d}-${u}`,o&&`${d}-numbered`)}))});GQ.displayName="ListGroup";var U_=Object.assign(GQ,{Item:VQ});const _dt={type:At.string,tooltip:At.bool,as:At.elementType},Jw=le.exports.forwardRef((o,i)=>{var s=o,{as:e="div",className:t,type:r="valid",tooltip:n=!1}=s,a=Mt(s,["as","className","type","tooltip"]);return x(e,He(Se({},a),{ref:i,className:et(t,`${r}-${n?"tooltip":"feedback"}`)}))});Jw.displayName="Feedback";Jw.propTypes=_dt;const Ao=le.exports.createContext({}),Rp=le.exports.forwardRef((d,l)=>{var u=d,{id:e,bsPrefix:t,className:r,type:n="checkbox",isValid:a=!1,isInvalid:i=!1,as:o="input"}=u,s=Mt(u,["id","bsPrefix","className","type","isValid","isInvalid","as"]);const{controlId:c}=le.exports.useContext(Ao);return t=Rr(t,"form-check-input"),x(o,He(Se({},s),{ref:l,type:n,id:e||c,className:et(r,t,a&&"is-valid",i&&"is-invalid")}))});Rp.displayName="FormCheckInput";const V_=le.exports.forwardRef((i,a)=>{var o=i,{bsPrefix:e,className:t,htmlFor:r}=o,n=Mt(o,["bsPrefix","className","htmlFor"]);const{controlId:s}=le.exports.useContext(Ao);return e=Rr(e,"form-check-label"),x("label",He(Se({},n),{ref:a,htmlFor:r||s,className:et(t,e)}))});V_.displayName="FormCheckLabel";function bdt(e,t){return le.exports.Children.toArray(e).some(r=>le.exports.isValidElement(r)&&r.type===t)}const qQ=le.exports.forwardRef((S,b)=>{var w=S,{id:e,bsPrefix:t,bsSwitchPrefix:r,inline:n=!1,disabled:a=!1,isValid:i=!1,isInvalid:o=!1,feedbackTooltip:s=!1,feedback:l,feedbackType:d,className:u,style:c,title:h="",type:m="checkbox",label:f,children:g,as:v="input"}=w,y=Mt(w,["id","bsPrefix","bsSwitchPrefix","inline","disabled","isValid","isInvalid","feedbackTooltip","feedback","feedbackType","className","style","title","type","label","children","as"]);t=Rr(t,"form-check"),r=Rr(r,"form-switch");const{controlId:_}=le.exports.useContext(Ao),A=le.exports.useMemo(()=>({controlId:e||_}),[_,e]),I=!g&&f!=null&&f!==!1||bdt(g,V_),k=x(Rp,He(Se({},y),{type:m==="switch"?"checkbox":m,ref:b,isValid:i,isInvalid:o,disabled:a,as:v}));return x(Ao.Provider,{value:A,children:x("div",{style:c,className:et(u,I&&t,n&&`${t}-inline`,m==="switch"&&r),children:g||de(St,{children:[k,I&&x(V_,{title:h,children:f}),l&&x(Jw,{type:d,tooltip:s,children:l})]})})})});qQ.displayName="FormCheck";var G_=Object.assign(qQ,{Input:Rp,Label:V_});const KQ=le.exports.forwardRef((m,h)=>{var f=m,{bsPrefix:e,type:t,size:r,htmlSize:n,id:a,className:i,isValid:o=!1,isInvalid:s=!1,plaintext:l,readOnly:d,as:u="input"}=f,c=Mt(f,["bsPrefix","type","size","htmlSize","id","className","isValid","isInvalid","plaintext","readOnly","as"]);const{controlId:g}=le.exports.useContext(Ao);e=Rr(e,"form-control");let v;return l?v={[`${e}-plaintext`]:!0}:v={[e]:!0,[`${e}-${r}`]:r},x(u,He(Se({},c),{type:t,size:n,ref:h,readOnly:d,id:a||g,className:et(i,v,o&&"is-valid",s&&"is-invalid",t==="color"&&`${e}-color`)}))});KQ.displayName="FormControl";var QQ=Object.assign(KQ,{Feedback:Jw}),wdt=$o("form-floating");const cO=le.exports.forwardRef((a,n)=>{var i=a,{controlId:e,as:t="div"}=i,r=Mt(i,["controlId","as"]);const o=le.exports.useMemo(()=>({controlId:e}),[e]);return x(Ao.Provider,{value:o,children:x(t,He(Se({},r),{ref:n}))})});cO.displayName="FormGroup";const Sdt={column:!1,visuallyHidden:!1},hO=le.exports.forwardRef((l,s)=>{var d=l,{as:e="label",bsPrefix:t,column:r,visuallyHidden:n,className:a,htmlFor:i}=d,o=Mt(d,["as","bsPrefix","column","visuallyHidden","className","htmlFor"]);const{controlId:u}=le.exports.useContext(Ao);t=Rr(t,"form-label");let c="col-form-label";typeof r=="string"&&(c=`${c} ${c}-${r}`);const h=et(a,t,n&&"visually-hidden",r&&c);return i=i||u,r?x(Oa,Se({ref:s,as:"label",className:h,htmlFor:i},o)):x(e,Se({ref:s,className:h,htmlFor:i},o))});hO.displayName="FormLabel";hO.defaultProps=Sdt;const ZQ=le.exports.forwardRef((i,a)=>{var o=i,{bsPrefix:e,className:t,id:r}=o,n=Mt(o,["bsPrefix","className","id"]);const{controlId:s}=le.exports.useContext(Ao);return e=Rr(e,"form-range"),x("input",He(Se({},n),{type:"range",ref:a,className:et(t,e),id:r||s}))});ZQ.displayName="FormRange";const YQ=le.exports.forwardRef((d,l)=>{var u=d,{bsPrefix:e,size:t,htmlSize:r,className:n,isValid:a=!1,isInvalid:i=!1,id:o}=u,s=Mt(u,["bsPrefix","size","htmlSize","className","isValid","isInvalid","id"]);const{controlId:c}=le.exports.useContext(Ao);return e=Rr(e,"form-select"),x("select",He(Se({},s),{size:r,ref:l,className:et(n,e,t&&`${e}-${t}`,a&&"is-valid",i&&"is-invalid"),id:o||c}))});YQ.displayName="FormSelect";const XQ=le.exports.forwardRef((o,i)=>{var s=o,{bsPrefix:e,className:t,as:r="small",muted:n}=s,a=Mt(s,["bsPrefix","className","as","muted"]);return e=Rr(e,"form-text"),x(r,He(Se({},a),{ref:i,className:et(t,e,n&&"text-muted")}))});XQ.displayName="FormText";const JQ=le.exports.forwardRef((e,t)=>x(G_,He(Se({},e),{ref:t,type:"switch"})));JQ.displayName="Switch";var Adt=Object.assign(JQ,{Input:G_.Input,Label:G_.Label});const eZ=le.exports.forwardRef((s,o)=>{var l=s,{bsPrefix:e,className:t,children:r,controlId:n,label:a}=l,i=Mt(l,["bsPrefix","className","children","controlId","label"]);return e=Rr(e,"form-floating"),de(cO,He(Se({ref:o,className:et(t,e),controlId:n},i),{children:[r,x("label",{htmlFor:n,children:a})]}))});eZ.displayName="FloatingLabel";const Tdt={_ref:At.any,validated:At.bool,as:At.elementType},mO=le.exports.forwardRef((i,a)=>{var o=i,{className:e,validated:t,as:r="form"}=o,n=Mt(o,["className","validated","as"]);return x(r,He(Se({},n),{ref:a,className:et(e,t&&"was-validated")}))});mO.displayName="Form";mO.propTypes=Tdt;var Qt=Object.assign(mO,{Group:cO,Control:QQ,Floating:wdt,Check:G_,Switch:Adt,Label:hO,Text:XQ,Range:ZQ,Select:YQ,FloatingLabel:eZ});const tZ=le.exports.createContext(null);tZ.displayName="InputGroupContext";const fO=$o("input-group-text",{Component:"span"}),kdt=e=>x(fO,{children:x(Rp,Se({type:"checkbox"},e))}),Cdt=e=>x(fO,{children:x(Rp,Se({type:"radio"},e))}),rZ=le.exports.forwardRef((s,o)=>{var l=s,{bsPrefix:e,size:t,hasValidation:r,className:n,as:a="div"}=l,i=Mt(l,["bsPrefix","size","hasValidation","className","as"]);e=Rr(e,"input-group");const d=le.exports.useMemo(()=>({}),[]);return x(tZ.Provider,{value:d,children:x(a,He(Se({ref:o},i),{className:et(n,e,t&&`${e}-${t}`,r&&"has-validation")}))})});rZ.displayName="InputGroup";var Edt=Object.assign(rZ,{Text:fO,Radio:Cdt,Checkbox:kdt});function _f(){return _f=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},_f.apply(this,arguments)}function Idt(e,t){if(e==null)return{};var r={},n=Object.keys(e),a,i;for(i=0;i<n.length;i++)a=n[i],!(t.indexOf(a)>=0)&&(r[a]=e[a]);return r}var pO=function(t){return q.createElement(Op,Object.assign({},t,{style:{width:"100%"},className:"ml-1 "+t.className}),q.createElement(Nut,null))},Ddt=["icon","className"],xdt={remove:q.createElement(Fut,null),plus:q.createElement(But,null),"arrow-up":q.createElement(Hut,null),"arrow-down":q.createElement(Wut,null)},uy=function(t){var r=t.icon,n=Idt(t,Ddt);return q.createElement(Op,Object.assign({},n,{variant:t.variant||"light",size:"sm"}),xdt[r])},Odt=Zw,Mdt=mn,Rdt=function(t){var r=t.schema,n=t.registry,a=n===void 0?Mdt():n;return Odt(r,a.rootSchema)?q.createElement(Pdt,Object.assign({},t)):q.createElement($dt,Object.assign({},t))},nZ=function(t){var r=t.TitleField,n=t.idSchema,a=t.title,i=t.required;if(!a)return null;var o=n.$id+"__title";return q.createElement(r,{id:o,title:a,required:i})},Ldt=function(t){var r=t.DescriptionField,n=t.idSchema,a=t.description;if(!a)return null;var i=n.$id+"__description";return q.createElement(r,{id:i,description:a})},aZ=function(t){var r={flex:1,paddingLeft:6,paddingRight:6,fontWeight:"bold"};return q.createElement("div",{key:t.key},q.createElement(nu,{className:"mb-2 d-flex align-items-center"},q.createElement(Oa,{xs:"9",lg:"9"},t.children),q.createElement(Oa,{xs:"3",lg:"3",className:"py-4"},t.hasToolbar&&q.createElement("div",{className:"d-flex flex-row"},(t.hasMoveUp||t.hasMoveDown)&&q.createElement("div",{className:"m-0 p-0"},q.createElement(uy,{icon:"arrow-up",className:"array-item-move-up",tabIndex:-1,style:r,disabled:t.disabled||t.readonly||!t.hasMoveUp,onClick:t.onReorderClick(t.index,t.index-1)})),(t.hasMoveUp||t.hasMoveDown)&&q.createElement("div",{className:"m-0 p-0"},q.createElement(uy,{icon:"arrow-down",tabIndex:-1,style:r,disabled:t.disabled||t.readonly||!t.hasMoveDown,onClick:t.onReorderClick(t.index,t.index+1)})),t.hasRemove&&q.createElement("div",{className:"m-0 p-0"},q.createElement(uy,{icon:"remove",tabIndex:-1,style:r,disabled:t.disabled||t.readonly,onClick:t.onDropIndexClick(t.index)}))))))},Pdt=function(t){return q.createElement("fieldset",{className:t.className},q.createElement(nZ,{key:"array-field-title-"+t.idSchema.$id,TitleField:t.TitleField,idSchema:t.idSchema,title:t.uiSchema["ui:title"]||t.title,required:t.required}),(t.uiSchema["ui:description"]||t.schema.description)&&q.createElement("div",{className:"field-description",key:"field-description-"+t.idSchema.$id},t.uiSchema["ui:description"]||t.schema.description),q.createElement("div",{className:"row array-item-list",key:"array-item-list-"+t.idSchema.$id},t.items&&t.items.map(aZ)),t.canAdd&&q.createElement(pO,{className:"array-item-add",onClick:t.onAddClick,disabled:t.disabled||t.readonly}))},$dt=function(t){return q.createElement("div",null,q.createElement(nu,{className:"p-0 m-0"},q.createElement(Oa,{className:"p-0 m-0"},q.createElement(nZ,{key:"array-field-title-"+t.idSchema.$id,TitleField:t.TitleField,idSchema:t.idSchema,title:t.uiSchema["ui:title"]||t.title,required:t.required}),(t.uiSchema["ui:description"]||t.schema.description)&&q.createElement(Ldt,{key:"array-field-description-"+t.idSchema.$id,DescriptionField:t.DescriptionField,idSchema:t.idSchema,description:t.uiSchema["ui:description"]||t.schema.description}),q.createElement(yf,{fluid:!0,key:"array-item-list-"+t.idSchema.$id,className:"p-0 m-0"},t.items&&t.items.map(function(r){return aZ(r)}),t.canAdd&&q.createElement(yf,{className:""},q.createElement(nu,{className:"mt-2"},q.createElement(Oa,{xs:9}),q.createElement(Oa,{xs:3,className:"py-4 col-lg-3 col-3"}," ",q.createElement(pO,{className:"array-item-add",onClick:t.onAddClick,disabled:t.disabled||t.readonly}))))))))},zdt=function(t){var r=t.errors;return q.createElement($A,{border:"danger",className:"mb-4"},q.createElement($A.Header,{className:"alert-danger"},"Errors"),q.createElement($A.Body,{className:"p-0"},q.createElement(U_,null,r.map(function(n,a){return q.createElement(U_.Item,{key:a,className:"border-0"},q.createElement("span",null,n.stack))}))))},Ndt=function(t){var r=t.description;return r?q.createElement("div",null,q.createElement("div",{className:"mb-3"},r)):null},Fdt=function(t){var r=t.title,n=t.uiSchema;return q.createElement(q.Fragment,null,q.createElement("div",{className:"my-1"},q.createElement("h5",null,n&&n["ui:title"]||r),q.createElement("hr",{className:"border-0 bg-secondary",style:{height:"1px"}})))},Bdt={DescriptionField:Ndt,TitleField:Fdt},Wdt=Kw,Hdt=function(t){var r=t.children,n=t.disabled,a=t.id,i=t.label,o=t.onDropPropertyClick,s=t.onKeyChange,l=t.readonly,d=t.required,u=t.schema,c=i+" Key",h=u.hasOwnProperty(Wdt);if(!h)return r;var m=function(g){var v=g.target;return s(v.value)};return q.createElement(nu,{key:a+"-key"},q.createElement(Oa,{xs:5},q.createElement(Qt.Group,null,q.createElement(Qt.Label,null,c),q.createElement(Qt.Control,{required:d,defaultValue:i,disabled:n||l,id:a+"-key",name:a+"-key",onBlur:l?void 0:m,type:"text"}))),q.createElement(Oa,{xs:5},r),q.createElement(Oa,{xs:2,className:"py-4"},q.createElement(uy,{className:"w-100",variant:"danger",icon:"remove",tabIndex:-1,disabled:n||l,onClick:o(i)})))},jdt=function(t){var r=t.id,n=t.children,a=t.displayLabel,i=t.rawErrors,o=i===void 0?[]:i,s=t.rawHelp,l=t.rawDescription,d=t.classNames,u=t.disabled,c=t.label,h=t.onDropPropertyClick,m=t.onKeyChange,f=t.readonly,g=t.required,v=t.schema;return q.createElement(Hdt,{classNames:d,disabled:u,id:r,label:c,onDropPropertyClick:h,onKeyChange:m,readonly:f,required:g,schema:v},q.createElement(Qt.Group,null,n,a&&l&&q.createElement(Qt.Text,{className:o.length>0?"text-danger":"text-muted"},l),o.length>0&&q.createElement(U_,{as:"ul"},o.map(function(y){return q.createElement(U_.Item,{as:"li",key:y,className:"border-0 m-0 p-0"},q.createElement("small",{className:"m-0 text-danger"},y))})),s&&q.createElement(Qt.Text,{className:o.length>0?"text-danger":"text-muted",id:r},s)))},Udt=_Q,Vdt=function(t){var r=t.DescriptionField,n=t.description,a=t.TitleField,i=t.title,o=t.properties,s=t.required,l=t.uiSchema,d=t.idSchema,u=t.schema,c=t.formData,h=t.onAddClick,m=t.disabled,f=t.readonly;return q.createElement(q.Fragment,null,(l["ui:title"]||i)&&q.createElement(a,{id:d.$id+"-title",title:l["ui:title"]||i,required:s}),n&&q.createElement(r,{id:d.$id+"-description",description:n}),q.createElement(yf,{fluid:!0,className:"p-0"},o.map(function(g,v){return q.createElement(nu,{key:v,style:{marginBottom:"10px"},className:g.hidden?"d-none":void 0},q.createElement(Oa,{xs:12}," ",g.content))}),Udt(u,l,c)?q.createElement(nu,null,q.createElement(Oa,{xs:{offset:9,span:3},className:"py-4"},q.createElement(pO,{onClick:h(u),disabled:m||f,className:"object-property-expand"}))):null))},Gdt=function(t){var r=t.id,n=t.value,a=t.required,i=t.disabled,o=t.readonly,s=t.label,l=t.schema,d=t.autofocus,u=t.onChange,c=t.onBlur,h=t.onFocus,m=function(b){var S=b.target.checked;return u(S)},f=function(b){var S=b.target.checked;return c(r,S)},g=function(b){var S=b.target.checked;return h(r,S)},v=s||l.description;return q.createElement(Qt.Group,{className:"checkbox "+(i||o?"disabled":"")},q.createElement(Qt.Check,{id:r,label:v,checked:typeof n=="undefined"?!1:n,required:a,disabled:i||o,autoFocus:d,onChange:m,type:"checkbox",onBlur:f,onFocus:g}))},qdt=function(t,r,n){var a=n.indexOf(t),i=r.slice(0,a).concat(t,r.slice(a));return i.sort(function(o,s){return n.indexOf(o)>n.indexOf(s)})},Kdt=function(t,r){return r.filter(function(n){return n!==t})},Qdt=function(t){var r=t.schema,n=t.label,a=t.id,i=t.disabled,o=t.options,s=t.value,l=t.autofocus,d=t.readonly,u=t.required,c=t.onChange,h=t.onBlur,m=t.onFocus,f=o.enumOptions,g=o.enumDisabled,v=o.inline,y=function(_){return function(A){var I=A.target.checked,k=f.map(function(C){var T=C.value;return T});c(I?qdt(_.value,s,k):Kdt(_.value,s))}},b=function(_){var A=_.target.value;return h(a,A)},S=function(_){var A=_.target.value;return m(a,A)};return q.createElement(q.Fragment,null,q.createElement(Qt.Label,{htmlFor:a},n||r.title),q.createElement(Qt.Group,null,f.map(function(w,_){var A=s.indexOf(w.value)!==-1,I=g&&g.indexOf(w.value)!=-1;return v?q.createElement(Qt,{key:_},q.createElement(Qt.Check,{required:u,inline:!0,className:"bg-transparent border-0",checked:A,type:"checkbox",id:a+"_"+_,label:w.label,autoFocus:l&&_===0,onChange:y(w),onBlur:b,onFocus:S,disabled:i||I||d})):q.createElement(Qt,{key:_},q.createElement(Qt.Check,{required:u,checked:A,className:"bg-transparent border-0",type:"checkbox",id:a+"_"+_,label:w.label,autoFocus:l&&_===0,onChange:y(w),onBlur:b,onFocus:S,disabled:i||I||d}))})))},Zdt=function(t){var r=t.registry,n=r.widgets.TextWidget;return q.createElement(n,Object.assign({},t,{type:"color"}))},Ydt=function(t){var r=t.registry,n=r.widgets.TextWidget;return q.createElement(n,Object.assign({},t,{type:"date"}))},Xdt=EQ,Jdt=CQ,ect=function(t){var r=t.registry,n=r.widgets.TextWidget,a=Jdt(t.value),i=function(s){t.onChange(Xdt(s))};return q.createElement(n,Object.assign({},t,{type:"datetime-local",value:a,onChange:i}))},tct=function(t){var r=t.registry,n=r.widgets.TextWidget;return q.createElement(n,Object.assign({},t,{type:"email"}))},rct=function(t){var r=t.id,n=t.required,a=t.readonly,i=t.disabled,o=t.value,s=t.label,l=t.onFocus,d=t.onBlur,u=t.onChange,c=t.options,h=t.autofocus,m=t.schema,f=t.rawErrors,g=f===void 0?[]:f,v=function(w){var _=w.target.value;return u(_===""?c.emptyValue:_)},y=function(w){var _=w.target.value;return d(r,_)},b=function(w){var _=w.target.value;return l(r,_)};return q.createElement(Qt.Group,{className:"mb-0"},q.createElement(Qt.Label,{className:g.length>0?"text-danger":""},s||m.title,(s||m.title)&&n?"*":null),q.createElement(Qt.Control,{id:r,autoFocus:h,className:g.length>0?"is-invalid":"",required:n,disabled:i,readOnly:a,type:"password",value:o||"",onFocus:b,onBlur:y,onChange:v}))},nct=function(t){var r=t.id,n=t.schema,a=t.options,i=t.value,o=t.required,s=t.disabled,l=t.readonly,d=t.label,u=t.onChange,c=t.onBlur,h=t.onFocus,m=t.uiSchema,f=a.enumOptions,g=a.enumDisabled,v=function(_){var A=_.target.value;return u(n.type=="boolean"?A!=="false":A)},y=function(_){var A=_.target.value;return c(r,A)},b=function(_){var A=_.target.value;return h(r,A)},S=Boolean(a&&a.inline);return q.createElement(Qt.Group,{className:"mb-0"},q.createElement(Qt.Label,{className:"d-block"},m["ui:title"]||n.title||d,(d||m["ui:title"]||n.title)&&o?"*":null),f.map(function(w,_){var A=Array.isArray(g)&&g.indexOf(w.value)!==-1,I=w.value==i,k=q.createElement(Qt.Check,{inline:S,label:w.label,id:w.label,key:_,name:r,type:"radio",disabled:s||A||l,checked:I,required:o,value:w.value,onChange:v,onBlur:y,onFocus:b});return k}))},act=oO,ict=function(t){var r=t.value,n=t.readonly,a=t.disabled,i=t.onBlur,o=t.onFocus,s=t.options,l=t.schema,d=t.onChange,u=t.required,c=t.label,h=t.id,m=t.uiSchema,f=_f({value:r,label:c,id:h},act(l)),g=function(S){var w=S.target.value;return d(w===""?s.emptyValue:w)},v=function(S){var w=S.target.value;return i(h,w)},y=function(S){var w=S.target.value;return o(h,w)};return q.createElement(Qt.Group,{className:"mb-0"},q.createElement(Qt.Label,null,m["ui:title"]||l.title||c,(c||m["ui:title"]||l.title)&&u?"*":null),q.createElement(Qt.Control,Object.assign({type:"range",required:u,disabled:a,readOnly:n,onChange:g,onBlur:v,onFocus:y},f)),q.createElement("span",{className:"range-view"},r))},zA=qd,SB=yc,oct=new Set(["number","integer"]),NA=function(t,r){var n=t.type,a=t.items;if(r!==""){{if(n==="array"&&a&&oct.has(a.type))return r.map(zA);if(n==="boolean")return r==="true";if(n==="number")return zA(r)}if(t.enum){if(t.enum.every(function(i){return SB(i)==="number"}))return zA(r);if(t.enum.every(function(i){return SB(i)==="boolean"}))return r==="true"}return r}},sct=function(t){var r=t.schema,n=t.id,a=t.options,i=t.label,o=t.required,s=t.disabled,l=t.value,d=t.multiple,u=t.autofocus,c=t.onChange,h=t.onBlur,m=t.onFocus,f=t.placeholder,g=t.rawErrors,v=g===void 0?[]:g,y=a.enumOptions,b=a.enumDisabled,S=d?[]:"";function w(_,A){return A?[].slice.call(_.target.options).filter(function(I){return I.selected}).map(function(I){return I.value}):_.target.value}return q.createElement(Qt.Group,null,q.createElement(Qt.Label,{className:v.length>0?"text-danger":""},i||r.title,(i||r.title)&&o?"*":null),q.createElement(Qt.Select,{id:n,value:typeof l=="undefined"?S:l,required:o,multiple:d,disabled:s,autoFocus:u,className:v.length>0?"is-invalid":"",onBlur:h&&function(_){var A=w(_,d);h(n,NA(r,A))},onFocus:m&&function(_){var A=w(_,d);m(n,NA(r,A))},onChange:function(A){var I=w(A,d);c(NA(r,I))}},!d&&r.default===void 0&&q.createElement("option",{value:""},f),y.map(function(_,A){var I=_.value,k=_.label,C=Array.isArray(b)&&b.indexOf(I)!=-1;return q.createElement("option",{key:A,id:k,value:I,disabled:C},k)})))},lct=function(t){var r=t.id,n=t.placeholder,a=t.value,i=t.required,o=t.disabled,s=t.autofocus,l=t.label,d=t.readonly,u=t.onBlur,c=t.onFocus,h=t.onChange,m=t.options,f=t.schema,g=t.rawErrors,v=g===void 0?[]:g,y=t.uiSchema,b=function(A){var I=A.target.value;return h(I===""?m.emptyValue:I)},S=function(A){var I=A.target.value;return u(r,I)},w=function(A){var I=A.target.value;return c(r,I)};return q.createElement(q.Fragment,null,q.createElement("label",{htmlFor:r},y["ui:title"]||f.title||l,i&&q.createElement("span",{"aria-hidden":!0,className:v.length>0?"text-danger ml-1":"ml-1"},"\u2009","*")),q.createElement(Edt,null,q.createElement(QQ,{id:r,as:"textarea",placeholder:n,disabled:o,readOnly:d,value:a,required:i,autoFocus:s,rows:m.rows||5,onChange:b,onBlur:S,onFocus:w})))},uct=function(t){var r=t.id,n=t.placeholder,a=t.required,i=t.readonly,o=t.disabled,s=t.type,l=t.label,d=t.value,u=t.onChange,c=t.onBlur,h=t.onFocus,m=t.autofocus,f=t.options,g=t.schema,v=t.rawErrors,y=v===void 0?[]:v,b=t.uiSchema,S=function(k){var C=k.target.value;return u(C===""?f.emptyValue:C)},w=function(k){var C=k.target.value;return c(r,C)},_=function(k){var C=k.target.value;return h(r,C)},A=(s||g.type)==="string"?"text":""+(s||g.type);return q.createElement(Qt.Group,{className:"mb-0"},q.createElement(Qt.Label,{className:y.length>0?"text-danger":""},b["ui:title"]||g.title||l,(l||b["ui:title"]||g.title)&&a?"*":null),q.createElement(Qt.Control,{id:r,placeholder:n,autoFocus:m,required:a,disabled:o,readOnly:i,className:y.length>0?"is-invalid":"",list:g.examples?"examples_"+r:void 0,type:A,value:d||d===0?d:"",onChange:S,onBlur:w,onFocus:_}),g.examples?q.createElement("datalist",{id:"examples_"+r},g.examples.concat(g.default?[g.default]:[]).map(function(I){return q.createElement("option",{key:I,value:I})})):null)},dct=function(t){var r=t.id,n=t.required,a=t.readonly,i=t.disabled,o=t.label,s=t.value,l=t.onChange,d=t.onBlur,u=t.onFocus,c=t.autofocus,h=t.schema,m=t.uiSchema,f=function(b){var S=b.target.value;return l(S)},g=function(b){var S=b.target.value;return d(r,S)},v=function(b){var S=b.target.value;return u(r,S)};return q.createElement(Qt.Group,{className:"mb-0"},q.createElement(Qt.Label,null,m["ui:title"]||h.title||o,(o||m["ui:title"]||h.title)&&n?"*":null),q.createElement(Qt.Control,{id:r,autoFocus:c,required:n,type:"number",disabled:i,readOnly:a,value:s||s===0?s:"",onChange:f,onBlur:g,onFocus:v}))},cct=function(t){var r=t.registry,n=r.widgets.TextWidget;return q.createElement(n,Object.assign({},t,{type:"url"}))},hct=function(t){var r=t.registry,n=r.widgets.TextWidget;return q.createElement(n,Object.assign({},t,{type:"file"}))},mct=bQ,fct=function(t){var r=mct(t.uiSchema),n=r.submitText,a=r.norender,i=r.props;return a?null:q.createElement("div",null,q.createElement(Op,Object.assign({variant:"primary",type:"submit"},i),n))},pct={CheckboxWidget:Gdt,CheckboxesWidget:Qdt,ColorWidget:Zdt,DateWidget:Ydt,DateTimeWidget:ect,EmailWidget:tct,PasswordWidget:rct,RadioWidget:nct,RangeWidget:ict,SelectWidget:sct,TextareaWidget:lct,TextWidget:uct,UpDownWidget:dct,URLWidget:cct,FileWidget:hct,SubmitButton:fct},gct=mn,iZ=gct(),vct=iZ.fields,yct=iZ.widgets,gO={ArrayFieldTemplate:Rdt,fields:_f({},vct,Bdt),FieldTemplate:jdt,ObjectFieldTemplate:Vdt,widgets:_f({},yct,pct),ErrorList:zdt};const _ct=e=>{const{description:t}=e,{t:r}=Ct("settingsSchemaDescriptions");return t?x("div",{children:x("div",{className:"mb-3",children:r(t)})}):x(St,{})},bct=({title:e})=>{const{t}=Ct("settingsSchemaTitles");return de("div",{className:"my-1",children:[x("h5",{children:t(e)}),x("hr",{className:"border-0 bg-secondary",style:{height:"1px"}})]})};var oZ={TitleField:bct,DescriptionField:_ct};const wct=Xw(gO),Sct={"ui:order":["friendly_name","retain","retention","qos","filtered_attributes","*"]};class Act extends le.exports.Component{constructor(){super(...arguments),this.state={newSetting:{key:"",value:"",type:""},updatedDeviceConfig:{}},this.onFormChange=t=>{const{formData:r}=t;this.setState({updatedDeviceConfig:r})},this.updateConfig=async t=>{const{formData:r}=t,{setDeviceOptions:n,device:a}=this.props;await n(a.ieee_address,r),this.setState({updatedDeviceConfig:{}})}}getGenericDeviceSettingsSchema(){var r,n;const{bridgeInfo:{config_schema:t={}}}=this.props;return(n=(r=t.definitions)==null?void 0:r.device)!=null?n:{properties:{}}}getDeviceConfig(){const{bridgeInfo:{config:t},device:r}=this.props,{updatedDeviceConfig:n}=this.state;return aq({},t==null?void 0:t.device_options,t==null?void 0:t.devices[r.ieee_address],n)}getSchemaAndConfig(){const t=this.getGenericDeviceSettingsSchema(),r=this.getDeviceConfig();return{schema:t,data:r,uiSchema:Sct}}render(){const{schema:t,data:r,uiSchema:n}=this.getSchemaAndConfig();return x(wct,{schema:t,formData:r,onSubmit:this.updateConfig,onChange:this.onFormChange,uiSchema:n,fields:oZ})}}function Tct(e,t,r){var n=-1,a=e.length;t<0&&(t=-t>a?0:a+t),r=r>a?a:r,r<0&&(r+=a),a=t>r?0:r-t>>>0,t>>>=0;for(var i=Array(a);++n<a;)i[n]=e[n+t];return i}var kct=Tct,Cct=kct;function Ect(e,t,r){var n=e.length;return r=r===void 0?n:r,!t&&r>=n?e:Cct(e,t,r)}var Ict=Ect,Dct="\\ud800-\\udfff",xct="\\u0300-\\u036f",Oct="\\ufe20-\\ufe2f",Mct="\\u20d0-\\u20ff",Rct=xct+Oct+Mct,Lct="\\ufe0e\\ufe0f",Pct="\\u200d",$ct=RegExp("["+Pct+Dct+Rct+Lct+"]");function zct(e){return $ct.test(e)}var sZ=zct;function Nct(e){return e.split("")}var Fct=Nct,lZ="\\ud800-\\udfff",Bct="\\u0300-\\u036f",Wct="\\ufe20-\\ufe2f",Hct="\\u20d0-\\u20ff",jct=Bct+Wct+Hct,Uct="\\ufe0e\\ufe0f",Vct="["+lZ+"]",IE="["+jct+"]",DE="\\ud83c[\\udffb-\\udfff]",Gct="(?:"+IE+"|"+DE+")",uZ="[^"+lZ+"]",dZ="(?:\\ud83c[\\udde6-\\uddff]){2}",cZ="[\\ud800-\\udbff][\\udc00-\\udfff]",qct="\\u200d",hZ=Gct+"?",mZ="["+Uct+"]?",Kct="(?:"+qct+"(?:"+[uZ,dZ,cZ].join("|")+")"+mZ+hZ+")*",Qct=mZ+hZ+Kct,Zct="(?:"+[uZ+IE+"?",IE,dZ,cZ,Vct].join("|")+")",Yct=RegExp(DE+"(?="+DE+")|"+Zct+Qct,"g");function Xct(e){return e.match(Yct)||[]}var Jct=Xct,eht=Fct,tht=sZ,rht=Jct;function nht(e){return tht(e)?rht(e):eht(e)}var aht=nht,iht=Ict,oht=sZ,sht=aht,lht=wu;function uht(e){return function(t){t=lht(t);var r=oht(t)?sht(t):void 0,n=r?r[0]:t.charAt(0),a=r?iht(r,1).join(""):t.slice(1);return n[e]()+a}}var dht=uht,cht=dht,hht=cht("toUpperCase"),fZ=hht,mht=wu,fht=fZ;function pht(e){return fht(mht(e).toLowerCase())}var ght=pht;function vht(e,t,r,n){var a=-1,i=e==null?0:e.length;for(n&&i&&(r=e[++a]);++a<i;)r=t(r,e[a],a,e);return r}var yht=vht;function _ht(e){return function(t){return e==null?void 0:e[t]}}var bht=_ht,wht=bht,Sht={\u00C0:"A",\u00C1:"A",\u00C2:"A",\u00C3:"A",\u00C4:"A",\u00C5:"A",\u00E0:"a",\u00E1:"a",\u00E2:"a",\u00E3:"a",\u00E4:"a",\u00E5:"a",\u00C7:"C",\u00E7:"c",\u00D0:"D",\u00F0:"d",\u00C8:"E",\u00C9:"E",\u00CA:"E",\u00CB:"E",\u00E8:"e",\u00E9:"e",\u00EA:"e",\u00EB:"e",\u00CC:"I",\u00CD:"I",\u00CE:"I",\u00CF:"I",\u00EC:"i",\u00ED:"i",\u00EE:"i",\u00EF:"i",\u00D1:"N",\u00F1:"n",\u00D2:"O",\u00D3:"O",\u00D4:"O",\u00D5:"O",\u00D6:"O",\u00D8:"O",\u00F2:"o",\u00F3:"o",\u00F4:"o",\u00F5:"o",\u00F6:"o",\u00F8:"o",\u00D9:"U",\u00DA:"U",\u00DB:"U",\u00DC:"U",\u00F9:"u",\u00FA:"u",\u00FB:"u",\u00FC:"u",\u00DD:"Y",\u00FD:"y",\u00FF:"y",\u00C6:"Ae",\u00E6:"ae",\u00DE:"Th",\u00FE:"th",\u00DF:"ss",\u0100:"A",\u0102:"A",\u0104:"A",\u0101:"a",\u0103:"a",\u0105:"a",\u0106:"C",\u0108:"C",\u010A:"C",\u010C:"C",\u0107:"c",\u0109:"c",\u010B:"c",\u010D:"c",\u010E:"D",\u0110:"D",\u010F:"d",\u0111:"d",\u0112:"E",\u0114:"E",\u0116:"E",\u0118:"E",\u011A:"E",\u0113:"e",\u0115:"e",\u0117:"e",\u0119:"e",\u011B:"e",\u011C:"G",\u011E:"G",\u0120:"G",\u0122:"G",\u011D:"g",\u011F:"g",\u0121:"g",\u0123:"g",\u0124:"H",\u0126:"H",\u0125:"h",\u0127:"h",\u0128:"I",\u012A:"I",\u012C:"I",\u012E:"I",\u0130:"I",\u0129:"i",\u012B:"i",\u012D:"i",\u012F:"i",\u0131:"i",\u0134:"J",\u0135:"j",\u0136:"K",\u0137:"k",\u0138:"k",\u0139:"L",\u013B:"L",\u013D:"L",\u013F:"L",\u0141:"L",\u013A:"l",\u013C:"l",\u013E:"l",\u0140:"l",\u0142:"l",\u0143:"N",\u0145:"N",\u0147:"N",\u014A:"N",\u0144:"n",\u0146:"n",\u0148:"n",\u014B:"n",\u014C:"O",\u014E:"O",\u0150:"O",\u014D:"o",\u014F:"o",\u0151:"o",\u0154:"R",\u0156:"R",\u0158:"R",\u0155:"r",\u0157:"r",\u0159:"r",\u015A:"S",\u015C:"S",\u015E:"S",\u0160:"S",\u015B:"s",\u015D:"s",\u015F:"s",\u0161:"s",\u0162:"T",\u0164:"T",\u0166:"T",\u0163:"t",\u0165:"t",\u0167:"t",\u0168:"U",\u016A:"U",\u016C:"U",\u016E:"U",\u0170:"U",\u0172:"U",\u0169:"u",\u016B:"u",\u016D:"u",\u016F:"u",\u0171:"u",\u0173:"u",\u0174:"W",\u0175:"w",\u0176:"Y",\u0177:"y",\u0178:"Y",\u0179:"Z",\u017B:"Z",\u017D:"Z",\u017A:"z",\u017C:"z",\u017E:"z",\u0132:"IJ",\u0133:"ij",\u0152:"Oe",\u0153:"oe",\u0149:"'n",\u017F:"s"},Aht=wht(Sht),Tht=Aht,kht=Tht,Cht=wu,Eht=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,Iht="\\u0300-\\u036f",Dht="\\ufe20-\\ufe2f",xht="\\u20d0-\\u20ff",Oht=Iht+Dht+xht,Mht="["+Oht+"]",Rht=RegExp(Mht,"g");function Lht(e){return e=Cht(e),e&&e.replace(Eht,kht).replace(Rht,"")}var Pht=Lht,$ht=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g;function zht(e){return e.match($ht)||[]}var Nht=zht,Fht=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/;function Bht(e){return Fht.test(e)}var Wht=Bht,pZ="\\ud800-\\udfff",Hht="\\u0300-\\u036f",jht="\\ufe20-\\ufe2f",Uht="\\u20d0-\\u20ff",Vht=Hht+jht+Uht,gZ="\\u2700-\\u27bf",vZ="a-z\\xdf-\\xf6\\xf8-\\xff",Ght="\\xac\\xb1\\xd7\\xf7",qht="\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf",Kht="\\u2000-\\u206f",Qht=" \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",yZ="A-Z\\xc0-\\xd6\\xd8-\\xde",Zht="\\ufe0e\\ufe0f",_Z=Ght+qht+Kht+Qht,bZ="['\u2019]",AB="["+_Z+"]",Yht="["+Vht+"]",wZ="\\d+",Xht="["+gZ+"]",SZ="["+vZ+"]",AZ="[^"+pZ+_Z+wZ+gZ+vZ+yZ+"]",Jht="\\ud83c[\\udffb-\\udfff]",emt="(?:"+Yht+"|"+Jht+")",tmt="[^"+pZ+"]",TZ="(?:\\ud83c[\\udde6-\\uddff]){2}",kZ="[\\ud800-\\udbff][\\udc00-\\udfff]",md="["+yZ+"]",rmt="\\u200d",TB="(?:"+SZ+"|"+AZ+")",nmt="(?:"+md+"|"+AZ+")",kB="(?:"+bZ+"(?:d|ll|m|re|s|t|ve))?",CB="(?:"+bZ+"(?:D|LL|M|RE|S|T|VE))?",CZ=emt+"?",EZ="["+Zht+"]?",amt="(?:"+rmt+"(?:"+[tmt,TZ,kZ].join("|")+")"+EZ+CZ+")*",imt="\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])",omt="\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])",smt=EZ+CZ+amt,lmt="(?:"+[Xht,TZ,kZ].join("|")+")"+smt,umt=RegExp([md+"?"+SZ+"+"+kB+"(?="+[AB,md,"$"].join("|")+")",nmt+"+"+CB+"(?="+[AB,md+TB,"$"].join("|")+")",md+"?"+TB+"+"+kB,md+"+"+CB,omt,imt,wZ,lmt].join("|"),"g");function dmt(e){return e.match(umt)||[]}var cmt=dmt,hmt=Nht,mmt=Wht,fmt=wu,pmt=cmt;function gmt(e,t,r){return e=fmt(e),t=r?void 0:t,t===void 0?mmt(e)?pmt(e):hmt(e):e.match(t)||[]}var vmt=gmt,ymt=yht,_mt=Pht,bmt=vmt,wmt="['\u2019]",Smt=RegExp(wmt,"g");function Amt(e){return function(t){return ymt(bmt(_mt(t).replace(Smt,"")),e,"")}}var IZ=Amt,Tmt=ght,kmt=IZ,Cmt=kmt(function(e,t,r){return t=t.toLowerCase(),e+(r?Tmt(t):t)}),Emt=Cmt,Imt=IZ,Dmt=fZ,xmt=Imt(function(e,t,r){return e+(r?" ":"")+Dmt(t)}),Omt=xmt;const Mmt=e=>{let t="fa-thermometer-empty";return e>=30?t="fa-thermometer-full":e>=25?t="fa-thermometer-three-quarters":e>=20?t="fa-thermometer-half":e>=15&&(t="fa-thermometer-quarter"),t},Rmt={humidity:["text-info","fa-tint"],illuminance:["fa-sun"],pressure:["fa-cloud-download-alt"],co2:["fa-atom","text-warning"],voltage:["fa-bolt","text-success"],state:["fa-star-half-alt"],brightness:["fa-sun"],occupancy:["fa-walking"],current:["fa-copyright","text-warning"],power:["fa-power-off","text-success"],energy:["fa-plug","text-info"],frequency:["fa-wave-square"],tamper:["fa-exclamation-circle","text-danger"],smoke:["fa-smoking","text-danger"],radiation_dose_per_hour:["fa-radiation","text-danger"],radioactive_events_per_minute:["fa-radiation-alt","text-warning"],power_factor:["fa-industry","text-danger"],mode:["fa-user-cog","text-warning"],sound:["fa-volume-up","text-info"],position:["fa-percent","text-info"],alarm:["fa-exclamation-triangle","text-danger"],color_xy:["fa-palette"],color_hs:["fa-palette"],color_temp:["fa-sliders-h"],illuminance_lux:["fa-sun"],soil_moisture:["fa-fill-drip"],water_leak:["fa-water"],week:["fa-calendar-week"],workdays_schedule:["fa-calendar-day","text-info"],holidays_schedule:["fa-calendar-day","text-danger"],away_mode:["fa-plane","text-info"],vibration:["fa-water fa-rotate-270"],power_outage_count:["fa-plug-circle-xmark"]},Lmt=(e,t)=>{var n;let r=[];switch(e){case"device_temperature":case"temperature":case"local_temperature":r.push(et("text-danger",Mmt(t)));break;case"contact":r.push(et({"fa-door-closed text-muted":t,"fa-door-open text-primary":!t}));break;case"occupancy":r.push(et({"text-warning":t}));break;case"tamper":r.push(et({"fa-beat-fade":t}));break;case"water_leak":r.push(et({"fa-beat-fade text-primary":t}));break;case"vibration":r.push(et({"fa-shake fa-rotate-270 text-primary":t}));break}return r=[...r,...(n=Rmt[e])!=null?n:[]],r.length||r.push("invisible"),et(r)},vO=e=>{const{children:t,feature:r,deviceState:n={}}=e,a=Lmt(r.name,n[r.property]),{t:i}=Ct(["featureNames"]);return de("div",{className:"d-flex align-items-center",children:[a&&x("div",{className:"me-1",children:x("i",{className:`fa fa-fw ${a}`})}),de("div",{className:"flex-shrink-1 flex-grow-1",children:[i(r.name==="state"?r.property:r.name,{defaultValue:Omt(Emt(r.name==="state"?r.property:r.name))}),r.endpoint?` (${r.endpoint})`:null]}),x("div",{className:"flex-shrink-1",children:t})]})};function DZ(e){var m,f;const{target:t,deviceState:r,sceneStore:n,setDeviceState:a}=e,i=OZ(t),{t:o}=Ct("scene"),[s,l]=le.exports.useState(0),[d,u]=le.exports.useState(""),c=`Scene ${s}`;let h=[];return t.definition&&(h=((f=(m=t.definition)==null?void 0:m.exposes)!=null?f:[]).map(g=>yO(g,r)).filter(g=>g)),de(St,{children:[de("div",{className:"mb-3",children:[x("label",{htmlFor:"add-scene",className:"form-label",children:o("scene_id")}),x("input",{id:"add-scene",className:"form-control",min:0,max:255,value:s,type:"number",onChange:g=>l(g.target.valueAsNumber)}),x("label",{htmlFor:"add-scene-name",className:"form-label",children:o("scene_name")}),x("input",{id:"add-scene-name",className:"form-control",value:d,type:"string",onChange:g=>u(g.target.value),placeholder:c}),x(yi,{feature:{features:h},className:"row",type:"composite",device:t,deviceState:r,onChange:(g,v)=>{a(t.friendly_name,v)},onRead:()=>{},featureWrapperClass:vO,minimal:!0})]}),x("div",{className:"d-flex",children:x("button",{disabled:!$mt(s,i),type:"submit",onClick:()=>n(t.friendly_name,{id:s,name:d||c}),className:"btn btn-primary ms-auto",children:o("store")})})]})}function Pmt(e){const{t}=Ct("scene"),{onSceneSelected:r,scenes:n=[],value:a}=e,i=l=>{const[d,u]=l.target.value.split("-");r({id:parseInt(d,10),endpoint:u})},o=de(St,{children:[x("label",{htmlFor:"rr-scene",className:"form-label",children:t("scene_name")}),de("select",{onChange:i,id:"rr-scene",className:"form-select",children:[x("option",{hidden:!0,children:t("select_scene")},"hidden"),n.map(l=>x("option",{value:`${l.id}-${l.endpoint}`,children:l.name},`${l.id}-${l.endpoint}`))]})]}),s=de(St,{children:[x("label",{htmlFor:"rr-scene",className:"form-label",children:t("scene_id")}),x("input",{min:0,value:a.id,type:"number",className:"form-control",id:"rr-scene",onChange:l=>r({id:l.target.valueAsNumber,endpoint:void 0})})]});return x(St,{children:n.length>0?o:s})}function xZ(e){const{sceneRecall:t,sceneRemove:r,sceneRemoveAll:n,target:a}=e,{t:i}=Ct("scene"),[o,s]=le.exports.useState({id:0,endpoint:void 0}),l=o.id===void 0,d=OZ(a),{friendly_name:u}=a;return de(St,{children:[x("div",{className:"mb-3",children:x(Pmt,{onSceneSelected:s,value:o,scenes:d})}),de("div",{className:"d-flex",children:[de("div",{className:"btn-group ms-auto pe-1",children:[x("button",{disabled:l,onClick:()=>t(u,o.id,o.endpoint),type:"submit",className:"btn btn-success",children:i("recall")}),x(yt,{disabled:l,prompt:!0,onClick:()=>r(u,o.id,o.endpoint),type:"submit",className:"btn btn-danger",children:i("remove")})]}),x(yt,{prompt:!0,onClick:()=>n(u,""),type:"submit",className:"btn btn-danger",children:i("remove_all")})]})]})}const $mt=(e,t=[])=>e>=0&&e<=255&&!t.find(r=>r.id==e);function OZ(e){if(e.endpoints){const t=[];return Object.entries(e.endpoints).forEach(([r,n])=>{var a;(a=n.scenes)==null||a.forEach(i=>t.push(He(Se({},i),{endpoint:r})))}),t}else if(e.scenes)return e.scenes;return[]}const zmt=["state","color_temp","color","transition","brightness"];function yO(e,t={}){let{property:r,name:n,features:a}=e;if(O2(e)&&(a=a.map(i=>yO(i,r?t[r]:t)).filter(i=>i),a=Object.values(M2(a,"property")).map(i=>i[0])),zmt.includes(n)||Array.isArray(a)&&a.length>0)return He(Se({},e),{features:a})}function Nmt(e){const{sceneStore:t,sceneRecall:r,sceneRemove:n,sceneRemoveAll:a,setDeviceState:i,device:o,deviceState:s}=e;return de("div",{className:"row",children:[x("div",{className:"col-12 col-sm-6 col-xxl-6 d-flex",children:x("div",{className:"card flex-fill",children:x("div",{className:"card-body py-4",children:x(DZ,{sceneStore:t,target:o,deviceState:s,setDeviceState:i})})})}),x("div",{className:"col-12 col-sm-6 col-xxl-6 d-flex",children:x("div",{className:"card flex-fill",children:x("div",{className:"card-body py-4",children:x(xZ,{sceneStore:t,sceneRecall:r,sceneRemove:n,sceneRemoveAll:a,target:o,deviceState:s})})})})]})}const Fmt=[],Bmt=$r(Fmt,Br)(Nmt);var Wmt=wu,MZ=/[\\^$.*+?()[\]{}|]/g,Hmt=RegExp(MZ.source);function jmt(e){return e=Wmt(e),e&&Hmt.test(e)?e.replace(MZ,"\\$&"):e}var Umt=jmt,Vmt=fq;function Gmt(e,t,r){return e==null?e:Vmt(e,t,r)}var qmt=Gmt,Kmt={"hide-description":"_hide-description_19xm6_1"};const Qmt=Xw(gO);function Zmt(e){const{schema:t={},schemaKey:r="",config:n={},configKey:a="",onChange:i}=e,o=cc(n,a,{}),s=cc(t,r,{}),l=d=>{const u={};qmt(u,a,d.formData),i(u)};return x(Qmt,{schema:s,className:Kmt["hide-description"],formData:o,onChange:l,children:x("div",{})})}const bf="all",EB=({text:e})=>x(St,{children:e}),Ymt=({text:e="",highlight:t=""})=>{if(!t.trim())return x(EB,{text:e});const r=new RegExp(`(${Umt(t)})`,"gi"),n=e.split(r);return x(St,{children:n.filter(a=>a).map((a,i)=>r.test(a)?x("mark",{children:a},i):x(EB,{text:a},i))})};function RZ(e){const{logLevel:t,log:r,search:n}=e,a=t===bf&&de(St,{children:[x("span",{style:{width:"60px"},className:et("badge",{"bg-danger":r.level==="error","bg-warning":r.level==="warning","bg-info":r.level==="info","bg-secondary":!["error","warning","info"].includes(r.level)},"text-capitalize"),children:r.level}),"\xA0"]});return de("div",{children:[a,x("small",{className:"pe-1",children:b9(r.timestamp)}),x("code",{children:x(Ymt,{text:r.message,highlight:n})})]})}const Xmt=[bf,"debug","info","warning","error"];class Jmt extends le.exports.Component{constructor(){super(...arguments),this.state={search:"",logLevel:bf}}renderSearch(){const{clearLogs:t,bridgeInfo:{config_schema:r,config:n},updateBridgeConfig:a,t:i}=this.props,{search:o}=this.state;return x("div",{className:"card",children:x("div",{className:"card-body",children:de("div",{className:"row row-cols-lg-auto g-3 align-items-center",children:[de("div",{className:"col-12 col-sm-4 col-xxl-4",children:[x("label",{htmlFor:"log-level",className:"form-label",children:i("show_only")}),x("select",{id:"log-level",className:"form-select",onChange:s=>this.setState({logLevel:s.target.value}),children:Xmt.map(s=>x("option",{value:s,children:s},s))})]}),de("div",{className:"col-12 col-sm-4 col-xxl-4",children:[x("label",{htmlFor:"search-filter",className:"form-label",children:i("filter_by_text")}),x("input",{id:"search-filter",className:"form-control col-10",placeholder:i("common:enter_search_criteria"),value:o,onChange:s=>this.setState({search:s.target.value}),type:"text"})]}),x("div",{className:"col-12 col-sm-4 col-xxl-4",children:x(Zmt,{schema:r,schemaKey:"properties.advanced.properties.log_level",config:n,configKey:"advanced.log_level",onChange:a})}),de("div",{className:"col-12",children:[x("label",{htmlFor:"reset",children:"\xA0"}),x("input",{id:"reset",type:"button",onClick:t,className:"btn btn-primary form-control",value:i("common:clear")})]})]})})})}render(){let{logs:t}=this.props;const{t:r}=this.props,{search:n,logLevel:a}=this.state;return t=t.filter(i=>(a===bf||i.level===a)&&(!n||i.message.toLowerCase().includes(n.toLowerCase()))).sort(),de(St,{children:[this.renderSearch(),x("div",{className:"card",children:de("div",{className:"card-body",children:[t.length==0?x("h1",{children:r("empty_logs_message")}):null,x("div",{className:"overflow-auto",children:t.map((i,o)=>x(RZ,{log:i,search:n,logLevel:a},o))})]})})]})}}const eft=["logs","bridgeInfo"];var tft=Mn(["logs","common"])($r(eft,Br)(Jmt));function LZ(e){const{logs:t,filterFn:r}=e,n=t.filter(r),a=n.length>0?n[n.length-1]:null,i=[];return a&&i.push(x(RZ,{log:a,search:"",logLevel:bf},"log")),x(St,{children:i})}const rft=e=>{const{executeCommand:t,device:r,logs:n}=e,{t:a}=Ct("zigbee"),[i,o]=le.exports.useState(1),[s,l]=le.exports.useState(""),[d,u]=le.exports.useState(""),[c,h]=le.exports.useState(JSON.stringify({},null,2)),m=()=>{let v=!0;try{JSON.parse(c)}catch{v=!1}return v&&!isNaN(parseInt(s))&&!isNaN(parseInt(d))},f=()=>{t(r.friendly_name,i,parseInt(s),parseInt(d),JSON.parse(c))},g=v=>v.message.startsWith("Invoked ");return de("div",{children:[de("div",{className:"row mb-3",children:[x("div",{className:"col-4 col-sm-3",children:de("div",{className:"form-group",children:[x("label",{className:"form-label",children:a("endpoint")}),x("input",{type:"number",min:"1",max:"255",value:i,onChange:v=>o(v.target.valueAsNumber),className:"form-control"})]})}),x("div",{className:"col-4 col-sm-3",children:de("div",{className:"col-auto",children:[x("label",{className:"form-label",children:a("cluster")}),x("input",{type:"text",value:s,placeholder:"example: 0x0001, 1, 123",onChange:v=>l(v.target.value),className:"form-control"})]})}),x("div",{className:"col-4 col-sm-3",children:de("div",{className:"col-auto",children:[x("label",{className:"form-label",children:a("command")}),x("input",{type:"text",value:d,placeholder:"example: 0x0001, 1, 123",onChange:v=>u(v.target.value),className:"form-control"})]})})]}),x("div",{className:"row mb-3 ",children:x("div",{className:"col-9 col-sm-9",children:de("div",{className:"col-auto",children:[x("label",{className:"form-label",children:a("payload")}),x("textarea",{rows:3,value:c,onChange:v=>h(v.target.value),className:"form-control"})]})})}),x("div",{className:"row",children:x("div",{className:"btn-group col col-3",children:x("button",{onClick:f,disabled:!m(),type:"button",className:"btn btn-success",children:a("execute")})})}),x("div",{className:"row",children:x(LZ,{logs:n,filterFn:g})})]})};function nft(e){var l;const{value:t,onChange:r,attribute:n,definition:a}=e,o=(l={[NF.charStr]:"string",[NF.longCharStr]:"string"}[a.type])!=null?l:"number";return x("input",{className:"form-control",type:o,value:t,onChange:d=>{const u=o==="number"?d.target.valueAsNumber:d.target.value;r(n,u)}})}const aft=["Read result of","Publish 'set' 'read' to","Publish 'set' 'write' to","Wrote "];class ift extends le.exports.Component{constructor(t){super(t),this.canRead=()=>{const{cluster:a,attributes:i,endpoint:o}=this.state;return!!o&&i.length>0&&!!a},this.onEndpointChange=a=>{this.setState({attributes:[],cluster:"",endpoint:a})},this.onClusterChange=a=>{this.setState({attributes:[],cluster:a})},this.onAttributeSelect=(a,i)=>{const{attributes:o}=this.state;if(!o.find(s=>s.attribute===a)){const s=o.concat([{attribute:a,definition:i}]);this.setState({attributes:s})}},this.onAttributeDelete=a=>{const{attributes:i}=this.state,o=i.filter(s=>s.attribute!==a);this.setState({attributes:o})},this.onReadClick=()=>{const{readDeviceAttributes:a,device:i}=this.props,{cluster:o,attributes:s,endpoint:l}=this.state;a(i.friendly_name,l,o,s.map(d=>d.attribute),{})},this.onWriteClick=()=>{const{writeDeviceAttributes:a,device:i}=this.props,{cluster:o,attributes:s,endpoint:l}=this.state;a(i.friendly_name,l,o,s,{})},this.onAttributeValueChange=(a,i)=>{const{attributes:o}=this.state,s=[...o],l=s.find(d=>d.attribute===a);l&&(l.value=i),this.setState({attributes:s})},this.setMode=a=>{this.setState({mode:a})};const{device:r}=t,n=Object.keys(r.endpoints)[0];this.state={endpoint:n,cluster:"",attributes:[],mode:"read"}}renderSelectedAttribute(){const{attributes:t}=this.state;return t.map(({attribute:r,value:n="",definition:a})=>x("div",{className:"row mb-1",children:x("div",{className:"col-3",children:de("div",{className:"row",children:[x("div",{className:"col-6",children:r}),x("div",{className:"col-3",children:x(nft,{value:n,attribute:r,definition:a,onChange:this.onAttributeValueChange})}),x("div",{className:"col-2",children:x(yt,{className:"btn btn-danger btn-sm",item:r,onClick:this.onAttributeDelete,children:x("i",{className:"fas fa-trash"})})})]})})},r))}renderRead(){const{cluster:t,attributes:r,endpoint:n}=this.state,a=r.length===0,i=t==="",{t:o,device:s}=this.props,l=Fl(s);return de(St,{children:[de("div",{className:"mb-3 row",children:[x("div",{className:"col-6 col-sm-3",children:x(hf,{label:o("zigbee:endpoint"),values:l,value:n,onChange:this.onEndpointChange})}),x("div",{className:"col-6 col-sm-3",children:x(b2,{label:o("cluster"),pickerType:$w.SINGLE,clusters:Object.keys(x_),value:t,onChange:this.onClusterChange})}),x("div",{className:"col-6 col-sm-3",children:x(oq,{label:o("attribute"),value:"",cluster:t,onChange:this.onAttributeSelect})})]}),x("div",{className:"mb-3 row",children:this.renderSelectedAttribute()}),x("div",{className:"mb-3 row",children:de("div",{className:"btn-group col col-3",role:"group",children:[x(yt,{disabled:a||i,className:"btn btn-success me-2",onClick:this.onReadClick,children:o("read")}),x(yt,{disabled:a||i,className:"btn btn-danger",onClick:this.onWriteClick,children:o("write")})]})})]})}render(){const{executeCommand:t,logs:r,device:n}=this.props,a=i=>aft.some(o=>i.message.startsWith(o));return de("div",{children:[x("div",{className:"card",children:de("div",{className:"card-body",children:[this.renderRead(),x(LZ,{logs:r,filterFn:a})]})}),x("div",{className:"card",children:x("div",{className:"card-body",children:x(rft,{device:n,logs:r,executeCommand:t})})})]})}}var oft=Mn("common")(ift);function sft(e){var o,s,l;const{device:t,bridgeInfo:{config:r},setDeviceOptions:n}=e,{t:a}=Ct(["exposes"]),i=(o=r.devices[t.ieee_address])!=null?o:{};return(l=(s=t.definition)==null?void 0:s.options)!=null&&l.length?x(yi,{showEndpointLabels:!0,feature:{features:t.definition.options},type:"composite",device:t,deviceState:i,onChange:async(d,u)=>{await n(t.ieee_address,u)},onRead:(d,u)=>{},featureWrapperClass:mq}):a("empty_exposes_definition")}const lft=["bridgeInfo"],uft=$r(lft,Br)(sft),dft=e=>[{translationKey:"about",url:`/device/${e}/info`},{translationKey:"exposes",url:`/device/${e}/exposes`},{translationKey:"bind",url:`/device/${e}/bind`},{translationKey:"reporting",url:`/device/${e}/reporting`},{translationKey:"settings",url:`/device/${e}/settings`},{translationKey:"settings_specific",url:`/device/${e}/settings-specific`},{translationKey:"state",url:`/device/${e}/state`},{translationKey:"clusters",url:`/device/${e}/clusters`},{translationKey:"scene",url:`/device/${e}/scene`},{translationKey:"dev_console",url:`/device/${e}/dev-console`}];function cft(e){var f;const{match:t,devices:r,logs:n}=e,{readDeviceAttributes:a,writeDeviceAttributes:i,setDeviceOptions:o,executeCommand:s,bridgeInfo:l,deviceStates:d}=e,{tab:u,dev:c}=t.params,h=r[c],m=(f=d[h.friendly_name])!=null?f:{};switch(u){case"info":return x(L9e,{device:h});case"bind":return x(U9e,{device:h});case"state":return x(Mqe,{device:h});case"exposes":return x(EKe,{device:h});case"clusters":return x(xKe,{device:h});case"reporting":return x(Dqe,{device:h});case"settings":return x(Act,{device:h,setDeviceOptions:o,bridgeInfo:l});case"settings-specific":return x(uft,{device:h,setDeviceOptions:o,bridgeInfo:l});case"dev-console":return x(oft,{device:h,logs:n,readDeviceAttributes:a,writeDeviceAttributes:i,executeCommand:s});case"scene":return x(Bmt,{device:h,deviceState:m});default:return x(jG,{to:`/device/${c}/info`})}}function hft(e){const{devices:t,match:r,t:n}=e,{dev:a}=r.params,i=t[a];if(!i)return x("div",{className:"h-100 d-flex justify-content-center align-items-center",children:n("unknown_device")});const o=dft(a);return de(St,{children:[x("h1",{className:"h3",children:i.friendly_name}),de("div",{className:"tab",children:[x("ul",{className:"nav nav-tabs",children:o.map(s=>x("li",{className:"nav-item",children:x(p2,{activeClassName:"active",className:`nav-link ${GG["small-nav"]}`,to:s.url,children:n(s.translationKey)})},s.translationKey))}),x("div",{className:"tab-content",children:x("div",{className:"tab-pane fade show active",children:x(cft,Se({},e))})})]})]})}const mft=m2(hft),fft=["devices","deviceStates","logs","bridgeInfo"],pft=Mn("devicePage")($r(fft,Br)(mft));var xm={exports:{}},xE={exports:{}};(function(e,t){(function(r,n){n(t,le.exports)})(kt,function(r,n){function a(R,W,U,G,te,Y,ne){try{var be=R[Y](ne),Ae=be.value}catch(Te){return void U(Te)}be.done?W(Ae):Promise.resolve(Ae).then(G,te)}function i(R){return function(){var W=this,U=arguments;return new Promise(function(G,te){var Y=R.apply(W,U);function ne(Ae){a(Y,G,te,ne,be,"next",Ae)}function be(Ae){a(Y,G,te,ne,be,"throw",Ae)}ne(void 0)})}}function o(){return(o=Object.assign||function(R){for(var W=1;W<arguments.length;W++){var U=arguments[W];for(var G in U)Object.prototype.hasOwnProperty.call(U,G)&&(R[G]=U[G])}return R}).apply(this,arguments)}function s(R,W){if(R==null)return{};var U,G,te={},Y=Object.keys(R);for(G=0;G<Y.length;G++)U=Y[G],W.indexOf(U)>=0||(te[U]=R[U]);return te}function l(R){var W=function(U,G){if(typeof U!="object"||U===null)return U;var te=U[Symbol.toPrimitive];if(te!==void 0){var Y=te.call(U,G||"default");if(typeof Y!="object")return Y;throw new TypeError("@@toPrimitive must return a primitive value.")}return(G==="string"?String:Number)(U)}(R,"string");return typeof W=="symbol"?W:String(W)}n=n&&Object.prototype.hasOwnProperty.call(n,"default")?n.default:n;var d={init:"init"},u=function(R){var W=R.value;return W===void 0?"":W},c=function(){return n.createElement(n.Fragment,null,"\xA0")},h={Cell:u,width:150,minWidth:0,maxWidth:Number.MAX_SAFE_INTEGER};function m(){for(var R=arguments.length,W=new Array(R),U=0;U<R;U++)W[U]=arguments[U];return W.reduce(function(G,te){var Y=te.style,ne=te.className;return G=o({},G,{},s(te,["style","className"])),Y&&(G.style=G.style?o({},G.style||{},{},Y||{}):Y),ne&&(G.className=G.className?G.className+" "+ne:ne),G.className===""&&delete G.className,G},{})}var f=function(R,W){return W===void 0&&(W={}),function(U){return U===void 0&&(U={}),[].concat(R,[U]).reduce(function(G,te){return function Y(ne,be,Ae){return typeof be=="function"?Y({},be(ne,Ae)):Array.isArray(be)?m.apply(void 0,[ne].concat(be)):m(ne,be)}(G,te,o({},W,{userProps:U}))},{})}},g=function(R,W,U,G){return U===void 0&&(U={}),R.reduce(function(te,Y){return Y(te,U)},W)},v=function(R,W,U){return U===void 0&&(U={}),R.forEach(function(G){G(W,U)})};function y(R,W,U,G){R.findIndex(function(te){return te.pluginName===U}),W.forEach(function(te){R.findIndex(function(Y){return Y.pluginName===te})})}function b(R,W){return typeof R=="function"?R(W):R}function S(R){var W=n.useRef();return W.current=R,n.useCallback(function(){return W.current},[])}var w=typeof document!="undefined"?n.useLayoutEffect:n.useEffect;function _(R,W){var U=n.useRef(!1);w(function(){U.current&&R(),U.current=!0},W)}function A(R,W,U){return U===void 0&&(U={}),function(G,te){te===void 0&&(te={});var Y=typeof G=="string"?W[G]:G;if(Y===void 0)throw console.info(W),new Error("Renderer Error \u261D\uFE0F");return I(Y,o({},R,{column:W},U,{},te))}}function I(R,W){return function(G){return typeof G=="function"&&(te=Object.getPrototypeOf(G)).prototype&&te.prototype.isReactComponent;var te}(U=R)||typeof U=="function"||function(G){return typeof G=="object"&&typeof G.$$typeof=="symbol"&&["react.memo","react.forward_ref"].includes(G.$$typeof.description)}(U)?n.createElement(R,W):R;var U}function k(R,W,U){return U===void 0&&(U=0),R.map(function(G){return T(G=o({},G,{parent:W,depth:U})),G.columns&&(G.columns=k(G.columns,G,U+1)),G})}function C(R){return P(R,"columns")}function T(R){var W=R.id,U=R.accessor,G=R.Header;if(typeof U=="string"){W=W||U;var te=U.split(".");U=function(Y){return function(ne,be,Ae){if(!be)return ne;var Te,Re=typeof be=="function"?be:JSON.stringify(be),Le=M.get(Re)||function(){var Pe=function(Ie){return function ze(Ue,Ve){if(Ve===void 0&&(Ve=[]),Array.isArray(Ue))for(var Je=0;Je<Ue.length;Je+=1)ze(Ue[Je],Ve);else Ve.push(Ue);return Ve}(Ie).map(function(ze){return String(ze).replace(".","_")}).join(".").replace(F,".").replace(V,"").split(".")}(be);return M.set(Re,Pe),Pe}();try{Te=Le.reduce(function(Pe,Ie){return Pe[Ie]},ne)}catch{}return Te!==void 0?Te:Ae}(Y,te)}}if(!W&&typeof G=="string"&&G&&(W=G),!W&&R.columns)throw console.error(R),new Error('A column ID (or unique "Header" value) is required!');if(!W)throw console.error(R),new Error("A column ID (or string accessor) is required!");return Object.assign(R,{id:W,accessor:U}),R}function O(R,W){if(!W)throw new Error;return Object.assign(R,o({Header:c,Footer:c},h,{},W,{},R)),Object.assign(R,{originalWidth:R.width}),R}function D(R,W,U){U===void 0&&(U=function(){return{}});for(var G=[],te=R,Y=0,ne=function(){return Y++},be=function(){var Ae={headers:[]},Te=[],Re=te.some(function(Le){return Le.parent});te.forEach(function(Le){var Pe,Ie=[].concat(Te).reverse()[0];Re&&(Le.parent?Pe=o({},Le.parent,{originalId:Le.parent.id,id:Le.parent.id+"_"+ne(),headers:[Le]},U(Le)):Pe=O(o({originalId:Le.id+"_placeholder",id:Le.id+"_placeholder_"+ne(),placeholderOf:Le,headers:[Le]},U(Le)),W),Ie&&Ie.originalId===Pe.originalId?Ie.headers.push(Le):Te.push(Pe)),Ae.headers.push(Le)}),G.push(Ae),te=Te};te.length;)be();return G.reverse()}var M=new Map;function E(){for(var R=arguments.length,W=new Array(R),U=0;U<R;U++)W[U]=arguments[U];for(var G=0;G<W.length;G+=1)if(W[G]!==void 0)return W[G]}function L(R){if(typeof R=="function")return R}function P(R,W){var U=[];return function G(te){te.forEach(function(Y){Y[W]?G(Y[W]):U.push(Y)})}(R),U}function j(R,W){var U=W.manualExpandedKey,G=W.expanded,te=W.expandSubRows,Y=te===void 0||te,ne=[];return R.forEach(function(be){return function Ae(Te,Re){Re===void 0&&(Re=!0),Te.isExpanded=Te.original&&Te.original[U]||G[Te.id],Te.canExpand=Te.subRows&&!!Te.subRows.length,Re&&ne.push(Te),Te.subRows&&Te.subRows.length&&Te.isExpanded&&Te.subRows.forEach(function(Le){return Ae(Le,Y)})}(be)}),ne}function H(R,W,U){return L(R)||W[R]||U[R]||U.text}function $(R,W,U){return R?R(W,U):W===void 0}function B(){throw new Error("React-Table: You have not called prepareRow(row) one or more rows you are attempting to render.")}var z=null,F=/\[/g,V=/\]/g,K=function(R){return o({role:"table"},R)},Z=function(R){return o({role:"rowgroup"},R)},ue=function(R,W){var U=W.column;return o({key:"header_"+U.id,colSpan:U.totalVisibleHeaderCount,role:"columnheader"},R)},fe=function(R,W){var U=W.column;return o({key:"footer_"+U.id,colSpan:U.totalVisibleHeaderCount},R)},ye=function(R,W){return o({key:"headerGroup_"+W.index,role:"row"},R)},De=function(R,W){return o({key:"footerGroup_"+W.index},R)},xe=function(R,W){return o({key:"row_"+W.row.id,role:"row"},R)},$e=function(R,W){var U=W.cell;return o({key:"cell_"+U.row.id+"_"+U.column.id,role:"cell"},R)};function at(){return{useOptions:[],stateReducers:[],useControlledState:[],columns:[],columnsDeps:[],allColumns:[],allColumnsDeps:[],accessValue:[],materializedColumns:[],materializedColumnsDeps:[],useInstanceAfterData:[],visibleColumns:[],visibleColumnsDeps:[],headerGroups:[],headerGroupsDeps:[],useInstanceBeforeDimensions:[],useInstance:[],prepareRow:[],getTableProps:[K],getTableBodyProps:[Z],getHeaderGroupProps:[ye],getFooterGroupProps:[De],getHeaderProps:[ue],getFooterProps:[fe],getRowProps:[xe],getCellProps:[$e],useFinalInstance:[]}}d.resetHiddenColumns="resetHiddenColumns",d.toggleHideColumn="toggleHideColumn",d.setHiddenColumns="setHiddenColumns",d.toggleHideAllColumns="toggleHideAllColumns";var it=function(R){R.getToggleHiddenProps=[N],R.getToggleHideAllColumnsProps=[ge],R.stateReducers.push(me),R.useInstanceBeforeDimensions.push(ee),R.headerGroupsDeps.push(function(W,U){var G=U.instance;return[].concat(W,[G.state.hiddenColumns])}),R.useInstance.push(Q)};it.pluginName="useColumnVisibility";var N=function(R,W){var U=W.column;return[R,{onChange:function(G){U.toggleHidden(!G.target.checked)},style:{cursor:"pointer"},checked:U.isVisible,title:"Toggle Column Visible"}]},ge=function(R,W){var U=W.instance;return[R,{onChange:function(G){U.toggleHideAllColumns(!G.target.checked)},style:{cursor:"pointer"},checked:!U.allColumnsHidden&&!U.state.hiddenColumns.length,title:"Toggle All Columns Hidden",indeterminate:!U.allColumnsHidden&&U.state.hiddenColumns.length}]};function me(R,W,U,G){if(W.type===d.init)return o({hiddenColumns:[]},R);if(W.type===d.resetHiddenColumns)return o({},R,{hiddenColumns:G.initialState.hiddenColumns||[]});if(W.type===d.toggleHideColumn){var te=(W.value!==void 0?W.value:!R.hiddenColumns.includes(W.columnId))?[].concat(R.hiddenColumns,[W.columnId]):R.hiddenColumns.filter(function(Y){return Y!==W.columnId});return o({},R,{hiddenColumns:te})}return W.type===d.setHiddenColumns?o({},R,{hiddenColumns:b(W.value,R.hiddenColumns)}):W.type===d.toggleHideAllColumns?o({},R,{hiddenColumns:(W.value!==void 0?W.value:!R.hiddenColumns.length)?G.allColumns.map(function(Y){return Y.id}):[]}):void 0}function ee(R){var W=R.headers,U=R.state.hiddenColumns;n.useRef(!1).current;var G=0;W.forEach(function(te){return G+=function Y(ne,be){ne.isVisible=be&&!U.includes(ne.id);var Ae=0;return ne.headers&&ne.headers.length?ne.headers.forEach(function(Te){return Ae+=Y(Te,ne.isVisible)}):Ae=ne.isVisible?1:0,ne.totalVisibleHeaderCount=Ae,Ae}(te,!0)})}function Q(R){var W=R.columns,U=R.flatHeaders,G=R.dispatch,te=R.allColumns,Y=R.getHooks,ne=R.state.hiddenColumns,be=R.autoResetHiddenColumns,Ae=be===void 0||be,Te=S(R),Re=te.length===ne.length,Le=n.useCallback(function(Ve,Je){return G({type:d.toggleHideColumn,columnId:Ve,value:Je})},[G]),Pe=n.useCallback(function(Ve){return G({type:d.setHiddenColumns,value:Ve})},[G]),Ie=n.useCallback(function(Ve){return G({type:d.toggleHideAllColumns,value:Ve})},[G]),ze=f(Y().getToggleHideAllColumnsProps,{instance:Te()});U.forEach(function(Ve){Ve.toggleHidden=function(Je){G({type:d.toggleHideColumn,columnId:Ve.id,value:Je})},Ve.getToggleHiddenProps=f(Y().getToggleHiddenProps,{instance:Te(),column:Ve})});var Ue=S(Ae);_(function(){Ue()&&G({type:d.resetHiddenColumns})},[G,W]),Object.assign(R,{allColumnsHidden:Re,toggleHideColumn:Le,setHiddenColumns:Pe,toggleHideAllColumns:Ie,getToggleHideAllColumnsProps:ze})}var se={},Ce={},oe=function(R,W,U){return R},re=function(R,W){return R.subRows||[]},pe=function(R,W,U){return""+(U?[U.id,W].join("."):W)},Ee=function(R){return R};function ke(R){var W=R.initialState,U=W===void 0?se:W,G=R.defaultColumn,te=G===void 0?Ce:G,Y=R.getSubRows,ne=Y===void 0?re:Y,be=R.getRowId,Ae=be===void 0?pe:be,Te=R.stateReducer,Re=Te===void 0?oe:Te,Le=R.useControlledState,Pe=Le===void 0?Ee:Le;return o({},s(R,["initialState","defaultColumn","getSubRows","getRowId","stateReducer","useControlledState"]),{initialState:U,defaultColumn:te,getSubRows:ne,getRowId:Ae,stateReducer:Re,useControlledState:Pe})}function Be(R,W){W===void 0&&(W=0);var U=0,G=0,te=0,Y=0;return R.forEach(function(ne){var be=ne.headers;if(ne.totalLeft=W,be&&be.length){var Ae=Be(be,W),Te=Ae[0],Re=Ae[1],Le=Ae[2],Pe=Ae[3];ne.totalMinWidth=Te,ne.totalWidth=Re,ne.totalMaxWidth=Le,ne.totalFlexWidth=Pe}else ne.totalMinWidth=ne.minWidth,ne.totalWidth=Math.min(Math.max(ne.minWidth,ne.width),ne.maxWidth),ne.totalMaxWidth=ne.maxWidth,ne.totalFlexWidth=ne.canResize?ne.totalWidth:0;ne.isVisible&&(W+=ne.totalWidth,U+=ne.totalMinWidth,G+=ne.totalWidth,te+=ne.totalMaxWidth,Y+=ne.totalFlexWidth)}),[U,G,te,Y]}function tt(R){var W=R.data,U=R.rows,G=R.flatRows,te=R.rowsById,Y=R.column,ne=R.getRowId,be=R.getSubRows,Ae=R.accessValueHooks,Te=R.getInstance;W.forEach(function(Re,Le){return function Pe(Ie,ze,Ue,Ve,Je){Ue===void 0&&(Ue=0);var bt=Ie,Xe=ne(Ie,ze,Ve),Fe=te[Xe];if(Fe)Fe.subRows&&Fe.originalSubRows.forEach(function(qe,mt){return Pe(qe,mt,Ue+1,Fe)});else if((Fe={id:Xe,original:bt,index:ze,depth:Ue,cells:[{}]}).cells.map=B,Fe.cells.filter=B,Fe.cells.forEach=B,Fe.cells[0].getCellProps=B,Fe.values={},Je.push(Fe),G.push(Fe),te[Xe]=Fe,Fe.originalSubRows=be(Ie,ze),Fe.originalSubRows){var gt=[];Fe.originalSubRows.forEach(function(qe,mt){return Pe(qe,mt,Ue+1,Fe,gt)}),Fe.subRows=gt}Y.accessor&&(Fe.values[Y.id]=Y.accessor(Ie,ze,Fe,Je,W)),Fe.values[Y.id]=g(Ae,Fe.values[Y.id],{row:Fe,column:Y,instance:Te()})}(Re,Le,0,void 0,U)})}d.resetExpanded="resetExpanded",d.toggleRowExpanded="toggleRowExpanded",d.toggleAllRowsExpanded="toggleAllRowsExpanded";var Ke=function(R){R.getToggleAllRowsExpandedProps=[ot],R.getToggleRowExpandedProps=[lt],R.stateReducers.push(Jt),R.useInstance.push(jr),R.prepareRow.push(Bt)};Ke.pluginName="useExpanded";var ot=function(R,W){var U=W.instance;return[R,{onClick:function(G){U.toggleAllRowsExpanded()},style:{cursor:"pointer"},title:"Toggle All Rows Expanded"}]},lt=function(R,W){var U=W.row;return[R,{onClick:function(){U.toggleRowExpanded()},style:{cursor:"pointer"},title:"Toggle Row Expanded"}]};function Jt(R,W,U,G){if(W.type===d.init)return o({expanded:{}},R);if(W.type===d.resetExpanded)return o({},R,{expanded:G.initialState.expanded||{}});if(W.type===d.toggleAllRowsExpanded){var te=W.value,Y=G.rowsById,ne=Object.keys(Y).length===Object.keys(R.expanded).length;if(te!==void 0?te:!ne){var be={};return Object.keys(Y).forEach(function(ze){be[ze]=!0}),o({},R,{expanded:be})}return o({},R,{expanded:{}})}if(W.type===d.toggleRowExpanded){var Ae,Te=W.id,Re=W.value,Le=R.expanded[Te],Pe=Re!==void 0?Re:!Le;if(!Le&&Pe)return o({},R,{expanded:o({},R.expanded,(Ae={},Ae[Te]=!0,Ae))});if(Le&&!Pe){var Ie=R.expanded;return Ie[Te],o({},R,{expanded:s(Ie,[Te].map(l))})}return R}}function jr(R){var W=R.data,U=R.rows,G=R.rowsById,te=R.manualExpandedKey,Y=te===void 0?"expanded":te,ne=R.paginateExpandedRows,be=ne===void 0||ne,Ae=R.expandSubRows,Te=Ae===void 0||Ae,Re=R.autoResetExpanded,Le=Re===void 0||Re,Pe=R.getHooks,Ie=R.plugins,ze=R.state.expanded,Ue=R.dispatch;y(Ie,["useSortBy","useGroupBy","usePivotColumns","useGlobalFilter"],"useExpanded");var Ve=S(Le),Je=Boolean(Object.keys(G).length&&Object.keys(ze).length);Je&&Object.keys(G).some(function(Dt){return!ze[Dt]})&&(Je=!1),_(function(){Ve()&&Ue({type:d.resetExpanded})},[Ue,W]);var bt=n.useCallback(function(Dt,ut){Ue({type:d.toggleRowExpanded,id:Dt,value:ut})},[Ue]),Xe=n.useCallback(function(Dt){return Ue({type:d.toggleAllRowsExpanded,value:Dt})},[Ue]),Fe=n.useMemo(function(){return be?j(U,{manualExpandedKey:Y,expanded:ze,expandSubRows:Te}):U},[be,U,Y,ze,Te]),gt=n.useMemo(function(){return function(Dt){var ut=0;return Object.keys(Dt).forEach(function(ht){var Gt=ht.split(".");ut=Math.max(ut,Gt.length)}),ut}(ze)},[ze]),qe=S(R),mt=f(Pe().getToggleAllRowsExpandedProps,{instance:qe()});Object.assign(R,{preExpandedRows:U,expandedRows:Fe,rows:Fe,expandedDepth:gt,isAllRowsExpanded:Je,toggleRowExpanded:bt,toggleAllRowsExpanded:Xe,getToggleAllRowsExpandedProps:mt})}function Bt(R,W){var U=W.instance.getHooks,G=W.instance;R.toggleRowExpanded=function(te){return G.toggleRowExpanded(R.id,te)},R.getToggleRowExpandedProps=f(U().getToggleRowExpandedProps,{instance:G,row:R})}var qn=function(R,W,U){return R=R.filter(function(G){return W.some(function(te){var Y=G.values[te];return String(Y).toLowerCase().includes(String(U).toLowerCase())})})};qn.autoRemove=function(R){return!R};var Kn=function(R,W,U){return R.filter(function(G){return W.some(function(te){var Y=G.values[te];return Y===void 0||String(Y).toLowerCase()===String(U).toLowerCase()})})};Kn.autoRemove=function(R){return!R};var Ur=function(R,W,U){return R.filter(function(G){return W.some(function(te){var Y=G.values[te];return Y===void 0||String(Y)===String(U)})})};Ur.autoRemove=function(R){return!R};var zr=function(R,W,U){return R.filter(function(G){return W.some(function(te){return G.values[te].includes(U)})})};zr.autoRemove=function(R){return!R||!R.length};var zo=function(R,W,U){return R.filter(function(G){return W.some(function(te){var Y=G.values[te];return Y&&Y.length&&U.every(function(ne){return Y.includes(ne)})})})};zo.autoRemove=function(R){return!R||!R.length};var Pn=function(R,W,U){return R.filter(function(G){return W.some(function(te){var Y=G.values[te];return Y&&Y.length&&U.some(function(ne){return Y.includes(ne)})})})};Pn.autoRemove=function(R){return!R||!R.length};var Vi=function(R,W,U){return R.filter(function(G){return W.some(function(te){var Y=G.values[te];return U.includes(Y)})})};Vi.autoRemove=function(R){return!R||!R.length};var Gi=function(R,W,U){return R.filter(function(G){return W.some(function(te){return G.values[te]===U})})};Gi.autoRemove=function(R){return R===void 0};var ga=function(R,W,U){return R.filter(function(G){return W.some(function(te){return G.values[te]==U})})};ga.autoRemove=function(R){return R==null};var Qn=function(R,W,U){var G=U||[],te=G[0],Y=G[1];if((te=typeof te=="number"?te:-1/0)>(Y=typeof Y=="number"?Y:1/0)){var ne=te;te=Y,Y=ne}return R.filter(function(be){return W.some(function(Ae){var Te=be.values[Ae];return Te>=te&&Te<=Y})})};Qn.autoRemove=function(R){return!R||typeof R[0]!="number"&&typeof R[1]!="number"};var Vr=Object.freeze({__proto__:null,text:qn,exactText:Kn,exactTextCase:Ur,includes:zr,includesAll:zo,includesSome:Pn,includesValue:Vi,exact:Gi,equals:ga,between:Qn});d.resetFilters="resetFilters",d.setFilter="setFilter",d.setAllFilters="setAllFilters";var No=function(R){R.stateReducers.push(Fo),R.useInstance.push(el)};function Fo(R,W,U,G){if(W.type===d.init)return o({filters:[]},R);if(W.type===d.resetFilters)return o({},R,{filters:G.initialState.filters||[]});if(W.type===d.setFilter){var te=W.columnId,Y=W.filterValue,ne=G.allColumns,be=G.filterTypes,Ae=ne.find(function(Ue){return Ue.id===te});if(!Ae)throw new Error("React-Table: Could not find a column with id: "+te);var Te=H(Ae.filter,be||{},Vr),Re=R.filters.find(function(Ue){return Ue.id===te}),Le=b(Y,Re&&Re.value);return $(Te.autoRemove,Le,Ae)?o({},R,{filters:R.filters.filter(function(Ue){return Ue.id!==te})}):o({},R,Re?{filters:R.filters.map(function(Ue){return Ue.id===te?{id:te,value:Le}:Ue})}:{filters:[].concat(R.filters,[{id:te,value:Le}])})}if(W.type===d.setAllFilters){var Pe=W.filters,Ie=G.allColumns,ze=G.filterTypes;return o({},R,{filters:b(Pe,R.filters).filter(function(Ue){var Ve=Ie.find(function(Je){return Je.id===Ue.id});return!$(H(Ve.filter,ze||{},Vr).autoRemove,Ue.value,Ve)})})}}function el(R){var W=R.data,U=R.rows,G=R.flatRows,te=R.rowsById,Y=R.allColumns,ne=R.filterTypes,be=R.manualFilters,Ae=R.defaultCanFilter,Te=Ae!==void 0&&Ae,Re=R.disableFilters,Le=R.state.filters,Pe=R.dispatch,Ie=R.autoResetFilters,ze=Ie===void 0||Ie,Ue=n.useCallback(function(qe,mt){Pe({type:d.setFilter,columnId:qe,filterValue:mt})},[Pe]),Ve=n.useCallback(function(qe){Pe({type:d.setAllFilters,filters:qe})},[Pe]);Y.forEach(function(qe){var mt=qe.id,Dt=qe.accessor,ut=qe.defaultCanFilter,ht=qe.disableFilters;qe.canFilter=Dt?E(ht!==!0&&void 0,Re!==!0&&void 0,!0):E(ut,Te,!1),qe.setFilter=function(pt){return Ue(qe.id,pt)};var Gt=Le.find(function(pt){return pt.id===mt});qe.filterValue=Gt&&Gt.value});var Je=n.useMemo(function(){if(be||!Le.length)return[U,G,te];var qe=[],mt={};return[function Dt(ut,ht){ht===void 0&&(ht=0);var Gt=ut;return(Gt=Le.reduce(function(pt,Ht){var Lt=Ht.id,ar=Ht.value,nt=Y.find(function(kr){return kr.id===Lt});if(!nt)return pt;ht===0&&(nt.preFilteredRows=pt);var Ot=H(nt.filter,ne||{},Vr);return Ot?(nt.filteredRows=Ot(pt,[Lt],ar),nt.filteredRows):(console.warn("Could not find a valid 'column.filter' for column with the ID: "+nt.id+"."),pt)},ut)).forEach(function(pt){qe.push(pt),mt[pt.id]=pt,pt.subRows&&(pt.subRows=pt.subRows&&pt.subRows.length>0?Dt(pt.subRows,ht+1):pt.subRows)}),Gt}(U),qe,mt]},[be,Le,U,G,te,Y,ne]),bt=Je[0],Xe=Je[1],Fe=Je[2];n.useMemo(function(){Y.filter(function(qe){return!Le.find(function(mt){return mt.id===qe.id})}).forEach(function(qe){qe.preFilteredRows=bt,qe.filteredRows=bt})},[bt,Le,Y]);var gt=S(ze);_(function(){gt()&&Pe({type:d.resetFilters})},[Pe,be?null:W]),Object.assign(R,{preFilteredRows:U,preFilteredFlatRows:G,preFilteredRowsById:te,filteredRows:bt,filteredFlatRows:Xe,filteredRowsById:Fe,rows:bt,flatRows:Xe,rowsById:Fe,setFilter:Ue,setAllFilters:Ve})}No.pluginName="useFilters",d.resetGlobalFilter="resetGlobalFilter",d.setGlobalFilter="setGlobalFilter";var va=function(R){R.stateReducers.push(Eu),R.useInstance.push(Xc)};function Eu(R,W,U,G){if(W.type===d.resetGlobalFilter)return o({},R,{globalFilter:G.initialState.globalFilter||void 0});if(W.type===d.setGlobalFilter){var te=W.filterValue,Y=G.userFilterTypes,ne=H(G.globalFilter,Y||{},Vr),be=b(te,R.globalFilter);return $(ne.autoRemove,be)?(R.globalFilter,s(R,["globalFilter"])):o({},R,{globalFilter:be})}}function Xc(R){var W=R.data,U=R.rows,G=R.flatRows,te=R.rowsById,Y=R.allColumns,ne=R.filterTypes,be=R.globalFilter,Ae=R.manualGlobalFilter,Te=R.state.globalFilter,Re=R.dispatch,Le=R.autoResetGlobalFilter,Pe=Le===void 0||Le,Ie=R.disableGlobalFilter,ze=n.useCallback(function(Fe){Re({type:d.setGlobalFilter,filterValue:Fe})},[Re]),Ue=n.useMemo(function(){if(Ae||Te===void 0)return[U,G,te];var Fe=[],gt={},qe=H(be,ne||{},Vr);if(!qe)return console.warn("Could not find a valid 'globalFilter' option."),U;Y.forEach(function(Dt){var ut=Dt.disableGlobalFilter;Dt.canFilter=E(ut!==!0&&void 0,Ie!==!0&&void 0,!0)});var mt=Y.filter(function(Dt){return Dt.canFilter===!0});return[function Dt(ut){return(ut=qe(ut,mt.map(function(ht){return ht.id}),Te)).forEach(function(ht){Fe.push(ht),gt[ht.id]=ht,ht.subRows=ht.subRows&&ht.subRows.length?Dt(ht.subRows):ht.subRows}),ut}(U),Fe,gt]},[Ae,Te,be,ne,Y,U,G,te,Ie]),Ve=Ue[0],Je=Ue[1],bt=Ue[2],Xe=S(Pe);_(function(){Xe()&&Re({type:d.resetGlobalFilter})},[Re,Ae?null:W]),Object.assign(R,{preGlobalFilteredRows:U,preGlobalFilteredFlatRows:G,preGlobalFilteredRowsById:te,globalFilteredRows:Ve,globalFilteredFlatRows:Je,globalFilteredRowsById:bt,rows:Ve,flatRows:Je,rowsById:bt,setGlobalFilter:ze,disableGlobalFilter:Ie})}function tl(R,W){return W.reduce(function(U,G){return U+(typeof G=="number"?G:0)},0)}va.pluginName="useGlobalFilter";var Iu=Object.freeze({__proto__:null,sum:tl,min:function(R){var W=R[0]||0;return R.forEach(function(U){typeof U=="number"&&(W=Math.min(W,U))}),W},max:function(R){var W=R[0]||0;return R.forEach(function(U){typeof U=="number"&&(W=Math.max(W,U))}),W},minMax:function(R){var W=R[0]||0,U=R[0]||0;return R.forEach(function(G){typeof G=="number"&&(W=Math.min(W,G),U=Math.max(U,G))}),W+".."+U},average:function(R){return tl(0,R)/R.length},median:function(R){if(!R.length)return null;var W=Math.floor(R.length/2),U=[].concat(R).sort(function(G,te){return G-te});return R.length%2!=0?U[W]:(U[W-1]+U[W])/2},unique:function(R){return Array.from(new Set(R).values())},uniqueCount:function(R){return new Set(R).size},count:function(R){return R.length}}),Du=[],ae={};d.resetGroupBy="resetGroupBy",d.setGroupBy="setGroupBy",d.toggleGroupBy="toggleGroupBy";var X=function(R){R.getGroupByToggleProps=[ie],R.stateReducers.push(we),R.visibleColumnsDeps.push(function(W,U){var G=U.instance;return[].concat(W,[G.state.groupBy])}),R.visibleColumns.push(_e),R.useInstance.push(rt),R.prepareRow.push(Et)};X.pluginName="useGroupBy";var ie=function(R,W){var U=W.header;return[R,{onClick:U.canGroupBy?function(G){G.persist(),U.toggleGroupBy()}:void 0,style:{cursor:U.canGroupBy?"pointer":void 0},title:"Toggle GroupBy"}]};function we(R,W,U,G){if(W.type===d.init)return o({groupBy:[]},R);if(W.type===d.resetGroupBy)return o({},R,{groupBy:G.initialState.groupBy||[]});if(W.type===d.setGroupBy)return o({},R,{groupBy:W.value});if(W.type===d.toggleGroupBy){var te=W.columnId,Y=W.value,ne=Y!==void 0?Y:!R.groupBy.includes(te);return o({},R,ne?{groupBy:[].concat(R.groupBy,[te])}:{groupBy:R.groupBy.filter(function(be){return be!==te})})}}function _e(R,W){var U=W.instance.state.groupBy,G=U.map(function(Y){return R.find(function(ne){return ne.id===Y})}).filter(Boolean),te=R.filter(function(Y){return!U.includes(Y.id)});return(R=[].concat(G,te)).forEach(function(Y){Y.isGrouped=U.includes(Y.id),Y.groupedIndex=U.indexOf(Y.id)}),R}var Ye={};function rt(R){var W=R.data,U=R.rows,G=R.flatRows,te=R.rowsById,Y=R.allColumns,ne=R.flatHeaders,be=R.groupByFn,Ae=be===void 0?It:be,Te=R.manualGroupBy,Re=R.aggregations,Le=Re===void 0?Ye:Re,Pe=R.plugins,Ie=R.state.groupBy,ze=R.dispatch,Ue=R.autoResetGroupBy,Ve=Ue===void 0||Ue,Je=R.disableGroupBy,bt=R.defaultCanGroupBy,Xe=R.getHooks;y(Pe,["useColumnOrder","useFilters"],"useGroupBy");var Fe=S(R);Y.forEach(function(nt){var Ot=nt.accessor,kr=nt.defaultGroupBy,_n=nt.disableGroupBy;nt.canGroupBy=Ot?E(nt.canGroupBy,_n!==!0&&void 0,Je!==!0&&void 0,!0):E(nt.canGroupBy,kr,bt,!1),nt.canGroupBy&&(nt.toggleGroupBy=function(){return R.toggleGroupBy(nt.id)}),nt.Aggregated=nt.Aggregated||nt.Cell});var gt=n.useCallback(function(nt,Ot){ze({type:d.toggleGroupBy,columnId:nt,value:Ot})},[ze]),qe=n.useCallback(function(nt){ze({type:d.setGroupBy,value:nt})},[ze]);ne.forEach(function(nt){nt.getGroupByToggleProps=f(Xe().getGroupByToggleProps,{instance:Fe(),header:nt})});var mt=n.useMemo(function(){if(Te||!Ie.length)return[U,G,te,Du,ae,G,te];var nt=Ie.filter(function(Gr){return Y.find(function(jo){return jo.id===Gr})}),Ot=[],kr={},_n=[],dt={},yr=[],Lr={},bn=function Gr(jo,Zi,CO){if(Zi===void 0&&(Zi=0),Zi===nt.length)return jo.map(function(Wp){return o({},Wp,{depth:Zi})});var _0=nt[Zi],SY=Ae(jo,_0);return Object.entries(SY).map(function(Wp,AY){var EO=Wp[0],Hp=Wp[1],jp=_0+":"+EO,IO=Gr(Hp,Zi+1,jp=CO?CO+">"+jp:jp),DO=Zi?P(Hp,"leafRows"):Hp,TY=function(_a,b0,CY){var Up={};return Y.forEach(function(Pr){if(nt.includes(Pr.id))Up[Pr.id]=b0[0]?b0[0].values[Pr.id]:null;else{var xO=typeof Pr.aggregate=="function"?Pr.aggregate:Le[Pr.aggregate]||Iu[Pr.aggregate];if(xO){var EY=b0.map(function(Vp){return Vp.values[Pr.id]}),IY=_a.map(function(Vp){var w0=Vp.values[Pr.id];if(!CY&&Pr.aggregateValue){var OO=typeof Pr.aggregateValue=="function"?Pr.aggregateValue:Le[Pr.aggregateValue]||Iu[Pr.aggregateValue];if(!OO)throw console.info({column:Pr}),new Error("React Table: Invalid column.aggregateValue option for column listed above");w0=OO(w0,Vp,Pr)}return w0});Up[Pr.id]=xO(IY,EY)}else{if(Pr.aggregate)throw console.info({column:Pr}),new Error("React Table: Invalid column.aggregate option for column listed above");Up[Pr.id]=null}}}),Up}(DO,Hp,Zi),kY={id:jp,isGrouped:!0,groupByID:_0,groupByVal:EO,values:TY,subRows:IO,leafRows:DO,depth:Zi,index:AY};return IO.forEach(function(_a){Ot.push(_a),kr[_a.id]=_a,_a.isGrouped?(_n.push(_a),dt[_a.id]=_a):(yr.push(_a),Lr[_a.id]=_a)}),kY})}(U);return bn.forEach(function(Gr){Ot.push(Gr),kr[Gr.id]=Gr,Gr.isGrouped?(_n.push(Gr),dt[Gr.id]=Gr):(yr.push(Gr),Lr[Gr.id]=Gr)}),[bn,Ot,kr,_n,dt,yr,Lr]},[Te,Ie,U,G,te,Y,Le,Ae]),Dt=mt[0],ut=mt[1],ht=mt[2],Gt=mt[3],pt=mt[4],Ht=mt[5],Lt=mt[6],ar=S(Ve);_(function(){ar()&&ze({type:d.resetGroupBy})},[ze,Te?null:W]),Object.assign(R,{preGroupedRows:U,preGroupedFlatRow:G,preGroupedRowsById:te,groupedRows:Dt,groupedFlatRows:ut,groupedRowsById:ht,onlyGroupedFlatRows:Gt,onlyGroupedRowsById:pt,nonGroupedFlatRows:Ht,nonGroupedRowsById:Lt,rows:Dt,flatRows:ut,rowsById:ht,toggleGroupBy:gt,setGroupBy:qe})}function Et(R){R.allCells.forEach(function(W){var U;W.isGrouped=W.column.isGrouped&&W.column.id===R.groupByID,W.isPlaceholder=!W.isGrouped&&W.column.isGrouped,W.isAggregated=!W.isGrouped&&!W.isPlaceholder&&((U=R.subRows)==null?void 0:U.length)})}function It(R,W){return R.reduce(function(U,G,te){var Y=""+G.values[W];return U[Y]=Array.isArray(U[Y])?U[Y]:[],U[Y].push(G),U},{})}var lr=/([0-9]+)/gm;function wt(R,W){return R===W?0:R>W?1:-1}function Wt(R,W,U){return[R.values[U],W.values[U]]}function ur(R){return typeof R=="number"?isNaN(R)||R===1/0||R===-1/0?"":String(R):typeof R=="string"?R:""}var ft=Object.freeze({__proto__:null,alphanumeric:function(R,W,U){var G=Wt(R,W,U),te=G[0],Y=G[1];for(te=ur(te),Y=ur(Y),te=te.split(lr).filter(Boolean),Y=Y.split(lr).filter(Boolean);te.length&&Y.length;){var ne=te.shift(),be=Y.shift(),Ae=parseInt(ne,10),Te=parseInt(be,10),Re=[Ae,Te].sort();if(isNaN(Re[0])){if(ne>be)return 1;if(be>ne)return-1}else{if(isNaN(Re[1]))return isNaN(Ae)?-1:1;if(Ae>Te)return 1;if(Te>Ae)return-1}}return te.length-Y.length},datetime:function(R,W,U){var G=Wt(R,W,U),te=G[0],Y=G[1];return wt(te=te.getTime(),Y=Y.getTime())},basic:function(R,W,U){var G=Wt(R,W,U);return wt(G[0],G[1])},string:function(R,W,U){var G=Wt(R,W,U),te=G[0],Y=G[1];for(te=te.split("").filter(Boolean),Y=Y.split("").filter(Boolean);te.length&&Y.length;){var ne=te.shift(),be=Y.shift(),Ae=ne.toLowerCase(),Te=be.toLowerCase();if(Ae>Te)return 1;if(Te>Ae)return-1;if(ne>be)return 1;if(be>ne)return-1}return te.length-Y.length},number:function(R,W,U){var G=Wt(R,W,U),te=G[0],Y=G[1],ne=/[^0-9.]/gi;return wt(te=Number(String(te).replace(ne,"")),Y=Number(String(Y).replace(ne,"")))}});d.resetSortBy="resetSortBy",d.setSortBy="setSortBy",d.toggleSortBy="toggleSortBy",d.clearSortBy="clearSortBy",h.sortType="alphanumeric",h.sortDescFirst=!1;var $t=function(R){R.getSortByToggleProps=[vr],R.stateReducers.push(nr),R.useInstance.push(ya)};$t.pluginName="useSortBy";var vr=function(R,W){var U=W.instance,G=W.column,te=U.isMultiSortEvent,Y=te===void 0?function(ne){return ne.shiftKey}:te;return[R,{onClick:G.canSort?function(ne){ne.persist(),G.toggleSortBy(void 0,!U.disableMultiSort&&Y(ne))}:void 0,style:{cursor:G.canSort?"pointer":void 0},title:G.canSort?"Toggle SortBy":void 0}]};function nr(R,W,U,G){if(W.type===d.init)return o({sortBy:[]},R);if(W.type===d.resetSortBy)return o({},R,{sortBy:G.initialState.sortBy||[]});if(W.type===d.clearSortBy)return o({},R,{sortBy:R.sortBy.filter(function(Fe){return Fe.id!==W.columnId})});if(W.type===d.setSortBy)return o({},R,{sortBy:W.sortBy});if(W.type===d.toggleSortBy){var te,Y=W.columnId,ne=W.desc,be=W.multi,Ae=G.allColumns,Te=G.disableMultiSort,Re=G.disableSortRemove,Le=G.disableMultiRemove,Pe=G.maxMultiSortColCount,Ie=Pe===void 0?Number.MAX_SAFE_INTEGER:Pe,ze=R.sortBy,Ue=Ae.find(function(Fe){return Fe.id===Y}).sortDescFirst,Ve=ze.find(function(Fe){return Fe.id===Y}),Je=ze.findIndex(function(Fe){return Fe.id===Y}),bt=ne!=null,Xe=[];return(te=!Te&&be?Ve?"toggle":"add":Je!==ze.length-1||ze.length!==1?"replace":Ve?"toggle":"replace")!="toggle"||Re||bt||be&&Le||!(Ve&&Ve.desc&&!Ue||!Ve.desc&&Ue)||(te="remove"),te==="replace"?Xe=[{id:Y,desc:bt?ne:Ue}]:te==="add"?(Xe=[].concat(ze,[{id:Y,desc:bt?ne:Ue}])).splice(0,Xe.length-Ie):te==="toggle"?Xe=ze.map(function(Fe){return Fe.id===Y?o({},Fe,{desc:bt?ne:!Ve.desc}):Fe}):te==="remove"&&(Xe=ze.filter(function(Fe){return Fe.id!==Y})),o({},R,{sortBy:Xe})}}function ya(R){var W=R.data,U=R.rows,G=R.flatRows,te=R.allColumns,Y=R.orderByFn,ne=Y===void 0?vn:Y,be=R.sortTypes,Ae=R.manualSortBy,Te=R.defaultCanSort,Re=R.disableSortBy,Le=R.flatHeaders,Pe=R.state.sortBy,Ie=R.dispatch,ze=R.plugins,Ue=R.getHooks,Ve=R.autoResetSortBy,Je=Ve===void 0||Ve;y(ze,["useFilters","useGlobalFilter","useGroupBy","usePivotColumns"],"useSortBy");var bt=n.useCallback(function(ut){Ie({type:d.setSortBy,sortBy:ut})},[Ie]),Xe=n.useCallback(function(ut,ht,Gt){Ie({type:d.toggleSortBy,columnId:ut,desc:ht,multi:Gt})},[Ie]),Fe=S(R);Le.forEach(function(ut){var ht=ut.accessor,Gt=ut.canSort,pt=ut.disableSortBy,Ht=ut.id,Lt=ht?E(pt!==!0&&void 0,Re!==!0&&void 0,!0):E(Te,Gt,!1);ut.canSort=Lt,ut.canSort&&(ut.toggleSortBy=function(nt,Ot){return Xe(ut.id,nt,Ot)},ut.clearSortBy=function(){Ie({type:d.clearSortBy,columnId:ut.id})}),ut.getSortByToggleProps=f(Ue().getSortByToggleProps,{instance:Fe(),column:ut});var ar=Pe.find(function(nt){return nt.id===Ht});ut.isSorted=!!ar,ut.sortedIndex=Pe.findIndex(function(nt){return nt.id===Ht}),ut.isSortedDesc=ut.isSorted?ar.desc:void 0});var gt=n.useMemo(function(){if(Ae||!Pe.length)return[U,G];var ut=[],ht=Pe.filter(function(Gt){return te.find(function(pt){return pt.id===Gt.id})});return[function Gt(pt){var Ht=ne(pt,ht.map(function(Lt){var ar=te.find(function(kr){return kr.id===Lt.id});if(!ar)throw new Error("React-Table: Could not find a column with id: "+Lt.id+" while sorting");var nt=ar.sortType,Ot=L(nt)||(be||{})[nt]||ft[nt];if(!Ot)throw new Error("React-Table: Could not find a valid sortType of '"+nt+"' for column '"+Lt.id+"'.");return function(kr,_n){return Ot(kr,_n,Lt.id,Lt.desc)}}),ht.map(function(Lt){var ar=te.find(function(nt){return nt.id===Lt.id});return ar&&ar.sortInverted?Lt.desc:!Lt.desc}));return Ht.forEach(function(Lt){ut.push(Lt),Lt.subRows&&Lt.subRows.length!==0&&(Lt.subRows=Gt(Lt.subRows))}),Ht}(U),ut]},[Ae,Pe,U,G,te,ne,be]),qe=gt[0],mt=gt[1],Dt=S(Je);_(function(){Dt()&&Ie({type:d.resetSortBy})},[Ae?null:W]),Object.assign(R,{preSortedRows:U,preSortedFlatRows:G,sortedRows:qe,sortedFlatRows:mt,rows:qe,flatRows:mt,setSortBy:bt,toggleSortBy:Xe})}function vn(R,W,U){return[].concat(R).sort(function(G,te){for(var Y=0;Y<W.length;Y+=1){var ne=W[Y],be=U[Y]===!1||U[Y]==="desc",Ae=ne(G,te);if(Ae!==0)return be?-Ae:Ae}return U[0]?G.index-te.index:te.index-G.index})}d.resetPage="resetPage",d.gotoPage="gotoPage",d.setPageSize="setPageSize";var yn=function(R){R.stateReducers.push(Zn),R.useInstance.push(Ua)};function Zn(R,W,U,G){if(W.type===d.init)return o({pageSize:10,pageIndex:0},R);if(W.type===d.resetPage)return o({},R,{pageIndex:G.initialState.pageIndex||0});if(W.type===d.gotoPage){var te=G.pageCount,Y=G.page,ne=b(W.pageIndex,R.pageIndex),be=!1;return ne>R.pageIndex?be=te===-1?Y.length>=R.pageSize:ne<te:ne<R.pageIndex&&(be=ne>-1),be?o({},R,{pageIndex:ne}):R}if(W.type===d.setPageSize){var Ae=W.pageSize,Te=R.pageSize*R.pageIndex;return o({},R,{pageIndex:Math.floor(Te/Ae),pageSize:Ae})}}function Ua(R){var W=R.rows,U=R.autoResetPage,G=U===void 0||U,te=R.manualExpandedKey,Y=te===void 0?"expanded":te,ne=R.plugins,be=R.pageCount,Ae=R.paginateExpandedRows,Te=Ae===void 0||Ae,Re=R.expandSubRows,Le=Re===void 0||Re,Pe=R.state,Ie=Pe.pageSize,ze=Pe.pageIndex,Ue=Pe.expanded,Ve=Pe.globalFilter,Je=Pe.filters,bt=Pe.groupBy,Xe=Pe.sortBy,Fe=R.dispatch,gt=R.data,qe=R.manualPagination;y(ne,["useGlobalFilter","useFilters","useGroupBy","useSortBy","useExpanded"],"usePagination");var mt=S(G);_(function(){mt()&&Fe({type:d.resetPage})},[Fe,qe?null:gt,Ve,Je,bt,Xe]);var Dt=qe?be:Math.ceil(W.length/Ie),ut=n.useMemo(function(){return Dt>0?[].concat(new Array(Dt)).fill(null).map(function(Ot,kr){return kr}):[]},[Dt]),ht=n.useMemo(function(){var Ot;if(qe)Ot=W;else{var kr=Ie*ze,_n=kr+Ie;Ot=W.slice(kr,_n)}return Te?Ot:j(Ot,{manualExpandedKey:Y,expanded:Ue,expandSubRows:Le})},[Le,Ue,Y,qe,ze,Ie,Te,W]),Gt=ze>0,pt=Dt===-1?ht.length>=Ie:ze<Dt-1,Ht=n.useCallback(function(Ot){Fe({type:d.gotoPage,pageIndex:Ot})},[Fe]),Lt=n.useCallback(function(){return Ht(function(Ot){return Ot-1})},[Ht]),ar=n.useCallback(function(){return Ht(function(Ot){return Ot+1})},[Ht]),nt=n.useCallback(function(Ot){Fe({type:d.setPageSize,pageSize:Ot})},[Fe]);Object.assign(R,{pageOptions:ut,pageCount:Dt,page:ht,canPreviousPage:Gt,canNextPage:pt,gotoPage:Ht,previousPage:Lt,nextPage:ar,setPageSize:nt})}yn.pluginName="usePagination",d.resetPivot="resetPivot",d.togglePivot="togglePivot";var nn=function(R){R.getPivotToggleProps=[Va],R.stateReducers.push(Yn),R.useInstanceAfterData.push(qi),R.allColumns.push(xu),R.accessValue.push(Ou),R.materializedColumns.push(Bo),R.materializedColumnsDeps.push(Ga),R.visibleColumns.push(Wo),R.visibleColumnsDeps.push(_i),R.useInstance.push(rl),R.prepareRow.push(bi)};nn.pluginName="usePivotColumns";var Tr=[],Va=function(R,W){var U=W.header;return[R,{onClick:U.canPivot?function(G){G.persist(),U.togglePivot()}:void 0,style:{cursor:U.canPivot?"pointer":void 0},title:"Toggle Pivot"}]};function Yn(R,W,U,G){if(W.type===d.init)return o({pivotColumns:Tr},R);if(W.type===d.resetPivot)return o({},R,{pivotColumns:G.initialState.pivotColumns||Tr});if(W.type===d.togglePivot){var te=W.columnId,Y=W.value,ne=Y!==void 0?Y:!R.pivotColumns.includes(te);return o({},R,ne?{pivotColumns:[].concat(R.pivotColumns,[te])}:{pivotColumns:R.pivotColumns.filter(function(be){return be!==te})})}}function qi(R){R.allColumns.forEach(function(W){W.isPivotSource=R.state.pivotColumns.includes(W.id)})}function xu(R,W){var U=W.instance;return R.forEach(function(G){G.isPivotSource=U.state.pivotColumns.includes(G.id),G.uniqueValues=new Set}),R}function Ou(R,W){var U=W.column;return U.uniqueValues&&R!==void 0&&U.uniqueValues.add(R),R}function Bo(R,W){var U=W.instance,G=U.allColumns,te=U.state;if(!te.pivotColumns.length||!te.groupBy||!te.groupBy.length)return R;var Y=te.pivotColumns.map(function(Ae){return G.find(function(Te){return Te.id===Ae})}).filter(Boolean),ne=G.filter(function(Ae){return!Ae.isPivotSource&&!te.groupBy.includes(Ae.id)&&!te.pivotColumns.includes(Ae.id)}),be=C(function Ae(Te,Re,Le){Te===void 0&&(Te=0),Le===void 0&&(Le=[]);var Pe=Y[Te];return Pe?Array.from(Pe.uniqueValues).sort().map(function(Ie){var ze=o({},Pe,{Header:Pe.PivotHeader||typeof Pe.header=="string"?Pe.Header+": "+Ie:Ie,isPivotGroup:!0,parent:Re,depth:Te,id:Re?Re.id+"."+Pe.id+"."+Ie:Pe.id+"."+Ie,pivotValue:Ie});return ze.columns=Ae(Te+1,ze,[].concat(Le,[function(Ue){return Ue.values[Pe.id]===Ie}])),ze}):ne.map(function(Ie){return o({},Ie,{canPivot:!1,isPivoted:!0,parent:Re,depth:Te,id:""+(Re?Re.id+"."+Ie.id:Ie.id),accessor:function(ze,Ue,Ve){if(Le.every(function(Je){return Je(Ve)}))return Ve.values[Ie.id]}})})}());return[].concat(R,be)}function Ga(R,W){var U=W.instance.state,G=U.pivotColumns,te=U.groupBy;return[].concat(R,[G,te])}function Wo(R,W){var U=W.instance.state;return R=R.filter(function(G){return!G.isPivotSource}),U.pivotColumns.length&&U.groupBy&&U.groupBy.length&&(R=R.filter(function(G){return G.isGrouped||G.isPivoted})),R}function _i(R,W){var U=W.instance;return[].concat(R,[U.state.pivotColumns,U.state.groupBy])}function rl(R){var W=R.columns,U=R.allColumns,G=R.flatHeaders,te=R.getHooks,Y=R.plugins,ne=R.dispatch,be=R.autoResetPivot,Ae=be===void 0||be,Te=R.manaulPivot,Re=R.disablePivot,Le=R.defaultCanPivot;y(Y,["useGroupBy"],"usePivotColumns");var Pe=S(R);U.forEach(function(ze){var Ue=ze.accessor,Ve=ze.defaultPivot,Je=ze.disablePivot;ze.canPivot=Ue?E(ze.canPivot,Je!==!0&&void 0,Re!==!0&&void 0,!0):E(ze.canPivot,Ve,Le,!1),ze.canPivot&&(ze.togglePivot=function(){return R.togglePivot(ze.id)}),ze.Aggregated=ze.Aggregated||ze.Cell}),G.forEach(function(ze){ze.getPivotToggleProps=f(te().getPivotToggleProps,{instance:Pe(),header:ze})});var Ie=S(Ae);_(function(){Ie()&&ne({type:d.resetPivot})},[ne,Te?null:W]),Object.assign(R,{togglePivot:function(ze,Ue){ne({type:d.togglePivot,columnId:ze,value:Ue})}})}function bi(R){R.allCells.forEach(function(W){W.isPivoted=W.column.isPivoted})}d.resetSelectedRows="resetSelectedRows",d.toggleAllRowsSelected="toggleAllRowsSelected",d.toggleRowSelected="toggleRowSelected",d.toggleAllPageRowsSelected="toggleAllPageRowsSelected";var Pp=function(R){R.getToggleRowSelectedProps=[o0],R.getToggleAllRowsSelectedProps=[s0],R.getToggleAllPageRowsSelectedProps=[l0],R.stateReducers.push($p),R.useInstance.push(u0),R.prepareRow.push(d0)};Pp.pluginName="useRowSelect";var o0=function(R,W){var U=W.instance,G=W.row,te=U.manualRowSelectedKey,Y=te===void 0?"isSelected":te;return[R,{onChange:function(ne){G.toggleRowSelected(ne.target.checked)},style:{cursor:"pointer"},checked:!(!G.original||!G.original[Y])||G.isSelected,title:"Toggle Row Selected",indeterminate:G.isSomeSelected}]},s0=function(R,W){var U=W.instance;return[R,{onChange:function(G){U.toggleAllRowsSelected(G.target.checked)},style:{cursor:"pointer"},checked:U.isAllRowsSelected,title:"Toggle All Rows Selected",indeterminate:Boolean(!U.isAllRowsSelected&&Object.keys(U.state.selectedRowIds).length)}]},l0=function(R,W){var U=W.instance;return[R,{onChange:function(G){U.toggleAllPageRowsSelected(G.target.checked)},style:{cursor:"pointer"},checked:U.isAllPageRowsSelected,title:"Toggle All Current Page Rows Selected",indeterminate:Boolean(!U.isAllPageRowsSelected&&U.page.some(function(G){var te=G.id;return U.state.selectedRowIds[te]}))}]};function $p(R,W,U,G){if(W.type===d.init)return o({selectedRowIds:{}},R);if(W.type===d.resetSelectedRows)return o({},R,{selectedRowIds:G.initialState.selectedRowIds||{}});if(W.type===d.toggleAllRowsSelected){var te=W.value,Y=G.isAllRowsSelected,ne=G.rowsById,be=G.nonGroupedRowsById,Ae=be===void 0?ne:be,Te=te!==void 0?te:!Y,Re=Object.assign({},R.selectedRowIds);return Te?Object.keys(Ae).forEach(function(Ht){Re[Ht]=!0}):Object.keys(Ae).forEach(function(Ht){delete Re[Ht]}),o({},R,{selectedRowIds:Re})}if(W.type===d.toggleRowSelected){var Le=W.id,Pe=W.value,Ie=G.rowsById,ze=G.selectSubRows,Ue=ze===void 0||ze,Ve=G.getSubRows,Je=R.selectedRowIds[Le],bt=Pe!==void 0?Pe:!Je;if(Je===bt)return R;var Xe=o({},R.selectedRowIds);return function Ht(Lt){var ar=Ie[Lt];if(ar&&(ar.isGrouped||(bt?Xe[Lt]=!0:delete Xe[Lt]),Ue&&Ve(ar)))return Ve(ar).forEach(function(nt){return Ht(nt.id)})}(Le),o({},R,{selectedRowIds:Xe})}if(W.type===d.toggleAllPageRowsSelected){var Fe=W.value,gt=G.page,qe=G.rowsById,mt=G.selectSubRows,Dt=mt===void 0||mt,ut=G.isAllPageRowsSelected,ht=G.getSubRows,Gt=Fe!==void 0?Fe:!ut,pt=o({},R.selectedRowIds);return gt.forEach(function(Ht){return function Lt(ar){var nt=qe[ar];if(nt.isGrouped||(Gt?pt[ar]=!0:delete pt[ar]),Dt&&ht(nt))return ht(nt).forEach(function(Ot){return Lt(Ot.id)})}(Ht.id)}),o({},R,{selectedRowIds:pt})}return R}function u0(R){var W=R.data,U=R.rows,G=R.getHooks,te=R.plugins,Y=R.rowsById,ne=R.nonGroupedRowsById,be=ne===void 0?Y:ne,Ae=R.autoResetSelectedRows,Te=Ae===void 0||Ae,Re=R.state.selectedRowIds,Le=R.selectSubRows,Pe=Le===void 0||Le,Ie=R.dispatch,ze=R.page,Ue=R.getSubRows;y(te,["useFilters","useGroupBy","useSortBy","useExpanded","usePagination"],"useRowSelect");var Ve=n.useMemo(function(){var ht=[];return U.forEach(function(Gt){var pt=Pe?function Ht(Lt,ar,nt){if(ar[Lt.id])return!0;var Ot=nt(Lt);if(Ot&&Ot.length){var kr=!0,_n=!1;return Ot.forEach(function(dt){_n&&!kr||(Ht(dt,ar,nt)?_n=!0:kr=!1)}),!!kr||!!_n&&null}return!1}(Gt,Re,Ue):!!Re[Gt.id];Gt.isSelected=!!pt,Gt.isSomeSelected=pt===null,pt&&ht.push(Gt)}),ht},[U,Pe,Re,Ue]),Je=Boolean(Object.keys(be).length&&Object.keys(Re).length),bt=Je;Je&&Object.keys(be).some(function(ht){return!Re[ht]})&&(Je=!1),Je||ze&&ze.length&&ze.some(function(ht){var Gt=ht.id;return!Re[Gt]})&&(bt=!1);var Xe=S(Te);_(function(){Xe()&&Ie({type:d.resetSelectedRows})},[Ie,W]);var Fe=n.useCallback(function(ht){return Ie({type:d.toggleAllRowsSelected,value:ht})},[Ie]),gt=n.useCallback(function(ht){return Ie({type:d.toggleAllPageRowsSelected,value:ht})},[Ie]),qe=n.useCallback(function(ht,Gt){return Ie({type:d.toggleRowSelected,id:ht,value:Gt})},[Ie]),mt=S(R),Dt=f(G().getToggleAllRowsSelectedProps,{instance:mt()}),ut=f(G().getToggleAllPageRowsSelectedProps,{instance:mt()});Object.assign(R,{selectedFlatRows:Ve,isAllRowsSelected:Je,isAllPageRowsSelected:bt,toggleRowSelected:qe,toggleAllRowsSelected:Fe,getToggleAllRowsSelectedProps:Dt,getToggleAllPageRowsSelectedProps:ut,toggleAllPageRowsSelected:gt})}function d0(R,W){var U=W.instance;R.toggleRowSelected=function(G){return U.toggleRowSelected(R.id,G)},R.getToggleRowSelectedProps=f(U.getHooks().getToggleRowSelectedProps,{instance:U,row:R})}var Jc=function(R){return{}},nl=function(R){return{}};d.setRowState="setRowState",d.setCellState="setCellState",d.resetRowState="resetRowState";var Ki=function(R){R.stateReducers.push(c0),R.useInstance.push(h0),R.prepareRow.push(wi)};function c0(R,W,U,G){var te=G.initialRowStateAccessor,Y=te===void 0?Jc:te,ne=G.initialCellStateAccessor,be=ne===void 0?nl:ne,Ae=G.rowsById;if(W.type===d.init)return o({rowState:{}},R);if(W.type===d.resetRowState)return o({},R,{rowState:G.initialState.rowState||{}});if(W.type===d.setRowState){var Te,Re=W.rowId,Le=W.value,Pe=R.rowState[Re]!==void 0?R.rowState[Re]:Y(Ae[Re]);return o({},R,{rowState:o({},R.rowState,(Te={},Te[Re]=b(Le,Pe),Te))})}if(W.type===d.setCellState){var Ie,ze,Ue,Ve,Je,bt=W.rowId,Xe=W.columnId,Fe=W.value,gt=R.rowState[bt]!==void 0?R.rowState[bt]:Y(Ae[bt]),qe=(gt==null||(Ie=gt.cellState)==null?void 0:Ie[Xe])!==void 0?gt.cellState[Xe]:be((ze=Ae[bt])==null||(Ue=ze.cells)==null?void 0:Ue.find(function(mt){return mt.column.id===Xe}));return o({},R,{rowState:o({},R.rowState,(Je={},Je[bt]=o({},gt,{cellState:o({},gt.cellState||{},(Ve={},Ve[Xe]=b(Fe,qe),Ve))}),Je))})}}function h0(R){var W=R.autoResetRowState,U=W===void 0||W,G=R.data,te=R.dispatch,Y=n.useCallback(function(Ae,Te){return te({type:d.setRowState,rowId:Ae,value:Te})},[te]),ne=n.useCallback(function(Ae,Te,Re){return te({type:d.setCellState,rowId:Ae,columnId:Te,value:Re})},[te]),be=S(U);_(function(){be()&&te({type:d.resetRowState})},[G]),Object.assign(R,{setRowState:Y,setCellState:ne})}function wi(R,W){var U=W.instance,G=U.initialRowStateAccessor,te=G===void 0?Jc:G,Y=U.initialCellStateAccessor,ne=Y===void 0?nl:Y,be=U.state.rowState;R&&(R.state=be[R.id]!==void 0?be[R.id]:te(R),R.setState=function(Ae){return U.setRowState(R.id,Ae)},R.cells.forEach(function(Ae){R.state.cellState||(R.state.cellState={}),Ae.state=R.state.cellState[Ae.column.id]!==void 0?R.state.cellState[Ae.column.id]:ne(Ae),Ae.setState=function(Te){return U.setCellState(R.id,Ae.column.id,Te)}}))}Ki.pluginName="useRowState",d.resetColumnOrder="resetColumnOrder",d.setColumnOrder="setColumnOrder";var zp=function(R){R.stateReducers.push(m0),R.visibleColumnsDeps.push(function(W,U){var G=U.instance;return[].concat(W,[G.state.columnOrder])}),R.visibleColumns.push(f0),R.useInstance.push(p0)};function m0(R,W,U,G){return W.type===d.init?o({columnOrder:[]},R):W.type===d.resetColumnOrder?o({},R,{columnOrder:G.initialState.columnOrder||[]}):W.type===d.setColumnOrder?o({},R,{columnOrder:b(W.columnOrder,R.columnOrder)}):void 0}function f0(R,W){var U=W.instance.state.columnOrder;if(!U||!U.length)return R;for(var G=[].concat(U),te=[].concat(R),Y=[],ne=function(){var be=G.shift(),Ae=te.findIndex(function(Te){return Te.id===be});Ae>-1&&Y.push(te.splice(Ae,1)[0])};te.length&&G.length;)ne();return[].concat(Y,te)}function p0(R){var W=R.dispatch;R.setColumnOrder=n.useCallback(function(U){return W({type:d.setColumnOrder,columnOrder:U})},[W])}zp.pluginName="useColumnOrder",h.canResize=!0,d.columnStartResizing="columnStartResizing",d.columnResizing="columnResizing",d.columnDoneResizing="columnDoneResizing",d.resetResize="resetResize";var Np=function(R){R.getResizerProps=[Qi],R.getHeaderProps.push({style:{position:"relative"}}),R.stateReducers.push(Fp),R.useInstance.push(Mu),R.useInstanceBeforeDimensions.push(g0)},Qi=function(R,W){var U=W.instance,G=W.header,te=U.dispatch,Y=function(ne,be){var Ae=!1;if(ne.type==="touchstart"){if(ne.touches&&ne.touches.length>1)return;Ae=!0}var Te,Re,Le=function(Xe){var Fe=[];return function gt(qe){qe.columns&&qe.columns.length&&qe.columns.map(gt),Fe.push(qe)}(Xe),Fe}(be).map(function(Xe){return[Xe.id,Xe.totalWidth]}),Pe=Ae?Math.round(ne.touches[0].clientX):ne.clientX,Ie=function(){window.cancelAnimationFrame(Te),Te=null,te({type:d.columnDoneResizing})},ze=function(){window.cancelAnimationFrame(Te),Te=null,te({type:d.columnResizing,clientX:Re})},Ue=function(Xe){Re=Xe,Te||(Te=window.requestAnimationFrame(ze))},Ve={mouse:{moveEvent:"mousemove",moveHandler:function(Xe){return Ue(Xe.clientX)},upEvent:"mouseup",upHandler:function(Xe){document.removeEventListener("mousemove",Ve.mouse.moveHandler),document.removeEventListener("mouseup",Ve.mouse.upHandler),Ie()}},touch:{moveEvent:"touchmove",moveHandler:function(Xe){return Xe.cancelable&&(Xe.preventDefault(),Xe.stopPropagation()),Ue(Xe.touches[0].clientX),!1},upEvent:"touchend",upHandler:function(Xe){document.removeEventListener(Ve.touch.moveEvent,Ve.touch.moveHandler),document.removeEventListener(Ve.touch.upEvent,Ve.touch.moveHandler),Ie()}}},Je=Ae?Ve.touch:Ve.mouse,bt=!!function(){if(typeof z=="boolean")return z;var Xe=!1;try{var Fe={get passive(){return Xe=!0,!1}};window.addEventListener("test",null,Fe),window.removeEventListener("test",null,Fe)}catch{Xe=!1}return z=Xe}()&&{passive:!1};document.addEventListener(Je.moveEvent,Je.moveHandler,bt),document.addEventListener(Je.upEvent,Je.upHandler,bt),te({type:d.columnStartResizing,columnId:be.id,columnWidth:be.totalWidth,headerIdWidths:Le,clientX:Pe})};return[R,{onMouseDown:function(ne){return ne.persist()||Y(ne,G)},onTouchStart:function(ne){return ne.persist()||Y(ne,G)},style:{cursor:"col-resize"},draggable:!1,role:"separator"}]};function Fp(R,W){if(W.type===d.init)return o({columnResizing:{columnWidths:{}}},R);if(W.type===d.resetResize)return o({},R,{columnResizing:{columnWidths:{}}});if(W.type===d.columnStartResizing){var U=W.clientX,G=W.columnId,te=W.columnWidth,Y=W.headerIdWidths;return o({},R,{columnResizing:o({},R.columnResizing,{startX:U,headerIdWidths:Y,columnWidth:te,isResizingColumn:G})})}if(W.type===d.columnResizing){var ne=W.clientX,be=R.columnResizing,Ae=be.startX,Te=be.columnWidth,Re=be.headerIdWidths,Le=(ne-Ae)/Te,Pe={};return(Re===void 0?[]:Re).forEach(function(Ie){var ze=Ie[0],Ue=Ie[1];Pe[ze]=Math.max(Ue+Ue*Le,0)}),o({},R,{columnResizing:o({},R.columnResizing,{columnWidths:o({},R.columnResizing.columnWidths,{},Pe)})})}return W.type===d.columnDoneResizing?o({},R,{columnResizing:o({},R.columnResizing,{startX:null,isResizingColumn:null})}):void 0}Np.pluginName="useResizeColumns";var g0=function(R){var W=R.flatHeaders,U=R.disableResizing,G=R.getHooks,te=R.state.columnResizing,Y=S(R);W.forEach(function(ne){var be=E(ne.disableResizing!==!0&&void 0,U!==!0&&void 0,!0);ne.canResize=be,ne.width=te.columnWidths[ne.id]||ne.originalWidth||ne.width,ne.isResizing=te.isResizingColumn===ne.id,be&&(ne.getResizerProps=f(G().getResizerProps,{instance:Y(),header:ne}))})};function Mu(R){var W=R.plugins,U=R.dispatch,G=R.autoResetResize,te=G===void 0||G,Y=R.columns;y(W,["useAbsoluteLayout"],"useResizeColumns");var ne=S(te);_(function(){ne()&&U({type:d.resetResize})},[Y]);var be=n.useCallback(function(){return U({type:d.resetResize})},[U]);Object.assign(R,{resetResizing:be})}var eh={position:"absolute",top:0},Ru=function(R){R.getTableBodyProps.push(Lu),R.getRowProps.push(Lu),R.getHeaderGroupProps.push(Lu),R.getFooterGroupProps.push(Lu),R.getHeaderProps.push(function(W,U){var G=U.column;return[W,{style:o({},eh,{left:G.totalLeft+"px",width:G.totalWidth+"px"})}]}),R.getCellProps.push(function(W,U){var G=U.cell;return[W,{style:o({},eh,{left:G.column.totalLeft+"px",width:G.column.totalWidth+"px"})}]}),R.getFooterProps.push(function(W,U){var G=U.column;return[W,{style:o({},eh,{left:G.totalLeft+"px",width:G.totalWidth+"px"})}]})};Ru.pluginName="useAbsoluteLayout";var Lu=function(R,W){return[R,{style:{position:"relative",width:W.instance.totalColumnsWidth+"px"}}]},Pu={display:"inline-block",boxSizing:"border-box"},$u=function(R,W){return[R,{style:{display:"flex",width:W.instance.totalColumnsWidth+"px"}}]},th=function(R){R.getRowProps.push($u),R.getHeaderGroupProps.push($u),R.getFooterGroupProps.push($u),R.getHeaderProps.push(function(W,U){var G=U.column;return[W,{style:o({},Pu,{width:G.totalWidth+"px"})}]}),R.getCellProps.push(function(W,U){var G=U.cell;return[W,{style:o({},Pu,{width:G.column.totalWidth+"px"})}]}),R.getFooterProps.push(function(W,U){var G=U.column;return[W,{style:o({},Pu,{width:G.totalWidth+"px"})}]})};function Ho(R){R.getTableProps.push(Bp),R.getRowProps.push(rh),R.getHeaderGroupProps.push(rh),R.getFooterGroupProps.push(rh),R.getHeaderProps.push(v0),R.getCellProps.push(y0),R.getFooterProps.push(J)}th.pluginName="useBlockLayout",Ho.pluginName="useFlexLayout";var Bp=function(R,W){return[R,{style:{minWidth:W.instance.totalColumnsMinWidth+"px"}}]},rh=function(R,W){return[R,{style:{display:"flex",flex:"1 0 auto",minWidth:W.instance.totalColumnsMinWidth+"px"}}]},v0=function(R,W){var U=W.column;return[R,{style:{boxSizing:"border-box",flex:U.totalFlexWidth?U.totalFlexWidth+" 0 auto":void 0,minWidth:U.totalMinWidth+"px",width:U.totalWidth+"px"}}]},y0=function(R,W){var U=W.cell;return[R,{style:{boxSizing:"border-box",flex:U.column.totalFlexWidth+" 0 auto",minWidth:U.column.totalMinWidth+"px",width:U.column.totalWidth+"px"}}]},J=function(R,W){var U=W.column;return[R,{style:{boxSizing:"border-box",flex:U.totalFlexWidth?U.totalFlexWidth+" 0 auto":void 0,minWidth:U.totalMinWidth+"px",width:U.totalWidth+"px"}}]};function ce(R){R.stateReducers.push(_t),R.getTableProps.push(Oe),R.getHeaderProps.push(Ge),R.getRowProps.push(sr)}d.columnStartResizing="columnStartResizing",d.columnResizing="columnResizing",d.columnDoneResizing="columnDoneResizing",d.resetResize="resetResize",ce.pluginName="useGridLayout";var Oe=function(R,W){var U=W.instance;return[R,{style:{display:"grid",gridTemplateColumns:U.visibleColumns.map(function(G){var te;return U.state.gridLayout.columnWidths[G.id]?U.state.gridLayout.columnWidths[G.id]+"px":(te=U.state.columnResizing)!=null&&te.isResizingColumn?U.state.gridLayout.startWidths[G.id]+"px":typeof G.width=="number"?G.width+"px":G.width}).join(" ")}}]},Ge=function(R,W){var U=W.column;return[R,{id:"header-cell-"+U.id,style:{position:"sticky",gridColumn:"span "+U.totalVisibleHeaderCount}}]},sr=function(R,W){var U=W.row;return U.isExpanded?[R,{style:{gridColumn:"1 / "+(U.cells.length+1)}}]:[R,{}]};function _t(R,W,U,G){if(W.type===d.init)return o({gridLayout:{columnWidths:{}}},R);if(W.type===d.resetResize)return o({},R,{gridLayout:{columnWidths:{}}});if(W.type===d.columnStartResizing){var te=W.columnId,Y=W.headerIdWidths,ne=dr(te);if(ne!==void 0){var be=G.visibleColumns.reduce(function(Fe,gt){var qe;return o({},Fe,((qe={})[gt.id]=dr(gt.id),qe))},{}),Ae=G.visibleColumns.reduce(function(Fe,gt){var qe;return o({},Fe,((qe={})[gt.id]=gt.minWidth,qe))},{}),Te=G.visibleColumns.reduce(function(Fe,gt){var qe;return o({},Fe,((qe={})[gt.id]=gt.maxWidth,qe))},{}),Re=Y.map(function(Fe){var gt=Fe[0];return[gt,dr(gt)]});return o({},R,{gridLayout:o({},R.gridLayout,{startWidths:be,minWidths:Ae,maxWidths:Te,headerIdGridWidths:Re,columnWidth:ne})})}return R}if(W.type===d.columnResizing){var Le=W.clientX,Pe=R.columnResizing.startX,Ie=R.gridLayout,ze=Ie.columnWidth,Ue=Ie.minWidths,Ve=Ie.maxWidths,Je=Ie.headerIdGridWidths,bt=(Le-Pe)/ze,Xe={};return(Je===void 0?[]:Je).forEach(function(Fe){var gt=Fe[0],qe=Fe[1];Xe[gt]=Math.min(Math.max(Ue[gt],qe+qe*bt),Ve[gt])}),o({},R,{gridLayout:o({},R.gridLayout,{columnWidths:o({},R.gridLayout.columnWidths,{},Xe)})})}return W.type===d.columnDoneResizing?o({},R,{gridLayout:o({},R.gridLayout,{startWidths:{},minWidths:{},maxWidths:{}})}):void 0}function dr(R){var W,U=(W=document.getElementById("header-cell-"+R))==null?void 0:W.offsetWidth;if(U!==void 0)return U}r._UNSTABLE_usePivotColumns=nn,r.actions=d,r.defaultColumn=h,r.defaultGroupByFn=It,r.defaultOrderByFn=vn,r.defaultRenderer=u,r.emptyRenderer=c,r.ensurePluginOrder=y,r.flexRender=I,r.functionalUpdate=b,r.loopHooks=v,r.makePropGetter=f,r.makeRenderer=A,r.reduceHooks=g,r.safeUseLayoutEffect=w,r.useAbsoluteLayout=Ru,r.useAsyncDebounce=function(R,W){W===void 0&&(W=0);var U=n.useRef({}),G=S(R),te=S(W);return n.useCallback(function(){var Y=i(regeneratorRuntime.mark(function ne(){var be,Ae,Te,Re=arguments;return regeneratorRuntime.wrap(function(Le){for(;;)switch(Le.prev=Le.next){case 0:for(be=Re.length,Ae=new Array(be),Te=0;Te<be;Te++)Ae[Te]=Re[Te];return U.current.promise||(U.current.promise=new Promise(function(Pe,Ie){U.current.resolve=Pe,U.current.reject=Ie})),U.current.timeout&&clearTimeout(U.current.timeout),U.current.timeout=setTimeout(i(regeneratorRuntime.mark(function Pe(){return regeneratorRuntime.wrap(function(Ie){for(;;)switch(Ie.prev=Ie.next){case 0:return delete U.current.timeout,Ie.prev=1,Ie.t0=U.current,Ie.next=5,G().apply(void 0,Ae);case 5:Ie.t1=Ie.sent,Ie.t0.resolve.call(Ie.t0,Ie.t1),Ie.next=12;break;case 9:Ie.prev=9,Ie.t2=Ie.catch(1),U.current.reject(Ie.t2);case 12:return Ie.prev=12,delete U.current.promise,Ie.finish(12);case 15:case"end":return Ie.stop()}},Pe,null,[[1,9,12,15]])})),te()),Le.abrupt("return",U.current.promise);case 5:case"end":return Le.stop()}},ne)}));return function(){return Y.apply(this,arguments)}}(),[G,te])},r.useBlockLayout=th,r.useColumnOrder=zp,r.useExpanded=Ke,r.useFilters=No,r.useFlexLayout=Ho,r.useGetLatest=S,r.useGlobalFilter=va,r.useGridLayout=ce,r.useGroupBy=X,r.useMountedLayoutEffect=_,r.usePagination=yn,r.useResizeColumns=Np,r.useRowSelect=Pp,r.useRowState=Ki,r.useSortBy=$t,r.useTable=function(R){for(var W=arguments.length,U=new Array(W>1?W-1:0),G=1;G<W;G++)U[G-1]=arguments[G];R=ke(R),U=[it].concat(U);var te=n.useRef({}),Y=S(te.current);Object.assign(Y(),o({},R,{plugins:U,hooks:at()})),U.filter(Boolean).forEach(function(dt){dt(Y().hooks)});var ne=S(Y().hooks);Y().getHooks=ne,delete Y().hooks,Object.assign(Y(),g(ne().useOptions,ke(R)));var be=Y(),Ae=be.data,Te=be.columns,Re=be.initialState,Le=be.defaultColumn,Pe=be.getSubRows,Ie=be.getRowId,ze=be.stateReducer,Ue=be.useControlledState,Ve=S(ze),Je=n.useCallback(function(dt,yr){if(!yr.type)throw console.info({action:yr}),new Error("Unknown Action \u{1F446}");return[].concat(ne().stateReducers,Array.isArray(Ve())?Ve():[Ve()]).reduce(function(Lr,bn){return bn(Lr,yr,dt,Y())||Lr},dt)},[ne,Ve,Y]),bt=n.useReducer(Je,void 0,function(){return Je(Re,{type:d.init})}),Xe=bt[0],Fe=bt[1],gt=g([].concat(ne().useControlledState,[Ue]),Xe,{instance:Y()});Object.assign(Y(),{state:gt,dispatch:Fe});var qe=n.useMemo(function(){return k(g(ne().columns,Te,{instance:Y()}))},[ne,Y,Te].concat(g(ne().columnsDeps,[],{instance:Y()})));Y().columns=qe;var mt=n.useMemo(function(){return g(ne().allColumns,C(qe),{instance:Y()}).map(T)},[qe,ne,Y].concat(g(ne().allColumnsDeps,[],{instance:Y()})));Y().allColumns=mt;var Dt=n.useMemo(function(){for(var dt=[],yr=[],Lr={},bn=[].concat(mt);bn.length;){var Gr=bn.shift();tt({data:Ae,rows:dt,flatRows:yr,rowsById:Lr,column:Gr,getRowId:Ie,getSubRows:Pe,accessValueHooks:ne().accessValue,getInstance:Y})}return[dt,yr,Lr]},[mt,Ae,Ie,Pe,ne,Y]),ut=Dt[0],ht=Dt[1],Gt=Dt[2];Object.assign(Y(),{rows:ut,initialRows:[].concat(ut),flatRows:ht,rowsById:Gt}),v(ne().useInstanceAfterData,Y());var pt=n.useMemo(function(){return g(ne().visibleColumns,mt,{instance:Y()}).map(function(dt){return O(dt,Le)})},[ne,mt,Y,Le].concat(g(ne().visibleColumnsDeps,[],{instance:Y()})));mt=n.useMemo(function(){var dt=[].concat(pt);return mt.forEach(function(yr){dt.find(function(Lr){return Lr.id===yr.id})||dt.push(yr)}),dt},[mt,pt]),Y().allColumns=mt;var Ht=n.useMemo(function(){return g(ne().headerGroups,D(pt,Le),Y())},[ne,pt,Le,Y].concat(g(ne().headerGroupsDeps,[],{instance:Y()})));Y().headerGroups=Ht;var Lt=n.useMemo(function(){return Ht.length?Ht[0].headers:[]},[Ht]);Y().headers=Lt,Y().flatHeaders=Ht.reduce(function(dt,yr){return[].concat(dt,yr.headers)},[]),v(ne().useInstanceBeforeDimensions,Y());var ar=pt.filter(function(dt){return dt.isVisible}).map(function(dt){return dt.id}).sort().join("_");pt=n.useMemo(function(){return pt.filter(function(dt){return dt.isVisible})},[pt,ar]),Y().visibleColumns=pt;var nt=Be(Lt),Ot=nt[0],kr=nt[1],_n=nt[2];return Y().totalColumnsMinWidth=Ot,Y().totalColumnsWidth=kr,Y().totalColumnsMaxWidth=_n,v(ne().useInstance,Y()),[].concat(Y().flatHeaders,Y().allColumns).forEach(function(dt){dt.render=A(Y(),dt),dt.getHeaderProps=f(ne().getHeaderProps,{instance:Y(),column:dt}),dt.getFooterProps=f(ne().getFooterProps,{instance:Y(),column:dt})}),Y().headerGroups=n.useMemo(function(){return Ht.filter(function(dt,yr){return dt.headers=dt.headers.filter(function(Lr){return Lr.headers?function bn(Gr){return Gr.filter(function(jo){return jo.headers?bn(jo.headers):jo.isVisible}).length}(Lr.headers):Lr.isVisible}),!!dt.headers.length&&(dt.getHeaderGroupProps=f(ne().getHeaderGroupProps,{instance:Y(),headerGroup:dt,index:yr}),dt.getFooterGroupProps=f(ne().getFooterGroupProps,{instance:Y(),headerGroup:dt,index:yr}),!0)})},[Ht,Y,ne]),Y().footerGroups=[].concat(Y().headerGroups).reverse(),Y().prepareRow=n.useCallback(function(dt){dt.getRowProps=f(ne().getRowProps,{instance:Y(),row:dt}),dt.allCells=mt.map(function(yr){var Lr=dt.values[yr.id],bn={column:yr,row:dt,value:Lr};return bn.getCellProps=f(ne().getCellProps,{instance:Y(),cell:bn}),bn.render=A(Y(),yr,{row:dt,cell:bn,value:Lr}),bn}),dt.cells=pt.map(function(yr){return dt.allCells.find(function(Lr){return Lr.column.id===yr.id})}),v(ne().prepareRow,dt,{instance:Y()})},[ne,Y,mt,pt]),Y().getTableProps=f(ne().getTableProps,{instance:Y()}),Y().getTableBodyProps=f(ne().getTableBodyProps,{instance:Y()}),v(ne().useFinalInstance,Y()),Y()},Object.defineProperty(r,"__esModule",{value:!0})})})(xE,xE.exports);xm.exports=xE.exports;function gft({globalFilter:e,setGlobalFilter:t}){const[r,n]=q.useState(e),a=xm.exports.useAsyncDebounce(o=>{t(o||void 0)},200),{t:i}=Ct(["common"]);return x("span",{children:x("input",{value:r||"",onChange:o=>{n(o.target.value),a(o.target.value)},placeholder:i("common:enter_search_criteria"),className:"form-control"})})}const vft="z2m-",PZ=e=>`${vft}${e}`,yft=v9((e,t)=>{so.setItem(PZ(e),t)}),_ft=(e,t,r,n)=>{if(n){const{instanceId:a}=n,{sortBy:i,globalFilter:o}=e;yft(a,{sortBy:i,globalFilter:o})}return e},e0=({columns:e,data:t,id:r})=>{const n=so.getItem(PZ(r))||{},{getTableProps:a,getTableBodyProps:i,headerGroups:o,rows:s,prepareRow:l,state:d,visibleColumns:u,setGlobalFilter:c}=xm.exports.useTable({instanceId:r,stateReducer:_ft,columns:e,data:t,autoResetSortBy:!1,autoResetFilters:!1,initialState:n},xm.exports.useGlobalFilter,xm.exports.useSortBy);return de("table",He(Se({},a()),{className:"table responsive",children:[de("thead",{children:[x("tr",{children:x("th",{colSpan:u.length+1,children:x(gft,{globalFilter:d.globalFilter,setGlobalFilter:c})})}),o.map(h=>de("tr",He(Se({},h.getHeaderGroupProps()),{children:[x("th",{className:"text-nowrap",children:"#"}),h.headers.map(m=>de("th",He(Se({className:"text-nowrap"},m.getHeaderProps(m.getSortByToggleProps())),{children:[x("span",{className:et({"btn-link me-1":m.canSort}),children:m.render("Header")}),x("span",{children:x("i",{className:et("fa",{"fa-sort-amount-down invisible":!m.isSorted,"fa-sort-amount-down-alt":m.isSorted&&!m.isSortedDesc,"fa-sort-amount-down":m.isSorted&&m.isSortedDesc})})})]})))]})))]}),x("tbody",He(Se({},i()),{children:s.map((h,m)=>(l(h),de("tr",He(Se({},h.getRowProps()),{children:[x("td",{children:x("div",{className:"font-weight-bold",children:m+1})}),h.cells.map(f=>x("td",He(Se({},f.getCellProps()),{children:f.render("Cell")})))]}))))}))]}))};class bft extends le.exports.Component{constructor(){super(...arguments),this.onIdentifyClick=t=>{const{touchlinkIdentify:r}=this.props;r(t)},this.onResetClick=t=>{const{touchlinkReset:r}=this.props;r(t)}}renderTouchlinkDevices(){const{touchlinkDevices:t,devices:r,touchlinkIdentifyInProgress:n,touchlinkResetInProgress:a,t:i}=this.props,o=n||a,s=[{Header:i("zigbee:ieee_address"),accessor:l=>l.ieee_address,Cell:({row:{original:l}})=>r[l.ieee_address]?x($s,{to:uw(l.ieee_address),children:l.ieee_address}):l.ieee_address},{Header:i("zigbee:friendly_name"),accessor:l=>{var d;return(d=r[l.ieee_address])==null?void 0:d.friendly_name}},{id:"channel",Header:i("zigbee:channel"),accessor:"channel"},{id:"actions",Header:"",Cell:({row:{original:l}})=>de("div",{className:"btn-group float-right",role:"group","aria-label":"Basic example",children:[x(yt,{disabled:o,item:l,title:i("identify"),className:"btn btn-primary",onClick:this.onIdentifyClick,children:x("i",{className:et("fa",{"fa-exclamation-triangle":!n,"fas fa-circle-notch fa-spin":n})})}),x(yt,{disabled:o,item:l,title:i("factory_reset"),className:"btn btn-danger",onClick:this.onResetClick,children:x("i",{className:et("fa",{"fa-broom":!a,"fas fa-circle-notch fa-spin":a})})})]})}];return x("div",{className:"table-responsive",children:x(e0,{id:"touchlinkDevices",columns:s,data:t})})}renderNoDevices(){const{touchlinkScan:t,t:r}=this.props;return x(yt,{className:"btn btn-primary mx-auto d-block",onClick:t,children:r("scan")})}render(){const{touchlinkDevices:t,touchlinkScanInProgress:r,touchlinkScan:n,t:a}=this.props;return de("div",{className:"card",children:[de("div",{className:"card-header allign-middle",children:[a("detected_devices_message",{count:t.length}),x(yt,{title:a("rescan"),className:"btn btn-primary btn-sm float-right",onClick:n,children:x("i",{className:"fa fa-sync"})})]}),x("div",{className:"card-body",children:r?x("div",{className:"d-flex justify-content-center",children:x("div",{className:"spinner-border",role:"status",children:x("span",{className:"sr-only",children:a("common:loading")})})}):t.length===0?this.renderNoDevices():this.renderTouchlinkDevices()})]})}}const wft=["touchlinkDevices","devices","touchlinkScanInProgress","touchlinkIdentifyInProgress","touchlinkResetInProgress"];var Sft=Mn(["touchlink","zigbee","common"])($r(wft,Br)(bft));const Aft={"ui:order":["base_topic","server","user","password","client_id","version","ca","key","cert","reject_unauthorized","*"]},Tft={"ui:order":["port","adapter","disable_led","*"]},kft={"ui:order":["port","host","*"]};var Cft={mqtt:Aft,serial:Tft,frontend:kft},Eft=Sq,IB=tn;function Ift(e,t,r,n){return e==null?[]:(IB(t)||(t=t==null?[]:[t]),r=n?void 0:r,IB(r)||(r=r==null?[]:[r]),Eft(e,t,r))}var Dft=Ift;function xft(e){const{devices:t}=e,{t:r}=Ct(["stats","zigbee"]),n=Object.values(t).filter(s=>s.type!=="Coordinator"),a=n.length,i={byType:{},byPowerSource:{},byVendor:{},byModel:{}};n.forEach(s=>{i.byModel[s.model_id]=(i.byModel[s.model_id]||0)+1,i.byVendor[s.manufacturer]=(i.byVendor[s.manufacturer]||0)+1,i.byType[r(s.type)]=(i.byType[r(s.type)]||0)+1;const l=r("zigbee:"+yC(s.power_source));i.byPowerSource[l]=(i.byPowerSource[l]||0)+1});const o=Object.entries(i).map(([s,l])=>x("li",{className:"list-group-item d-flex justify-content-between align-items-start",children:de("div",{className:"ms-2 me-auto",children:[x("div",{className:"fw-bold",children:r(s)}),Dft(Object.entries(l),[([d,u])=>u],["desc"]).map(([d,u])=>de("div",{children:[d,": ",u]},d))]})},s));return de("ol",{className:"list-group list-group-numbered",children:[x("li",{className:"list-group-item d-flex justify-content-between align-items-start",children:x("div",{className:"ms-2 me-auto",children:de("div",{className:"fw-bold",children:[r("total")," ",a]})})}),o]})}const Oft={access:"public",cache:""},Mft=["*.css"],Rft="zigbee2mqtt-frontend",Lft="0.6.105",Pft="GPL-3.0",$ft={build:"vite build",preview:"vite preview",start:"vite serve",postversion:"git push && git push --tags",version:"conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",pretty:'prettier --write "./**/*.{js,jsx,json}"',postinstall:"husky install",prepublishOnly:"pinst --disable",postpublish:"pinst --enable"},zft=["dist/*"],Nft={"@commitlint/cli":"^16.1.0","@commitlint/config-conventional":"^16.0.0","@ebay/nice-modal-react":"^1.2.1","@fortawesome/fontawesome-free":"^6.0.0","@rjsf/core":"^4.1.1","@toolz/local-storage":"^1.0.5","@types/color-convert":"^2.0.0","@types/d3-drag":"^3.0.1","@types/d3-force":"^3.0.3","@types/d3-selection":"^3.0.2","@types/d3-zoom":"^3.0.1","@types/events":"^3.0.0","@types/file-saver":"^2.0.5","@types/json-schema":"^7.0.11","@types/lodash":"^4.14.178","@types/react":"^17.0.39","@types/react-dom":"^17.0.11","@types/react-router-dom":"^5.3.3","@types/react-table":"^7.7.9","@types/react-transition-group":"^4.4.4","@types/reconnectingwebsocket":"^1.0.7","@types/ws":"^8.5.3","@typescript-eslint/eslint-plugin":"^4.33.0","@typescript-eslint/parser":"^4.33.0","@vitejs/plugin-react":"^1.3.2","ace-builds":"^1.4.14",bootstrap:"^5.1.3",classnames:"^2.2.6","color-convert":"^2.0.1","conventional-changelog-cli":"^2.2.2","d3-drag":"^3.0.0","d3-force":"^3.0.0","d3-force-reuse":"^1.0.1","d3-selection":"^3.0.0","d3-zoom":"^3.0.0","deep-diff":"^1.0.2",eslint:"^7.32.0","eslint-config-prettier":"^8.5.0","eslint-config-react":"^1.1.7","eslint-plugin-prettier":"^4.0.0","eslint-plugin-react":"^7.28.0",events:"^3.3.0","file-saver":"^2.0.5",husky:"^7.0.4",i18next:"^21.6.16","i18next-browser-languagedetector":"^6.1.3",jszip:"^3.7.1","line-reader":"^0.4.0",lodash:"^4.17.21",notyf:"^3.10.0",pinst:"^2.1.6",prettier:"^2.5.1",react:"^17.0.1","react-ace":"^9.5.0","react-app-polyfill":"^3.0.0","react-bootstrap":"^2.4.0","react-css-theme-switcher":"^0.3.0","react-dom":"^17.0.1","react-i18next":"^11.16.6","react-image":"^4.0.3","react-notifications":"^1.7.3","react-router-dom":"^5.3.0","react-table":"^7.7.0","react-transition-group":"^4.4.2","reconnecting-websocket":"^4.4.0",sass:"^1.52.0","timeago.js":"^4.0.2",typescript:"^4.5.5",unistore:"^3.5.2",vite:"^2.9.9","vite-plugin-compression":"^0.5.1","vite-plugin-html":"^3.2.0","vite-plugin-sass-dts":"^1.1.31",ws:"^8.6.0","zigbee-herdsman":"^0.14.26","zigbee-herdsman-converters":"^14.0.425"},Fft="index.js",Bft={hooks:{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS"}},Wft={type:"git",url:"git+https://github.com/nurikk/zigbee2mqtt-frontend.git"},Hft={url:"https://github.com/nurikk/zigbee2mqtt-frontend/issues"},jft={"@rjsf/bootstrap-5":"https://github.com/nurikk/fileshare/blob/main/rjsf-bootstrap-5-4.2.0.tgz?raw=true"};var Uft={private:!1,publishConfig:Oft,sideEffects:Mft,name:Rft,version:Lft,license:Pft,scripts:$ft,eslintIgnore:zft,devDependencies:Nft,main:Fft,husky:Bft,repository:Wft,bugs:Hft,dependencies:jft};const Vft=Xw(gO),hv="main",$Z=["groups","devices","device_options","ban","whitelist","map_options"],Gft=["object","array"],DB=(e,t={},r={})=>{t.required&&(t.required=t.required.filter(n=>e.includes(n)));for(const n of e)t.properties&&delete t.properties[n],delete r[n];return{schema:t,config:r}},qft=[{translationKey:"settings",url:"/settings/settings"},{translationKey:"tools",url:"/settings/tools"},{translationKey:"about",url:"/settings/about"},{translationKey:"raw",url:"/settings/bridge"},{translationKey:"translate",url:"/settings/translate"},{translationKey:"donate",url:"/settings/donate"}],Kft=[x("div",{className:"row pb-2",children:x("div",{className:"col",children:x("a",{target:"_blank",rel:"noopener noreferrer",href:"https://www.buymeacoffee.com/nurikk",children:x("img",{crossOrigin:"anonymous",src:"https://img.buymeacoffee.com/button-api/?text=Thanks for frontend&emoji=\u{1F37A}&slug=nurikk&button_colour=FFDD00&font_colour=000000&font_family=Arial&outline_colour=000000&coffee_colour=ffffff"})})})},"nurikk"),x("div",{className:"row pb-2",children:x("div",{className:"col",children:x("a",{target:"_blank",rel:"noopener noreferrer",href:"https://www.buymeacoffee.com/koenkk",children:x("img",{crossOrigin:"anonymous",src:"https://img.buymeacoffee.com/button-api/?text=Thanks for zigbee2mqtt&emoji=\u2615&slug=koenkk&button_colour=FFDD00&font_colour=000000&font_family=Arial&outline_colour=000000&coffee_colour=ffffff"})})})},"koenkk")].sort(()=>Math.random()-.5),Qft=(e,t)=>Gft.includes(t.type)&&!$Z.includes(e)||(t&&t.oneOf?t.oneOf.length>0:!1);class Zft extends le.exports.Component{constructor(){super(...arguments),this.state={keyName:hv},this.downloadBackup=()=>{const{backup:t,bridgeInfo:r}=this.props,n=b9(new Date).replace(/[\s_:]/g,"-"),a=`z2m-backup.${r.version}.${n}.zip`;Mx.exports.saveAs(`data:application/zip;base64,${t}`,a)},this.onSettingsSave=t=>{const{formData:r}=t,{updateBridgeConfig:n}=this.props,{keyName:a}=this.state;n(a===hv?r:{[a]:r})}}renderCategoriesTabs(){const{t}=this.props;return x("ul",{className:"nav nav-tabs",children:qft.map(r=>x("li",{className:"nav-item",children:x(p2,{className:"nav-link",activeClassName:"active",to:r.url,children:t(r.translationKey)})},r.url))})}render(){return de("div",{className:"tab",children:[this.renderCategoriesTabs(),x("div",{className:"tab-content h-100 p-0 p-sm-3",children:x("div",{className:"tab-pane fade show active",children:this.renderSwitcher()})})]})}renderSwitcher(){const{match:t}=this.props,{tab:r}=t.params;switch(r){case"tools":return this.renderTools();case"bridge":return this.renderBridgeInfo();case"about":return this.renderAbout();case"settings":return this.renderSettings();case"donate":return this.renderDonate();case"translate":return this.renderTranslate();default:return x(jG,{to:"/settings/settings"})}}renderTranslate(){return x("div",{className:"p-3",children:de("p",{children:["You can help with the translation at ",x("a",{target:"_blank",rel:"noopener noreferrer",href:"https://poeditor.com/join/project?hash=Az88waAhPd",children:"POEditor"})]})})}renderAbout(){var l,d,u,c,h,m,f,g;const{bridgeInfo:t,devices:r,t:n}=this.props,i=((l=t.version)==null?void 0:l.match(/^\d+\.\d+\.\d+$/))===null?t.version:x("a",{target:"_blank",rel:"noopener noreferrer",href:`https://github.com/Koenkk/zigbee2mqtt/releases/tag/${t.version}`,children:t.version}),o=t.commit?de(St,{children:["commit: ",x("a",{target:"_blank",rel:"noopener noreferrer",href:`https://github.com/Koenkk/zigbee2mqtt/commit/${t.commit}`,children:t.commit})]}):null,s=[{translationKey:"zigbee2mqtt_version",content:de(St,{children:[i," ",o]})},{translationKey:"coordinator_type",content:x(St,{children:(u=(d=t.coordinator)==null?void 0:d.type)!=null?u:n("common:unknown")})},{translationKey:"coordinator_revision",content:x(St,{children:(m=(h=(c=t.coordinator)==null?void 0:c.meta)==null?void 0:h.revision)!=null?m:n("common:unknown")})},{translationKey:"coordinator_ieee_address",content:x(St,{children:(g=(f=t.coordinator)==null?void 0:f.ieee_address)!=null?g:n("common:unknown")})},{translationKey:"frontend_version",content:Uft.version},{translationKey:"stats",content:x(xft,{devices:r})}];return x("div",{className:"p-3",children:s.map(v=>de("dl",{className:"row",children:[x("dt",{className:"col-sm-3",children:n(v.translationKey)}),x("dd",{className:"col-sm-9",children:v.content})]},v.translationKey))})}renderBridgeInfo(){const{bridgeInfo:t}=this.props;return x("div",{className:"p-3",children:x("pre",{children:JSON.stringify(t,null,4)})})}renderBackupControls(){const{backup:t,prepearingBackup:r,requestBackup:n,t:a}=this.props;return r?x(yt,{className:"btn btn-primary d-block mt-2 disabled",children:x(SG,{})}):t?x(yt,{className:"btn btn-primary d-block mt-2",onClick:this.downloadBackup,children:a("download_z2m_backup")}):x(yt,{className:"btn btn-primary d-block mt-2",onClick:n,children:a("request_z2m_backup")})}renderTools(){const{exportState:t,restartBridge:r,t:n}=this.props;return de("div",{className:"p-3",children:[x(yt,{className:"btn btn-primary d-block mt-2",onClick:t,children:n("download_state")}),x(yt,{className:"btn btn-danger d-block mt-2",onClick:r,prompt:!0,children:n("restart_zigbee2mqtt")}),this.renderBackupControls()]})}getSettingsTabs(){const{bridgeInfo:{config_schema:t={properties:{}}},t:r}=this.props,n=Object.entries(t.properties).filter(([a,i])=>Qft(a,i)).map(([a,i])=>({name:a,title:r(a,{defaultValue:i.title})}));return n.unshift({name:hv,title:r("main",{defaultValue:"Main"})}),n}getSettingsInfo(){const{keyName:t}=this.state,{bridgeInfo:{config_schema:r,config:n}}=this.props;let a=DB($Z,TC(r),TC(n)),i=a.schema,o;if(t===hv){const s=this.getSettingsTabs().map(l=>l.name);a=DB(s,a.schema,a.config),i=a.schema,o=a.config}else o=a.config[t],a.schema.properties&&(i=a.schema.properties[t]);return{currentSchema:i,currentConfig:o}}renderSettingsTabs(){const{t}=this.props,r=this.getSettingsTabs(),{keyName:n}=this.state;return x("div",{className:"nav nav-pills",children:r.map(a=>x("li",{className:"nav-item",children:x("a",{className:et("nav-link",{"bg-primary active":n===a.name}),"aria-current":"page",href:"#",onClick:i=>{this.setState({keyName:a.name}),i.preventDefault()},children:t(a.name,{defaultValue:a.title})})},a.name))})}renderSettings(){const{keyName:t}=this.state,{currentSchema:r,currentConfig:n}=this.getSettingsInfo();return de("div",{className:"tab",children:[this.renderSettingsTabs(),x("div",{className:"tab-content",children:x("div",{className:"tab-pane active",children:x(Vft,{idPrefix:t,schema:r,formData:n,onSubmit:this.onSettingsSave,uiSchema:Cft[t],fields:oZ})})})]})}renderDonate(){const{t}=this.props,r=t("donation_text",{returnObjects:!0,defaultValue:[]});return de("div",{className:"container-fluid",children:[r.map(n=>x("p",{children:n},n)),Kft]})}}const Yft=m2(Zft),Xft=["bridgeInfo","missingTranslations","devices","backup","prepearingBackup"],Jft=Mn(["settings","common"])($r(Xft,Br)(Yft));function zZ(e){const[t,r]=le.exports.useState(e),n=le.exports.useRef(null),a=o=>{o.key==="Escape"&&r(!1)},i=o=>{n.current&&!n.current.contains(o.target)&&r(!1)};return le.exports.useEffect(()=>(document.addEventListener("keydown",a,!0),document.addEventListener("click",i,!0),()=>{document.removeEventListener("keydown",a,!0),document.removeEventListener("click",i,!0)})),{ref:n,isComponentVisible:t,setIsComponentVisible:r}}function ept(e,t){le.exports.useEffect(()=>{const r=n=>{!e.current||e.current.contains(n.target)||t(n)};return document.addEventListener("mousedown",r),document.addEventListener("touchstart",r),()=>{document.removeEventListener("mousedown",r),document.removeEventListener("touchstart",r)}},[e,t])}function tpt(e,t){if(e==null)return{};var r={},n=Object.keys(e),a,i;for(i=0;i<n.length;i++)a=n[i],!(t.indexOf(a)>=0)&&(r[a]=e[a]);return r}function rpt(e){for(var t=document.head,r=0;r<t.childNodes.length;r++){var n,a=t.childNodes[r];if(a.nodeType===8&&(a==null||(n=a.nodeValue)==null?void 0:n.trim())===e)return a}return null}function npt(e){return typeof HTMLElement=="object"?e instanceof HTMLElement:e&&typeof e=="object"&&e!==null&&e.nodeType===1&&typeof e.nodeName=="string"}function apt(e){var t={};return e.forEach(function(r){return t[r]=r}),t}function ipt(e){for(var t=document.createElement("link"),r=0,n=Object.entries(e);r<n.length;r++){var a=n[r],i=a[0],o=a[1];if(i==="onload"){t.onload=e.onload;continue}t[i]=o}return t}var Om;(function(e){e.idle="idle",e.loading="loading",e.loaded="loaded"})(Om||(Om={}));var NZ=le.exports.createContext(void 0);function opt(e){var t=e.themeMap,r=e.insertionPoint,n=e.defaultTheme,a=e.id,i=a===void 0?"current-theme-style":a,o=e.attr,s=o===void 0?"data-theme":o,l=tpt(e,["themeMap","insertionPoint","defaultTheme","id","attr"]),d=le.exports.useState(Om.idle),u=d[0],c=d[1],h=le.exports.useState(),m=h[0],f=h[1],g=le.exports.useCallback(function(b){if(r||r===null){var S=npt(r)?r:rpt(r);if(!S)return console.warn("Insertion point '"+r+"' does not exist. Be sure to add comment on head and that it matches the insertionPoint"),document.head.appendChild(b);var w=S.parentNode;if(w)return w.insertBefore(b,S.nextSibling)}else return document.head.appendChild(b)},[r]),v=le.exports.useCallback(function(b){var S=b.theme;if(S!==m){if(t[S]){c(Om.loading);var w=ipt({type:"text/css",rel:"stylesheet",id:i+"_temp",href:t[S],onload:function(){var A=document.getElementById(i);A&&A.remove();var I=document.getElementById(i+"_temp");I&&I.setAttribute("id",i),c(Om.loaded)}});g(w),f(S)}else return console.warn("Could not find specified theme");document.body.setAttribute(s,S)}},[t,g,s,i,m]);le.exports.useEffect(function(){n&&v({theme:n})},[n]),le.exports.useEffect(function(){var b=Object.keys(t);b.map(function(S){var w="theme-prefetch-"+S;if(!document.getElementById(w)){var _=document.createElement("link");_.rel="prefetch",_.type="text/css",_.id=w,_.href=t[S],g(_)}return""})},[t,g]);var y=le.exports.useMemo(function(){return{switcher:v,status:u,currentTheme:m,themes:apt(Object.keys(t))}},[v,u,m,t]);return le.exports.createElement(NZ.Provider,Object.assign({value:y},l))}function spt(){var e=le.exports.useContext(NZ);if(!e)throw new Error("To use `useThemeSwitcher`, component must be within a ThemeSwitcherProvider");return e}const lpt=e=>{const{saveCurrentTheme:t}=e,{switcher:r,themes:n,status:a,currentTheme:i}=spt(),o=i==="dark";return a==="loading"?x("div",{children:"Loading styles..."}):x(yt,{item:o,className:"btn btn-info",onClick:l=>{const d=l?n.light:n.dark;t(d),r({theme:d})},children:o?"\u{1F311}":"\u{1F31E}"})};var upt="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABDCAYAAABqS6DaAAABg2lDQ1BJQ0MgcHJvZmlsZQAAKJF9kT1Iw0AcxV9TpSIVBzuIOASsThbEijhqFYpQIdQKrTqYXPoFTRqSFBdHwbXg4Mdi1cHFWVcHV0EQ/ABxdHJSdJES/5cUWsR4cNyPd/ced+8AoVFhmtU1AWi6baaTCTGbWxVDrxAwiAhGEJeZZcxJUgq+4+seAb7exXiW/7k/R5+atxgQEIlnmWHaxBvE05u2wXmfOMJKskp8Tjxu0gWJH7muePzGueiywDMjZiY9TxwhFosdrHQwK5ka8RRxVNV0yheyHquctzhrlRpr3ZO/MJzXV5a5TnMYSSxiCRJEKKihjApsxGjVSbGQpv2Ej3/I9UvkUshVBiPHAqrQILt+8D/43a1ViE96SeEE0P3iOB+jQGgXaNYd5/vYcZonQPAZuNLb/moDmPkkvd7WokdA/zZwcd3WlD3gcgcYfDJkU3alIE2hUADez+ibcsDALdC75vXW2sfpA5ChrlI3wMEhMFak7HWfd/d09vbvmVZ/P7jXcsNND5Q3AAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAA3XAAAN1wFCKJt4AAAAB3RJTUUH5gIYFCQtTLzIUAAAAPpJREFUeNrt2s0JwkAUReGMBkXBjUEEKxBLsAlrsAibsh9FlIA7124E/xibSOBhvlPCPXC5b5j0rseHAmEoU5FXYohDTwSEgBBCQMifrKz7fiiFQKTzdJHFoLJACCEghBA0PXtTXwihZu+nHpm9KguEEAJCCAEh/z57b9vK7I0kxPO7ygIhhIAQQtAC5WD5lUKk2ev5XWWBEEJACCEgpAOz97qem72RDsPXyccslQVCCAEhhKD5lTXZPKUQ6Q7x/K6yQAghIIQQENKB2XuZ+Wwd6jDMvmWpLBBCCAghBC2srGr3kEKkO8Tzu8oCIYSAEELQxuzNRTqKIQ4/168l3OOMpgUAAAAASUVORK5CYII=",dpt="assets/uk.9b7898ef.png",cpt="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABDBAMAAACYZb3pAAAAHlBMVEXtKTn3qa/84OK2q80pQqIAI5Wrt9ztKTn5t7z///9ckyEgAAAABXRSTlPU7Pj6/i021ewAAAA8SURBVEjHY3BBA85KaECAAR2EooGwmWigvRwNjGoZ1TKqZVTLqJZRLaNaRrWMahnVMqplVMuQ0UJ6LwkAaPHwH750UDMAAAAASUVORK5CYII=",hpt="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABDCAMAAABdlVDoAAADAFBMVEUAAAAAADMAAGYAAJkAAMwAAP8AMwAAMzMAM2YAM5kAM8wAM/8AZgAAZjMAZmYAZpkAZswAZv8AmQAAmTMAmWYAmZkAmcwAmf8AzAAAzDMAzGYAzJkAzMwAzP8A/wAA/zMA/2YA/5kA/8wA//8zAAAzADMzAGYzAJkzAMwzAP8zMwAzMzMzM2YzM5kzM8wzM/8zZgAzZjMzZmYzZpkzZswzZv8zmQAzmTMzmWYzmZkzmcwzmf8zzAAzzDMzzGYzzJkzzMwzzP8z/wAz/zMz/2Yz/5kz/8wz//9mAABmADNmAGZmAJlmAMxmAP9mMwBmMzNmM2ZmM5lmM8xmM/9mZgBmZjNmZmZmZplmZsxmZv9mmQBmmTNmmWZmmZlmmcxmmf9mzABmzDNmzGZmzJlmzMxmzP9m/wBm/zNm/2Zm/5lm/8xm//+ZAACZADOZAGaZAJmZAMyZAP+ZMwCZMzOZM2aZM5mZM8yZM/+ZZgCZZjOZZmaZZpmZZsyZZv+ZmQCZmTOZmWaZmZmZmcyZmf+ZzACZzDOZzGaZzJmZzMyZzP+Z/wCZ/zOZ/2aZ/5mZ/8yZ///MAADMADPMAGbMAJnMAMzMAP/MMwDMMzPMM2bMM5nMM8zMM//MZgDMZjPMZmbMZpnMZszMZv/MmQDMmTPMmWbMmZnMmczMmf/MzADMzDPMzGbMzJnMzMzMzP/M/wDM/zPM/2bM/5nM/8zM////AAD/ADP/AGb/AJn/AMz/AP//MwD/MzP/M2b/M5n/M8z/M///ZgD/ZjP/Zmb/Zpn/Zsz/Zv//mQD/mTP/mWb/mZn/mcz/mf//zAD/zDP/zGb/zJn/zMz/zP///wD//zP//2b//5n//8z///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABlenwdAAABAHRSTlP///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG8mZagAAAAlwSFlzAAAOxAAADsQBlSsOGwAAADdJREFUWIXtzQENAAAIAyD7FzCadWzxuQkFqAkoiUQikUgkEolEIrmSdIBEIpFIJBKJRCKRvEoWJNiqA2rbaEoAAAAASUVORK5CYII=",mpt="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAA8AgMAAADtUfddAAAACVBMVEUAAADdAAD/zgDGIigcAAAAHUlEQVQ4y2NgGAWjAAhCcYFRmRElswoXGJUZSTIAQ83yHB4q//IAAAAASUVORK5CYII=",fpt="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABDBAMAAACYZb3pAAAAFVBMVEXVKx7///8AOaZUNHFkh8nVKx7///90yNRsAAAAAnRSTlPU1BJ52+4AAAA3SURBVEjH7csxAQAgEMSws4AFLGABC1jAv4TX0PmaPVlYPmaxWErLxbIxi8VSWg6Wh1ksltLCDf2spTBQVKLHAAAAAElFTkSuQmCC",ppt="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFYAAAA8CAIAAABzW9qcAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAABmJLR0QA/wD/AP+gvaeTAAAAB3RJTUUH5QYFFi0G4yEFGwAADslJREFUaN7tm3lw3dV1x7/n3vv76S3Se9olS5asxZY3eZMrKEuoiXHSOGwtUwqkC00Ylk6h06bLH4SmZZhOZ9ImM2mYGJhC0nbSEDwlBgMZTIILrQ208oIXyciWrN3Sk/T09PS23+937+kfT7JlW7a8SFan8ZH+eH88/e6933t+53POuVeEl27GL7eJhZ7Awtt1Ca5LcF2ChZdAEkviX1IJJDEB2rW0axGwgEKoaz8kAYrY9SRAT9b2EPDdk4s12FLa4wVQ4lpLIIk1k+tYy8Px76/suL0kBsK9paNPtNUdG8uD5WW/cE2nhLurrs1I2c3XrgLh6aXd29cdq8vLuC4ZTfV56T+sPGUEfxANsaeUNIxrp8I1kkARGxbGVTcXj+3ccPTBqmEycDUpYkHwNCnC58ti9xWPHEwGuuJBCFaCzTURYt4lEARJ7LmW3/K+vbLjhdUnynyu4xIRJJ35DgOupoqA+7XKoeKczO5o2HFtJTVo3qPD/EpgEWstjFZ3Lxr6WdPRLWUxo6ENKWICmAEQQACyimhDAG4snvj98qGOjN0aCzHYmmd3mC8JJDERaccqDWRebmx/bnl3SGnHIwFiJmOICEKAJEiAAGbSRhCIAFdTga0fqBxeFZz4MBYaT+cIZQTxPAWIuZeAAIvY8yQbemRJ/84NrU2FCc8lbYiYlGIRZOlnYqTTMp600xlFgOUzMpeFzaRhtGCGMbQmP/lYxeCwli3REBthzU+YpLktlieR5qpJ5pXG4ME1BEOWbRDARMR6d1/Nrn21B0+U9o3kJtIWgKDPrSiaWF83tKXp5JamzrxSF0m4joBgSzAU3h8KP9Fadyw2L9ScMwmyGZ7nKQjzdF3Ps/XdQsF1iQAwVIhHBnx/v/2GV95dM9hbCENQBkojG+yY4El4AoJLK6N/8IVDf/5bHxctSnvjBAIDlsXGwzdPVD/XsRhaKsvTc5dEzY0EitgzAp68qTi6beWJtQVJuPCYCJCCEcAPdjT+ybbPj/UXIOBI2yUCMzGDp+QjAhEzQzsKyZz8irHvPPbzh+89jCS0IQYUMSwcigYeb6vfEymA0koYby7c4WpjwTnMe3Ea8wCSkiHxtb/70l8/vyVthJWX4WyCwMRMPIkD4myMZGImksYKOslEzo531/SMBO659bggMBNovqh5VRJMZ947ZzMPTFIwJO56+r5XdzRZhQkQayMwezwjY0hIowJOy3/XtXQVPXRHqwCYSRLPBzWvUILpzPunxvbnlneHlXY8kgRBAGCYRBAP/+3W195osovjrpaXFcwZZJjs3HTroaqT0cC9m9u1Q4IgCHNOzcuW4HzmbSxMeC4xQ01NwNPCKuCX/339sy9s9pUkPCOlECQghBCCBCH7M6tpI6xgZt++msrSaHPToJcSQjAASTAGxtCaguSjFYMjV0fNywuHF2KemvY+GiZpc3dfzpKvfBUTfggPkDAaQgIGYEgBJSBJWEoQMdgYcDZVpGzKeMYEsfFkbm76+CsvlhUntUti2lge09VT81K9YLLO886t8whnUv0pCYTw80tv3TMwsWXjjbkbN9Y2rCu85calS1aGV6+qXFZfESoM5OTYxFZqbMIkMuwyYMgSSgrj6kk8TBmDLFunh/NcaX791zr1lCNMCQQGvKurNS/JC2Zknstnbf7pBzKzUOVvez8MFZZ1JDpLgvlSyLAdbBvruq1swwtHdnx95e9YGd+PDv5Hnbv0k8Pd733S1nU80d0bRSoRripMO57jaJ7mDETMnswPJ0+88mJhftp4dD4EPCbrNDVb6/cMXwY1Z/GC08zzncc8OfPDFYyh/AeHxf1H29v9oyXRLhw5MjJykvs6UuOnzOhIpjFvaZTHBuze+9feWtXM/vXjD9y1rmqVr6G8/qam6v2HB5zROPktSWJKCFKWTo7krVk+sLYx4qXPcoTp7jCNms7uaOgSqXkxL7CIXS1g5N2Lhr63oqMq1zEuDNNF+nzaCBU0T7/0lRd23lgaTncPTCTiKYDABkKCTK4/SLYuKghUVYR/ZWVVxdKcLzSv7PJ12LkcpGCk2+nYl/m31w+17BuAlxR5fgDGsJLGiwV+956Wf/6bt9yYUNJccAJMglhY6J2w/6itbsdAKYS2pHEv7A4ze4GYjXkXVJSYGE9+d0P3EWfzlqWDo/F4IkU+QRZBApIcnXEy3thoortj+KO97bve6/yXHYc696dzJ4piOr52+SKvNvLAneuKaqWVDne2R9i4ymcxM2tBln78iwfERTf1ItSkC1BzBgkEwXiStXikpn/n+taNRecy70LGDKEQi9vf2n5LAsEjbb3xpEtKMANT0yYhSJBQUuQoGcyBLRzH6e4Y+vmuox/vjfUdz5An8hfJ/GXe7ZurK5eE4gP2qc4B+BSENODHvnTA59NspkfMmTb2fGqOhplJSD5fv3MlEIAxtDqUeHvj0cdrBnOIXY8UMV1SfCWSiI77vr292XGFsMS5qjNgOPtyMsMYZgYJIX0W2zKYa53oHX3nteNdre6GkoZTud0P33Hz4o1UHCjbf2CInbTttx7duj8v6LKhWedDhGxLLiDNXeXRO4tH98Rzh9J2NmpMt3nsIJ8WPDtddnVJaWhNw6JffNBGOdZkqGNmZs1ERMMjCRBESO7Ze2zPns823b5i0RMD8YrRp/5yXdVa9YPvdHX0fyYubSsuy871AgaEwFAq56WeRX0Za1P+eMBntCYAlzI6CbCmbW9tSCRySJrJisAYEIFExtWnhsddc2YbbFtJKbRhAoiIBDFD5ljkU53HBl97s605vDZePNiwOvwbd6wfHe6/r3mX329mfREAGIYBWTaPO/LJ1rrHDzdEMrZQfH4gnSEWMCCkIcktI/kvD5ZU287a/KQguIbkLLEQYPhy9L++t2owEla2MYYBVJTnTyQdIjKaXUdnIyoRYSLd2Li4pDA42BmBbdGUizKDGdJvMbB71+FTJ9SWpuU94f4/3Vpbol9hnn39LpMlIRR+0le0df+qDyKFwtYkjJmJCzMfqBkmw7BsdyhtP7B/1T0tK3pStm0zAxfPPT0tEMD6+ggc4Y1N3LKx5o5bGvr7o2yYM+5koTOlV+OGmoNH+w9+2vO5TauKC4Psmelr09oAQCjnk4+O3/XgjwJty8p9g1rzxV/ebCvFtrk3Zd/bsuK3968eTNuW7RqGucDML5YaGZAQkFK3xkLf7y8NC/2rBRNCwjXZUmdm7aSfx0blzk9vaFxdcKBtcHB4wkk54YJAeVl4LJo47UhsGES5wZxEykk7ejyR0cacU0oTYUllYZo54zrbf3r8i2t/XF3ZpV3MyEXO5oiKifC9k4vuPrDycCykLBdilm2b5VjVMDwmZblpLZ86vOzmj9d8GgvYNgtgxtxTCkYKX76ho6okOpESXsqJT6QhhK1kOM8H8PR4NjQyMTyWhOGhyHgm406P8tl3SghxW3OtMaaxoaasbLQ6/7+gIWiGvMhjEoBt86FY4JaP1zx5eFlKS2W5HpOZraNySSfLHhMRK9vdO5q/bu+Gb7RVG8Cy+PxTUCJ2M6K02rmz+ZPO/VE7IEgIACWFwWOdEbhapyeXKqRAyrlhTdWtN9bD1UKKqWKRALBnhCSdyLzxi6O3Ni0+/OHAQ5s+razXbuZcJkxuvsUGeKateu3e9XtG8pXtEvElttUuo19gQFIaBj6MFL4aKVwdSNWH0sTwmM5KGQnCYGN95IXda1NJWwjDJMYTmUwys37dksLCYGQgRpYEGERpVw+PJZMZl6RQSoLBrgeigvxgaiJdVBpat6J890c9eaWZV5/+aa7l4uxY6DEpAWnh/Uh46/5Vr/eXQRopzbwUy1OSEwGW0kPpnB/2lfWlrU0F44Gcs6hJBM8VoTKn2J98871GFXAMk9YGnikoDDqujkYTpCQzSFIynkkmHUjy++0VdaWnTgw2rKoEUW4gJzfPX1QQ7OqLJAbk83/2s9tu6nUTQk4VSGcx72jdHx+tH3Fsy/IYdLlNtCtpnGXdgQRaRvJfPjUDNYVgnabmdYMnI8F9/1Nr56a1EaRkZCAWjSbO5EUASUFSAHBdPTgSX9pQHhlNJFLO8trSjt6R4ehY/KT18IMtzz72n16clJz8qxmYZ2lxpQ3lK+wdMogBS+m4q7YPlO2P+2/NHy/0azYwPNkaI417P9fe0lXUeqjKCmaYAaVIyem9gMkcgAgEIaihpvh417D2TG7QGo3F3UjuXV8+8uo33oCLbJTQTERQNnqT9u8dWvZce21CC8vSerIffSV2VR3k6dTc1l8aOouanNXioTtae2K+lpZaVsaytJk8Sp1cv89nKSU9V4OIGb0nh8kWtsW5wfBwD3/1/o9+/MybYGhD2fA2xbzyS2fe/EqAbOEDUlI7Rr5zqvjdaKg5b6Ii1yUDA2ImAdyz+Xhtxcjuw4uTQyFIlkpLwZQ9Q8gWS8RSQAqWOVI7So/7He5/8S/e/uaje+BMHqVIgrRxaCzwmwdXvHhysUdQc3QxZ26OVQ2ICErp7kRgW1+5p2lTYUxa0IaYyWSoad3Qo5sPCr/bfio/PhIyKZu1BJPRMJqgJWcsk7SNo0rLY0/e//H2Z3be1NzvxYlBWQAbg79qr37wUENPIqBsLyv91c8cC3Ksumtfza59NQdOlP1/O1ad9sTTF8rwSPXAPzScDPm05xAYzGRZBn5AAGmkkzLlKAB+2/MFNHyAAVJwXUHEICiL4xn59c9qXupeBGCerqTNvQRZk8QMMo4qDab+cXnn/ZXDMHA0KcAwMUMKFoIns1MDY0hn710Qe4AtGQI/6St66ljdYMIvbI8wXzfR5kuCrE1vwD6/omPx2Q1YPkOHya7UFTQ/r97m967RRamZPVCf/D27zptL5i2wBDiPmrumUfN0ceExqXlj3sJLkLXT1OyaOENNZcHTZEDzyrz/KxKcFuLcWjMvLRXej4S3Hlj1et+V1HlXb/MbDi8w5LRr2DW92WvYWLhr2AsgQdYksWFiTwEg5Ylrfvv6tC3AZfysZRcsLTf7eaHWv5ASTBdiYe36/yZdl+C6BNclAID/BUwSpfcJY6YzAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDIxLTA2LTA1VDIyOjQ0OjU1KzAwOjAw3ulX6gAAACV0RVh0ZGF0ZTptb2RpZnkAMjAyMS0wNi0wNVQyMjo0NDo1NSswMDowMK+071YAAAAASUVORK5CYII=",gpt="assets/es.2fe6a1a7.png",vpt="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABDBAMAAACYZb3pAAAAD1BMVEUAW7rawxsAW7t/mF7/1QCzxg4pAAAAAnRSTlPU+CChtw0AAAAxSURBVEjH7csxEQAgDASwt4AFLNQC/jUhofd7sifp3ZqiKIqi7GVqeTVFURRF2cupfb6QiufYvy3hAAAAAElFTkSuQmCC",ypt="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGUAAABDCAYAAACFicvkAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAToSURBVHhe7ZpdaBxVFMf/dz73I27bpIk2iQ+NBkUf2mKrVcQvEATxQaVIKa0VBBF8EAUrPoiChSL1xWd9EhH8eNdARUQfFBQriIogaikaTWI22ezs7nx57uyNyRo32dmN7u3O+ZEwO3M3O5P7m3vuOXdWLExOx2C0wlBbRiNYioZoI0WMheoV0z8pAjCvrcOYCGBM+iienlUNTP+kUHphXBlg6M2Lya8ocb6xSs9SRDECrO46NPgqB+HGMKd8mIc8FM/OwphqqNbs0rMU5/5lmHt9tZcCOnPu5CLEZRHimoHgXBH1N3YiLpvqDdmlNylODPeRRZjX19WBzhF2jMZMEYsH9qJ2dhj+xwUE513E8yylJynWwVoySuzbqqlDWFwXCM/nAF+g/l4Jwed51cJ0L4WyJ/vuSiLDur1Kc0v3E3U8ZyL83lF7TeRcZV6j5hc6F2juyQpdSxGlCNaBWtJhxljQHC3bSOwZKL48S2LqyFGItA96qmXw6VqKcQVlTNNrmZJzZKmXcdeKFH15ALE7ROn9C3BOlBH+2DqSBpn2C5IyPN25QpM4dbzY+BaLCj/7PgpfinjJaGZPVRlr/kGF2t4uIaZtJzgPLCP3xALMq+jc9CfRBRvLRycQ/Wyrdww2m64Si1yM/Kk5OA8tQQxRPbKef+l7WRC2QPvhdy68l3bD/6Swsb0d9NliV4j80/Owbq0mCUH0hwXvzEiSGAw6Wy/dU+pq3+KhcIYKu8lAHeyAgLKqt0qovTqM6DdLHUyHfQ+NRLo6f2YoKTJjWQ6FLOVvjPEAhdO/w6ZMS4pqCzVJCVKGlNJLJ8pkAvTTadgbFFI95JIhTFbw+efmNoYzRfBlDtVnx5Kw1XG4YlpIdQvKOzb4jIq8Rvu7P6ZRwkJ6I3VcsA55ySTcDvOGGow9KeYeZgPppNAAcR5cTrYJdYHgizyii5SqqpEhdoQw91NRuQ0YY/RZlHpnjVRSzKsbMPc1O1zWJdXnR1E5No7KiXH454rJcZlG2zdR9d3lcv565MOv3JMLazdBRjBPlUZeUK+3xD1ehn2zh/AbFyuPKxE0v8iVXX+GXguRLIuIkRCNdynz2mTu2QzrRg8uVfEyqXDuahawUnT4rZuJTKzj/1AuEEohtdd3ovLwBIKvWydzuVblvTKMymN7kgLPvK77sCOlhz84ySq0vEKTRkzttV2Ifu2u3rnU6Dgllne/OdWglJeyry2+4yDXrcz9dfgfNENaN4jREDs++gnRrIV4xUDl+DjixWw8a0lVp6RCRq4ePtm5l6p5I4b/aSFZUZAjM/qF177+Xxy6jPVzkIxUckTKq1s9rMeV/uf0d9ZUZ5fzVe5kubmziix1ViXIbUaESPonhc7sPvon3GNluCTEOry9D8kuZfonJaLB8GERuafmkX9mLvnyhXt0Kfl2S9bpb/gqRBAqoRIFKjrvWEmWcbJO/yZ6qvhlMSond+uwh2jOhPfiqGrMNv3Nvkw6dUSF5nQD1r4a6u+UVEO20SMlppRXPtCKy/2NprqgRy/QbcFC1uCe0BCWoiEsRUNYioawFA1hKRrCUjSEpWgIS9EQlqIhLEVDWIqGsBQNYSkawlI0hKVoCEvREJaiISxFQ1iKhrAUDWEpGsJSNISlaAhL0RCWoiEsRUNYioawFA1hKRrCUjSEpWgH8Bcb8oc81KIm3gAAAABJRU5ErkJggjyqDpYsyIsHLzzjq5Q8c1ShZGSJEdEtGJR8ppPG5GL3oeD5mhB4VH9WqKMtpON7XIa8xGdsbTflvmymwoGwmgbdAUvHXw+XoOWssObJ8goz36xqqP9Z89pL1GoI1ayr32BNah/InlVky2lvD/xWt8EKrT9L0beGyLolo5qtsd0DokD3Pgm+q9tgZT9rJevmDDV/fZxafjlausUrjWq8VtTvK5E3SvcFivpJLtlIsoXQ9Gk/BR9IqPsgwT91/S8u39BWnfGdI7atZRmy70mQfQeu9fJT3bYbZLHetPcEGQapd0+Wb/Yhm7Xpbe3TWwEAFvU5YpkuWbemKflEF40uW0SJ9QvUlCjvcEaoakPDNEjlO8g4h4KU3aP/LmqYvoY5jcq8M5cKuK6qZjRMsOS7JcsFbagNDRMsqC0IFrBAsIAFggUsECxggWABCwQLWCBYwALBAhYIFrBAsIAFggUsECxggWABCwQLWCBYwALBAhYIFrBAsIAFggUsECxggWABCwQLWCBYwALBAhYIFrBAsIAFggUsECxggWABCwQLWCBYwALBAhYIFrBAsIAFggUsECxggWABCwQLWCBYwALBAhYIFrBAsIAFggUsECxggWABCwQLWCBYwALBAgZE/wHMEhfWcYGEPAAAAABJRU5ErkJggg==",_pt="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAA1CAYAAAC3ME4GAAABcWlDQ1BpY2MAACiRdZE9S8NQFIbftkqrtnTQQcQhQxWHFoqCOGoduhQptYJVl+Q2aYUkDTcpUlwFF4eCg+ji1+A/0FVwVRAERRBx8Q/4tUiJ5zaFFmlPuDkP7z3v4d5zAX9GZ4bdlwQM0+G5dEpaLaxJwXeEMAAfIkjIzLYWstkMesbPI1VSPCREr951XWOoqNoM8IWIZ5nFHeJ54syWYwneIx5hZblIfEIc53RA4luhKx6/CS55/CWY53OLgF/0lEodrHQwK3ODeIo4ZuhV1jqPuElYNVeWKY/RGoeNHNJIQYKCKjahw0GCskkz6+5LNn1LqJCH0d9CDZwcJZTJGye1Sl1VyhrpKn06amLu/+dpazPTXvdwCuh/dd3PCSC4DzTqrvt76rqNMyDwAlybbX+F5jT3TXq9rcWOgegOcHnT1pQD4GoXGH22ZC43pQAtv6YBHxdApAAM3wOD696sWvs4fwLy2/REd8DhETBJ9dGNP69cZ+Ub+qnAAAAACXBIWXMAAA9hAAAPYQGoP6dpAAABBklEQVR4Ae3VQY1CMQAG4fc2Jbsa8IAObqjAxzriAAZwgRUu5EFQ8SWdKpjO9E/X2/6wLR3GwA9DEsjXQEGwh1CQgmAGMJwWUhDMAIbTQgqCGcBwWkhBMAMYTgspCGYAw2khBcEMYDgtBAsyXs8nhjQ3ztifjnMbwG6/bp+DMU2NM7blNbUA7fJ96liRghQEM4DhtJCCYAYwnBZSEMwAhtNCCoIZwHBaSEEwAxhOCykIZgDDaSFYkLEuNZGajPP/ReKZnmVc74/pJUgCxt/vTuKZnqUPBHsCBSkIZgDDaSEFwQxgOC2kIJgBDKeFFAQzgOG0kIJgBjCcFlIQzACG00IKghnAcN7ZXA/1YVkO6AAAAABJRU5ErkJggg==",bpt="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAEAEAYAAAAM4nQlAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAADYUlEQVR42u3WoQ2DUBRA0deqSgboAnWYJpWI9s+BxTMJC3SULtAEgaioYwYkyUehsV+cM8JVNwIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACOnSKGIaWcpaBk78/z0c8RbXO7v356UKZl+l7HS8R/bauu1oOynSUAAAMAABgAAMAAAAAGAAAwAACAAQAADAAAYAAAAAMAABgAAMAAAAAGAAAwAACAAQAADAAAYAAAAAMAAAYAADAAAIABAAAMAABgAAAAAwAAGAAAwAAAAAYAADAAAIABAAAMAABgAAAAAwAAGAAAwAAAAAYAAAwAAGAAAAADAAAYAADAAAAABgAAMAAAgAEAAAwAAGAAAAADAAAYAADAAAAABgAAMAAAgAEAAAwAABgAAMAAAAAGAAAwAACAAQAADAAAYAAAAAMAABgAAMAAAAAGAAAwAACAAQAADAAAYAAAAAMAABgAADAAAIABAAAMAABgAAAAAwAAGAAAwAAAAAYAADAAAIABAAAMAABgAAAAAwAAGAAAwAAAAAYAADAAAGAAJAAAAwAAGAAAwAAAAAYAADAAAIABAAAMAABgAAAAAwAAGAAAwAAAAAYAADAAAIABAAAMAABgAAAAAwAABgAAMAAAgAEAAAwAAGAAAAADAAAYAADAAAAABgAAMAAAgAEAAAwAAGAAAAADAAAYAADAAAAABgAADAAAYAAAAAMAABgAAMAAAAAGAAAwAACAAQAADAAAYAAAAAMAABgAAMAAAAAGAAAwAACAAQAADAAAGAAAwAAAAAYAADAAAIABAAAMAABgAAAAAwAAGAAAwAAAAAYAADAAAIABAAAMAABgAAAAAwAAGAAAMAAAgAEAAAwAAGAAAAADAAAYAADAAAAABgAAMAAAgAEAAAwAAGAAAAADAAAYAADAAAAABgAAMAAAYAAkAAADAAAYAADAAAAABgAAMAAAgAEAAAwAAGAAAAADAAAYAADAAAAABgAAMAAAgAEAAAwAAGAAAAADAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdhtsThDegrKepAAAAABJRU5ErkJggg==",wpt="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAP8AAACqCAMAAABVlWm8AAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAACZFBMVEUAAJV+AEv+AAAKCplycsQHB5jAwOVAQLALC5r4+PyEhMwBAZVKSrT////JyelnZ8COjtD8/P4SEpwWFp5ZWbrBweVtbcLT0+1SUrdBQbB9fcn+/v8XF5+WltP19fs5Oa1cXLvb2/C3t+EDA5bu7vihodghIaNzc8Wvr97j4/NlZb8vL6lra8EqKqapqdvp6fYnJ6Vvb8Ps7PcCApalpdrf3/Kzs98yMqphYb2dndYEBJeyst9+fsl3d8aJic5jY74dHaHr6/ePj9EYGJ9RUbfX1+4uLqgVFZ79/f4aGqBERLFiYr5pacFmZr9VVbgxMakGBpczM6q1teCTk9I0NKsMDJrS0uzd3fGZmdUNDZrPz+spKaaKis7a2vBaWrpOTrXo6PVPT7YiIqOqqtz7+/3MzOqAgMqIiM5gYL2wsN7l5fTAwOQPD5tNTbUTE515ecf5+f3Ly+klJaS7u+PU1O0rK6cJCZnx8fn29vtubsO9veRJSbMREZzg4PK0tOCmptr09Po6Oq3Z2e+bm9WQkNHv7/gbG6CPj9CZmdQODps7O64ICJje3vEmJqWrq9wwMKkUFJ3y8vrm5vVkZL91dcYFBZdGRrLNzeqLi8+trd1oaMAkJKT39/y6uuI9Pa4tLaisrNyamtUcHKEQEJsoKKYwMKgJCZjc3PDz8/p/f8o8PK6NjdCcnNaRkdGCgsu2tuGkpNlxccS8vONISLPh4fMsLKfw8PlDQ7EEBJYjI6Ti4vPCwuWjo9mHh81YWLrt7fhCQrBfX7w2Nqu4uOGRkdIZGaABAZYCApVTU7fCwuaXl9RkZL5rcd7JAAAAAWJLR0QN9rRh9QAAAAd0SU1FB+QJChEeD3q2migAAASMSURBVHja7dvnWxRXFAfgExEF12NbFeMqFsAYwcZqNJINKuICukRMgqBoVBBLNBpCiGn23rvYe4klJvae2DX5p5wZZnaHdWd89oOPz577u1/Yu8uX90y55957LtH7bR+0eL+N4Icffvjhhx9++OGPqyUp7m+ZrLa/VWul/SmpbdTye5p323I719/F+ZPaN+t24I6d7H1vZ+n3f5eu9l4aczc7P+1D6f7uPlsAeviYe9r56cnS/b3YFoDezNzHxue+4t//GZm2AGRpfu4X4fNH8se//hwJwMe6f0CEz9ny/TkcDsBAnc+DIvzBHvn+IRwOwFDDn+u3+DxMhfxveDgAnxh+HmHxeaQK/k/ZDMCovJ6fBQKfD8q3+DxaBX9ngzpmbEH4YfePa2V8Vyg0/x8ftPeCRZp+qD7xLy6ZMDFU+sUk7WPZZM3/ZbOB8quvpfiD5VMqSivD3amcpSX906qmN930nD55hpb2fTOTZ4X/ZXaoOrernPs/WM5cM6e2zG/05s7TRoH5Pra1BTkZVPDtQuPnykUVU9ieJQp4/vUA6ENddUjL9r4j/+IlHNW+ryPtJhhVFvihJjJAynn/eestaOGP1DCf32w/lVBG1VKz48uR9v437wDmnyn5F47VlvxKv/3OHM/VT6Txz7wDlnloOcduK7JpZVFcVz+hxn8jAEv7UYid2qokWh0fP6HyH/0RWEM91jr6uQ2tS43j5k+0/M9b33E0rXfmc7qXVsdz9RMt//VuoI0rXPxcS5tyJOf/m2mkG5+3yJ7/bF1I21z9PI22p8j07yitGL7TQ7vc/btpT82cuSV7Zfkb9lVN1fP9/bTRnc+NNEv/k3ng4CEhfr+W0h82dUfo0Fv8WXTU+rirOlSc8H5/6XSbLo+OvcV/nMpsvZoTJ3H98fxLev8vcPfni3z/h8f/U1Tt7j9NZ1IE539naZ4r/5zs/M97girPu/n/oAuC839j/nfRbf4XpEty53/6Ls9l8mY6+/+kk3Ln/03rP7NptyO/sMHYHJO5/mOu/13x0F8O/PPH6IJP6vqftcXJf1Py1djrv9eo03Wp67+29f8btPlADP7NW3S7Uer6v3n1rf0fz57UaH67O4L3f3S+bf8vn6jueJFdf7e9n4rvmft/JZeF7f9506L2f+/vIBryoNB67+U9nEQ0brDY/d839///aaln+QX/PpoY6patT3YePxG8/x+r/iP36bPn1jcvXr4SXf/hVP+z7L/aQKBx2//hzVEl6n9i1X+ZAVCh/it2/V9TAFSo/3Oo/zQCoEL9p1P9rxEA+fW/zvXfegDk13+71P9rAZBf/+92/iNYLv/8h+v5n2C59PM/SaFm3ejzX0Hp579UP/8X1ZQ7/xndFD//q/z5b9XP/xP88MMPP/zwww8//Inlb6F2gx9++OGHH3744Ycffvjhhx9++OGHH3744Ycffvjhhx9++OGHH3744Ycffvjhhx9++OGHH3744Ycffvjhhx9++OGHH3744Ycffvjhhx9++OGHH3744Ycffvjhhx9++OGHH3744YcffvjfXXsNJsvwbVC9pnIAAAAldEVYdGRhdGU6Y3JlYXRlADIwMjAtMDktMTBUMTc6MzA6MTUrMDA6MDCydZ56AAAAJXRFWHRkYXRlOm1vZGlmeQAyMDIwLTA5LTEwVDE3OjMwOjE1KzAwOjAwwygmxgAAAABJRU5ErkJggg==",Spt="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABDCAYAAABqS6DaAAAJCElEQVR42u2dCUwUZxTHV6KmTQAhSE0LojaatMqpeLTRGi3eGGPQStp6EC9UUMEzmtTaS6IEGmwNKCgoaMQqFRFF8UitRhCVBKOVWhFFKKgFFQQ0+rr/0W86DLvLLDuzzKTzki/R5x4z89/3m/d933ujgYiu6UM9w0C6qcp0QXRBdNMF0QXRTbWCFBQUUHNzs+YvFM4B56JpQW7fvk2Ojo7k4+NDRUVFmhWjsLCQvL29ydnZmcrLy7UpyKtXr2j06NFkMBi4ERERwfmeP3+uqaiAhYeH8+cxZswYbQqybds2/iT69OlDT58+pcTERPL19dVEtLCoSE5OpidPnlCvXr3489m+fbu2BCkrKyMnJyfu4B0cHOj06dN0584dLuTh69q1K/catdqtW7eoS5cu3LF269aN7t69SydOnKBOnTpxPiXRZVAaVYsXL+b8QUFBvA8IgEVGRtLly5dVI8SlS5do2bJl3J/nzZvHH+/48eM534IFC3jf2LFjtSGIOVQxX+/evTkfwh5/xy8xPj6+w8WIjY2lzp07c8e0c+dOevz4MXl5efHHzdAl9O3Zs0fdgohRderUqRaogi8/P58Ld+YDBoCDjrbc3FweSS4uLlRRUUHHjx/nfUDXvXv3KC8vj/PNmDGDHj58SE1NTeoURIyqRYsWmUUVwp355s+frxpkhYWF8cc1YcIEs+gCZnG++/bto2nTpqlTECGqGJaSkpLMogoD4Q80qMXq6urI09OTPz5T6ILvxYsXLe4ncmZdBiVQBSzZC1UvG5upseweNZVXcn+WG13AlCV0yZ11GeRGFcMSJlCWfO1ClfG7Gq6VUsWWZCr5dDYV9hxJFxz9W4xCjxFUEjSHe01DSSn3HlvQFRMTYxZdQp9cWZdBblQhEzGFKqHPalQZL+qjnDNUPHR6KwHaGnjPP7lnrRIG6PL396eDBw9yPzjMS8ToSklJ4Xw9e/aUFV0GuVCF8BVjSQ5U1RffoJJRM60WQjxKRs+i+qvXJX8vlniqqqpo6tSpFtEl9MmBLpsEQR7OZrQLFy6UHVUP9ufSxe5DbBaDDXzWg8xjkr8fE1dLmGKZ2Ny5c/kViL1793Yssq5cuULBwcHyosqIifINCbIJIR7lG3+ShDBx1sUwJUYXXodrUFxcrJ60t76+ntzc3MxmWtagqvLnDMXEYKNyq7RZtjDrMoUpd3d3evbsmTpn6ogW7H0wVAknhVJRVZt/gS44D1RcEHxH3emLVmddQnT5+fnJEhWKrmVhD6GhoaHF+pVUVD1/WEsFnp8oLwZLkY1p84tHdVajC+taIIISezuK7YdgeQHRYg2qbq2Ls5sYbNxZH28VuhAVV69e1dZ+iDBasrKypKXQJX/R8XeG210QZF7N96slHeOhQ4cU3/FUTdVJTFiM3cXgs66vt6pmPU01goQELuowQTCb1wURWGnRTfpwgPyC5DkPpt1uIyjDbTjlOwdafC0WJ3VB3ljCuh3kEhBN52UQ4awxnY30mkp9vZeQIXAtPzoZh/eAcFrvEUznnAJava8m44guCLPVczZzFy21u20pb5rx/e/5LW0hhKnRz3sxHXL9qMV7K2JTdEGYzZqygbtQU/p+0W4xUtxH0lsDV7UpBhuuxoj8xfVj/v23ozfpgjALDnp9kRwGraXd3UdYLcZh12Hk5h8lWQw2+vosod/e4Ks0bK0uCLMvJ3/FX6R3/ZbRERfpK7ynnALpAyOCrBWDjdWek19HyMoYXRBma8I2t7hIPfyW067uI9sU44DxPoBfeXvFYPcT7h6yJVkXhNlP61NaXShkRRP7zaRE91H0u9N/IiATw81/xvuh1GXQapvEYCPHZSjVpGfrgjC7WXTD4gV7e9Aq8vKNpD4+EeQ4cKUsIggHEoKmu1W6IELrGxgl+4WWOlKHzNRn6mKLCP2+wwQ5tzLu/yEIyiwPHDggebW3q0z3BGtGD//l1CRxtTczM1PxbjDFBEF/Rf/+/bk9hGPHpBUWLJj2jd0FWfLZd5KOLScnhzsX9Iwo2d9iUCIqsJu2Y8cOfocNtUvYdWvL/i6rImcFbtrmhtOglVRd3vbNvLa2ljw8PPjz2bVrF1fAoUS0yCoI+isQFWz/fNy4cfxJoFRGiv2adIQcAtcoLgZWBbISD0s6ptmzZ/PnMXHiRM6HfXZEi9z9LYpUnbBtW3QeoVKD+aSia0P4j4oL8u2SBKtQJWxTEFaiqK7qBFGBSgwUMWDzX1zY0B50vXr5kpZ+/oNiYiCjw3e0B1XigofU1FTudbgGckSLTYKkpaXxXUemMGULumBJG9NkzbzwWfhMyal4RAR/3JMmTeJRZc6HKs6MjIyOE0Rcs4sSfTGmbEEX7FzWOfIfusJmMXyHRtP57POSvxc37OrqagoJCSFXV9dWqGK+o0ePtmpf6FBkmSoVFWIKPpSZouTSWnQJEbY3PpP6DY62fvHQ+J6MuExJiBKiCu3bbA6FonKclxBVpvCFc1TFTd1UMTXDVGhoKJciwsDZ9qBLKExBbgGtnRtLAcOiubRVLEA3Y9qMf8NrLuUVWiWEqaxq06bXG1cQBO1r5vDFKhpVIYipdoP79+9TdnY211+BivAzZ87YhC5z9uxJA/15uZT+KLxODY8bbP48YVYFLOE8UKeMWToMtVmVlZUma35VlfYK0YWnHqCcFAP9FUKcCTMxa9GltImzKmRQQixNnz6dGhsbuR8Z2i/kRJUiE0MhutAUaS7rshVdSpkQVWgvEGOJTQqR6sP279/PtUerdqYubj84efKkyawL4S03upRAlanedRwrfIiWmpoaetmOe5Rd17KEVe9AFzIscdYFdLGsC11HCQkJHS5IXFwc3w2G+ZU4g2JZlbCnMD09XRurvcK+ENbqZgpdUVFRsvdX2GLob1mxYoVZVLHWNTmzKrsIIkYXshQhurT0NCBLj9nQ1H6I+IEzDF0BAQGqigpL0YJeEKBK3P6MTFEz+yHm0MUe04THUmjFWC+I8DEaSqHKLoIAXehjRxO+kl1HShtWcbGUwh5mpllBYNju1NJzFi1Fiz0eTag/t1dlpguiC6KbLoguiG62CKL/zzYqGv8Cn+meishYe/gAAAAASUVORK5CYII=",Apt="assets/cz.aa47f7b6.png",Tpt="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABDBAMAAACYZb3pAAAAFVBMVEXVKx7///8AOaZUNHFkh8nVKx7///90yNRsAAAAAWJLR0QAiAUdSAAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB+ULGAs7NQ50qgoAAAA0SURBVEjH7dShEQAgDACxrlA2oPsPieNqEOjmfexHtlbddj4LBEFmkvoOQZChxGARBJlHDliGRdp7bzpsAAAAAElFTkSuQmCC",kpt="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAA+CAIAAABSlSmSAAABWWlDQ1BEaXNwbGF5IFAzAAAokZ2OPyiEYRzHP88dvXUocm4wPeVPBsQZzmJwlIg6Mtyd6b33/qlznt57i5vUWYxKBmVisDJeBgaDZCCRQWQ1upJCj+HoXAbls3y/ffrW7weudlOpTA2wkHXsmbGgDEei0njEwKABH9K0cmo4FJoE+M5qXm4QAFc9plKZs9bNQsdK49TgVvP15VNL4fe+Ck88kbOAdyBhKdsBEQfalhzlgFgDvHY4EgWxDXhT5b4PeGPlfgJ47dmZERC3gLTSZhzEK9Ad++FTP/rXXYC60fmcyph5GRr449t/4CSWHYCRRZW351NpRw4rlUnI8azV2y39ff0BCEeisrwuTSMA4TuvuNUHGDrSWh9W3MQRHATAU6y4rkFoqoPTojJtEwA34Eom4XkPGiLQfAGeuVxywA+AqA9C7b3WpU4wNuBjXeu3Ha0/dsF9B8fZTxUhZe6KC5V+AAAACXBIWXMAAAsTAAALEwEAmpwYAAAE7mlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDggNzkuMTY0MDM2LCAyMDE5LzA4LzEzLTAxOjA2OjU3ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1wOkNyZWF0ZURhdGU9IjIwMjEtMTEtMzBUMDk6NDE6MjQrMDE6MDAiIHhtcDpNb2RpZnlEYXRlPSIyMDIxLTExLTMwVDA5OjQ1OjU3KzAxOjAwIiB4bXA6TWV0YWRhdGFEYXRlPSIyMDIxLTExLTMwVDA5OjQ1OjU3KzAxOjAwIiBkYzpmb3JtYXQ9ImltYWdlL3BuZyIgcGhvdG9zaG9wOkNvbG9yTW9kZT0iMyIgcGhvdG9zaG9wOklDQ1Byb2ZpbGU9IkRpc3BsYXkgUDMiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NmQ3NDRiMzctYjEzNi0yYTQ4LTlmNTQtMzVlNWE0ZDY3NWYwIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjZkNzQ0YjM3LWIxMzYtMmE0OC05ZjU0LTM1ZTVhNGQ2NzVmMCIgeG1wTU06T3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOjZkNzQ0YjM3LWIxMzYtMmE0OC05ZjU0LTM1ZTVhNGQ2NzVmMCI+IDx4bXBNTTpIaXN0b3J5PiA8cmRmOlNlcT4gPHJkZjpsaSBzdEV2dDphY3Rpb249InNhdmVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOjZkNzQ0YjM3LWIxMzYtMmE0OC05ZjU0LTM1ZTVhNGQ2NzVmMCIgc3RFdnQ6d2hlbj0iMjAyMS0xMS0zMFQwOTo0NTo1NyswMTowMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIDIxLjAgKFdpbmRvd3MpIiBzdEV2dDpjaGFuZ2VkPSIvIi8+IDwvcmRmOlNlcT4gPC94bXBNTTpIaXN0b3J5PiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PtsNxjAAAAG/SURBVHic7ZxLboMwFEXftbKFbq4b6aTDTrqELqv7iXgZGAhR+R0haIjuGZlgY+fk4diyZcX7T2xAuqczRzJcPz5ny0dkXL6/trThMC4by48KIuU31n8o5b8bcCYsC2BZAMsCWBbAsgCWBbAsgGUBLAtgWYD9ZelU079ZHFkAywJYFmB3WVKzdxWH4cgCHCBLy1lOgiMLYFkAywLw1Z0c9EFrRuf5On0WlqVyHwrkM4lQZHbLmDvNsHT9fdvnyV0FSuQ0ow3G+oUVoen4bTMr2/jVQ031bnZphTLr2yDVAmK/9tZF1kVo9EkpZX3B27LTT1BklIxU1Hh/zKmIKI36dGQ/jLm36u/Dq96xSneXhamxsFax2gicyt99nsPMSw2YuuN/Q4BlASwLYFkAywJYFsCyAJYFeL5B6SJ1hF0aKaM09VJNaSc3TYnU3Ji2n0rVxHCS0M+rJoprywZcrZiyLmzAjYg4zQbcTa/h6yyfrsN9FsCyAJYFsCyAZQEsC2BZAMsCWBbAsgCWBbAsgGUBLAtgWQDLAlgWwLIAlgWwLIBlASwLcJpFVmn83JvhyUHqFk7r5cw5ORpu1119os4NHzhrTvSbX80AAAAASUVORK5CYII=",Cpt="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABDCAYAAABqS6DaAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAmcSURBVHhe7VpbbBxXGf7O3PbidWKndp2EODeSQClCFWppaR5QRNRUIkARpAVVeazCQyWExDU8pEVC9IEHpIikqLyQ8sALakobenkAehFUgAjQqgl1Kmo7iVNfsB2vd3euh++fXRdn4y0tnnXGm/lW4/XM2Zk5c77///7/P2fUSHFAI0NqYDS+M6QEGSEpQ0ZIypARkjJkhKQMGSEpQ0ZIypARkjJkhKQMGSEpQ0ZIypARkjJkhKQMGSEpQ0ZIyrDihGio+O8V0DwaBFC+DwRhvH+9YkUIEQq6PE0aTERwYIWXMZuzYR/9AQYnz2Ow8jY2upPY4E3xe6K+f/4swu9+FV41IEE1GJHFzYRrkbAOxoqtGNoRb1OLoB46jP4jX0cFAQq0B8XNQMiPEKZh8Yh4kdImPBXCiQDfMDH+xYOwn3wWruOw151LSlsJMTiYoRnAjGy4d30a207+IvaWZvBnMRmm9uErCzZ7pJVCyAaT35oEGBF3DBtDmz4Ga3YCRT+Ebxo8q7PQVkIiRYuv+RiYGYbqKsEMSIfdaFyEGv0j51M9bZIwM46RHz8O67mnUByZQNTbjcnP7MGHDh2C2r4VmrxUf/8y5vbvR6DyjSt0DtpCiBUq1Kg1pbl59OsyPH4MiR2xLywKW9zV3GUox7mb7oAz/CZlTHzIokwx2kQKnhHyCKUrNFEzKW1GFzaPvo6oW2E2vx2+xbgkv9FL+d7qQ1sI0SqCy4xpmzsNK+D/loFco+0dMJMSWbqw+25UXvszB9ymZDXa/gdCI4Dv9GPn1BkMl3p4bg6B0RmEJJ5lxfbNAL7Fvcj/QkTU+WgJpRcyJlQJ6q+vosu32RHxnvcGub7pzeJf+R70/+YJxqm2qe6KI1FCDFq9Q/2xjnyLVis5lAkx3LoM1eEzuxKMOOvgFkux3FCZKDnvvSuagchmkC8ij6l9X4FzQ1+j5b8Q0kKSLqFpNSFRyXJNk3HDxYCelFHjgEg0uBI1budNJrfFvjilXR4iZnAkmV5oND2F1CwWs7bLOQt5yuZqQaL24/gKa199IfYHGmcTGQEFbB5nb7kVurSOZCRxawqdcTUZAl3Mo2ZbKPjNJpFuJEpIyErb+ejNjb0r4Qk9UREb/zmC3ioJS8hoW7m3SQ8ZnLsIg31aTUiMEPGK3L33c6Alib0ajhfhwvoPs91CmTKiVD2WtAuVfJWypbF+dIR79eISuu4tYgtamdCVGr/rfU8LEiNELLXvxE8oS0tUfoTnUF7K06hZovsRA3miznkV7MBijaOhNqyDf99+hLoYJxCouKjctRv9/34dpSOHY09t5WXXAskF9TDEYG2C5QUHQQJIE8p/P4fpO3fzv5WxR10sYHDiTd5Nocpt4p4HsPmJx+Lb1xjPVFDGeInyymJTcQTSUlcu20yFTcmmIneecUJSzaX5Lf/wCL2iTZOCyqc3eCwsWdEHlCLDRVDmMX4kqytw23ySZMgRKmWe8WzS3klZq8tmmor8ZRNixiLMatwp8TEVU81GQxO8l0+/r1rj/UBrkhAamK95cL/9IDbNTWNz5TwNxISzaG0lziNoMMMfuBV2PkI+hUXKsnvksxCwWNlFliNqQCx9SXdmGrmEHUTikMx3dZ1+CVsqk9gezmDwoe+QIMoQO5MjBcai9Fq4mX72KZjTF1BlfLdTWJ4sm5B6UBQqAj5+6yc0WQxKRZ4krCiEx5F/+1OfQ/mRH8VT9eIBBjMoQ0fsGw1l8bSKodB9935+11D0TXp3ezO9/wfLJ4QDIFJUqlYpEHz4FgVGuOlGelNjJyGEHGAZ1O65WVz+/iMYK6zDkNWDsW8+HPfL49PJEtgCZBHMZsDrOv5TzOSAqp1whxLA8gkhGTK7K3IQkhKOUqPlSgx89gCCZd/tSkj+ELJSFzsIlcXrOyjkiwiPHcdo3weZgIt3MJAzzY4Xuyhlvs286+C9UMU1TLASdtkEkNwQFfP1gqvFzGv+4a8xiC5do7QDMptcB4tCknbJNDB2/yEed5FjF3eMnUM19Bq/SQ8StFmF8Mxr8FrkkE6uADeoNPbaD0NmlemtHgf/grEeRm4Q4a9PYbw4iGGnGxf33oNdb52NZUw8LS1IVERm9325Za0hy7T2fQcae+1HoJhj0VunvvE9BCWf8cuPB14zM+u2SvBfeQUXdtxEkU2XbCVWqctFjEBhkztWP9AENxY0A+O5fqZH7Q+musvGhpEzuNi3jcWizQSrxiDvxG2mZF8yrcJMjDlZZxWGi1FzHEw/eDgO8DL8i/Mth7ey6SU9J35G65XbtpcUxyhgtrg+HvyAtdICGYKQZIgBSR2TJjIEiS5QWdqVKS16yXSdjXihovHE3JcaTdMqhz7yCRRGR9icoD2IFSyaQ3OYWWnlk3yLg5++9LYVEvUQeS1HWzm80bejYXmLzI93im/GQdv5j78gLORZspgoLD1b/65QHHyZ9RBCoyrLUXn9tAkeMyufcWQ1kSFIlJB6JKF1Vsu49NijiMRqmyCzr6EdYcv4MKw9d8BtNfn1Lij58ooQcHlNCd7tt8Gw+BiLvGM1oy2vAUEFyAUmel88BevjtyA0zXhaQ4ZMplcWpErs2piawtCNW2F0d8MRvWO76H68gEQ304ZPq9FyFttIps7DqJSx5qWnUX76OfjHjvH3VjxV0glI2EPqUJETV9ATe/Zi/HcvxjPCC7m+vMkbM8NNxET39WKXN4OBN06jdkMvrIrPdNWFIRNfPMliLREoB5ZbQdnsxprf/hJb9BQu//wk/ONHUXQlWC+daq9GtMVDQlq1KS+vWS4tPQfj9k9i6/O/arQ2wLtKnJHUU95NlLdHZG5KXhsSvmrVeQQzFVjFAvJrS/VTeI7Pxrf6t2LtrAfNk3wmDvLKaqIJwjVEeyRrCeiKi3Wjf0Jp4zbUDAv5kLfl6IsjtBrKhY4peJhj4uw++Qy8L30BQa7nHY/rNKyYWRmFHC7dfCeGnH54z5yidStae0jLbvygCVIpKKau4i2TRx/FPGUrPPAAqoU6GZ1KyMp5CDcZ3AWYYYA5xofevfsQHPw8um7bBaunH/7YDOb/+DfoE4/D/8MLsAslSpucWb9C83U6DStGSDPinIuVosQR34wnMBjAGQ/iKQ3Z53H+MRN5oW714No9LQddyToKZcsUAhhMZIbWitPXWLBIzPVFhuCaPbF4hmRHIj/ykjbDe7zIFC9ycZMjreJLJ+P6M8GUIyMkZcgISRkyQlKGjJCUISMkZcgISRkyQlKGjJCUISMkZcgISRkyQlKGjJBUAfgPxailVeB/AAcAAAAASUVORK5CYII=",xB="assets/missing-locale.4d6286c0.png";const Ept="Deutsch",Ipt="English",Dpt="Espa\xF1ol",xpt="Fran\xE7ais",Opt="Nederlands",Mpt="Polski",Rpt="Brazilian Portuguese",Lpt="\u0420\u0443\u0441\u0441\u043A\u0438\u0439",Ppt="\u0423\u043A\u0440\u0430\u0457\u043D\u0441\u044C\u043A\u0430",$pt="\u7B80\u4F53\u4E2D\u6587",zpt="Italiano",Npt="\u7E41\u9AD4\u4E2D\u6587",Fpt="\uD55C\uAD6D\uC5B4",Bpt="\u010Cesky",Wpt="Suomi",Hpt="Svenska",jpt="Catal\xE0",Upt="Turkish";var FA={de:Ept,en:Ipt,es:Dpt,fr:xpt,nl:Opt,pl:Mpt,ptbr:Rpt,ru:Lpt,ua:Ppt,chs:$pt,it:zpt,zh:Npt,ko:Fpt,cs:Bpt,fi:Wpt,sv:Hpt,ca:jpt,tr:Upt};const OB={ca:upt,en:dpt,fr:cpt,pl:hpt,de:mpt,ru:fpt,ptbr:ppt,es:gpt,ua:vpt,chs:ypt,nl:_pt,it:bpt,zh:wpt,ko:Spt,cs:Apt,fi:Tpt,sv:kpt,tr:Cpt};function Vpt(){var s;const{i18n:e}=Ct("localeNames"),{ref:t,isComponentVisible:r,setIsComponentVisible:n}=zZ(!1),a=l=>{e.changeLanguage(l),n(!1)},i=Object.keys(e.options.resources).map(l=>{var d;return de("a",{className:"dropdown-item",href:"#",onClick:u=>{a(l),u.preventDefault()},children:[x("img",{src:(d=OB[l])!=null?d:xB,alt:FA[l],width:"20",className:"align-middle me-1"}),x("span",{className:"align-middle",children:FA[l]})]},l)}),o=e.language.split("-")[0];return de("li",{className:"nav-item dropdown",children:[x("a",{className:et("nav-flag dropdown-toggle",{show:r}),href:"#",onClick:l=>{n(!r),l.preventDefault()},children:x("img",{src:(s=OB[o])!=null?s:xB,alt:FA[o]})}),x("div",{ref:t,className:et("dropdown-menu dropdown-menu-end",{show:r}),children:i})]})}const Gpt=[{href:"/",key:"devices",exact:!0},{href:"/dashboard",key:"dashboard"},{href:"/map",key:"map"},{href:"/settings",key:"settings"},{href:"/groups",key:"groups"},{href:"/ota",key:"ota"},{href:"/touchlink",key:"touchlink"},{href:"/logs",key:"logs"},{href:"/extensions",key:"extensions"}],qpt=({devices:e,setPermitJoin:t,bridgeInfo:r})=>{var v;const{t:n}=Ct(["navbar"]),{ref:a,isComponentVisible:i,setIsComponentVisible:o}=zZ(!1),[s,l]=le.exports.useState({}),{permit_join:d,permit_join_timeout:u}=r,c=y=>{l(y),o(!1)},h=Object.values(e).filter(y=>y.type==="Router").sort((y,b)=>y.friendly_name.localeCompare(b.friendly_name)).map(y=>x("li",{children:x(yt,{item:y,className:"dropdown-item",onClick:c,children:y.friendly_name})},y.friendly_name)),m=()=>{t(!d,s)},f=x(St,{children:u?x("div",{className:"d-inline-block mx-1",style:{width:"30px",maxWidth:"30px"},children:y9(u)}):null}),g=de(St,{children:[n(d?"disable_join":"permit_join")," (",(v=s==null?void 0:s.friendly_name)!=null?v:n("all"),")",f]});return de("div",{className:"btn-group text-nowrap me-1",children:[x("button",{onClick:m,type:"button",className:"btn btn-outline-secondary",children:g}),h.length?de(St,{children:[x(yt,{type:"button",onClick:o,item:!i,className:"btn btn-outline-secondary dropdown-toggle dropdown-toggle-split",children:x("span",{className:"visually-hidden",children:n("toggle_dropdown")})}),de("ul",{ref:a,className:et("dropdown-menu",{show:i}),children:[x("li",{children:x(yt,{className:"dropdown-item",onClick:c,children:n("all")})},"all"),h]})]}):null]})},Kpt=e=>{const{devices:t,setPermitJoin:r,bridgeInfo:n,restartBridge:a,setTheme:i,t:o}=e,s=le.exports.useRef(),[l,d]=le.exports.useState(!1);return ept(s,()=>{d(!1)}),x("nav",{className:"navbar navbar-expand-md navbar-light",children:de("div",{ref:s,className:"container-fluid",children:[x($s,{onClick:()=>d(!1),to:"/",children:Bze()?`Z2M@${document.location.hostname}`:"Zigbee2MQTT"}),x("button",{onClick:()=>{d(!l)},className:"navbar-toggler",type:"button",children:x("span",{className:"navbar-toggler-icon"})}),de("div",{className:et("navbar-collapse collapse",{show:l}),children:[de("ul",{className:"navbar-nav",children:[Gpt.map(u=>x("li",{className:"nav-item",children:x(p2,{onClick:()=>d(!1),exact:u.exact,className:"nav-link",to:u.href,activeClassName:"active",children:o(u.key)})},u.href)),x(Vpt,{})]}),x(qpt,{devices:t,setPermitJoin:r,bridgeInfo:n}),x(lpt,{saveCurrentTheme:i})]}),n.restart_required?x(yt,{onClick:a,prompt:!0,className:"btn btn-danger me-1",children:o("restart")}):null]})})},Qpt=["bridgeInfo","devices"],Zpt=Mn("navbar")($r(Qpt,Br)(Kpt)),Ypt=e=>{const[t,r]=le.exports.useState(e);return[t,a=>r(He(Se({},t),{[a.currentTarget.name]:a.currentTarget.value}))]},Xpt=hi.create(e=>{const{name:t,onRename:r}=e,n=vu(),[a,i]=Ypt({friendlyName:t}),o=async()=>{await r(t,a.friendlyName),n.remove()};return de(wp,{isOpen:n.visible,children:[de(yp,{children:[x("h3",{children:"Rename group"}),x("small",{children:t})]}),x(_p,{children:de("div",{className:"mb-3",children:[x("label",{className:"form-label",children:"Friendly name"}),x("input",{name:"friendlyName",onChange:i,type:"text",className:"form-control",value:a.friendlyName})]})}),de(bp,{children:[x("button",{type:"button",className:"btn btn-secondary",onClick:n.remove,children:"Close"}),x("button",{type:"button",className:"btn btn-primary",onClick:o,children:"Save changes"})]})]})});function Jpt(e){const{t}=Ct(["groups"]),{groups:r,removeGroup:n,renameGroup:a}=e,i=[{id:"group_id",Header:t("group_id"),accessor:o=>o.id,Cell:({row:{original:o}})=>x($s,{to:`/group/${o.id}`,children:o.id})},{id:"friendly_name",Header:t("group_name"),accessor:o=>o.friendly_name,Cell:({row:{original:o}})=>x($s,{to:`/group/${o.id}`,children:o.friendly_name})},{id:"members",Header:t("group_members"),accessor:o=>{var s;return(s=o.members.length)!=null?s:0}},{id:"scenes",Header:t("group_scenes"),accessor:o=>{var s,l;return(l=(s=o.scenes)==null?void 0:s.length)!=null?l:0}},{Header:"",id:"actions",Cell:({row:{original:o}})=>de("div",{className:"btn-group float-right btn-group-sm",role:"group",children:[x(yt,{className:"btn btn-primary",onClick:()=>hi.show(Xpt,{name:o.friendly_name,onRename:a}),title:t("rename_group"),children:x("i",{className:"fa fa-edit"})}),x(yt,{prompt:!0,title:t("remove_group"),item:o.friendly_name,onClick:n,className:"btn btn-danger",children:x("i",{className:"fa fa-trash"})})]})}];return x("div",{className:"card",children:x(e0,{id:"groups",columns:i,data:r})})}class egt extends le.exports.Component{constructor(){super(...arguments),this.state={newGroupName:"",newGroupId:void 0},this.changeHandler=t=>{const{name:r,value:n}=t.target;this.setState({[r]:n})},this.onGroupCreateSubmit=()=>{const{newGroupName:t,newGroupId:r}=this.state,{createGroup:n}=this.props;n(t,r)},this.renameGroup=(t,r)=>{const{renameGroup:n}=this.props;n(t,r)}}renderGroupCreationForm(){const{t}=this.props,{newGroupName:r,newGroupId:n}=this.state;return x("div",{className:"card",children:x("div",{className:"card-body",children:de("div",{className:"input-group",children:[x("label",{htmlFor:"newGroupName",className:"sr-only",children:t("new_group_name")}),x("input",{onChange:this.changeHandler,value:r,required:!0,type:"text",name:"newGroupName",className:"form-control",id:"newGroupName",placeholder:t("new_group_name_placeholder")}),x("label",{htmlFor:"newGroupName",className:"sr-only",children:t("new_group_id")}),x("input",{onChange:this.changeHandler,value:n===void 0?"":n,type:"number",name:"newGroupId",className:"form-control",id:"newGroupId",placeholder:t("new_group_id_placeholder")}),x(yt,{onClick:this.onGroupCreateSubmit,className:"btn btn-primary form-control",children:t("create_group")})]})})})}render(){const{groups:t,removeGroup:r,renameGroup:n}=this.props;return de(St,{children:[this.renderGroupCreationForm(),x(Jpt,{groups:t,removeGroup:r,renameGroup:n})]})}}const tgt=["groups","devices","deviceStates","bridgeInfo"],rgt=Mn("groups")($r(tgt,Br)(egt));var ngt={"action-column":"_action-column_1729o_1","device-pic":"_device-pic_1729o_8","device-image":"_device-image_1729o_14"};function agt(e){const{data:t,lastSeenType:r,availabilityFeatureEnabled:n,homeassistantEnabled:a,setDeviceDescription:i}=e,{renameDevice:o,removeDevice:s,configureDevice:l}=e,{t:d}=Ct(["zigbee","common","avaliability"]),u=r!=="disable"?[{id:"last_seen",Header:d("last_seen"),accessor:({state:m})=>{var f;return(f=_9(m,r))==null?void 0:f.getTime()},Cell:({row:{original:{state:m}}})=>x(_2,{state:m,lastSeenType:r})}]:[],c=n?[{id:"availability",Header:d("avaliability:avaliability"),accessor:({availabilityState:m})=>qG(m)?m:m.state,Cell:({row:{original:{availabilityState:m,availabilityEnabledForDevice:f}}})=>x(KG,{availability:m,availabilityEnabledForDevice:f})}]:[],h=[{id:"pic",Header:d("pic"),Cell:({row:{original:{device:m,state:f}}})=>x(cp,{className:ngt["device-image"],device:m,deviceStatus:f}),accessor:m=>m,disableSortBy:!0},{id:"friendly_name",Header:d("friendly_name"),accessor:({device:m})=>[m.friendly_name,m.description].join(" "),Cell:({row:{original:{device:m}}})=>de(St,{children:[x($s,{to:uw(m.ieee_address),children:m.friendly_name}),x("small",{className:"d-block",children:m.description})]})},{id:"ieee_address",Header:d("ieee_address"),accessor:({device:m})=>[m.ieee_address,Jk(m.network_address,4)].join(" "),Cell:({row:{original:{device:m}}})=>de(St,{children:[x("div",{children:m.ieee_address}),de("div",{children:["(",Jk(m.network_address,4),")"]})]})},{id:"manufacturer",Header:d("manufacturer"),accessor:({device:m})=>{var f;return[(f=m.definition)==null?void 0:f.vendor,m.manufacturer].join(" ")},Cell:({row:{original:{device:m}}})=>x(g2,{device:m})},{id:"model",Header:d("model"),accessor:({device:m})=>{var f;return[(f=m.definition)==null?void 0:f.model,m.model_id].join(" ")},Cell:({row:{original:{device:m}}})=>x(v2,{device:m})},{id:"lqi",Header:d("lqi"),accessor:({state:m})=>m.linkquality,Cell:({row:{original:{state:m}}})=>x(fc,{value:m.linkquality,name:"linkquality"})},...u,...c,{id:"power",Header:d("power"),accessor:({state:m,device:f})=>{var g;return[m.battery,(g=f.definition)==null?void 0:g.power].join(" ")},Cell:({row:{original:{state:m,device:f}}})=>x(y2,{source:f.power_source,battery:m.battery,batteryLow:m.battery_low})},{id:"controls",Header:"",Cell:({row:{original:{device:m,state:f}}})=>x(VG,{device:m,state:f,homeassistantEnabled:a,renameDevice:o,removeDevice:s,configureDevice:l,setDeviceDescription:i}),disableSortBy:!0}];return x("div",{className:"card",children:x("div",{className:"table-responsive",children:x(e0,{id:"zigbee",columns:h,data:t})})})}function igt(e){const{devices:t,deviceStates:r,bridgeInfo:{config:n},availability:a}=e,{renameDevice:i,removeDevice:o,configureDevice:s,setDeviceDescription:l}=e,d=!!n.availability,u=!!(n!=null&&n.homeassistant),c=()=>Object.values(t).filter(m=>m.type!=="Coordinator").map(m=>{var g,v,y;const f=(g=r[m.friendly_name])!=null?g:{};return{id:m.friendly_name,device:m,state:f,availabilityState:(v=a[m.friendly_name])!=null?v:"offline",availabilityEnabledForDevice:((y=n.devices[m.ieee_address])==null?void 0:y.availability)!==!1}}),h=q.useMemo(()=>c(),[t,r]);return x(agt,{data:h,lastSeenType:n.advanced.last_seen,availabilityFeatureEnabled:d,homeassistantEnabled:u,renameDevice:i,removeDevice:o,configureDevice:s,setDeviceDescription:l})}const ogt=["devices","deviceStates","bridgeInfo","availability"],sgt=Mn(["zigbee","common"])($r(ogt,Br)(igt));var lgt={"device-image":"_device-image_29lej_1"};const ugt=e=>{var s;const{t}=Ct("ota"),{device:r,state:n,checkOTA:a,updateOTA:i}=e,o=(s=n==null?void 0:n.update)!=null?s:{};switch(o.state){case"updating":return de(St,{children:[x("div",{className:"progress",children:de("div",{className:"progress-bar progress-bar-striped progress-bar-animated",style:{width:`${o.progress}%`},children:[o.progress,"%"]})}),x("div",{children:t("remaining_time",{remaining:y9(o.remaining)})})]});case"available":return x(yt,{className:"btn btn-danger btn-sm",onClick:i,item:r.friendly_name,prompt:!0,children:t("update")});default:return x(yt,{className:"btn btn-primary btn-sm",onClick:a,item:r.friendly_name,children:t("check")})}};class dgt extends le.exports.Component{constructor(){super(...arguments),this.checkAllOTA=()=>{const{checkOTA:t}=this.props;this.getAllOtaDevices().forEach(({device:n})=>t(n.friendly_name))}}getAllOtaDevices(){const{devices:t,deviceStates:r}=this.props;return Object.values(t).filter(n=>{var a;return(a=n==null?void 0:n.definition)==null?void 0:a.supports_ota}).map(n=>{var i;const a=(i=r[n.friendly_name])!=null?i:{};return{id:n.friendly_name,device:n,state:a}})}render(){const{checkOTA:t,updateOTA:r,t:n}=this.props,a={checkOTA:t,updateOTA:r},i=this.getAllOtaDevices(),o=[{Header:n("zigbee:pic"),Cell:({row:{original:{device:s,state:l}}})=>x(cp,{className:lgt["device-image"],device:s,deviceStatus:l}),disableSortBy:!0},{Header:n("zigbee:friendly_name"),accessor:({device:s})=>s.friendly_name,Cell:({row:{original:{device:s}}})=>x($s,{to:uw(s.ieee_address),children:s.friendly_name})},{Header:n("zigbee:manufacturer"),accessor:({device:s})=>{var l;return[s.manufacturer,(l=s.definition)==null?void 0:l.vendor].join(" ")},Cell:({row:{original:{device:s}}})=>x(g2,{device:s})},{Header:n("zigbee:model"),accessor:({device:s})=>{var l;return[s.model_id,(l=s.definition)==null?void 0:l.model].join(" ")},Cell:({row:{original:{device:s}}})=>x(v2,{device:s})},{Header:n("zigbee:firmware_build_date"),accessor:({device:s})=>s.date_code},{Header:n("zigbee:firmware_version"),accessor:({device:s})=>s.software_build_id,Cell:({row:{original:{device:s}}})=>x(m9e,{device:s})},{Header:()=>x(yt,{className:"btn btn-danger btn-sm",onClick:this.checkAllOTA,prompt:!0,children:n("check_all")}),id:"check_all",Cell:({row:{original:{device:s,state:l}}})=>x(ugt,Se({device:s,state:l},a))}];return x("div",{className:"card",children:x("div",{className:"table-responsive",children:x(e0,{id:"otaDevices",columns:o,data:i})})})}}const cgt=["devices","deviceStates"];var hgt=Mn(["ota","zigbee","common"])($r(cgt,Br)(dgt));class Xa extends q.Component{constructor(){super(...arguments),this.state={},this.downloadState=t=>{w9(ir.getState(),"initialState.json"),t.preventDefault()}}static getDerivedStateFromError(t){return{error:t}}render(){const{error:t}=this.state;if(t){const r={template:"bug_report.yaml",stacktracke:[`**Current url**: ${window.location.toString()}`,`**Previous url**: ${document.referrer}`,`
88
+ `+l);var i=n;i.allOf;var o=Js(i,["allOf"]);return o}var s=n.hasOwnProperty("additionalProperties")&&n.additionalProperties!==!1;return s?put(n,t,r):n}function TQ(e,t,r){var n=e.dependencies,a=n===void 0?{}:n,i=Js(e,["dependencies"]);return"oneOf"in i?i=i.oneOf[vf(r,i.oneOf,t)]:"anyOf"in i&&(i=i.anyOf[vf(r,i.anyOf,t)]),kQ(a,i,t,r)}function kQ(e,t,r,n){for(var a in e)if(n[a]!==void 0&&!(t.properties&&!(a in t.properties))){var i=e[a],o=Js(e,[a].map(yQ));return Array.isArray(i)?t=yut(t,i):xr(i)&&(t=_ut(t,r,n,a,i)),kQ(o,t,r,n)}return t}function yut(e,t){if(!t)return e;var r=Array.isArray(e.required)?Array.from(new Set([].concat(B_(e.required),B_(t)))):t;return oa({},e,{required:r})}function _ut(e,t,r,n,a){var i=Zt(a,t,r),o=i.oneOf,s=Js(i,["oneOf"]);if(e=Yw(e,s),o===void 0)return e;if(!Array.isArray(o))throw new Error("invalid: it is some ".concat(xa(o)," instead of an array"));var l=o.map(function(d){return d.hasOwnProperty("$ref")?AQ(d,t,r):d});return but(e,t,r,n,l)}function but(e,t,r,n,a){var i=a.filter(function(u){if(!u.properties)return!1;var c=u.properties[n];if(c){var h={type:"object",properties:nO({},n,c)},m=vQ(r,h),f=m.errors;return f.length===0}});if(i.length!==1)return console.warn("ignoring oneOf in dependencies because there isn't exactly one subschema that is valid"),e;var o=i[0],s=o.properties;s[n];var l=Js(s,[n].map(yQ)),d=oa({},o,{properties:l});return Yw(e,Zt(d,t,r))}function Yw(e,t){var r=Object.assign({},e);return Object.keys(t).reduce(function(n,a){var i=e?e[a]:{},o=t[a];return e&&e.hasOwnProperty(a)&&xr(o)?n[a]=Yw(i,o):e&&t&&(vc(e)==="object"||vc(t)==="object")&&a==="required"&&Array.isArray(i)&&Array.isArray(o)?n[a]=rat(i,o):n[a]=o,n},r)}function cv(e){return Object.prototype.toString.call(e)==="[object Arguments]"}function di(e,t){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:[],n=arguments.length>3&&arguments[3]!==void 0?arguments[3]:[];if(e===t)return!0;if(typeof e=="function"||typeof t=="function")return!0;if(xa(e)!=="object"||xa(t)!=="object")return!1;if(e===null||t===null)return!1;if(e instanceof Date&&t instanceof Date)return e.getTime()===t.getTime();if(e instanceof RegExp&&t instanceof RegExp)return e.source===t.source&&e.global===t.global&&e.multiline===t.multiline&&e.lastIndex===t.lastIndex&&e.ignoreCase===t.ignoreCase;if(cv(e)||cv(t)){if(!(cv(e)&&cv(t)))return!1;var a=Array.prototype.slice;return di(a.call(e),a.call(t),r,n)}else{if(e.constructor!==t.constructor)return!1;var i=Object.keys(e),o=Object.keys(t);if(i.length===0&&o.length===0)return!0;if(i.length!==o.length)return!1;for(var s=r.length;s--;)if(r[s]===e)return n[s]===t;r.push(e),n.push(t),i.sort(),o.sort();for(var l=i.length-1;l>=0;l--)if(i[l]!==o[l])return!1;for(var d,u=i.length-1;u>=0;u--)if(d=i[u],!di(e[d],t[d],r,n))return!1;return r.pop(),n.pop(),!0}}function iO(e,t,r){var n=e.props,a=e.state;return!di(n,t)||!di(a,r)}function Ul(e,t,r){var n=arguments.length>3&&arguments[3]!==void 0?arguments[3]:{},a=arguments.length>4&&arguments[4]!==void 0?arguments[4]:"root",i=arguments.length>5&&arguments[5]!==void 0?arguments[5]:"_",o={$id:t||a};if("$ref"in e||"dependencies"in e||"allOf"in e){var s=Zt(e,r,n);return Ul(s,t,r,n,a,i)}if("items"in e&&!e.items.$ref)return Ul(e.items,t,r,n,a,i);if(e.type!=="object")return o;for(var l in e.properties||{}){var d=e.properties[l],u=o.$id+i+l;o[l]=Ul(xr(d)?d:{},u,r,(n||{})[l],a,i)}return o}function Dm(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"",r=arguments.length>2?arguments[2]:void 0,n=arguments.length>3&&arguments[3]!==void 0?arguments[3]:{},a={$name:t.replace(/^\./,"")};if("$ref"in e||"dependencies"in e||"allOf"in e){var i=Zt(e,r,n);return Dm(i,t,r,n)}if(e.hasOwnProperty("additionalProperties")&&(a.__rjsf_additionalProperties=!0),e.hasOwnProperty("items")&&Array.isArray(n))n.forEach(function(s,l){a[l]=Dm(e.items,"".concat(t,".").concat(l),r,s)});else if(e.hasOwnProperty("properties"))for(var o in e.properties)a[o]=Dm(e.properties[o],"".concat(t,".").concat(o),r,(n||{})[o]);return a}function Bh(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0;if(!e)return{year:-1,month:-1,day:-1,hour:t?-1:0,minute:t?-1:0,second:t?-1:0};var r=new Date(e);if(Number.isNaN(r.getTime()))throw new Error("Unable to parse date "+e);return{year:r.getUTCFullYear(),month:r.getUTCMonth()+1,day:r.getUTCDate(),hour:t?r.getUTCHours():0,minute:t?r.getUTCMinutes():0,second:t?r.getUTCSeconds():0}}function fB(e){var t=e.year,r=e.month,n=e.day,a=e.hour,i=a===void 0?0:a,o=e.minute,s=o===void 0?0:o,l=e.second,d=l===void 0?0:l,u=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0,c=Date.UTC(t,r-1,n,i,s,d),h=new Date(c).toJSON();return u?h:h.slice(0,10)}function CQ(e){if(!e)return"";var t=new Date(e),r=Jo(t.getFullYear(),4),n=Jo(t.getMonth()+1,2),a=Jo(t.getDate(),2),i=Jo(t.getHours(),2),o=Jo(t.getMinutes(),2),s=Jo(t.getSeconds(),2),l=Jo(t.getMilliseconds(),3);return"".concat(r,"-").concat(n,"-").concat(a,"T").concat(i,":").concat(o,":").concat(s,".").concat(l)}function EQ(e){if(e)return new Date(e).toJSON()}function Jo(e,t){for(var r=String(e);r.length<t;)r="0"+r;return r}function wut(e){var t=e.split(","),r=t[0].split(";"),n=r[0].replace("data:",""),a=r.filter(function(u){return u.split("=")[0]==="name"}),i;a.length!==1?i="unknown":i=a[0].split("=")[1];for(var o=atob(t[1]),s=[],l=0;l<o.length;l++)s.push(o.charCodeAt(l));var d=new window.Blob([new Uint8Array(s)],{type:n});return{blob:d,name:i}}function oO(e){var t={};return e.multipleOf&&(t.step=e.multipleOf),(e.minimum||e.minimum===0)&&(t.min=e.minimum),(e.maximum||e.maximum===0)&&(t.max=e.maximum),t}function vf(e,t,r){if(e===void 0)return 0;for(var n=0;n<t.length;n++){var a=t[n];if(a.properties){var i={anyOf:Object.keys(a.properties).map(function(l){return{required:[l]}})},o=void 0;if(a.anyOf){var s=W_({},a);s.allOf?s.allOf=s.allOf.slice():s.allOf=[],s.allOf.push(i),o=s}else o=Object.assign({},a,i);if(delete o.required,SE(o,e,r))return n}else if(SE(a,e,r))return n}return 0}function ly(e){return e.const||e.enum&&e.enum.length===1&&e.enum[0]===!0?!0:e.anyOf&&e.anyOf.length===1?ly(e.anyOf[0]):e.oneOf&&e.oneOf.length===1?ly(e.oneOf[0]):e.allOf?e.allOf.some(ly):!1}function PA(e){for(var t=1;t<arguments.length;t++){var r=arguments[t]!=null?arguments[t]:{},n=Object.keys(r);typeof Object.getOwnPropertySymbols=="function"&&(n=n.concat(Object.getOwnPropertySymbols(r).filter(function(a){return Object.getOwnPropertyDescriptor(r,a).enumerable}))),n.forEach(function(a){ns(e,a,r[a])})}return e}function Vl(e){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?Vl=function(r){return typeof r}:Vl=function(r){return r&&typeof Symbol=="function"&&r.constructor===Symbol&&r!==Symbol.prototype?"symbol":typeof r},Vl(e)}function Sut(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function pB(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function Aut(e,t,r){return t&&pB(e.prototype,t),r&&pB(e,r),e}function Tut(e,t){return t&&(Vl(t)==="object"||typeof t=="function")?t:bl(e)}function kE(e){return kE=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},kE(e)}function bl(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function kut(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&CE(e,t)}function CE(e,t){return CE=Object.setPrototypeOf||function(n,a){return n.__proto__=a,n},CE(e,t)}function ns(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var IQ=function(e){kut(t,e);function t(r){var n;return Sut(this,t),n=Tut(this,kE(t).call(this,r)),ns(bl(n),"getUsedFormData",function(a,i){if(i.length===0&&Vl(a)!=="object")return a;var o=sQe(a,i);return Array.isArray(a)?Object.keys(o).map(function(s){return o[s]}):o}),ns(bl(n),"getFieldNames",function(a,i){var o=function s(l){var d=arguments.length>1&&arguments[1]!==void 0?arguments[1]:[],u=arguments.length>2&&arguments[2]!==void 0?arguments[2]:[""];return Object.keys(l).forEach(function(c){if(Vl(l[c])==="object"){var h=u.map(function(m){return"".concat(m,".").concat(c)});l[c].__rjsf_additionalProperties&&l[c].$name!==""?d.push(l[c].$name):s(l[c],d,h)}else c==="$name"&&l[c]!==""&&u.forEach(function(m){m=m.replace(/^\./,"");var f=cc(i,m);(Vl(f)!=="object"||wQe(f))&&d.push(m)})}),d};return o(a)}),ns(bl(n),"onChange",function(a,i){if(xr(a)||Array.isArray(a)){var o=n.getStateFromProps(n.props,a);a=o.formData}var s=!n.props.noValidate&&n.props.liveValidate,l={formData:a},d=a;if(n.props.omitExtraData===!0&&n.props.liveOmit===!0){var u=Zt(n.state.schema,n.state.schema,a),c=Dm(u,"",n.state.schema,a),h=n.getFieldNames(c,a);d=n.getUsedFormData(a,h),l={formData:d}}if(s){var m=n.validate(d),f=m.errors,g=m.errorSchema,v=f,y=g;n.props.extraErrors&&(g=ps(g,n.props.extraErrors,!0),f=Cl(g)),l={formData:d,errors:f,errorSchema:g,schemaValidationErrors:v,schemaValidationErrorSchema:y}}else if(!n.props.noValidate&&i){var b=n.props.extraErrors?ps(i,n.props.extraErrors,!0):i;l={formData:d,errorSchema:b,errors:Cl(b)}}n.setState(l,function(){return n.props.onChange&&n.props.onChange(n.state)})}),ns(bl(n),"onBlur",function(){if(n.props.onBlur){var a;(a=n.props).onBlur.apply(a,arguments)}}),ns(bl(n),"onFocus",function(){if(n.props.onFocus){var a;(a=n.props).onFocus.apply(a,arguments)}}),ns(bl(n),"onSubmit",function(a){if(a.preventDefault(),a.target===a.currentTarget){a.persist();var i=n.state.formData;if(n.props.omitExtraData===!0){var o=Zt(n.state.schema,n.state.schema,i),s=Dm(o,"",n.state.schema,i),l=n.getFieldNames(s,i);i=n.getUsedFormData(i,l)}if(!n.props.noValidate){var d=n.validate(i),u=d.errors,c=d.errorSchema,h=u,m=c;if(Object.keys(u).length>0){n.props.extraErrors&&(c=ps(c,n.props.extraErrors,!0),u=Cl(c)),n.setState({errors:u,errorSchema:c,schemaValidationErrors:h,schemaValidationErrorSchema:m},function(){n.props.onError?n.props.onError(u):console.error("Form validation failed",u)});return}}var f,g;n.props.extraErrors?(f=n.props.extraErrors,g=Cl(f)):(f={},g=[]),n.setState({formData:i,errors:g,errorSchema:f,schemaValidationErrors:[],schemaValidationErrorSchema:{}},function(){n.props.onSubmit&&n.props.onSubmit(PA({},n.state,{formData:i,status:"submitted"}),a)})}}),n.state=n.getStateFromProps(r,r.formData),n.props.onChange&&!di(n.state.formData,n.props.formData)&&n.props.onChange(n.state),n.formElement=null,n}return Aut(t,[{key:"UNSAFE_componentWillReceiveProps",value:function(n){var a=this.getStateFromProps(n,n.formData);!di(a.formData,n.formData)&&!di(a.formData,this.state.formData)&&this.props.onChange&&this.props.onChange(a),this.setState(a)}},{key:"getStateFromProps",value:function(n,a){var i=this.state||{},o="schema"in n?n.schema:this.props.schema,s="uiSchema"in n?n.uiSchema:this.props.uiSchema,l=typeof a!="undefined",d="liveValidate"in n?n.liveValidate:this.props.liveValidate,u=l&&!n.noValidate&&d,c=o,h=Qw(o,a,c),m=Zt(o,c,h),f=n.customFormats,g=n.additionalMetaSchemas,v=function(){return n.noValidate?{errors:[],errorSchema:{}}:n.liveValidate?{errors:i.errors||[],errorSchema:i.errorSchema||{}}:{errors:i.schemaValidationErrors||[],errorSchema:i.schemaValidationErrorSchema||{}}},y,b,S,w;if(u){var _=this.validate(h,o,g,f);y=_.errors,b=_.errorSchema,S=y,w=b}else{var A=v();y=A.errors,b=A.errorSchema,S=i.schemaValidationErrors,w=i.schemaValidationErrorSchema}n.extraErrors&&(b=ps(b,n.extraErrors,!0),y=Cl(b));var I=Ul(m,s["ui:rootFieldId"],c,h,n.idPrefix,n.idSeparator),k={schema:o,uiSchema:s,idSchema:I,formData:h,edit:l,errors:y,errorSchema:b,additionalMetaSchemas:g};return S&&(k.schemaValidationErrors=S,k.schemaValidationErrorSchema=w),k}},{key:"shouldComponentUpdate",value:function(n,a){return iO(this,n,a)}},{key:"validate",value:function(n){var a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:this.props.schema,i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:this.props.additionalMetaSchemas,o=arguments.length>3&&arguments[3]!==void 0?arguments[3]:this.props.customFormats,s=this.props,l=s.validate,d=s.transformErrors,u=this.getRegistry(),c=u.rootSchema,h=Zt(a,c,n);return vQ(n,h,l,d,i,o)}},{key:"renderErrors",value:function(){var n=this.state,a=n.errors,i=n.errorSchema,o=n.schema,s=n.uiSchema,l=this.props,d=l.ErrorList,u=l.showErrorList,c=l.formContext;return a.length&&u!=!1?x(d,{errors:a,errorSchema:i,schema:o,uiSchema:s,formContext:c}):null}},{key:"getRegistry",value:function(){var n=mn(),a=n.fields,i=n.widgets;return{fields:PA({},a,this.props.fields),widgets:PA({},i,this.props.widgets),ArrayFieldTemplate:this.props.ArrayFieldTemplate,ObjectFieldTemplate:this.props.ObjectFieldTemplate,FieldTemplate:this.props.FieldTemplate,definitions:this.props.schema.definitions||{},rootSchema:this.props.schema,formContext:this.props.formContext||{}}}},{key:"submit",value:function(){this.formElement&&this.formElement.dispatchEvent(new CustomEvent("submit",{cancelable:!0}))}},{key:"render",value:function(){var n=this,a=this.props,i=a.children,o=a.id,s=a.idPrefix,l=a.idSeparator,d=a.className,u=a.tagName,c=a.name,h=a.method,m=a.target,f=a.action,g=a.autocomplete,v=a.autoComplete,y=a.enctype,b=a.acceptcharset,S=a.noHtml5Validate,w=a.disabled,_=a.readonly,A=a.formContext,I=a._internalFormWrapper,k=this.state,C=k.schema,T=k.uiSchema,O=k.formData,D=k.errorSchema,M=k.idSchema,E=this.getRegistry(),L=E.fields.SchemaField,P=I?u:void 0,j=I||u||"form",H=E.widgets.SubmitButton;g&&console.warn("Using autocomplete property of Form is deprecated, use autoComplete instead.");var $=v||g;return q.createElement(j,{className:d||"rjsf",id:o,name:c,method:h,target:m,action:f,autoComplete:$,encType:y,acceptCharset:b,noValidate:S,onSubmit:this.onSubmit,as:P,ref:function(z){n.formElement=z}},this.renderErrors(),q.createElement(L,{schema:C,uiSchema:T,errorSchema:D,idSchema:M,idPrefix:s,idSeparator:l,formContext:A,formData:O,onChange:this.onChange,onBlur:this.onBlur,onFocus:this.onFocus,registry:E,disabled:w,readonly:_}),i||x(H,{uiSchema:T}))}}]),t}(le.exports.Component);ns(IQ,"defaultProps",{uiSchema:{},noValidate:!1,liveValidate:!1,disabled:!1,readonly:!1,noHtml5Validate:!1,ErrorList:SQe,omitExtraData:!1});function gB(e){for(var t=1;t<arguments.length;t++){var r=arguments[t]!=null?arguments[t]:{},n=Object.keys(r);typeof Object.getOwnPropertySymbols=="function"&&(n=n.concat(Object.getOwnPropertySymbols(r).filter(function(a){return Object.getOwnPropertyDescriptor(r,a).enumerable}))),n.forEach(function(a){Cut(e,a,r[a])})}return e}function Cut(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function Eut(e,t){if(e==null)return{};var r=Iut(e,t),n,a;if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(a=0;a<i.length;a++)n=i[a],!(t.indexOf(n)>=0)&&(!Object.prototype.propertyIsEnumerable.call(e,n)||(r[n]=e[n]))}return r}function Iut(e,t){if(e==null)return{};var r={},n=Object.keys(e),a,i;for(i=0;i<n.length;i++)a=n[i],!(t.indexOf(a)>=0)&&(r[a]=e[a]);return r}function Xw(e){return le.exports.forwardRef(function(t,r){var n=t.fields,a=t.widgets,i=Eut(t,["fields","widgets"]);return n=gB({},e.fields,n),a=gB({},e.widgets,a),x(IQ,He(Se(Se({},e),i),{fields:n,widgets:a,ref:r}))})}Xw.propTypes={widgets:At.object,fields:At.object};const Dut=["xxl","xl","lg","md","sm","xs"],DQ=le.exports.createContext({prefixes:{},breakpoints:Dut});function Rr(e,t){const{prefixes:r}=le.exports.useContext(DQ);return e||r[t]||t}function xQ(){const{breakpoints:e}=le.exports.useContext(DQ);return e}const nu=le.exports.forwardRef((i,a)=>{var o=i,{bsPrefix:e,className:t,as:r="div"}=o,n=Mt(o,["bsPrefix","className","as"]);const s=Rr(e,"row"),l=xQ(),d=`${s}-cols`,u=[];return l.forEach(c=>{const h=n[c];delete n[c];let m;h!=null&&typeof h=="object"?{cols:m}=h:m=h;const f=c!=="xs"?`-${c}`:"";m!=null&&u.push(`${d}${f}-${m}`)}),x(r,He(Se({ref:a},n),{className:et(t,s,...u)}))});nu.displayName="Row";function xut(a){var i=a,{as:e,bsPrefix:t,className:r}=i,n=Mt(i,["as","bsPrefix","className"]);t=Rr(t,"col");const o=xQ(),s=[],l=[];return o.forEach(d=>{const u=n[d];delete n[d];let c,h,m;typeof u=="object"&&u!=null?{span:c,offset:h,order:m}=u:c=u;const f=d!=="xs"?`-${d}`:"";c&&s.push(c===!0?`${t}${f}`:`${t}${f}-${c}`),m!=null&&l.push(`order${f}-${m}`),h!=null&&l.push(`offset${f}-${h}`)}),[He(Se({},n),{className:et(r,...s,...l)}),{as:e,bsPrefix:t,spans:s}]}const Oa=le.exports.forwardRef((e,t)=>{const[s,...l]=xut(e),d=s,{className:r}=d,n=Mt(d,["className"]),[{as:a="div",bsPrefix:i,spans:o}]=l;return x(a,He(Se({},n),{ref:t,className:et(r,!o.length&&i)}))});Oa.displayName="Col";const Out={fluid:!1},yf=le.exports.forwardRef((o,i)=>{var s=o,{bsPrefix:e,fluid:t,as:r="div",className:n}=s,a=Mt(s,["bsPrefix","fluid","as","className"]);const l=Rr(e,"container"),d=typeof t=="string"?`-${t}`:"-fluid";return x(r,He(Se({ref:i},a),{className:et(n,t?`${l}${d}`:l)}))});yf.displayName="Container";yf.defaultProps=Out;const Mut=["as","disabled"];function Rut(e,t){if(e==null)return{};var r={},n=Object.keys(e),a,i;for(i=0;i<n.length;i++)a=n[i],!(t.indexOf(a)>=0)&&(r[a]=e[a]);return r}function Lut(e){return!e||e.trim()==="#"}function OQ({tagName:e,disabled:t,href:r,target:n,rel:a,onClick:i,tabIndex:o=0,type:s}){e||(r!=null||n!=null||a!=null?e="a":e="button");const l={tagName:e};if(e==="button")return[{type:s||"button",disabled:t},l];const d=c=>{if((t||e==="a"&&Lut(r))&&c.preventDefault(),t){c.stopPropagation();return}i==null||i(c)},u=c=>{c.key===" "&&(c.preventDefault(),d(c))};return e==="a"&&(r||(r="#"),t&&(r=void 0)),[{role:"button",disabled:void 0,tabIndex:t?void 0:o,href:r,target:e==="a"?n:void 0,"aria-disabled":t||void 0,rel:e==="a"?a:void 0,onClick:d,onKeyDown:u},l]}const MQ=le.exports.forwardRef((e,t)=>{let{as:r,disabled:n}=e,a=Rut(e,Mut);const[i,{tagName:o}]=OQ(Object.assign({tagName:r,disabled:n},a));return x(o,Object.assign({},a,i,{ref:t}))});MQ.displayName="Button";const Put={variant:"primary",active:!1,disabled:!1},Op=le.exports.forwardRef((l,s)=>{var d=l,{as:e,bsPrefix:t,variant:r,size:n,active:a,className:i}=d,o=Mt(d,["as","bsPrefix","variant","size","active","className"]);const u=Rr(t,"btn"),[c,{tagName:h}]=OQ(Se({tagName:e},o));return x(h,He(Se(Se({},c),o),{ref:s,className:et(i,u,a&&"active",r&&`${u}-${r}`,n&&`${u}-${n}`,o.href&&o.disabled&&"disabled")}))});Op.displayName="Button";Op.defaultProps=Put;var RQ={color:void 0,size:void 0,className:void 0,style:void 0,attr:void 0},vB=q.createContext&&q.createContext(RQ),Is=globalThis&&globalThis.__assign||function(){return Is=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var a in t)Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a])}return e},Is.apply(this,arguments)},$ut=globalThis&&globalThis.__rest||function(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(e!=null&&typeof Object.getOwnPropertySymbols=="function")for(var a=0,n=Object.getOwnPropertySymbols(e);a<n.length;a++)t.indexOf(n[a])<0&&Object.prototype.propertyIsEnumerable.call(e,n[a])&&(r[n[a]]=e[n[a]]);return r};function LQ(e){return e&&e.map(function(t,r){return q.createElement(t.tag,Is({key:r},t.attr),LQ(t.child))})}function Mp(e){return function(t){return q.createElement(zut,Is({attr:Is({},e.attr)},t),LQ(e.child))}}function zut(e){var t=function(r){var n=e.attr,a=e.size,i=e.title,o=$ut(e,["attr","size","title"]),s=a||r.size||"1em",l;return r.className&&(l=r.className),e.className&&(l=(l?l+" ":"")+e.className),q.createElement("svg",Is({stroke:"currentColor",fill:"currentColor",strokeWidth:"0"},r.attr,n,o,{className:l,style:Is(Is({color:e.color||r.color},r.style),e.style),height:s,width:s,xmlns:"http://www.w3.org/2000/svg"}),i&&q.createElement("title",null,i),e.children)};return vB!==void 0?q.createElement(vB.Consumer,null,function(r){return t(r)}):t(RQ)}function Nut(e){return Mp({tag:"svg",attr:{fill:"currentColor",viewBox:"0 0 16 16"},child:[{tag:"path",attr:{d:"M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z"}}]})(e)}function Fut(e){return Mp({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M368.5 240h-225c-8.8 0-16 7.2-16 16 0 4.4 1.8 8.4 4.7 11.3 2.9 2.9 6.9 4.7 11.3 4.7h225c8.8 0 16-7.2 16-16s-7.2-16-16-16z"}}]})(e)}function But(e){return Mp({tag:"svg",attr:{viewBox:"0 0 24 24"},child:[{tag:"path",attr:{fill:"none",stroke:"#000",strokeWidth:"2",d:"M12,22 L12,2 M2,12 L22,12"}}]})(e)}function Wut(e){return Mp({tag:"svg",attr:{viewBox:"0 0 1024 1024"},child:[{tag:"path",attr:{d:"M862 465.3h-81c-4.6 0-9 2-12.1 5.5L550 723.1V160c0-4.4-3.6-8-8-8h-60c-4.4 0-8 3.6-8 8v563.1L255.1 470.8c-3-3.5-7.4-5.5-12.1-5.5h-81c-6.8 0-10.5 8.1-6 13.2L487.9 861a31.96 31.96 0 0 0 48.3 0L868 478.5c4.5-5.2.8-13.2-6-13.2z"}}]})(e)}function Hut(e){return Mp({tag:"svg",attr:{viewBox:"0 0 1024 1024"},child:[{tag:"path",attr:{d:"M868 545.5L536.1 163a31.96 31.96 0 0 0-48.3 0L156 545.5a7.97 7.97 0 0 0 6 13.2h81c4.6 0 9-2 12.1-5.5L474 300.9V864c0 4.4 3.6 8 8 8h60c4.4 0 8-3.6 8-8V300.9l218.9 252.3c3 3.5 7.4 5.5 12.1 5.5h81c6.8 0 10.5-8 6-13.2z"}}]})(e)}var jut=/-(.)/g;function Uut(e){return e.replace(jut,function(t,r){return r.toUpperCase()})}const Vut=e=>e[0].toUpperCase()+Uut(e).slice(1);function $o(e,{displayName:t=Vut(e),Component:r,defaultProps:n}={}){const a=le.exports.forwardRef((u,d)=>{var c=u,{className:i,bsPrefix:o,as:s=r||"div"}=c,l=Mt(c,["className","bsPrefix","as"]);const h=Rr(o,e);return x(s,Se({ref:d,className:et(i,h)},l))});return a.defaultProps=n,a.displayName=t,a}var PQ=e=>le.exports.forwardRef((t,r)=>x("div",He(Se({},t),{ref:r,className:et(t.className,e)})));const $Q=le.exports.forwardRef((o,i)=>{var s=o,{bsPrefix:e,className:t,variant:r,as:n="img"}=s,a=Mt(s,["bsPrefix","className","variant","as"]);const l=Rr(e,"card-img");return x(n,Se({ref:i,className:et(r?`${l}-${r}`:l,t)},a))});$Q.displayName="CardImg";const zQ=le.exports.createContext(null);zQ.displayName="CardHeaderContext";const NQ=le.exports.forwardRef((i,a)=>{var o=i,{bsPrefix:e,className:t,as:r="div"}=o,n=Mt(o,["bsPrefix","className","as"]);const s=Rr(e,"card-header"),l=le.exports.useMemo(()=>({cardHeaderBsPrefix:s}),[s]);return x(zQ.Provider,{value:l,children:x(r,He(Se({ref:a},n),{className:et(t,s)}))})});NQ.displayName="CardHeader";const Gut=PQ("h5"),qut=PQ("h6"),FQ=$o("card-body"),Kut=$o("card-title",{Component:Gut}),Qut=$o("card-subtitle",{Component:qut}),Zut=$o("card-link",{Component:"a"}),Yut=$o("card-text",{Component:"p"}),Xut=$o("card-footer"),Jut=$o("card-img-overlay"),edt={body:!1},sO=le.exports.forwardRef((u,d)=>{var c=u,{bsPrefix:e,className:t,bg:r,text:n,border:a,body:i,children:o,as:s="div"}=c,l=Mt(c,["bsPrefix","className","bg","text","border","body","children","as"]);const h=Rr(e,"card");return x(s,He(Se({ref:d},l),{className:et(t,h,r&&`bg-${r}`,n&&`text-${n}`,a&&`border-${a}`),children:i?x(FQ,{children:o}):o}))});sO.displayName="Card";sO.defaultProps=edt;var $A=Object.assign(sO,{Img:$Q,Title:Kut,Subtitle:Qut,Body:FQ,Link:Zut,Text:Yut,Header:NQ,Footer:Xut,ImgOverlay:Jut});function yB(e){return"default"+e.charAt(0).toUpperCase()+e.substr(1)}function tdt(e){var t=rdt(e,"string");return typeof t=="symbol"?t:String(t)}function rdt(e,t){if(typeof e!="object"||e===null)return e;var r=e[Symbol.toPrimitive];if(r!==void 0){var n=r.call(e,t||"default");if(typeof n!="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(e)}function ndt(e,t,r){var n=le.exports.useRef(e!==void 0),a=le.exports.useState(t),i=a[0],o=a[1],s=e!==void 0,l=n.current;return n.current=s,!s&&l&&i!==t&&o(t),[s?e:i,le.exports.useCallback(function(d){for(var u=arguments.length,c=new Array(u>1?u-1:0),h=1;h<u;h++)c[h-1]=arguments[h];r&&r.apply(void 0,[d].concat(c)),o(d)},[r])]}function adt(e,t){return Object.keys(t).reduce(function(r,n){var a,i=r,o=i[yB(n)],s=i[n],l=fi(i,[yB(n),n].map(tdt)),d=t[n],u=ndt(s,o,e[d]),c=u[0],h=u[1];return Mr({},l,(a={},a[n]=c,a[d]=h,a))},e)}var idt=Function.prototype.bind.call(Function.prototype.call,[].slice);function odt(e,t){return idt(e.querySelectorAll(t))}function sdt(){var e=le.exports.useReducer(function(r){return!r},!1),t=e[1];return t}var _B=function(t){return!t||typeof t=="function"?t:function(r){t.current=r}};function ldt(e,t){var r=_B(e),n=_B(t);return function(a){r&&r(a),n&&n(a)}}function udt(e,t){return le.exports.useMemo(function(){return ldt(e,t)},[e,t])}const lO=le.exports.createContext(null);lO.displayName="NavContext";const EE=le.exports.createContext(null),uO=(e,t=null)=>e!=null?String(e):t||null,BQ=le.exports.createContext(null),ddt="data-rr-ui-",cdt="rrUi";function dO(e){return`${ddt}${e}`}function hdt(e){return`${cdt}${e}`}function mdt(e){var t=le.exports.useRef(e);return le.exports.useEffect(function(){t.current=e},[e]),t}function WQ(e){var t=mdt(e);return le.exports.useCallback(function(){return t.current&&t.current.apply(t,arguments)},[t])}const fdt=["as","active","eventKey"];function pdt(e,t){if(e==null)return{};var r={},n=Object.keys(e),a,i;for(i=0;i<n.length;i++)a=n[i],!(t.indexOf(a)>=0)&&(r[a]=e[a]);return r}function HQ({key:e,onClick:t,active:r,id:n,role:a,disabled:i}){const o=le.exports.useContext(EE),s=le.exports.useContext(lO),l=le.exports.useContext(BQ);let d=r;const u={role:a};if(s){!a&&s.role==="tablist"&&(u.role="tab");const c=s.getControllerId(e!=null?e:null),h=s.getControlledId(e!=null?e:null);u[dO("event-key")]=e,u.id=c||n,d=r==null&&e!=null?s.activeKey===e:r,(d||!(l!=null&&l.unmountOnExit)&&!(l!=null&&l.mountOnEnter))&&(u["aria-controls"]=h)}return u.role==="tab"&&(i&&(u.tabIndex=-1,u["aria-disabled"]=!0),d?u["aria-selected"]=d:u.tabIndex=-1),u.onClick=WQ(c=>{i||(t==null||t(c),e!=null&&o&&!c.isPropagationStopped()&&o(e,c))}),[u,{isActive:d}]}const jQ=le.exports.forwardRef((e,t)=>{let{as:r=MQ,active:n,eventKey:a}=e,i=pdt(e,fdt);const[o,s]=HQ(Object.assign({key:uO(a,i.href),active:n},i));return o[dO("active")]=s.isActive,x(r,Object.assign({},i,o,{ref:t}))});jQ.displayName="NavItem";const gdt=["as","onSelect","activeKey","role","onKeyDown"];function vdt(e,t){if(e==null)return{};var r={},n=Object.keys(e),a,i;for(i=0;i<n.length;i++)a=n[i],!(t.indexOf(a)>=0)&&(r[a]=e[a]);return r}const bB=()=>{},wB=dO("event-key"),UQ=le.exports.forwardRef((e,t)=>{let{as:r="div",onSelect:n,activeKey:a,role:i,onKeyDown:o}=e,s=vdt(e,gdt);const l=sdt(),d=le.exports.useRef(!1),u=le.exports.useContext(EE),c=le.exports.useContext(BQ);let h,m;c&&(i=i||"tablist",a=c.activeKey,h=c.getControlledId,m=c.getControllerId);const f=le.exports.useRef(null),g=S=>{const w=f.current;if(!w)return null;const _=odt(w,`[${wB}]:not([aria-disabled=true])`),A=w.querySelector("[aria-selected=true]");if(!A||A!==document.activeElement)return null;const I=_.indexOf(A);if(I===-1)return null;let k=I+S;return k>=_.length&&(k=0),k<0&&(k=_.length-1),_[k]},v=(S,w)=>{S!=null&&(n==null||n(S,w),u==null||u(S,w))},y=S=>{if(o==null||o(S),!c)return;let w;switch(S.key){case"ArrowLeft":case"ArrowUp":w=g(-1);break;case"ArrowRight":case"ArrowDown":w=g(1);break;default:return}!w||(S.preventDefault(),v(w.dataset[hdt("EventKey")]||null,S),d.current=!0,l())};le.exports.useEffect(()=>{if(f.current&&d.current){const S=f.current.querySelector(`[${wB}][aria-selected=true]`);S==null||S.focus()}d.current=!1});const b=udt(t,f);return x(EE.Provider,{value:v,children:x(lO.Provider,{value:{role:i,activeKey:uO(a),getControlledId:h||bB,getControllerId:m||bB},children:x(r,Object.assign({},s,{onKeyDown:y,ref:b,role:i}))})})});UQ.displayName="Nav";var ydt=Object.assign(UQ,{Item:jQ});const VQ=le.exports.forwardRef((u,d)=>{var c=u,{bsPrefix:e,active:t,disabled:r,eventKey:n,className:a,variant:i,action:o,as:s}=c,l=Mt(c,["bsPrefix","active","disabled","eventKey","className","variant","action","as"]);e=Rr(e,"list-group-item");const[h,m]=HQ(Se({key:uO(n,l.href),active:t},l)),f=WQ(v=>{if(r){v.preventDefault(),v.stopPropagation();return}h.onClick(v)});r&&l.tabIndex===void 0&&(l.tabIndex=-1,l["aria-disabled"]=!0);const g=s||(o?l.href?"a":"button":"div");return x(g,He(Se(Se({ref:d},l),h),{onClick:f,className:et(a,e,m.isActive&&"active",r&&"disabled",i&&`${e}-${i}`,o&&`${e}-action`)}))});VQ.displayName="ListGroupItem";const GQ=le.exports.forwardRef((e,t)=>{const c=adt(e,{activeKey:"onSelect"}),{className:r,bsPrefix:n,variant:a,horizontal:i,numbered:o,as:s="div"}=c,l=Mt(c,["className","bsPrefix","variant","horizontal","numbered","as"]),d=Rr(n,"list-group");let u;return i&&(u=i===!0?"horizontal":`horizontal-${i}`),x(ydt,He(Se({ref:t},l),{as:s,className:et(r,d,a&&`${d}-${a}`,u&&`${d}-${u}`,o&&`${d}-numbered`)}))});GQ.displayName="ListGroup";var U_=Object.assign(GQ,{Item:VQ});const _dt={type:At.string,tooltip:At.bool,as:At.elementType},Jw=le.exports.forwardRef((o,i)=>{var s=o,{as:e="div",className:t,type:r="valid",tooltip:n=!1}=s,a=Mt(s,["as","className","type","tooltip"]);return x(e,He(Se({},a),{ref:i,className:et(t,`${r}-${n?"tooltip":"feedback"}`)}))});Jw.displayName="Feedback";Jw.propTypes=_dt;const Ao=le.exports.createContext({}),Rp=le.exports.forwardRef((d,l)=>{var u=d,{id:e,bsPrefix:t,className:r,type:n="checkbox",isValid:a=!1,isInvalid:i=!1,as:o="input"}=u,s=Mt(u,["id","bsPrefix","className","type","isValid","isInvalid","as"]);const{controlId:c}=le.exports.useContext(Ao);return t=Rr(t,"form-check-input"),x(o,He(Se({},s),{ref:l,type:n,id:e||c,className:et(r,t,a&&"is-valid",i&&"is-invalid")}))});Rp.displayName="FormCheckInput";const V_=le.exports.forwardRef((i,a)=>{var o=i,{bsPrefix:e,className:t,htmlFor:r}=o,n=Mt(o,["bsPrefix","className","htmlFor"]);const{controlId:s}=le.exports.useContext(Ao);return e=Rr(e,"form-check-label"),x("label",He(Se({},n),{ref:a,htmlFor:r||s,className:et(t,e)}))});V_.displayName="FormCheckLabel";function bdt(e,t){return le.exports.Children.toArray(e).some(r=>le.exports.isValidElement(r)&&r.type===t)}const qQ=le.exports.forwardRef((S,b)=>{var w=S,{id:e,bsPrefix:t,bsSwitchPrefix:r,inline:n=!1,disabled:a=!1,isValid:i=!1,isInvalid:o=!1,feedbackTooltip:s=!1,feedback:l,feedbackType:d,className:u,style:c,title:h="",type:m="checkbox",label:f,children:g,as:v="input"}=w,y=Mt(w,["id","bsPrefix","bsSwitchPrefix","inline","disabled","isValid","isInvalid","feedbackTooltip","feedback","feedbackType","className","style","title","type","label","children","as"]);t=Rr(t,"form-check"),r=Rr(r,"form-switch");const{controlId:_}=le.exports.useContext(Ao),A=le.exports.useMemo(()=>({controlId:e||_}),[_,e]),I=!g&&f!=null&&f!==!1||bdt(g,V_),k=x(Rp,He(Se({},y),{type:m==="switch"?"checkbox":m,ref:b,isValid:i,isInvalid:o,disabled:a,as:v}));return x(Ao.Provider,{value:A,children:x("div",{style:c,className:et(u,I&&t,n&&`${t}-inline`,m==="switch"&&r),children:g||de(St,{children:[k,I&&x(V_,{title:h,children:f}),l&&x(Jw,{type:d,tooltip:s,children:l})]})})})});qQ.displayName="FormCheck";var G_=Object.assign(qQ,{Input:Rp,Label:V_});const KQ=le.exports.forwardRef((m,h)=>{var f=m,{bsPrefix:e,type:t,size:r,htmlSize:n,id:a,className:i,isValid:o=!1,isInvalid:s=!1,plaintext:l,readOnly:d,as:u="input"}=f,c=Mt(f,["bsPrefix","type","size","htmlSize","id","className","isValid","isInvalid","plaintext","readOnly","as"]);const{controlId:g}=le.exports.useContext(Ao);e=Rr(e,"form-control");let v;return l?v={[`${e}-plaintext`]:!0}:v={[e]:!0,[`${e}-${r}`]:r},x(u,He(Se({},c),{type:t,size:n,ref:h,readOnly:d,id:a||g,className:et(i,v,o&&"is-valid",s&&"is-invalid",t==="color"&&`${e}-color`)}))});KQ.displayName="FormControl";var QQ=Object.assign(KQ,{Feedback:Jw}),wdt=$o("form-floating");const cO=le.exports.forwardRef((a,n)=>{var i=a,{controlId:e,as:t="div"}=i,r=Mt(i,["controlId","as"]);const o=le.exports.useMemo(()=>({controlId:e}),[e]);return x(Ao.Provider,{value:o,children:x(t,He(Se({},r),{ref:n}))})});cO.displayName="FormGroup";const Sdt={column:!1,visuallyHidden:!1},hO=le.exports.forwardRef((l,s)=>{var d=l,{as:e="label",bsPrefix:t,column:r,visuallyHidden:n,className:a,htmlFor:i}=d,o=Mt(d,["as","bsPrefix","column","visuallyHidden","className","htmlFor"]);const{controlId:u}=le.exports.useContext(Ao);t=Rr(t,"form-label");let c="col-form-label";typeof r=="string"&&(c=`${c} ${c}-${r}`);const h=et(a,t,n&&"visually-hidden",r&&c);return i=i||u,r?x(Oa,Se({ref:s,as:"label",className:h,htmlFor:i},o)):x(e,Se({ref:s,className:h,htmlFor:i},o))});hO.displayName="FormLabel";hO.defaultProps=Sdt;const ZQ=le.exports.forwardRef((i,a)=>{var o=i,{bsPrefix:e,className:t,id:r}=o,n=Mt(o,["bsPrefix","className","id"]);const{controlId:s}=le.exports.useContext(Ao);return e=Rr(e,"form-range"),x("input",He(Se({},n),{type:"range",ref:a,className:et(t,e),id:r||s}))});ZQ.displayName="FormRange";const YQ=le.exports.forwardRef((d,l)=>{var u=d,{bsPrefix:e,size:t,htmlSize:r,className:n,isValid:a=!1,isInvalid:i=!1,id:o}=u,s=Mt(u,["bsPrefix","size","htmlSize","className","isValid","isInvalid","id"]);const{controlId:c}=le.exports.useContext(Ao);return e=Rr(e,"form-select"),x("select",He(Se({},s),{size:r,ref:l,className:et(n,e,t&&`${e}-${t}`,a&&"is-valid",i&&"is-invalid"),id:o||c}))});YQ.displayName="FormSelect";const XQ=le.exports.forwardRef((o,i)=>{var s=o,{bsPrefix:e,className:t,as:r="small",muted:n}=s,a=Mt(s,["bsPrefix","className","as","muted"]);return e=Rr(e,"form-text"),x(r,He(Se({},a),{ref:i,className:et(t,e,n&&"text-muted")}))});XQ.displayName="FormText";const JQ=le.exports.forwardRef((e,t)=>x(G_,He(Se({},e),{ref:t,type:"switch"})));JQ.displayName="Switch";var Adt=Object.assign(JQ,{Input:G_.Input,Label:G_.Label});const eZ=le.exports.forwardRef((s,o)=>{var l=s,{bsPrefix:e,className:t,children:r,controlId:n,label:a}=l,i=Mt(l,["bsPrefix","className","children","controlId","label"]);return e=Rr(e,"form-floating"),de(cO,He(Se({ref:o,className:et(t,e),controlId:n},i),{children:[r,x("label",{htmlFor:n,children:a})]}))});eZ.displayName="FloatingLabel";const Tdt={_ref:At.any,validated:At.bool,as:At.elementType},mO=le.exports.forwardRef((i,a)=>{var o=i,{className:e,validated:t,as:r="form"}=o,n=Mt(o,["className","validated","as"]);return x(r,He(Se({},n),{ref:a,className:et(e,t&&"was-validated")}))});mO.displayName="Form";mO.propTypes=Tdt;var Qt=Object.assign(mO,{Group:cO,Control:QQ,Floating:wdt,Check:G_,Switch:Adt,Label:hO,Text:XQ,Range:ZQ,Select:YQ,FloatingLabel:eZ});const tZ=le.exports.createContext(null);tZ.displayName="InputGroupContext";const fO=$o("input-group-text",{Component:"span"}),kdt=e=>x(fO,{children:x(Rp,Se({type:"checkbox"},e))}),Cdt=e=>x(fO,{children:x(Rp,Se({type:"radio"},e))}),rZ=le.exports.forwardRef((s,o)=>{var l=s,{bsPrefix:e,size:t,hasValidation:r,className:n,as:a="div"}=l,i=Mt(l,["bsPrefix","size","hasValidation","className","as"]);e=Rr(e,"input-group");const d=le.exports.useMemo(()=>({}),[]);return x(tZ.Provider,{value:d,children:x(a,He(Se({ref:o},i),{className:et(n,e,t&&`${e}-${t}`,r&&"has-validation")}))})});rZ.displayName="InputGroup";var Edt=Object.assign(rZ,{Text:fO,Radio:Cdt,Checkbox:kdt});function _f(){return _f=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},_f.apply(this,arguments)}function Idt(e,t){if(e==null)return{};var r={},n=Object.keys(e),a,i;for(i=0;i<n.length;i++)a=n[i],!(t.indexOf(a)>=0)&&(r[a]=e[a]);return r}var pO=function(t){return q.createElement(Op,Object.assign({},t,{style:{width:"100%"},className:"ml-1 "+t.className}),q.createElement(Nut,null))},Ddt=["icon","className"],xdt={remove:q.createElement(Fut,null),plus:q.createElement(But,null),"arrow-up":q.createElement(Hut,null),"arrow-down":q.createElement(Wut,null)},uy=function(t){var r=t.icon,n=Idt(t,Ddt);return q.createElement(Op,Object.assign({},n,{variant:t.variant||"light",size:"sm"}),xdt[r])},Odt=Zw,Mdt=mn,Rdt=function(t){var r=t.schema,n=t.registry,a=n===void 0?Mdt():n;return Odt(r,a.rootSchema)?q.createElement(Pdt,Object.assign({},t)):q.createElement($dt,Object.assign({},t))},nZ=function(t){var r=t.TitleField,n=t.idSchema,a=t.title,i=t.required;if(!a)return null;var o=n.$id+"__title";return q.createElement(r,{id:o,title:a,required:i})},Ldt=function(t){var r=t.DescriptionField,n=t.idSchema,a=t.description;if(!a)return null;var i=n.$id+"__description";return q.createElement(r,{id:i,description:a})},aZ=function(t){var r={flex:1,paddingLeft:6,paddingRight:6,fontWeight:"bold"};return q.createElement("div",{key:t.key},q.createElement(nu,{className:"mb-2 d-flex align-items-center"},q.createElement(Oa,{xs:"9",lg:"9"},t.children),q.createElement(Oa,{xs:"3",lg:"3",className:"py-4"},t.hasToolbar&&q.createElement("div",{className:"d-flex flex-row"},(t.hasMoveUp||t.hasMoveDown)&&q.createElement("div",{className:"m-0 p-0"},q.createElement(uy,{icon:"arrow-up",className:"array-item-move-up",tabIndex:-1,style:r,disabled:t.disabled||t.readonly||!t.hasMoveUp,onClick:t.onReorderClick(t.index,t.index-1)})),(t.hasMoveUp||t.hasMoveDown)&&q.createElement("div",{className:"m-0 p-0"},q.createElement(uy,{icon:"arrow-down",tabIndex:-1,style:r,disabled:t.disabled||t.readonly||!t.hasMoveDown,onClick:t.onReorderClick(t.index,t.index+1)})),t.hasRemove&&q.createElement("div",{className:"m-0 p-0"},q.createElement(uy,{icon:"remove",tabIndex:-1,style:r,disabled:t.disabled||t.readonly,onClick:t.onDropIndexClick(t.index)}))))))},Pdt=function(t){return q.createElement("fieldset",{className:t.className},q.createElement(nZ,{key:"array-field-title-"+t.idSchema.$id,TitleField:t.TitleField,idSchema:t.idSchema,title:t.uiSchema["ui:title"]||t.title,required:t.required}),(t.uiSchema["ui:description"]||t.schema.description)&&q.createElement("div",{className:"field-description",key:"field-description-"+t.idSchema.$id},t.uiSchema["ui:description"]||t.schema.description),q.createElement("div",{className:"row array-item-list",key:"array-item-list-"+t.idSchema.$id},t.items&&t.items.map(aZ)),t.canAdd&&q.createElement(pO,{className:"array-item-add",onClick:t.onAddClick,disabled:t.disabled||t.readonly}))},$dt=function(t){return q.createElement("div",null,q.createElement(nu,{className:"p-0 m-0"},q.createElement(Oa,{className:"p-0 m-0"},q.createElement(nZ,{key:"array-field-title-"+t.idSchema.$id,TitleField:t.TitleField,idSchema:t.idSchema,title:t.uiSchema["ui:title"]||t.title,required:t.required}),(t.uiSchema["ui:description"]||t.schema.description)&&q.createElement(Ldt,{key:"array-field-description-"+t.idSchema.$id,DescriptionField:t.DescriptionField,idSchema:t.idSchema,description:t.uiSchema["ui:description"]||t.schema.description}),q.createElement(yf,{fluid:!0,key:"array-item-list-"+t.idSchema.$id,className:"p-0 m-0"},t.items&&t.items.map(function(r){return aZ(r)}),t.canAdd&&q.createElement(yf,{className:""},q.createElement(nu,{className:"mt-2"},q.createElement(Oa,{xs:9}),q.createElement(Oa,{xs:3,className:"py-4 col-lg-3 col-3"}," ",q.createElement(pO,{className:"array-item-add",onClick:t.onAddClick,disabled:t.disabled||t.readonly}))))))))},zdt=function(t){var r=t.errors;return q.createElement($A,{border:"danger",className:"mb-4"},q.createElement($A.Header,{className:"alert-danger"},"Errors"),q.createElement($A.Body,{className:"p-0"},q.createElement(U_,null,r.map(function(n,a){return q.createElement(U_.Item,{key:a,className:"border-0"},q.createElement("span",null,n.stack))}))))},Ndt=function(t){var r=t.description;return r?q.createElement("div",null,q.createElement("div",{className:"mb-3"},r)):null},Fdt=function(t){var r=t.title,n=t.uiSchema;return q.createElement(q.Fragment,null,q.createElement("div",{className:"my-1"},q.createElement("h5",null,n&&n["ui:title"]||r),q.createElement("hr",{className:"border-0 bg-secondary",style:{height:"1px"}})))},Bdt={DescriptionField:Ndt,TitleField:Fdt},Wdt=Kw,Hdt=function(t){var r=t.children,n=t.disabled,a=t.id,i=t.label,o=t.onDropPropertyClick,s=t.onKeyChange,l=t.readonly,d=t.required,u=t.schema,c=i+" Key",h=u.hasOwnProperty(Wdt);if(!h)return r;var m=function(g){var v=g.target;return s(v.value)};return q.createElement(nu,{key:a+"-key"},q.createElement(Oa,{xs:5},q.createElement(Qt.Group,null,q.createElement(Qt.Label,null,c),q.createElement(Qt.Control,{required:d,defaultValue:i,disabled:n||l,id:a+"-key",name:a+"-key",onBlur:l?void 0:m,type:"text"}))),q.createElement(Oa,{xs:5},r),q.createElement(Oa,{xs:2,className:"py-4"},q.createElement(uy,{className:"w-100",variant:"danger",icon:"remove",tabIndex:-1,disabled:n||l,onClick:o(i)})))},jdt=function(t){var r=t.id,n=t.children,a=t.displayLabel,i=t.rawErrors,o=i===void 0?[]:i,s=t.rawHelp,l=t.rawDescription,d=t.classNames,u=t.disabled,c=t.label,h=t.onDropPropertyClick,m=t.onKeyChange,f=t.readonly,g=t.required,v=t.schema;return q.createElement(Hdt,{classNames:d,disabled:u,id:r,label:c,onDropPropertyClick:h,onKeyChange:m,readonly:f,required:g,schema:v},q.createElement(Qt.Group,null,n,a&&l&&q.createElement(Qt.Text,{className:o.length>0?"text-danger":"text-muted"},l),o.length>0&&q.createElement(U_,{as:"ul"},o.map(function(y){return q.createElement(U_.Item,{as:"li",key:y,className:"border-0 m-0 p-0"},q.createElement("small",{className:"m-0 text-danger"},y))})),s&&q.createElement(Qt.Text,{className:o.length>0?"text-danger":"text-muted",id:r},s)))},Udt=_Q,Vdt=function(t){var r=t.DescriptionField,n=t.description,a=t.TitleField,i=t.title,o=t.properties,s=t.required,l=t.uiSchema,d=t.idSchema,u=t.schema,c=t.formData,h=t.onAddClick,m=t.disabled,f=t.readonly;return q.createElement(q.Fragment,null,(l["ui:title"]||i)&&q.createElement(a,{id:d.$id+"-title",title:l["ui:title"]||i,required:s}),n&&q.createElement(r,{id:d.$id+"-description",description:n}),q.createElement(yf,{fluid:!0,className:"p-0"},o.map(function(g,v){return q.createElement(nu,{key:v,style:{marginBottom:"10px"},className:g.hidden?"d-none":void 0},q.createElement(Oa,{xs:12}," ",g.content))}),Udt(u,l,c)?q.createElement(nu,null,q.createElement(Oa,{xs:{offset:9,span:3},className:"py-4"},q.createElement(pO,{onClick:h(u),disabled:m||f,className:"object-property-expand"}))):null))},Gdt=function(t){var r=t.id,n=t.value,a=t.required,i=t.disabled,o=t.readonly,s=t.label,l=t.schema,d=t.autofocus,u=t.onChange,c=t.onBlur,h=t.onFocus,m=function(b){var S=b.target.checked;return u(S)},f=function(b){var S=b.target.checked;return c(r,S)},g=function(b){var S=b.target.checked;return h(r,S)},v=s||l.description;return q.createElement(Qt.Group,{className:"checkbox "+(i||o?"disabled":"")},q.createElement(Qt.Check,{id:r,label:v,checked:typeof n=="undefined"?!1:n,required:a,disabled:i||o,autoFocus:d,onChange:m,type:"checkbox",onBlur:f,onFocus:g}))},qdt=function(t,r,n){var a=n.indexOf(t),i=r.slice(0,a).concat(t,r.slice(a));return i.sort(function(o,s){return n.indexOf(o)>n.indexOf(s)})},Kdt=function(t,r){return r.filter(function(n){return n!==t})},Qdt=function(t){var r=t.schema,n=t.label,a=t.id,i=t.disabled,o=t.options,s=t.value,l=t.autofocus,d=t.readonly,u=t.required,c=t.onChange,h=t.onBlur,m=t.onFocus,f=o.enumOptions,g=o.enumDisabled,v=o.inline,y=function(_){return function(A){var I=A.target.checked,k=f.map(function(C){var T=C.value;return T});c(I?qdt(_.value,s,k):Kdt(_.value,s))}},b=function(_){var A=_.target.value;return h(a,A)},S=function(_){var A=_.target.value;return m(a,A)};return q.createElement(q.Fragment,null,q.createElement(Qt.Label,{htmlFor:a},n||r.title),q.createElement(Qt.Group,null,f.map(function(w,_){var A=s.indexOf(w.value)!==-1,I=g&&g.indexOf(w.value)!=-1;return v?q.createElement(Qt,{key:_},q.createElement(Qt.Check,{required:u,inline:!0,className:"bg-transparent border-0",checked:A,type:"checkbox",id:a+"_"+_,label:w.label,autoFocus:l&&_===0,onChange:y(w),onBlur:b,onFocus:S,disabled:i||I||d})):q.createElement(Qt,{key:_},q.createElement(Qt.Check,{required:u,checked:A,className:"bg-transparent border-0",type:"checkbox",id:a+"_"+_,label:w.label,autoFocus:l&&_===0,onChange:y(w),onBlur:b,onFocus:S,disabled:i||I||d}))})))},Zdt=function(t){var r=t.registry,n=r.widgets.TextWidget;return q.createElement(n,Object.assign({},t,{type:"color"}))},Ydt=function(t){var r=t.registry,n=r.widgets.TextWidget;return q.createElement(n,Object.assign({},t,{type:"date"}))},Xdt=EQ,Jdt=CQ,ect=function(t){var r=t.registry,n=r.widgets.TextWidget,a=Jdt(t.value),i=function(s){t.onChange(Xdt(s))};return q.createElement(n,Object.assign({},t,{type:"datetime-local",value:a,onChange:i}))},tct=function(t){var r=t.registry,n=r.widgets.TextWidget;return q.createElement(n,Object.assign({},t,{type:"email"}))},rct=function(t){var r=t.id,n=t.required,a=t.readonly,i=t.disabled,o=t.value,s=t.label,l=t.onFocus,d=t.onBlur,u=t.onChange,c=t.options,h=t.autofocus,m=t.schema,f=t.rawErrors,g=f===void 0?[]:f,v=function(w){var _=w.target.value;return u(_===""?c.emptyValue:_)},y=function(w){var _=w.target.value;return d(r,_)},b=function(w){var _=w.target.value;return l(r,_)};return q.createElement(Qt.Group,{className:"mb-0"},q.createElement(Qt.Label,{className:g.length>0?"text-danger":""},s||m.title,(s||m.title)&&n?"*":null),q.createElement(Qt.Control,{id:r,autoFocus:h,className:g.length>0?"is-invalid":"",required:n,disabled:i,readOnly:a,type:"password",value:o||"",onFocus:b,onBlur:y,onChange:v}))},nct=function(t){var r=t.id,n=t.schema,a=t.options,i=t.value,o=t.required,s=t.disabled,l=t.readonly,d=t.label,u=t.onChange,c=t.onBlur,h=t.onFocus,m=t.uiSchema,f=a.enumOptions,g=a.enumDisabled,v=function(_){var A=_.target.value;return u(n.type=="boolean"?A!=="false":A)},y=function(_){var A=_.target.value;return c(r,A)},b=function(_){var A=_.target.value;return h(r,A)},S=Boolean(a&&a.inline);return q.createElement(Qt.Group,{className:"mb-0"},q.createElement(Qt.Label,{className:"d-block"},m["ui:title"]||n.title||d,(d||m["ui:title"]||n.title)&&o?"*":null),f.map(function(w,_){var A=Array.isArray(g)&&g.indexOf(w.value)!==-1,I=w.value==i,k=q.createElement(Qt.Check,{inline:S,label:w.label,id:w.label,key:_,name:r,type:"radio",disabled:s||A||l,checked:I,required:o,value:w.value,onChange:v,onBlur:y,onFocus:b});return k}))},act=oO,ict=function(t){var r=t.value,n=t.readonly,a=t.disabled,i=t.onBlur,o=t.onFocus,s=t.options,l=t.schema,d=t.onChange,u=t.required,c=t.label,h=t.id,m=t.uiSchema,f=_f({value:r,label:c,id:h},act(l)),g=function(S){var w=S.target.value;return d(w===""?s.emptyValue:w)},v=function(S){var w=S.target.value;return i(h,w)},y=function(S){var w=S.target.value;return o(h,w)};return q.createElement(Qt.Group,{className:"mb-0"},q.createElement(Qt.Label,null,m["ui:title"]||l.title||c,(c||m["ui:title"]||l.title)&&u?"*":null),q.createElement(Qt.Control,Object.assign({type:"range",required:u,disabled:a,readOnly:n,onChange:g,onBlur:v,onFocus:y},f)),q.createElement("span",{className:"range-view"},r))},zA=qd,SB=yc,oct=new Set(["number","integer"]),NA=function(t,r){var n=t.type,a=t.items;if(r!==""){{if(n==="array"&&a&&oct.has(a.type))return r.map(zA);if(n==="boolean")return r==="true";if(n==="number")return zA(r)}if(t.enum){if(t.enum.every(function(i){return SB(i)==="number"}))return zA(r);if(t.enum.every(function(i){return SB(i)==="boolean"}))return r==="true"}return r}},sct=function(t){var r=t.schema,n=t.id,a=t.options,i=t.label,o=t.required,s=t.disabled,l=t.value,d=t.multiple,u=t.autofocus,c=t.onChange,h=t.onBlur,m=t.onFocus,f=t.placeholder,g=t.rawErrors,v=g===void 0?[]:g,y=a.enumOptions,b=a.enumDisabled,S=d?[]:"";function w(_,A){return A?[].slice.call(_.target.options).filter(function(I){return I.selected}).map(function(I){return I.value}):_.target.value}return q.createElement(Qt.Group,null,q.createElement(Qt.Label,{className:v.length>0?"text-danger":""},i||r.title,(i||r.title)&&o?"*":null),q.createElement(Qt.Select,{id:n,value:typeof l=="undefined"?S:l,required:o,multiple:d,disabled:s,autoFocus:u,className:v.length>0?"is-invalid":"",onBlur:h&&function(_){var A=w(_,d);h(n,NA(r,A))},onFocus:m&&function(_){var A=w(_,d);m(n,NA(r,A))},onChange:function(A){var I=w(A,d);c(NA(r,I))}},!d&&r.default===void 0&&q.createElement("option",{value:""},f),y.map(function(_,A){var I=_.value,k=_.label,C=Array.isArray(b)&&b.indexOf(I)!=-1;return q.createElement("option",{key:A,id:k,value:I,disabled:C},k)})))},lct=function(t){var r=t.id,n=t.placeholder,a=t.value,i=t.required,o=t.disabled,s=t.autofocus,l=t.label,d=t.readonly,u=t.onBlur,c=t.onFocus,h=t.onChange,m=t.options,f=t.schema,g=t.rawErrors,v=g===void 0?[]:g,y=t.uiSchema,b=function(A){var I=A.target.value;return h(I===""?m.emptyValue:I)},S=function(A){var I=A.target.value;return u(r,I)},w=function(A){var I=A.target.value;return c(r,I)};return q.createElement(q.Fragment,null,q.createElement("label",{htmlFor:r},y["ui:title"]||f.title||l,i&&q.createElement("span",{"aria-hidden":!0,className:v.length>0?"text-danger ml-1":"ml-1"},"\u2009","*")),q.createElement(Edt,null,q.createElement(QQ,{id:r,as:"textarea",placeholder:n,disabled:o,readOnly:d,value:a,required:i,autoFocus:s,rows:m.rows||5,onChange:b,onBlur:S,onFocus:w})))},uct=function(t){var r=t.id,n=t.placeholder,a=t.required,i=t.readonly,o=t.disabled,s=t.type,l=t.label,d=t.value,u=t.onChange,c=t.onBlur,h=t.onFocus,m=t.autofocus,f=t.options,g=t.schema,v=t.rawErrors,y=v===void 0?[]:v,b=t.uiSchema,S=function(k){var C=k.target.value;return u(C===""?f.emptyValue:C)},w=function(k){var C=k.target.value;return c(r,C)},_=function(k){var C=k.target.value;return h(r,C)},A=(s||g.type)==="string"?"text":""+(s||g.type);return q.createElement(Qt.Group,{className:"mb-0"},q.createElement(Qt.Label,{className:y.length>0?"text-danger":""},b["ui:title"]||g.title||l,(l||b["ui:title"]||g.title)&&a?"*":null),q.createElement(Qt.Control,{id:r,placeholder:n,autoFocus:m,required:a,disabled:o,readOnly:i,className:y.length>0?"is-invalid":"",list:g.examples?"examples_"+r:void 0,type:A,value:d||d===0?d:"",onChange:S,onBlur:w,onFocus:_}),g.examples?q.createElement("datalist",{id:"examples_"+r},g.examples.concat(g.default?[g.default]:[]).map(function(I){return q.createElement("option",{key:I,value:I})})):null)},dct=function(t){var r=t.id,n=t.required,a=t.readonly,i=t.disabled,o=t.label,s=t.value,l=t.onChange,d=t.onBlur,u=t.onFocus,c=t.autofocus,h=t.schema,m=t.uiSchema,f=function(b){var S=b.target.value;return l(S)},g=function(b){var S=b.target.value;return d(r,S)},v=function(b){var S=b.target.value;return u(r,S)};return q.createElement(Qt.Group,{className:"mb-0"},q.createElement(Qt.Label,null,m["ui:title"]||h.title||o,(o||m["ui:title"]||h.title)&&n?"*":null),q.createElement(Qt.Control,{id:r,autoFocus:c,required:n,type:"number",disabled:i,readOnly:a,value:s||s===0?s:"",onChange:f,onBlur:g,onFocus:v}))},cct=function(t){var r=t.registry,n=r.widgets.TextWidget;return q.createElement(n,Object.assign({},t,{type:"url"}))},hct=function(t){var r=t.registry,n=r.widgets.TextWidget;return q.createElement(n,Object.assign({},t,{type:"file"}))},mct=bQ,fct=function(t){var r=mct(t.uiSchema),n=r.submitText,a=r.norender,i=r.props;return a?null:q.createElement("div",null,q.createElement(Op,Object.assign({variant:"primary",type:"submit"},i),n))},pct={CheckboxWidget:Gdt,CheckboxesWidget:Qdt,ColorWidget:Zdt,DateWidget:Ydt,DateTimeWidget:ect,EmailWidget:tct,PasswordWidget:rct,RadioWidget:nct,RangeWidget:ict,SelectWidget:sct,TextareaWidget:lct,TextWidget:uct,UpDownWidget:dct,URLWidget:cct,FileWidget:hct,SubmitButton:fct},gct=mn,iZ=gct(),vct=iZ.fields,yct=iZ.widgets,gO={ArrayFieldTemplate:Rdt,fields:_f({},vct,Bdt),FieldTemplate:jdt,ObjectFieldTemplate:Vdt,widgets:_f({},yct,pct),ErrorList:zdt};const _ct=e=>{const{description:t}=e,{t:r}=Ct("settingsSchemaDescriptions");return t?x("div",{children:x("div",{className:"mb-3",children:r(t)})}):x(St,{})},bct=({title:e})=>{const{t}=Ct("settingsSchemaTitles");return de("div",{className:"my-1",children:[x("h5",{children:t(e)}),x("hr",{className:"border-0 bg-secondary",style:{height:"1px"}})]})};var oZ={TitleField:bct,DescriptionField:_ct};const wct=Xw(gO),Sct={"ui:order":["friendly_name","retain","retention","qos","filtered_attributes","*"]};class Act extends le.exports.Component{constructor(){super(...arguments),this.state={newSetting:{key:"",value:"",type:""},updatedDeviceConfig:{}},this.onFormChange=t=>{const{formData:r}=t;this.setState({updatedDeviceConfig:r})},this.updateConfig=async t=>{const{formData:r}=t,{setDeviceOptions:n,device:a}=this.props;await n(a.ieee_address,r),this.setState({updatedDeviceConfig:{}})}}getGenericDeviceSettingsSchema(){var r,n;const{bridgeInfo:{config_schema:t={}}}=this.props;return(n=(r=t.definitions)==null?void 0:r.device)!=null?n:{properties:{}}}getDeviceConfig(){const{bridgeInfo:{config:t},device:r}=this.props,{updatedDeviceConfig:n}=this.state;return aq({},t==null?void 0:t.device_options,t==null?void 0:t.devices[r.ieee_address],n)}getSchemaAndConfig(){const t=this.getGenericDeviceSettingsSchema(),r=this.getDeviceConfig();return{schema:t,data:r,uiSchema:Sct}}render(){const{schema:t,data:r,uiSchema:n}=this.getSchemaAndConfig();return x(wct,{schema:t,formData:r,onSubmit:this.updateConfig,onChange:this.onFormChange,uiSchema:n,fields:oZ})}}function Tct(e,t,r){var n=-1,a=e.length;t<0&&(t=-t>a?0:a+t),r=r>a?a:r,r<0&&(r+=a),a=t>r?0:r-t>>>0,t>>>=0;for(var i=Array(a);++n<a;)i[n]=e[n+t];return i}var kct=Tct,Cct=kct;function Ect(e,t,r){var n=e.length;return r=r===void 0?n:r,!t&&r>=n?e:Cct(e,t,r)}var Ict=Ect,Dct="\\ud800-\\udfff",xct="\\u0300-\\u036f",Oct="\\ufe20-\\ufe2f",Mct="\\u20d0-\\u20ff",Rct=xct+Oct+Mct,Lct="\\ufe0e\\ufe0f",Pct="\\u200d",$ct=RegExp("["+Pct+Dct+Rct+Lct+"]");function zct(e){return $ct.test(e)}var sZ=zct;function Nct(e){return e.split("")}var Fct=Nct,lZ="\\ud800-\\udfff",Bct="\\u0300-\\u036f",Wct="\\ufe20-\\ufe2f",Hct="\\u20d0-\\u20ff",jct=Bct+Wct+Hct,Uct="\\ufe0e\\ufe0f",Vct="["+lZ+"]",IE="["+jct+"]",DE="\\ud83c[\\udffb-\\udfff]",Gct="(?:"+IE+"|"+DE+")",uZ="[^"+lZ+"]",dZ="(?:\\ud83c[\\udde6-\\uddff]){2}",cZ="[\\ud800-\\udbff][\\udc00-\\udfff]",qct="\\u200d",hZ=Gct+"?",mZ="["+Uct+"]?",Kct="(?:"+qct+"(?:"+[uZ,dZ,cZ].join("|")+")"+mZ+hZ+")*",Qct=mZ+hZ+Kct,Zct="(?:"+[uZ+IE+"?",IE,dZ,cZ,Vct].join("|")+")",Yct=RegExp(DE+"(?="+DE+")|"+Zct+Qct,"g");function Xct(e){return e.match(Yct)||[]}var Jct=Xct,eht=Fct,tht=sZ,rht=Jct;function nht(e){return tht(e)?rht(e):eht(e)}var aht=nht,iht=Ict,oht=sZ,sht=aht,lht=wu;function uht(e){return function(t){t=lht(t);var r=oht(t)?sht(t):void 0,n=r?r[0]:t.charAt(0),a=r?iht(r,1).join(""):t.slice(1);return n[e]()+a}}var dht=uht,cht=dht,hht=cht("toUpperCase"),fZ=hht,mht=wu,fht=fZ;function pht(e){return fht(mht(e).toLowerCase())}var ght=pht;function vht(e,t,r,n){var a=-1,i=e==null?0:e.length;for(n&&i&&(r=e[++a]);++a<i;)r=t(r,e[a],a,e);return r}var yht=vht;function _ht(e){return function(t){return e==null?void 0:e[t]}}var bht=_ht,wht=bht,Sht={\u00C0:"A",\u00C1:"A",\u00C2:"A",\u00C3:"A",\u00C4:"A",\u00C5:"A",\u00E0:"a",\u00E1:"a",\u00E2:"a",\u00E3:"a",\u00E4:"a",\u00E5:"a",\u00C7:"C",\u00E7:"c",\u00D0:"D",\u00F0:"d",\u00C8:"E",\u00C9:"E",\u00CA:"E",\u00CB:"E",\u00E8:"e",\u00E9:"e",\u00EA:"e",\u00EB:"e",\u00CC:"I",\u00CD:"I",\u00CE:"I",\u00CF:"I",\u00EC:"i",\u00ED:"i",\u00EE:"i",\u00EF:"i",\u00D1:"N",\u00F1:"n",\u00D2:"O",\u00D3:"O",\u00D4:"O",\u00D5:"O",\u00D6:"O",\u00D8:"O",\u00F2:"o",\u00F3:"o",\u00F4:"o",\u00F5:"o",\u00F6:"o",\u00F8:"o",\u00D9:"U",\u00DA:"U",\u00DB:"U",\u00DC:"U",\u00F9:"u",\u00FA:"u",\u00FB:"u",\u00FC:"u",\u00DD:"Y",\u00FD:"y",\u00FF:"y",\u00C6:"Ae",\u00E6:"ae",\u00DE:"Th",\u00FE:"th",\u00DF:"ss",\u0100:"A",\u0102:"A",\u0104:"A",\u0101:"a",\u0103:"a",\u0105:"a",\u0106:"C",\u0108:"C",\u010A:"C",\u010C:"C",\u0107:"c",\u0109:"c",\u010B:"c",\u010D:"c",\u010E:"D",\u0110:"D",\u010F:"d",\u0111:"d",\u0112:"E",\u0114:"E",\u0116:"E",\u0118:"E",\u011A:"E",\u0113:"e",\u0115:"e",\u0117:"e",\u0119:"e",\u011B:"e",\u011C:"G",\u011E:"G",\u0120:"G",\u0122:"G",\u011D:"g",\u011F:"g",\u0121:"g",\u0123:"g",\u0124:"H",\u0126:"H",\u0125:"h",\u0127:"h",\u0128:"I",\u012A:"I",\u012C:"I",\u012E:"I",\u0130:"I",\u0129:"i",\u012B:"i",\u012D:"i",\u012F:"i",\u0131:"i",\u0134:"J",\u0135:"j",\u0136:"K",\u0137:"k",\u0138:"k",\u0139:"L",\u013B:"L",\u013D:"L",\u013F:"L",\u0141:"L",\u013A:"l",\u013C:"l",\u013E:"l",\u0140:"l",\u0142:"l",\u0143:"N",\u0145:"N",\u0147:"N",\u014A:"N",\u0144:"n",\u0146:"n",\u0148:"n",\u014B:"n",\u014C:"O",\u014E:"O",\u0150:"O",\u014D:"o",\u014F:"o",\u0151:"o",\u0154:"R",\u0156:"R",\u0158:"R",\u0155:"r",\u0157:"r",\u0159:"r",\u015A:"S",\u015C:"S",\u015E:"S",\u0160:"S",\u015B:"s",\u015D:"s",\u015F:"s",\u0161:"s",\u0162:"T",\u0164:"T",\u0166:"T",\u0163:"t",\u0165:"t",\u0167:"t",\u0168:"U",\u016A:"U",\u016C:"U",\u016E:"U",\u0170:"U",\u0172:"U",\u0169:"u",\u016B:"u",\u016D:"u",\u016F:"u",\u0171:"u",\u0173:"u",\u0174:"W",\u0175:"w",\u0176:"Y",\u0177:"y",\u0178:"Y",\u0179:"Z",\u017B:"Z",\u017D:"Z",\u017A:"z",\u017C:"z",\u017E:"z",\u0132:"IJ",\u0133:"ij",\u0152:"Oe",\u0153:"oe",\u0149:"'n",\u017F:"s"},Aht=wht(Sht),Tht=Aht,kht=Tht,Cht=wu,Eht=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,Iht="\\u0300-\\u036f",Dht="\\ufe20-\\ufe2f",xht="\\u20d0-\\u20ff",Oht=Iht+Dht+xht,Mht="["+Oht+"]",Rht=RegExp(Mht,"g");function Lht(e){return e=Cht(e),e&&e.replace(Eht,kht).replace(Rht,"")}var Pht=Lht,$ht=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g;function zht(e){return e.match($ht)||[]}var Nht=zht,Fht=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/;function Bht(e){return Fht.test(e)}var Wht=Bht,pZ="\\ud800-\\udfff",Hht="\\u0300-\\u036f",jht="\\ufe20-\\ufe2f",Uht="\\u20d0-\\u20ff",Vht=Hht+jht+Uht,gZ="\\u2700-\\u27bf",vZ="a-z\\xdf-\\xf6\\xf8-\\xff",Ght="\\xac\\xb1\\xd7\\xf7",qht="\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf",Kht="\\u2000-\\u206f",Qht=" \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",yZ="A-Z\\xc0-\\xd6\\xd8-\\xde",Zht="\\ufe0e\\ufe0f",_Z=Ght+qht+Kht+Qht,bZ="['\u2019]",AB="["+_Z+"]",Yht="["+Vht+"]",wZ="\\d+",Xht="["+gZ+"]",SZ="["+vZ+"]",AZ="[^"+pZ+_Z+wZ+gZ+vZ+yZ+"]",Jht="\\ud83c[\\udffb-\\udfff]",emt="(?:"+Yht+"|"+Jht+")",tmt="[^"+pZ+"]",TZ="(?:\\ud83c[\\udde6-\\uddff]){2}",kZ="[\\ud800-\\udbff][\\udc00-\\udfff]",md="["+yZ+"]",rmt="\\u200d",TB="(?:"+SZ+"|"+AZ+")",nmt="(?:"+md+"|"+AZ+")",kB="(?:"+bZ+"(?:d|ll|m|re|s|t|ve))?",CB="(?:"+bZ+"(?:D|LL|M|RE|S|T|VE))?",CZ=emt+"?",EZ="["+Zht+"]?",amt="(?:"+rmt+"(?:"+[tmt,TZ,kZ].join("|")+")"+EZ+CZ+")*",imt="\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])",omt="\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])",smt=EZ+CZ+amt,lmt="(?:"+[Xht,TZ,kZ].join("|")+")"+smt,umt=RegExp([md+"?"+SZ+"+"+kB+"(?="+[AB,md,"$"].join("|")+")",nmt+"+"+CB+"(?="+[AB,md+TB,"$"].join("|")+")",md+"?"+TB+"+"+kB,md+"+"+CB,omt,imt,wZ,lmt].join("|"),"g");function dmt(e){return e.match(umt)||[]}var cmt=dmt,hmt=Nht,mmt=Wht,fmt=wu,pmt=cmt;function gmt(e,t,r){return e=fmt(e),t=r?void 0:t,t===void 0?mmt(e)?pmt(e):hmt(e):e.match(t)||[]}var vmt=gmt,ymt=yht,_mt=Pht,bmt=vmt,wmt="['\u2019]",Smt=RegExp(wmt,"g");function Amt(e){return function(t){return ymt(bmt(_mt(t).replace(Smt,"")),e,"")}}var IZ=Amt,Tmt=ght,kmt=IZ,Cmt=kmt(function(e,t,r){return t=t.toLowerCase(),e+(r?Tmt(t):t)}),Emt=Cmt,Imt=IZ,Dmt=fZ,xmt=Imt(function(e,t,r){return e+(r?" ":"")+Dmt(t)}),Omt=xmt;const Mmt=e=>{let t="fa-thermometer-empty";return e>=30?t="fa-thermometer-full":e>=25?t="fa-thermometer-three-quarters":e>=20?t="fa-thermometer-half":e>=15&&(t="fa-thermometer-quarter"),t},Rmt={humidity:["text-info","fa-tint"],illuminance:["fa-sun"],pressure:["fa-cloud-download-alt"],co2:["fa-atom","text-warning"],voltage:["fa-bolt","text-success"],state:["fa-star-half-alt"],brightness:["fa-sun"],occupancy:["fa-walking"],current:["fa-copyright","text-warning"],power:["fa-power-off","text-success"],energy:["fa-plug","text-info"],frequency:["fa-wave-square"],tamper:["fa-exclamation-circle","text-danger"],smoke:["fa-smoking","text-danger"],radiation_dose_per_hour:["fa-radiation","text-danger"],radioactive_events_per_minute:["fa-radiation-alt","text-warning"],power_factor:["fa-industry","text-danger"],mode:["fa-user-cog","text-warning"],sound:["fa-volume-up","text-info"],position:["fa-percent","text-info"],alarm:["fa-exclamation-triangle","text-danger"],color_xy:["fa-palette"],color_hs:["fa-palette"],color_temp:["fa-sliders-h"],illuminance_lux:["fa-sun"],soil_moisture:["fa-fill-drip"],water_leak:["fa-water"],week:["fa-calendar-week"],workdays_schedule:["fa-calendar-day","text-info"],holidays_schedule:["fa-calendar-day","text-danger"],away_mode:["fa-plane","text-info"],vibration:["fa-water fa-rotate-270"],power_outage_count:["fa-plug-circle-xmark"]},Lmt=(e,t)=>{var n;let r=[];switch(e){case"device_temperature":case"temperature":case"local_temperature":r.push(et("text-danger",Mmt(t)));break;case"contact":r.push(et({"fa-door-closed text-muted":t,"fa-door-open text-primary":!t}));break;case"occupancy":r.push(et({"text-warning":t}));break;case"tamper":r.push(et({"fa-beat-fade":t}));break;case"water_leak":r.push(et({"fa-beat-fade text-primary":t}));break;case"vibration":r.push(et({"fa-shake fa-rotate-270 text-primary":t}));break}return r=[...r,...(n=Rmt[e])!=null?n:[]],r.length||r.push("invisible"),et(r)},vO=e=>{const{children:t,feature:r,deviceState:n={}}=e,a=Lmt(r.name,n[r.property]),{t:i}=Ct(["featureNames"]);return de("div",{className:"d-flex align-items-center",children:[a&&x("div",{className:"me-1",children:x("i",{className:`fa fa-fw ${a}`})}),de("div",{className:"flex-shrink-1 flex-grow-1",children:[i(r.name==="state"?r.property:r.name,{defaultValue:Omt(Emt(r.name==="state"?r.property:r.name))}),r.endpoint?` (${r.endpoint})`:null]}),x("div",{className:"flex-shrink-1",children:t})]})};function DZ(e){var m,f;const{target:t,deviceState:r,sceneStore:n,setDeviceState:a}=e,i=OZ(t),{t:o}=Ct("scene"),[s,l]=le.exports.useState(0),[d,u]=le.exports.useState(""),c=`Scene ${s}`;let h=[];return t.definition&&(h=((f=(m=t.definition)==null?void 0:m.exposes)!=null?f:[]).map(g=>yO(g,r)).filter(g=>g)),de(St,{children:[de("div",{className:"mb-3",children:[x("label",{htmlFor:"add-scene",className:"form-label",children:o("scene_id")}),x("input",{id:"add-scene",className:"form-control",min:0,max:255,value:s,type:"number",onChange:g=>l(g.target.valueAsNumber)}),x("label",{htmlFor:"add-scene-name",className:"form-label",children:o("scene_name")}),x("input",{id:"add-scene-name",className:"form-control",value:d,type:"string",onChange:g=>u(g.target.value),placeholder:c}),x(yi,{feature:{features:h},className:"row",type:"composite",device:t,deviceState:r,onChange:(g,v)=>{a(t.friendly_name,v)},onRead:()=>{},featureWrapperClass:vO,minimal:!0})]}),x("div",{className:"d-flex",children:x("button",{disabled:!$mt(s,i),type:"submit",onClick:()=>n(t.friendly_name,{id:s,name:d||c}),className:"btn btn-primary ms-auto",children:o("store")})})]})}function Pmt(e){const{t}=Ct("scene"),{onSceneSelected:r,scenes:n=[],value:a}=e,i=l=>{const[d,u]=l.target.value.split("-");r({id:parseInt(d,10),endpoint:u})},o=de(St,{children:[x("label",{htmlFor:"rr-scene",className:"form-label",children:t("scene_name")}),de("select",{onChange:i,id:"rr-scene",className:"form-select",children:[x("option",{hidden:!0,children:t("select_scene")},"hidden"),n.map(l=>x("option",{value:`${l.id}-${l.endpoint}`,children:l.name},`${l.id}-${l.endpoint}`))]})]}),s=de(St,{children:[x("label",{htmlFor:"rr-scene",className:"form-label",children:t("scene_id")}),x("input",{min:0,value:a.id,type:"number",className:"form-control",id:"rr-scene",onChange:l=>r({id:l.target.valueAsNumber,endpoint:void 0})})]});return x(St,{children:n.length>0?o:s})}function xZ(e){const{sceneRecall:t,sceneRemove:r,sceneRemoveAll:n,target:a}=e,{t:i}=Ct("scene"),[o,s]=le.exports.useState({id:0,endpoint:void 0}),l=o.id===void 0,d=OZ(a),{friendly_name:u}=a;return de(St,{children:[x("div",{className:"mb-3",children:x(Pmt,{onSceneSelected:s,value:o,scenes:d})}),de("div",{className:"d-flex",children:[de("div",{className:"btn-group ms-auto pe-1",children:[x("button",{disabled:l,onClick:()=>t(u,o.id,o.endpoint),type:"submit",className:"btn btn-success",children:i("recall")}),x(yt,{disabled:l,prompt:!0,onClick:()=>r(u,o.id,o.endpoint),type:"submit",className:"btn btn-danger",children:i("remove")})]}),x(yt,{prompt:!0,onClick:()=>n(u,""),type:"submit",className:"btn btn-danger",children:i("remove_all")})]})]})}const $mt=(e,t=[])=>e>=0&&e<=255&&!t.find(r=>r.id==e);function OZ(e){if(e.endpoints){const t=[];return Object.entries(e.endpoints).forEach(([r,n])=>{var a;(a=n.scenes)==null||a.forEach(i=>t.push(He(Se({},i),{endpoint:r})))}),t}else if(e.scenes)return e.scenes;return[]}const zmt=["state","color_temp","color","transition","brightness"];function yO(e,t={}){let{property:r,name:n,features:a}=e;if(O2(e)&&(a=a.map(i=>yO(i,r?t[r]:t)).filter(i=>i),a=Object.values(M2(a,"property")).map(i=>i[0])),zmt.includes(n)||Array.isArray(a)&&a.length>0)return He(Se({},e),{features:a})}function Nmt(e){const{sceneStore:t,sceneRecall:r,sceneRemove:n,sceneRemoveAll:a,setDeviceState:i,device:o,deviceState:s}=e;return de("div",{className:"row",children:[x("div",{className:"col-12 col-sm-6 col-xxl-6 d-flex",children:x("div",{className:"card flex-fill",children:x("div",{className:"card-body py-4",children:x(DZ,{sceneStore:t,target:o,deviceState:s,setDeviceState:i})})})}),x("div",{className:"col-12 col-sm-6 col-xxl-6 d-flex",children:x("div",{className:"card flex-fill",children:x("div",{className:"card-body py-4",children:x(xZ,{sceneStore:t,sceneRecall:r,sceneRemove:n,sceneRemoveAll:a,target:o,deviceState:s})})})})]})}const Fmt=[],Bmt=$r(Fmt,Br)(Nmt);var Wmt=wu,MZ=/[\\^$.*+?()[\]{}|]/g,Hmt=RegExp(MZ.source);function jmt(e){return e=Wmt(e),e&&Hmt.test(e)?e.replace(MZ,"\\$&"):e}var Umt=jmt,Vmt=fq;function Gmt(e,t,r){return e==null?e:Vmt(e,t,r)}var qmt=Gmt,Kmt={"hide-description":"_hide-description_19xm6_1"};const Qmt=Xw(gO);function Zmt(e){const{schema:t={},schemaKey:r="",config:n={},configKey:a="",onChange:i}=e,o=cc(n,a,{}),s=cc(t,r,{}),l=d=>{const u={};qmt(u,a,d.formData),i(u)};return x(Qmt,{schema:s,className:Kmt["hide-description"],formData:o,onChange:l,children:x("div",{})})}const bf="all",EB=({text:e})=>x(St,{children:e}),Ymt=({text:e="",highlight:t=""})=>{if(!t.trim())return x(EB,{text:e});const r=new RegExp(`(${Umt(t)})`,"gi"),n=e.split(r);return x(St,{children:n.filter(a=>a).map((a,i)=>r.test(a)?x("mark",{children:a},i):x(EB,{text:a},i))})};function RZ(e){const{logLevel:t,log:r,search:n}=e,a=t===bf&&de(St,{children:[x("span",{style:{width:"60px"},className:et("badge",{"bg-danger":r.level==="error","bg-warning":r.level==="warning","bg-info":r.level==="info","bg-secondary":!["error","warning","info"].includes(r.level)},"text-capitalize"),children:r.level}),"\xA0"]});return de("div",{children:[a,x("small",{className:"pe-1",children:b9(r.timestamp)}),x("code",{children:x(Ymt,{text:r.message,highlight:n})})]})}const Xmt=[bf,"debug","info","warning","error"];class Jmt extends le.exports.Component{constructor(){super(...arguments),this.state={search:"",logLevel:bf}}renderSearch(){const{clearLogs:t,bridgeInfo:{config_schema:r,config:n},updateBridgeConfig:a,t:i}=this.props,{search:o}=this.state;return x("div",{className:"card",children:x("div",{className:"card-body",children:de("div",{className:"row row-cols-lg-auto g-3 align-items-center",children:[de("div",{className:"col-12 col-sm-4 col-xxl-4",children:[x("label",{htmlFor:"log-level",className:"form-label",children:i("show_only")}),x("select",{id:"log-level",className:"form-select",onChange:s=>this.setState({logLevel:s.target.value}),children:Xmt.map(s=>x("option",{value:s,children:s},s))})]}),de("div",{className:"col-12 col-sm-4 col-xxl-4",children:[x("label",{htmlFor:"search-filter",className:"form-label",children:i("filter_by_text")}),x("input",{id:"search-filter",className:"form-control col-10",placeholder:i("common:enter_search_criteria"),value:o,onChange:s=>this.setState({search:s.target.value}),type:"text"})]}),x("div",{className:"col-12 col-sm-4 col-xxl-4",children:x(Zmt,{schema:r,schemaKey:"properties.advanced.properties.log_level",config:n,configKey:"advanced.log_level",onChange:a})}),de("div",{className:"col-12",children:[x("label",{htmlFor:"reset",children:"\xA0"}),x("input",{id:"reset",type:"button",onClick:t,className:"btn btn-primary form-control",value:i("common:clear")})]})]})})})}render(){let{logs:t}=this.props;const{t:r}=this.props,{search:n,logLevel:a}=this.state;return t=t.filter(i=>(a===bf||i.level===a)&&(!n||i.message.toLowerCase().includes(n.toLowerCase()))).sort(),de(St,{children:[this.renderSearch(),x("div",{className:"card",children:de("div",{className:"card-body",children:[t.length==0?x("h1",{children:r("empty_logs_message")}):null,x("div",{className:"overflow-auto",children:t.map((i,o)=>x(RZ,{log:i,search:n,logLevel:a},o))})]})})]})}}const eft=["logs","bridgeInfo"];var tft=Mn(["logs","common"])($r(eft,Br)(Jmt));function LZ(e){const{logs:t,filterFn:r}=e,n=t.filter(r),a=n.length>0?n[n.length-1]:null,i=[];return a&&i.push(x(RZ,{log:a,search:"",logLevel:bf},"log")),x(St,{children:i})}const rft=e=>{const{executeCommand:t,device:r,logs:n}=e,{t:a}=Ct("zigbee"),[i,o]=le.exports.useState(1),[s,l]=le.exports.useState(""),[d,u]=le.exports.useState(""),[c,h]=le.exports.useState(JSON.stringify({},null,2)),m=()=>{let v=!0;try{JSON.parse(c)}catch{v=!1}return v&&!isNaN(parseInt(s))&&!isNaN(parseInt(d))},f=()=>{t(r.friendly_name,i,parseInt(s),parseInt(d),JSON.parse(c))},g=v=>v.message.startsWith("Invoked ");return de("div",{children:[de("div",{className:"row mb-3",children:[x("div",{className:"col-4 col-sm-3",children:de("div",{className:"form-group",children:[x("label",{className:"form-label",children:a("endpoint")}),x("input",{type:"number",min:"1",max:"255",value:i,onChange:v=>o(v.target.valueAsNumber),className:"form-control"})]})}),x("div",{className:"col-4 col-sm-3",children:de("div",{className:"col-auto",children:[x("label",{className:"form-label",children:a("cluster")}),x("input",{type:"text",value:s,placeholder:"example: 0x0001, 1, 123",onChange:v=>l(v.target.value),className:"form-control"})]})}),x("div",{className:"col-4 col-sm-3",children:de("div",{className:"col-auto",children:[x("label",{className:"form-label",children:a("command")}),x("input",{type:"text",value:d,placeholder:"example: 0x0001, 1, 123",onChange:v=>u(v.target.value),className:"form-control"})]})})]}),x("div",{className:"row mb-3 ",children:x("div",{className:"col-9 col-sm-9",children:de("div",{className:"col-auto",children:[x("label",{className:"form-label",children:a("payload")}),x("textarea",{rows:3,value:c,onChange:v=>h(v.target.value),className:"form-control"})]})})}),x("div",{className:"row",children:x("div",{className:"btn-group col col-3",children:x("button",{onClick:f,disabled:!m(),type:"button",className:"btn btn-success",children:a("execute")})})}),x("div",{className:"row",children:x(LZ,{logs:n,filterFn:g})})]})};function nft(e){var l;const{value:t,onChange:r,attribute:n,definition:a}=e,o=(l={[NF.charStr]:"string",[NF.longCharStr]:"string"}[a.type])!=null?l:"number";return x("input",{className:"form-control",type:o,value:t,onChange:d=>{const u=o==="number"?d.target.valueAsNumber:d.target.value;r(n,u)}})}const aft=["Read result of","Publish 'set' 'read' to","Publish 'set' 'write' to","Wrote "];class ift extends le.exports.Component{constructor(t){super(t),this.canRead=()=>{const{cluster:a,attributes:i,endpoint:o}=this.state;return!!o&&i.length>0&&!!a},this.onEndpointChange=a=>{this.setState({attributes:[],cluster:"",endpoint:a})},this.onClusterChange=a=>{this.setState({attributes:[],cluster:a})},this.onAttributeSelect=(a,i)=>{const{attributes:o}=this.state;if(!o.find(s=>s.attribute===a)){const s=o.concat([{attribute:a,definition:i}]);this.setState({attributes:s})}},this.onAttributeDelete=a=>{const{attributes:i}=this.state,o=i.filter(s=>s.attribute!==a);this.setState({attributes:o})},this.onReadClick=()=>{const{readDeviceAttributes:a,device:i}=this.props,{cluster:o,attributes:s,endpoint:l}=this.state;a(i.friendly_name,l,o,s.map(d=>d.attribute),{})},this.onWriteClick=()=>{const{writeDeviceAttributes:a,device:i}=this.props,{cluster:o,attributes:s,endpoint:l}=this.state;a(i.friendly_name,l,o,s,{})},this.onAttributeValueChange=(a,i)=>{const{attributes:o}=this.state,s=[...o],l=s.find(d=>d.attribute===a);l&&(l.value=i),this.setState({attributes:s})},this.setMode=a=>{this.setState({mode:a})};const{device:r}=t,n=Object.keys(r.endpoints)[0];this.state={endpoint:n,cluster:"",attributes:[],mode:"read"}}renderSelectedAttribute(){const{attributes:t}=this.state;return t.map(({attribute:r,value:n="",definition:a})=>x("div",{className:"row mb-1",children:x("div",{className:"col-3",children:de("div",{className:"row",children:[x("div",{className:"col-6",children:r}),x("div",{className:"col-3",children:x(nft,{value:n,attribute:r,definition:a,onChange:this.onAttributeValueChange})}),x("div",{className:"col-2",children:x(yt,{className:"btn btn-danger btn-sm",item:r,onClick:this.onAttributeDelete,children:x("i",{className:"fas fa-trash"})})})]})})},r))}renderRead(){const{cluster:t,attributes:r,endpoint:n}=this.state,a=r.length===0,i=t==="",{t:o,device:s}=this.props,l=Fl(s);return de(St,{children:[de("div",{className:"mb-3 row",children:[x("div",{className:"col-6 col-sm-3",children:x(hf,{label:o("zigbee:endpoint"),values:l,value:n,onChange:this.onEndpointChange})}),x("div",{className:"col-6 col-sm-3",children:x(b2,{label:o("cluster"),pickerType:$w.SINGLE,clusters:Object.keys(x_),value:t,onChange:this.onClusterChange})}),x("div",{className:"col-6 col-sm-3",children:x(oq,{label:o("attribute"),value:"",cluster:t,onChange:this.onAttributeSelect})})]}),x("div",{className:"mb-3 row",children:this.renderSelectedAttribute()}),x("div",{className:"mb-3 row",children:de("div",{className:"btn-group col col-3",role:"group",children:[x(yt,{disabled:a||i,className:"btn btn-success me-2",onClick:this.onReadClick,children:o("read")}),x(yt,{disabled:a||i,className:"btn btn-danger",onClick:this.onWriteClick,children:o("write")})]})})]})}render(){const{executeCommand:t,logs:r,device:n}=this.props,a=i=>aft.some(o=>i.message.startsWith(o));return de("div",{children:[x("div",{className:"card",children:de("div",{className:"card-body",children:[this.renderRead(),x(LZ,{logs:r,filterFn:a})]})}),x("div",{className:"card",children:x("div",{className:"card-body",children:x(rft,{device:n,logs:r,executeCommand:t})})})]})}}var oft=Mn("common")(ift);function sft(e){var o,s,l;const{device:t,bridgeInfo:{config:r},setDeviceOptions:n}=e,{t:a}=Ct(["exposes"]),i=(o=r.devices[t.ieee_address])!=null?o:{};return(l=(s=t.definition)==null?void 0:s.options)!=null&&l.length?x(yi,{showEndpointLabels:!0,feature:{features:t.definition.options},type:"composite",device:t,deviceState:i,onChange:async(d,u)=>{await n(t.ieee_address,u)},onRead:(d,u)=>{},featureWrapperClass:mq}):a("empty_exposes_definition")}const lft=["bridgeInfo"],uft=$r(lft,Br)(sft),dft=e=>[{translationKey:"about",url:`/device/${e}/info`},{translationKey:"exposes",url:`/device/${e}/exposes`},{translationKey:"bind",url:`/device/${e}/bind`},{translationKey:"reporting",url:`/device/${e}/reporting`},{translationKey:"settings",url:`/device/${e}/settings`},{translationKey:"settings_specific",url:`/device/${e}/settings-specific`},{translationKey:"state",url:`/device/${e}/state`},{translationKey:"clusters",url:`/device/${e}/clusters`},{translationKey:"scene",url:`/device/${e}/scene`},{translationKey:"dev_console",url:`/device/${e}/dev-console`}];function cft(e){var f;const{match:t,devices:r,logs:n}=e,{readDeviceAttributes:a,writeDeviceAttributes:i,setDeviceOptions:o,executeCommand:s,bridgeInfo:l,deviceStates:d}=e,{tab:u,dev:c}=t.params,h=r[c],m=(f=d[h.friendly_name])!=null?f:{};switch(u){case"info":return x(L9e,{device:h});case"bind":return x(U9e,{device:h});case"state":return x(Mqe,{device:h});case"exposes":return x(EKe,{device:h});case"clusters":return x(xKe,{device:h});case"reporting":return x(Dqe,{device:h});case"settings":return x(Act,{device:h,setDeviceOptions:o,bridgeInfo:l});case"settings-specific":return x(uft,{device:h,setDeviceOptions:o,bridgeInfo:l});case"dev-console":return x(oft,{device:h,logs:n,readDeviceAttributes:a,writeDeviceAttributes:i,executeCommand:s});case"scene":return x(Bmt,{device:h,deviceState:m});default:return x(jG,{to:`/device/${c}/info`})}}function hft(e){const{devices:t,match:r,t:n}=e,{dev:a}=r.params,i=t[a];if(!i)return x("div",{className:"h-100 d-flex justify-content-center align-items-center",children:n("unknown_device")});const o=dft(a);return de(St,{children:[x("h1",{className:"h3",children:i.friendly_name}),de("div",{className:"tab",children:[x("ul",{className:"nav nav-tabs",children:o.map(s=>x("li",{className:"nav-item",children:x(p2,{activeClassName:"active",className:`nav-link ${GG["small-nav"]}`,to:s.url,children:n(s.translationKey)})},s.translationKey))}),x("div",{className:"tab-content",children:x("div",{className:"tab-pane fade show active",children:x(cft,Se({},e))})})]})]})}const mft=m2(hft),fft=["devices","deviceStates","logs","bridgeInfo"],pft=Mn("devicePage")($r(fft,Br)(mft));var xm={exports:{}},xE={exports:{}};(function(e,t){(function(r,n){n(t,le.exports)})(kt,function(r,n){function a(R,W,U,G,te,Y,ne){try{var be=R[Y](ne),Ae=be.value}catch(Te){return void U(Te)}be.done?W(Ae):Promise.resolve(Ae).then(G,te)}function i(R){return function(){var W=this,U=arguments;return new Promise(function(G,te){var Y=R.apply(W,U);function ne(Ae){a(Y,G,te,ne,be,"next",Ae)}function be(Ae){a(Y,G,te,ne,be,"throw",Ae)}ne(void 0)})}}function o(){return(o=Object.assign||function(R){for(var W=1;W<arguments.length;W++){var U=arguments[W];for(var G in U)Object.prototype.hasOwnProperty.call(U,G)&&(R[G]=U[G])}return R}).apply(this,arguments)}function s(R,W){if(R==null)return{};var U,G,te={},Y=Object.keys(R);for(G=0;G<Y.length;G++)U=Y[G],W.indexOf(U)>=0||(te[U]=R[U]);return te}function l(R){var W=function(U,G){if(typeof U!="object"||U===null)return U;var te=U[Symbol.toPrimitive];if(te!==void 0){var Y=te.call(U,G||"default");if(typeof Y!="object")return Y;throw new TypeError("@@toPrimitive must return a primitive value.")}return(G==="string"?String:Number)(U)}(R,"string");return typeof W=="symbol"?W:String(W)}n=n&&Object.prototype.hasOwnProperty.call(n,"default")?n.default:n;var d={init:"init"},u=function(R){var W=R.value;return W===void 0?"":W},c=function(){return n.createElement(n.Fragment,null,"\xA0")},h={Cell:u,width:150,minWidth:0,maxWidth:Number.MAX_SAFE_INTEGER};function m(){for(var R=arguments.length,W=new Array(R),U=0;U<R;U++)W[U]=arguments[U];return W.reduce(function(G,te){var Y=te.style,ne=te.className;return G=o({},G,{},s(te,["style","className"])),Y&&(G.style=G.style?o({},G.style||{},{},Y||{}):Y),ne&&(G.className=G.className?G.className+" "+ne:ne),G.className===""&&delete G.className,G},{})}var f=function(R,W){return W===void 0&&(W={}),function(U){return U===void 0&&(U={}),[].concat(R,[U]).reduce(function(G,te){return function Y(ne,be,Ae){return typeof be=="function"?Y({},be(ne,Ae)):Array.isArray(be)?m.apply(void 0,[ne].concat(be)):m(ne,be)}(G,te,o({},W,{userProps:U}))},{})}},g=function(R,W,U,G){return U===void 0&&(U={}),R.reduce(function(te,Y){return Y(te,U)},W)},v=function(R,W,U){return U===void 0&&(U={}),R.forEach(function(G){G(W,U)})};function y(R,W,U,G){R.findIndex(function(te){return te.pluginName===U}),W.forEach(function(te){R.findIndex(function(Y){return Y.pluginName===te})})}function b(R,W){return typeof R=="function"?R(W):R}function S(R){var W=n.useRef();return W.current=R,n.useCallback(function(){return W.current},[])}var w=typeof document!="undefined"?n.useLayoutEffect:n.useEffect;function _(R,W){var U=n.useRef(!1);w(function(){U.current&&R(),U.current=!0},W)}function A(R,W,U){return U===void 0&&(U={}),function(G,te){te===void 0&&(te={});var Y=typeof G=="string"?W[G]:G;if(Y===void 0)throw console.info(W),new Error("Renderer Error \u261D\uFE0F");return I(Y,o({},R,{column:W},U,{},te))}}function I(R,W){return function(G){return typeof G=="function"&&(te=Object.getPrototypeOf(G)).prototype&&te.prototype.isReactComponent;var te}(U=R)||typeof U=="function"||function(G){return typeof G=="object"&&typeof G.$$typeof=="symbol"&&["react.memo","react.forward_ref"].includes(G.$$typeof.description)}(U)?n.createElement(R,W):R;var U}function k(R,W,U){return U===void 0&&(U=0),R.map(function(G){return T(G=o({},G,{parent:W,depth:U})),G.columns&&(G.columns=k(G.columns,G,U+1)),G})}function C(R){return P(R,"columns")}function T(R){var W=R.id,U=R.accessor,G=R.Header;if(typeof U=="string"){W=W||U;var te=U.split(".");U=function(Y){return function(ne,be,Ae){if(!be)return ne;var Te,Re=typeof be=="function"?be:JSON.stringify(be),Le=M.get(Re)||function(){var Pe=function(Ie){return function ze(Ue,Ve){if(Ve===void 0&&(Ve=[]),Array.isArray(Ue))for(var Je=0;Je<Ue.length;Je+=1)ze(Ue[Je],Ve);else Ve.push(Ue);return Ve}(Ie).map(function(ze){return String(ze).replace(".","_")}).join(".").replace(F,".").replace(V,"").split(".")}(be);return M.set(Re,Pe),Pe}();try{Te=Le.reduce(function(Pe,Ie){return Pe[Ie]},ne)}catch{}return Te!==void 0?Te:Ae}(Y,te)}}if(!W&&typeof G=="string"&&G&&(W=G),!W&&R.columns)throw console.error(R),new Error('A column ID (or unique "Header" value) is required!');if(!W)throw console.error(R),new Error("A column ID (or string accessor) is required!");return Object.assign(R,{id:W,accessor:U}),R}function O(R,W){if(!W)throw new Error;return Object.assign(R,o({Header:c,Footer:c},h,{},W,{},R)),Object.assign(R,{originalWidth:R.width}),R}function D(R,W,U){U===void 0&&(U=function(){return{}});for(var G=[],te=R,Y=0,ne=function(){return Y++},be=function(){var Ae={headers:[]},Te=[],Re=te.some(function(Le){return Le.parent});te.forEach(function(Le){var Pe,Ie=[].concat(Te).reverse()[0];Re&&(Le.parent?Pe=o({},Le.parent,{originalId:Le.parent.id,id:Le.parent.id+"_"+ne(),headers:[Le]},U(Le)):Pe=O(o({originalId:Le.id+"_placeholder",id:Le.id+"_placeholder_"+ne(),placeholderOf:Le,headers:[Le]},U(Le)),W),Ie&&Ie.originalId===Pe.originalId?Ie.headers.push(Le):Te.push(Pe)),Ae.headers.push(Le)}),G.push(Ae),te=Te};te.length;)be();return G.reverse()}var M=new Map;function E(){for(var R=arguments.length,W=new Array(R),U=0;U<R;U++)W[U]=arguments[U];for(var G=0;G<W.length;G+=1)if(W[G]!==void 0)return W[G]}function L(R){if(typeof R=="function")return R}function P(R,W){var U=[];return function G(te){te.forEach(function(Y){Y[W]?G(Y[W]):U.push(Y)})}(R),U}function j(R,W){var U=W.manualExpandedKey,G=W.expanded,te=W.expandSubRows,Y=te===void 0||te,ne=[];return R.forEach(function(be){return function Ae(Te,Re){Re===void 0&&(Re=!0),Te.isExpanded=Te.original&&Te.original[U]||G[Te.id],Te.canExpand=Te.subRows&&!!Te.subRows.length,Re&&ne.push(Te),Te.subRows&&Te.subRows.length&&Te.isExpanded&&Te.subRows.forEach(function(Le){return Ae(Le,Y)})}(be)}),ne}function H(R,W,U){return L(R)||W[R]||U[R]||U.text}function $(R,W,U){return R?R(W,U):W===void 0}function B(){throw new Error("React-Table: You have not called prepareRow(row) one or more rows you are attempting to render.")}var z=null,F=/\[/g,V=/\]/g,K=function(R){return o({role:"table"},R)},Z=function(R){return o({role:"rowgroup"},R)},ue=function(R,W){var U=W.column;return o({key:"header_"+U.id,colSpan:U.totalVisibleHeaderCount,role:"columnheader"},R)},fe=function(R,W){var U=W.column;return o({key:"footer_"+U.id,colSpan:U.totalVisibleHeaderCount},R)},ye=function(R,W){return o({key:"headerGroup_"+W.index,role:"row"},R)},De=function(R,W){return o({key:"footerGroup_"+W.index},R)},xe=function(R,W){return o({key:"row_"+W.row.id,role:"row"},R)},$e=function(R,W){var U=W.cell;return o({key:"cell_"+U.row.id+"_"+U.column.id,role:"cell"},R)};function at(){return{useOptions:[],stateReducers:[],useControlledState:[],columns:[],columnsDeps:[],allColumns:[],allColumnsDeps:[],accessValue:[],materializedColumns:[],materializedColumnsDeps:[],useInstanceAfterData:[],visibleColumns:[],visibleColumnsDeps:[],headerGroups:[],headerGroupsDeps:[],useInstanceBeforeDimensions:[],useInstance:[],prepareRow:[],getTableProps:[K],getTableBodyProps:[Z],getHeaderGroupProps:[ye],getFooterGroupProps:[De],getHeaderProps:[ue],getFooterProps:[fe],getRowProps:[xe],getCellProps:[$e],useFinalInstance:[]}}d.resetHiddenColumns="resetHiddenColumns",d.toggleHideColumn="toggleHideColumn",d.setHiddenColumns="setHiddenColumns",d.toggleHideAllColumns="toggleHideAllColumns";var it=function(R){R.getToggleHiddenProps=[N],R.getToggleHideAllColumnsProps=[ge],R.stateReducers.push(me),R.useInstanceBeforeDimensions.push(ee),R.headerGroupsDeps.push(function(W,U){var G=U.instance;return[].concat(W,[G.state.hiddenColumns])}),R.useInstance.push(Q)};it.pluginName="useColumnVisibility";var N=function(R,W){var U=W.column;return[R,{onChange:function(G){U.toggleHidden(!G.target.checked)},style:{cursor:"pointer"},checked:U.isVisible,title:"Toggle Column Visible"}]},ge=function(R,W){var U=W.instance;return[R,{onChange:function(G){U.toggleHideAllColumns(!G.target.checked)},style:{cursor:"pointer"},checked:!U.allColumnsHidden&&!U.state.hiddenColumns.length,title:"Toggle All Columns Hidden",indeterminate:!U.allColumnsHidden&&U.state.hiddenColumns.length}]};function me(R,W,U,G){if(W.type===d.init)return o({hiddenColumns:[]},R);if(W.type===d.resetHiddenColumns)return o({},R,{hiddenColumns:G.initialState.hiddenColumns||[]});if(W.type===d.toggleHideColumn){var te=(W.value!==void 0?W.value:!R.hiddenColumns.includes(W.columnId))?[].concat(R.hiddenColumns,[W.columnId]):R.hiddenColumns.filter(function(Y){return Y!==W.columnId});return o({},R,{hiddenColumns:te})}return W.type===d.setHiddenColumns?o({},R,{hiddenColumns:b(W.value,R.hiddenColumns)}):W.type===d.toggleHideAllColumns?o({},R,{hiddenColumns:(W.value!==void 0?W.value:!R.hiddenColumns.length)?G.allColumns.map(function(Y){return Y.id}):[]}):void 0}function ee(R){var W=R.headers,U=R.state.hiddenColumns;n.useRef(!1).current;var G=0;W.forEach(function(te){return G+=function Y(ne,be){ne.isVisible=be&&!U.includes(ne.id);var Ae=0;return ne.headers&&ne.headers.length?ne.headers.forEach(function(Te){return Ae+=Y(Te,ne.isVisible)}):Ae=ne.isVisible?1:0,ne.totalVisibleHeaderCount=Ae,Ae}(te,!0)})}function Q(R){var W=R.columns,U=R.flatHeaders,G=R.dispatch,te=R.allColumns,Y=R.getHooks,ne=R.state.hiddenColumns,be=R.autoResetHiddenColumns,Ae=be===void 0||be,Te=S(R),Re=te.length===ne.length,Le=n.useCallback(function(Ve,Je){return G({type:d.toggleHideColumn,columnId:Ve,value:Je})},[G]),Pe=n.useCallback(function(Ve){return G({type:d.setHiddenColumns,value:Ve})},[G]),Ie=n.useCallback(function(Ve){return G({type:d.toggleHideAllColumns,value:Ve})},[G]),ze=f(Y().getToggleHideAllColumnsProps,{instance:Te()});U.forEach(function(Ve){Ve.toggleHidden=function(Je){G({type:d.toggleHideColumn,columnId:Ve.id,value:Je})},Ve.getToggleHiddenProps=f(Y().getToggleHiddenProps,{instance:Te(),column:Ve})});var Ue=S(Ae);_(function(){Ue()&&G({type:d.resetHiddenColumns})},[G,W]),Object.assign(R,{allColumnsHidden:Re,toggleHideColumn:Le,setHiddenColumns:Pe,toggleHideAllColumns:Ie,getToggleHideAllColumnsProps:ze})}var se={},Ce={},oe=function(R,W,U){return R},re=function(R,W){return R.subRows||[]},pe=function(R,W,U){return""+(U?[U.id,W].join("."):W)},Ee=function(R){return R};function ke(R){var W=R.initialState,U=W===void 0?se:W,G=R.defaultColumn,te=G===void 0?Ce:G,Y=R.getSubRows,ne=Y===void 0?re:Y,be=R.getRowId,Ae=be===void 0?pe:be,Te=R.stateReducer,Re=Te===void 0?oe:Te,Le=R.useControlledState,Pe=Le===void 0?Ee:Le;return o({},s(R,["initialState","defaultColumn","getSubRows","getRowId","stateReducer","useControlledState"]),{initialState:U,defaultColumn:te,getSubRows:ne,getRowId:Ae,stateReducer:Re,useControlledState:Pe})}function Be(R,W){W===void 0&&(W=0);var U=0,G=0,te=0,Y=0;return R.forEach(function(ne){var be=ne.headers;if(ne.totalLeft=W,be&&be.length){var Ae=Be(be,W),Te=Ae[0],Re=Ae[1],Le=Ae[2],Pe=Ae[3];ne.totalMinWidth=Te,ne.totalWidth=Re,ne.totalMaxWidth=Le,ne.totalFlexWidth=Pe}else ne.totalMinWidth=ne.minWidth,ne.totalWidth=Math.min(Math.max(ne.minWidth,ne.width),ne.maxWidth),ne.totalMaxWidth=ne.maxWidth,ne.totalFlexWidth=ne.canResize?ne.totalWidth:0;ne.isVisible&&(W+=ne.totalWidth,U+=ne.totalMinWidth,G+=ne.totalWidth,te+=ne.totalMaxWidth,Y+=ne.totalFlexWidth)}),[U,G,te,Y]}function tt(R){var W=R.data,U=R.rows,G=R.flatRows,te=R.rowsById,Y=R.column,ne=R.getRowId,be=R.getSubRows,Ae=R.accessValueHooks,Te=R.getInstance;W.forEach(function(Re,Le){return function Pe(Ie,ze,Ue,Ve,Je){Ue===void 0&&(Ue=0);var bt=Ie,Xe=ne(Ie,ze,Ve),Fe=te[Xe];if(Fe)Fe.subRows&&Fe.originalSubRows.forEach(function(qe,mt){return Pe(qe,mt,Ue+1,Fe)});else if((Fe={id:Xe,original:bt,index:ze,depth:Ue,cells:[{}]}).cells.map=B,Fe.cells.filter=B,Fe.cells.forEach=B,Fe.cells[0].getCellProps=B,Fe.values={},Je.push(Fe),G.push(Fe),te[Xe]=Fe,Fe.originalSubRows=be(Ie,ze),Fe.originalSubRows){var gt=[];Fe.originalSubRows.forEach(function(qe,mt){return Pe(qe,mt,Ue+1,Fe,gt)}),Fe.subRows=gt}Y.accessor&&(Fe.values[Y.id]=Y.accessor(Ie,ze,Fe,Je,W)),Fe.values[Y.id]=g(Ae,Fe.values[Y.id],{row:Fe,column:Y,instance:Te()})}(Re,Le,0,void 0,U)})}d.resetExpanded="resetExpanded",d.toggleRowExpanded="toggleRowExpanded",d.toggleAllRowsExpanded="toggleAllRowsExpanded";var Ke=function(R){R.getToggleAllRowsExpandedProps=[ot],R.getToggleRowExpandedProps=[lt],R.stateReducers.push(Jt),R.useInstance.push(jr),R.prepareRow.push(Bt)};Ke.pluginName="useExpanded";var ot=function(R,W){var U=W.instance;return[R,{onClick:function(G){U.toggleAllRowsExpanded()},style:{cursor:"pointer"},title:"Toggle All Rows Expanded"}]},lt=function(R,W){var U=W.row;return[R,{onClick:function(){U.toggleRowExpanded()},style:{cursor:"pointer"},title:"Toggle Row Expanded"}]};function Jt(R,W,U,G){if(W.type===d.init)return o({expanded:{}},R);if(W.type===d.resetExpanded)return o({},R,{expanded:G.initialState.expanded||{}});if(W.type===d.toggleAllRowsExpanded){var te=W.value,Y=G.rowsById,ne=Object.keys(Y).length===Object.keys(R.expanded).length;if(te!==void 0?te:!ne){var be={};return Object.keys(Y).forEach(function(ze){be[ze]=!0}),o({},R,{expanded:be})}return o({},R,{expanded:{}})}if(W.type===d.toggleRowExpanded){var Ae,Te=W.id,Re=W.value,Le=R.expanded[Te],Pe=Re!==void 0?Re:!Le;if(!Le&&Pe)return o({},R,{expanded:o({},R.expanded,(Ae={},Ae[Te]=!0,Ae))});if(Le&&!Pe){var Ie=R.expanded;return Ie[Te],o({},R,{expanded:s(Ie,[Te].map(l))})}return R}}function jr(R){var W=R.data,U=R.rows,G=R.rowsById,te=R.manualExpandedKey,Y=te===void 0?"expanded":te,ne=R.paginateExpandedRows,be=ne===void 0||ne,Ae=R.expandSubRows,Te=Ae===void 0||Ae,Re=R.autoResetExpanded,Le=Re===void 0||Re,Pe=R.getHooks,Ie=R.plugins,ze=R.state.expanded,Ue=R.dispatch;y(Ie,["useSortBy","useGroupBy","usePivotColumns","useGlobalFilter"],"useExpanded");var Ve=S(Le),Je=Boolean(Object.keys(G).length&&Object.keys(ze).length);Je&&Object.keys(G).some(function(Dt){return!ze[Dt]})&&(Je=!1),_(function(){Ve()&&Ue({type:d.resetExpanded})},[Ue,W]);var bt=n.useCallback(function(Dt,ut){Ue({type:d.toggleRowExpanded,id:Dt,value:ut})},[Ue]),Xe=n.useCallback(function(Dt){return Ue({type:d.toggleAllRowsExpanded,value:Dt})},[Ue]),Fe=n.useMemo(function(){return be?j(U,{manualExpandedKey:Y,expanded:ze,expandSubRows:Te}):U},[be,U,Y,ze,Te]),gt=n.useMemo(function(){return function(Dt){var ut=0;return Object.keys(Dt).forEach(function(ht){var Gt=ht.split(".");ut=Math.max(ut,Gt.length)}),ut}(ze)},[ze]),qe=S(R),mt=f(Pe().getToggleAllRowsExpandedProps,{instance:qe()});Object.assign(R,{preExpandedRows:U,expandedRows:Fe,rows:Fe,expandedDepth:gt,isAllRowsExpanded:Je,toggleRowExpanded:bt,toggleAllRowsExpanded:Xe,getToggleAllRowsExpandedProps:mt})}function Bt(R,W){var U=W.instance.getHooks,G=W.instance;R.toggleRowExpanded=function(te){return G.toggleRowExpanded(R.id,te)},R.getToggleRowExpandedProps=f(U().getToggleRowExpandedProps,{instance:G,row:R})}var qn=function(R,W,U){return R=R.filter(function(G){return W.some(function(te){var Y=G.values[te];return String(Y).toLowerCase().includes(String(U).toLowerCase())})})};qn.autoRemove=function(R){return!R};var Kn=function(R,W,U){return R.filter(function(G){return W.some(function(te){var Y=G.values[te];return Y===void 0||String(Y).toLowerCase()===String(U).toLowerCase()})})};Kn.autoRemove=function(R){return!R};var Ur=function(R,W,U){return R.filter(function(G){return W.some(function(te){var Y=G.values[te];return Y===void 0||String(Y)===String(U)})})};Ur.autoRemove=function(R){return!R};var zr=function(R,W,U){return R.filter(function(G){return W.some(function(te){return G.values[te].includes(U)})})};zr.autoRemove=function(R){return!R||!R.length};var zo=function(R,W,U){return R.filter(function(G){return W.some(function(te){var Y=G.values[te];return Y&&Y.length&&U.every(function(ne){return Y.includes(ne)})})})};zo.autoRemove=function(R){return!R||!R.length};var Pn=function(R,W,U){return R.filter(function(G){return W.some(function(te){var Y=G.values[te];return Y&&Y.length&&U.some(function(ne){return Y.includes(ne)})})})};Pn.autoRemove=function(R){return!R||!R.length};var Vi=function(R,W,U){return R.filter(function(G){return W.some(function(te){var Y=G.values[te];return U.includes(Y)})})};Vi.autoRemove=function(R){return!R||!R.length};var Gi=function(R,W,U){return R.filter(function(G){return W.some(function(te){return G.values[te]===U})})};Gi.autoRemove=function(R){return R===void 0};var ga=function(R,W,U){return R.filter(function(G){return W.some(function(te){return G.values[te]==U})})};ga.autoRemove=function(R){return R==null};var Qn=function(R,W,U){var G=U||[],te=G[0],Y=G[1];if((te=typeof te=="number"?te:-1/0)>(Y=typeof Y=="number"?Y:1/0)){var ne=te;te=Y,Y=ne}return R.filter(function(be){return W.some(function(Ae){var Te=be.values[Ae];return Te>=te&&Te<=Y})})};Qn.autoRemove=function(R){return!R||typeof R[0]!="number"&&typeof R[1]!="number"};var Vr=Object.freeze({__proto__:null,text:qn,exactText:Kn,exactTextCase:Ur,includes:zr,includesAll:zo,includesSome:Pn,includesValue:Vi,exact:Gi,equals:ga,between:Qn});d.resetFilters="resetFilters",d.setFilter="setFilter",d.setAllFilters="setAllFilters";var No=function(R){R.stateReducers.push(Fo),R.useInstance.push(el)};function Fo(R,W,U,G){if(W.type===d.init)return o({filters:[]},R);if(W.type===d.resetFilters)return o({},R,{filters:G.initialState.filters||[]});if(W.type===d.setFilter){var te=W.columnId,Y=W.filterValue,ne=G.allColumns,be=G.filterTypes,Ae=ne.find(function(Ue){return Ue.id===te});if(!Ae)throw new Error("React-Table: Could not find a column with id: "+te);var Te=H(Ae.filter,be||{},Vr),Re=R.filters.find(function(Ue){return Ue.id===te}),Le=b(Y,Re&&Re.value);return $(Te.autoRemove,Le,Ae)?o({},R,{filters:R.filters.filter(function(Ue){return Ue.id!==te})}):o({},R,Re?{filters:R.filters.map(function(Ue){return Ue.id===te?{id:te,value:Le}:Ue})}:{filters:[].concat(R.filters,[{id:te,value:Le}])})}if(W.type===d.setAllFilters){var Pe=W.filters,Ie=G.allColumns,ze=G.filterTypes;return o({},R,{filters:b(Pe,R.filters).filter(function(Ue){var Ve=Ie.find(function(Je){return Je.id===Ue.id});return!$(H(Ve.filter,ze||{},Vr).autoRemove,Ue.value,Ve)})})}}function el(R){var W=R.data,U=R.rows,G=R.flatRows,te=R.rowsById,Y=R.allColumns,ne=R.filterTypes,be=R.manualFilters,Ae=R.defaultCanFilter,Te=Ae!==void 0&&Ae,Re=R.disableFilters,Le=R.state.filters,Pe=R.dispatch,Ie=R.autoResetFilters,ze=Ie===void 0||Ie,Ue=n.useCallback(function(qe,mt){Pe({type:d.setFilter,columnId:qe,filterValue:mt})},[Pe]),Ve=n.useCallback(function(qe){Pe({type:d.setAllFilters,filters:qe})},[Pe]);Y.forEach(function(qe){var mt=qe.id,Dt=qe.accessor,ut=qe.defaultCanFilter,ht=qe.disableFilters;qe.canFilter=Dt?E(ht!==!0&&void 0,Re!==!0&&void 0,!0):E(ut,Te,!1),qe.setFilter=function(pt){return Ue(qe.id,pt)};var Gt=Le.find(function(pt){return pt.id===mt});qe.filterValue=Gt&&Gt.value});var Je=n.useMemo(function(){if(be||!Le.length)return[U,G,te];var qe=[],mt={};return[function Dt(ut,ht){ht===void 0&&(ht=0);var Gt=ut;return(Gt=Le.reduce(function(pt,Ht){var Lt=Ht.id,ar=Ht.value,nt=Y.find(function(kr){return kr.id===Lt});if(!nt)return pt;ht===0&&(nt.preFilteredRows=pt);var Ot=H(nt.filter,ne||{},Vr);return Ot?(nt.filteredRows=Ot(pt,[Lt],ar),nt.filteredRows):(console.warn("Could not find a valid 'column.filter' for column with the ID: "+nt.id+"."),pt)},ut)).forEach(function(pt){qe.push(pt),mt[pt.id]=pt,pt.subRows&&(pt.subRows=pt.subRows&&pt.subRows.length>0?Dt(pt.subRows,ht+1):pt.subRows)}),Gt}(U),qe,mt]},[be,Le,U,G,te,Y,ne]),bt=Je[0],Xe=Je[1],Fe=Je[2];n.useMemo(function(){Y.filter(function(qe){return!Le.find(function(mt){return mt.id===qe.id})}).forEach(function(qe){qe.preFilteredRows=bt,qe.filteredRows=bt})},[bt,Le,Y]);var gt=S(ze);_(function(){gt()&&Pe({type:d.resetFilters})},[Pe,be?null:W]),Object.assign(R,{preFilteredRows:U,preFilteredFlatRows:G,preFilteredRowsById:te,filteredRows:bt,filteredFlatRows:Xe,filteredRowsById:Fe,rows:bt,flatRows:Xe,rowsById:Fe,setFilter:Ue,setAllFilters:Ve})}No.pluginName="useFilters",d.resetGlobalFilter="resetGlobalFilter",d.setGlobalFilter="setGlobalFilter";var va=function(R){R.stateReducers.push(Eu),R.useInstance.push(Xc)};function Eu(R,W,U,G){if(W.type===d.resetGlobalFilter)return o({},R,{globalFilter:G.initialState.globalFilter||void 0});if(W.type===d.setGlobalFilter){var te=W.filterValue,Y=G.userFilterTypes,ne=H(G.globalFilter,Y||{},Vr),be=b(te,R.globalFilter);return $(ne.autoRemove,be)?(R.globalFilter,s(R,["globalFilter"])):o({},R,{globalFilter:be})}}function Xc(R){var W=R.data,U=R.rows,G=R.flatRows,te=R.rowsById,Y=R.allColumns,ne=R.filterTypes,be=R.globalFilter,Ae=R.manualGlobalFilter,Te=R.state.globalFilter,Re=R.dispatch,Le=R.autoResetGlobalFilter,Pe=Le===void 0||Le,Ie=R.disableGlobalFilter,ze=n.useCallback(function(Fe){Re({type:d.setGlobalFilter,filterValue:Fe})},[Re]),Ue=n.useMemo(function(){if(Ae||Te===void 0)return[U,G,te];var Fe=[],gt={},qe=H(be,ne||{},Vr);if(!qe)return console.warn("Could not find a valid 'globalFilter' option."),U;Y.forEach(function(Dt){var ut=Dt.disableGlobalFilter;Dt.canFilter=E(ut!==!0&&void 0,Ie!==!0&&void 0,!0)});var mt=Y.filter(function(Dt){return Dt.canFilter===!0});return[function Dt(ut){return(ut=qe(ut,mt.map(function(ht){return ht.id}),Te)).forEach(function(ht){Fe.push(ht),gt[ht.id]=ht,ht.subRows=ht.subRows&&ht.subRows.length?Dt(ht.subRows):ht.subRows}),ut}(U),Fe,gt]},[Ae,Te,be,ne,Y,U,G,te,Ie]),Ve=Ue[0],Je=Ue[1],bt=Ue[2],Xe=S(Pe);_(function(){Xe()&&Re({type:d.resetGlobalFilter})},[Re,Ae?null:W]),Object.assign(R,{preGlobalFilteredRows:U,preGlobalFilteredFlatRows:G,preGlobalFilteredRowsById:te,globalFilteredRows:Ve,globalFilteredFlatRows:Je,globalFilteredRowsById:bt,rows:Ve,flatRows:Je,rowsById:bt,setGlobalFilter:ze,disableGlobalFilter:Ie})}function tl(R,W){return W.reduce(function(U,G){return U+(typeof G=="number"?G:0)},0)}va.pluginName="useGlobalFilter";var Iu=Object.freeze({__proto__:null,sum:tl,min:function(R){var W=R[0]||0;return R.forEach(function(U){typeof U=="number"&&(W=Math.min(W,U))}),W},max:function(R){var W=R[0]||0;return R.forEach(function(U){typeof U=="number"&&(W=Math.max(W,U))}),W},minMax:function(R){var W=R[0]||0,U=R[0]||0;return R.forEach(function(G){typeof G=="number"&&(W=Math.min(W,G),U=Math.max(U,G))}),W+".."+U},average:function(R){return tl(0,R)/R.length},median:function(R){if(!R.length)return null;var W=Math.floor(R.length/2),U=[].concat(R).sort(function(G,te){return G-te});return R.length%2!=0?U[W]:(U[W-1]+U[W])/2},unique:function(R){return Array.from(new Set(R).values())},uniqueCount:function(R){return new Set(R).size},count:function(R){return R.length}}),Du=[],ae={};d.resetGroupBy="resetGroupBy",d.setGroupBy="setGroupBy",d.toggleGroupBy="toggleGroupBy";var X=function(R){R.getGroupByToggleProps=[ie],R.stateReducers.push(we),R.visibleColumnsDeps.push(function(W,U){var G=U.instance;return[].concat(W,[G.state.groupBy])}),R.visibleColumns.push(_e),R.useInstance.push(rt),R.prepareRow.push(Et)};X.pluginName="useGroupBy";var ie=function(R,W){var U=W.header;return[R,{onClick:U.canGroupBy?function(G){G.persist(),U.toggleGroupBy()}:void 0,style:{cursor:U.canGroupBy?"pointer":void 0},title:"Toggle GroupBy"}]};function we(R,W,U,G){if(W.type===d.init)return o({groupBy:[]},R);if(W.type===d.resetGroupBy)return o({},R,{groupBy:G.initialState.groupBy||[]});if(W.type===d.setGroupBy)return o({},R,{groupBy:W.value});if(W.type===d.toggleGroupBy){var te=W.columnId,Y=W.value,ne=Y!==void 0?Y:!R.groupBy.includes(te);return o({},R,ne?{groupBy:[].concat(R.groupBy,[te])}:{groupBy:R.groupBy.filter(function(be){return be!==te})})}}function _e(R,W){var U=W.instance.state.groupBy,G=U.map(function(Y){return R.find(function(ne){return ne.id===Y})}).filter(Boolean),te=R.filter(function(Y){return!U.includes(Y.id)});return(R=[].concat(G,te)).forEach(function(Y){Y.isGrouped=U.includes(Y.id),Y.groupedIndex=U.indexOf(Y.id)}),R}var Ye={};function rt(R){var W=R.data,U=R.rows,G=R.flatRows,te=R.rowsById,Y=R.allColumns,ne=R.flatHeaders,be=R.groupByFn,Ae=be===void 0?It:be,Te=R.manualGroupBy,Re=R.aggregations,Le=Re===void 0?Ye:Re,Pe=R.plugins,Ie=R.state.groupBy,ze=R.dispatch,Ue=R.autoResetGroupBy,Ve=Ue===void 0||Ue,Je=R.disableGroupBy,bt=R.defaultCanGroupBy,Xe=R.getHooks;y(Pe,["useColumnOrder","useFilters"],"useGroupBy");var Fe=S(R);Y.forEach(function(nt){var Ot=nt.accessor,kr=nt.defaultGroupBy,_n=nt.disableGroupBy;nt.canGroupBy=Ot?E(nt.canGroupBy,_n!==!0&&void 0,Je!==!0&&void 0,!0):E(nt.canGroupBy,kr,bt,!1),nt.canGroupBy&&(nt.toggleGroupBy=function(){return R.toggleGroupBy(nt.id)}),nt.Aggregated=nt.Aggregated||nt.Cell});var gt=n.useCallback(function(nt,Ot){ze({type:d.toggleGroupBy,columnId:nt,value:Ot})},[ze]),qe=n.useCallback(function(nt){ze({type:d.setGroupBy,value:nt})},[ze]);ne.forEach(function(nt){nt.getGroupByToggleProps=f(Xe().getGroupByToggleProps,{instance:Fe(),header:nt})});var mt=n.useMemo(function(){if(Te||!Ie.length)return[U,G,te,Du,ae,G,te];var nt=Ie.filter(function(Gr){return Y.find(function(jo){return jo.id===Gr})}),Ot=[],kr={},_n=[],dt={},yr=[],Lr={},bn=function Gr(jo,Zi,CO){if(Zi===void 0&&(Zi=0),Zi===nt.length)return jo.map(function(Wp){return o({},Wp,{depth:Zi})});var _0=nt[Zi],SY=Ae(jo,_0);return Object.entries(SY).map(function(Wp,AY){var EO=Wp[0],Hp=Wp[1],jp=_0+":"+EO,IO=Gr(Hp,Zi+1,jp=CO?CO+">"+jp:jp),DO=Zi?P(Hp,"leafRows"):Hp,TY=function(_a,b0,CY){var Up={};return Y.forEach(function(Pr){if(nt.includes(Pr.id))Up[Pr.id]=b0[0]?b0[0].values[Pr.id]:null;else{var xO=typeof Pr.aggregate=="function"?Pr.aggregate:Le[Pr.aggregate]||Iu[Pr.aggregate];if(xO){var EY=b0.map(function(Vp){return Vp.values[Pr.id]}),IY=_a.map(function(Vp){var w0=Vp.values[Pr.id];if(!CY&&Pr.aggregateValue){var OO=typeof Pr.aggregateValue=="function"?Pr.aggregateValue:Le[Pr.aggregateValue]||Iu[Pr.aggregateValue];if(!OO)throw console.info({column:Pr}),new Error("React Table: Invalid column.aggregateValue option for column listed above");w0=OO(w0,Vp,Pr)}return w0});Up[Pr.id]=xO(IY,EY)}else{if(Pr.aggregate)throw console.info({column:Pr}),new Error("React Table: Invalid column.aggregate option for column listed above");Up[Pr.id]=null}}}),Up}(DO,Hp,Zi),kY={id:jp,isGrouped:!0,groupByID:_0,groupByVal:EO,values:TY,subRows:IO,leafRows:DO,depth:Zi,index:AY};return IO.forEach(function(_a){Ot.push(_a),kr[_a.id]=_a,_a.isGrouped?(_n.push(_a),dt[_a.id]=_a):(yr.push(_a),Lr[_a.id]=_a)}),kY})}(U);return bn.forEach(function(Gr){Ot.push(Gr),kr[Gr.id]=Gr,Gr.isGrouped?(_n.push(Gr),dt[Gr.id]=Gr):(yr.push(Gr),Lr[Gr.id]=Gr)}),[bn,Ot,kr,_n,dt,yr,Lr]},[Te,Ie,U,G,te,Y,Le,Ae]),Dt=mt[0],ut=mt[1],ht=mt[2],Gt=mt[3],pt=mt[4],Ht=mt[5],Lt=mt[6],ar=S(Ve);_(function(){ar()&&ze({type:d.resetGroupBy})},[ze,Te?null:W]),Object.assign(R,{preGroupedRows:U,preGroupedFlatRow:G,preGroupedRowsById:te,groupedRows:Dt,groupedFlatRows:ut,groupedRowsById:ht,onlyGroupedFlatRows:Gt,onlyGroupedRowsById:pt,nonGroupedFlatRows:Ht,nonGroupedRowsById:Lt,rows:Dt,flatRows:ut,rowsById:ht,toggleGroupBy:gt,setGroupBy:qe})}function Et(R){R.allCells.forEach(function(W){var U;W.isGrouped=W.column.isGrouped&&W.column.id===R.groupByID,W.isPlaceholder=!W.isGrouped&&W.column.isGrouped,W.isAggregated=!W.isGrouped&&!W.isPlaceholder&&((U=R.subRows)==null?void 0:U.length)})}function It(R,W){return R.reduce(function(U,G,te){var Y=""+G.values[W];return U[Y]=Array.isArray(U[Y])?U[Y]:[],U[Y].push(G),U},{})}var lr=/([0-9]+)/gm;function wt(R,W){return R===W?0:R>W?1:-1}function Wt(R,W,U){return[R.values[U],W.values[U]]}function ur(R){return typeof R=="number"?isNaN(R)||R===1/0||R===-1/0?"":String(R):typeof R=="string"?R:""}var ft=Object.freeze({__proto__:null,alphanumeric:function(R,W,U){var G=Wt(R,W,U),te=G[0],Y=G[1];for(te=ur(te),Y=ur(Y),te=te.split(lr).filter(Boolean),Y=Y.split(lr).filter(Boolean);te.length&&Y.length;){var ne=te.shift(),be=Y.shift(),Ae=parseInt(ne,10),Te=parseInt(be,10),Re=[Ae,Te].sort();if(isNaN(Re[0])){if(ne>be)return 1;if(be>ne)return-1}else{if(isNaN(Re[1]))return isNaN(Ae)?-1:1;if(Ae>Te)return 1;if(Te>Ae)return-1}}return te.length-Y.length},datetime:function(R,W,U){var G=Wt(R,W,U),te=G[0],Y=G[1];return wt(te=te.getTime(),Y=Y.getTime())},basic:function(R,W,U){var G=Wt(R,W,U);return wt(G[0],G[1])},string:function(R,W,U){var G=Wt(R,W,U),te=G[0],Y=G[1];for(te=te.split("").filter(Boolean),Y=Y.split("").filter(Boolean);te.length&&Y.length;){var ne=te.shift(),be=Y.shift(),Ae=ne.toLowerCase(),Te=be.toLowerCase();if(Ae>Te)return 1;if(Te>Ae)return-1;if(ne>be)return 1;if(be>ne)return-1}return te.length-Y.length},number:function(R,W,U){var G=Wt(R,W,U),te=G[0],Y=G[1],ne=/[^0-9.]/gi;return wt(te=Number(String(te).replace(ne,"")),Y=Number(String(Y).replace(ne,"")))}});d.resetSortBy="resetSortBy",d.setSortBy="setSortBy",d.toggleSortBy="toggleSortBy",d.clearSortBy="clearSortBy",h.sortType="alphanumeric",h.sortDescFirst=!1;var $t=function(R){R.getSortByToggleProps=[vr],R.stateReducers.push(nr),R.useInstance.push(ya)};$t.pluginName="useSortBy";var vr=function(R,W){var U=W.instance,G=W.column,te=U.isMultiSortEvent,Y=te===void 0?function(ne){return ne.shiftKey}:te;return[R,{onClick:G.canSort?function(ne){ne.persist(),G.toggleSortBy(void 0,!U.disableMultiSort&&Y(ne))}:void 0,style:{cursor:G.canSort?"pointer":void 0},title:G.canSort?"Toggle SortBy":void 0}]};function nr(R,W,U,G){if(W.type===d.init)return o({sortBy:[]},R);if(W.type===d.resetSortBy)return o({},R,{sortBy:G.initialState.sortBy||[]});if(W.type===d.clearSortBy)return o({},R,{sortBy:R.sortBy.filter(function(Fe){return Fe.id!==W.columnId})});if(W.type===d.setSortBy)return o({},R,{sortBy:W.sortBy});if(W.type===d.toggleSortBy){var te,Y=W.columnId,ne=W.desc,be=W.multi,Ae=G.allColumns,Te=G.disableMultiSort,Re=G.disableSortRemove,Le=G.disableMultiRemove,Pe=G.maxMultiSortColCount,Ie=Pe===void 0?Number.MAX_SAFE_INTEGER:Pe,ze=R.sortBy,Ue=Ae.find(function(Fe){return Fe.id===Y}).sortDescFirst,Ve=ze.find(function(Fe){return Fe.id===Y}),Je=ze.findIndex(function(Fe){return Fe.id===Y}),bt=ne!=null,Xe=[];return(te=!Te&&be?Ve?"toggle":"add":Je!==ze.length-1||ze.length!==1?"replace":Ve?"toggle":"replace")!="toggle"||Re||bt||be&&Le||!(Ve&&Ve.desc&&!Ue||!Ve.desc&&Ue)||(te="remove"),te==="replace"?Xe=[{id:Y,desc:bt?ne:Ue}]:te==="add"?(Xe=[].concat(ze,[{id:Y,desc:bt?ne:Ue}])).splice(0,Xe.length-Ie):te==="toggle"?Xe=ze.map(function(Fe){return Fe.id===Y?o({},Fe,{desc:bt?ne:!Ve.desc}):Fe}):te==="remove"&&(Xe=ze.filter(function(Fe){return Fe.id!==Y})),o({},R,{sortBy:Xe})}}function ya(R){var W=R.data,U=R.rows,G=R.flatRows,te=R.allColumns,Y=R.orderByFn,ne=Y===void 0?vn:Y,be=R.sortTypes,Ae=R.manualSortBy,Te=R.defaultCanSort,Re=R.disableSortBy,Le=R.flatHeaders,Pe=R.state.sortBy,Ie=R.dispatch,ze=R.plugins,Ue=R.getHooks,Ve=R.autoResetSortBy,Je=Ve===void 0||Ve;y(ze,["useFilters","useGlobalFilter","useGroupBy","usePivotColumns"],"useSortBy");var bt=n.useCallback(function(ut){Ie({type:d.setSortBy,sortBy:ut})},[Ie]),Xe=n.useCallback(function(ut,ht,Gt){Ie({type:d.toggleSortBy,columnId:ut,desc:ht,multi:Gt})},[Ie]),Fe=S(R);Le.forEach(function(ut){var ht=ut.accessor,Gt=ut.canSort,pt=ut.disableSortBy,Ht=ut.id,Lt=ht?E(pt!==!0&&void 0,Re!==!0&&void 0,!0):E(Te,Gt,!1);ut.canSort=Lt,ut.canSort&&(ut.toggleSortBy=function(nt,Ot){return Xe(ut.id,nt,Ot)},ut.clearSortBy=function(){Ie({type:d.clearSortBy,columnId:ut.id})}),ut.getSortByToggleProps=f(Ue().getSortByToggleProps,{instance:Fe(),column:ut});var ar=Pe.find(function(nt){return nt.id===Ht});ut.isSorted=!!ar,ut.sortedIndex=Pe.findIndex(function(nt){return nt.id===Ht}),ut.isSortedDesc=ut.isSorted?ar.desc:void 0});var gt=n.useMemo(function(){if(Ae||!Pe.length)return[U,G];var ut=[],ht=Pe.filter(function(Gt){return te.find(function(pt){return pt.id===Gt.id})});return[function Gt(pt){var Ht=ne(pt,ht.map(function(Lt){var ar=te.find(function(kr){return kr.id===Lt.id});if(!ar)throw new Error("React-Table: Could not find a column with id: "+Lt.id+" while sorting");var nt=ar.sortType,Ot=L(nt)||(be||{})[nt]||ft[nt];if(!Ot)throw new Error("React-Table: Could not find a valid sortType of '"+nt+"' for column '"+Lt.id+"'.");return function(kr,_n){return Ot(kr,_n,Lt.id,Lt.desc)}}),ht.map(function(Lt){var ar=te.find(function(nt){return nt.id===Lt.id});return ar&&ar.sortInverted?Lt.desc:!Lt.desc}));return Ht.forEach(function(Lt){ut.push(Lt),Lt.subRows&&Lt.subRows.length!==0&&(Lt.subRows=Gt(Lt.subRows))}),Ht}(U),ut]},[Ae,Pe,U,G,te,ne,be]),qe=gt[0],mt=gt[1],Dt=S(Je);_(function(){Dt()&&Ie({type:d.resetSortBy})},[Ae?null:W]),Object.assign(R,{preSortedRows:U,preSortedFlatRows:G,sortedRows:qe,sortedFlatRows:mt,rows:qe,flatRows:mt,setSortBy:bt,toggleSortBy:Xe})}function vn(R,W,U){return[].concat(R).sort(function(G,te){for(var Y=0;Y<W.length;Y+=1){var ne=W[Y],be=U[Y]===!1||U[Y]==="desc",Ae=ne(G,te);if(Ae!==0)return be?-Ae:Ae}return U[0]?G.index-te.index:te.index-G.index})}d.resetPage="resetPage",d.gotoPage="gotoPage",d.setPageSize="setPageSize";var yn=function(R){R.stateReducers.push(Zn),R.useInstance.push(Ua)};function Zn(R,W,U,G){if(W.type===d.init)return o({pageSize:10,pageIndex:0},R);if(W.type===d.resetPage)return o({},R,{pageIndex:G.initialState.pageIndex||0});if(W.type===d.gotoPage){var te=G.pageCount,Y=G.page,ne=b(W.pageIndex,R.pageIndex),be=!1;return ne>R.pageIndex?be=te===-1?Y.length>=R.pageSize:ne<te:ne<R.pageIndex&&(be=ne>-1),be?o({},R,{pageIndex:ne}):R}if(W.type===d.setPageSize){var Ae=W.pageSize,Te=R.pageSize*R.pageIndex;return o({},R,{pageIndex:Math.floor(Te/Ae),pageSize:Ae})}}function Ua(R){var W=R.rows,U=R.autoResetPage,G=U===void 0||U,te=R.manualExpandedKey,Y=te===void 0?"expanded":te,ne=R.plugins,be=R.pageCount,Ae=R.paginateExpandedRows,Te=Ae===void 0||Ae,Re=R.expandSubRows,Le=Re===void 0||Re,Pe=R.state,Ie=Pe.pageSize,ze=Pe.pageIndex,Ue=Pe.expanded,Ve=Pe.globalFilter,Je=Pe.filters,bt=Pe.groupBy,Xe=Pe.sortBy,Fe=R.dispatch,gt=R.data,qe=R.manualPagination;y(ne,["useGlobalFilter","useFilters","useGroupBy","useSortBy","useExpanded"],"usePagination");var mt=S(G);_(function(){mt()&&Fe({type:d.resetPage})},[Fe,qe?null:gt,Ve,Je,bt,Xe]);var Dt=qe?be:Math.ceil(W.length/Ie),ut=n.useMemo(function(){return Dt>0?[].concat(new Array(Dt)).fill(null).map(function(Ot,kr){return kr}):[]},[Dt]),ht=n.useMemo(function(){var Ot;if(qe)Ot=W;else{var kr=Ie*ze,_n=kr+Ie;Ot=W.slice(kr,_n)}return Te?Ot:j(Ot,{manualExpandedKey:Y,expanded:Ue,expandSubRows:Le})},[Le,Ue,Y,qe,ze,Ie,Te,W]),Gt=ze>0,pt=Dt===-1?ht.length>=Ie:ze<Dt-1,Ht=n.useCallback(function(Ot){Fe({type:d.gotoPage,pageIndex:Ot})},[Fe]),Lt=n.useCallback(function(){return Ht(function(Ot){return Ot-1})},[Ht]),ar=n.useCallback(function(){return Ht(function(Ot){return Ot+1})},[Ht]),nt=n.useCallback(function(Ot){Fe({type:d.setPageSize,pageSize:Ot})},[Fe]);Object.assign(R,{pageOptions:ut,pageCount:Dt,page:ht,canPreviousPage:Gt,canNextPage:pt,gotoPage:Ht,previousPage:Lt,nextPage:ar,setPageSize:nt})}yn.pluginName="usePagination",d.resetPivot="resetPivot",d.togglePivot="togglePivot";var nn=function(R){R.getPivotToggleProps=[Va],R.stateReducers.push(Yn),R.useInstanceAfterData.push(qi),R.allColumns.push(xu),R.accessValue.push(Ou),R.materializedColumns.push(Bo),R.materializedColumnsDeps.push(Ga),R.visibleColumns.push(Wo),R.visibleColumnsDeps.push(_i),R.useInstance.push(rl),R.prepareRow.push(bi)};nn.pluginName="usePivotColumns";var Tr=[],Va=function(R,W){var U=W.header;return[R,{onClick:U.canPivot?function(G){G.persist(),U.togglePivot()}:void 0,style:{cursor:U.canPivot?"pointer":void 0},title:"Toggle Pivot"}]};function Yn(R,W,U,G){if(W.type===d.init)return o({pivotColumns:Tr},R);if(W.type===d.resetPivot)return o({},R,{pivotColumns:G.initialState.pivotColumns||Tr});if(W.type===d.togglePivot){var te=W.columnId,Y=W.value,ne=Y!==void 0?Y:!R.pivotColumns.includes(te);return o({},R,ne?{pivotColumns:[].concat(R.pivotColumns,[te])}:{pivotColumns:R.pivotColumns.filter(function(be){return be!==te})})}}function qi(R){R.allColumns.forEach(function(W){W.isPivotSource=R.state.pivotColumns.includes(W.id)})}function xu(R,W){var U=W.instance;return R.forEach(function(G){G.isPivotSource=U.state.pivotColumns.includes(G.id),G.uniqueValues=new Set}),R}function Ou(R,W){var U=W.column;return U.uniqueValues&&R!==void 0&&U.uniqueValues.add(R),R}function Bo(R,W){var U=W.instance,G=U.allColumns,te=U.state;if(!te.pivotColumns.length||!te.groupBy||!te.groupBy.length)return R;var Y=te.pivotColumns.map(function(Ae){return G.find(function(Te){return Te.id===Ae})}).filter(Boolean),ne=G.filter(function(Ae){return!Ae.isPivotSource&&!te.groupBy.includes(Ae.id)&&!te.pivotColumns.includes(Ae.id)}),be=C(function Ae(Te,Re,Le){Te===void 0&&(Te=0),Le===void 0&&(Le=[]);var Pe=Y[Te];return Pe?Array.from(Pe.uniqueValues).sort().map(function(Ie){var ze=o({},Pe,{Header:Pe.PivotHeader||typeof Pe.header=="string"?Pe.Header+": "+Ie:Ie,isPivotGroup:!0,parent:Re,depth:Te,id:Re?Re.id+"."+Pe.id+"."+Ie:Pe.id+"."+Ie,pivotValue:Ie});return ze.columns=Ae(Te+1,ze,[].concat(Le,[function(Ue){return Ue.values[Pe.id]===Ie}])),ze}):ne.map(function(Ie){return o({},Ie,{canPivot:!1,isPivoted:!0,parent:Re,depth:Te,id:""+(Re?Re.id+"."+Ie.id:Ie.id),accessor:function(ze,Ue,Ve){if(Le.every(function(Je){return Je(Ve)}))return Ve.values[Ie.id]}})})}());return[].concat(R,be)}function Ga(R,W){var U=W.instance.state,G=U.pivotColumns,te=U.groupBy;return[].concat(R,[G,te])}function Wo(R,W){var U=W.instance.state;return R=R.filter(function(G){return!G.isPivotSource}),U.pivotColumns.length&&U.groupBy&&U.groupBy.length&&(R=R.filter(function(G){return G.isGrouped||G.isPivoted})),R}function _i(R,W){var U=W.instance;return[].concat(R,[U.state.pivotColumns,U.state.groupBy])}function rl(R){var W=R.columns,U=R.allColumns,G=R.flatHeaders,te=R.getHooks,Y=R.plugins,ne=R.dispatch,be=R.autoResetPivot,Ae=be===void 0||be,Te=R.manaulPivot,Re=R.disablePivot,Le=R.defaultCanPivot;y(Y,["useGroupBy"],"usePivotColumns");var Pe=S(R);U.forEach(function(ze){var Ue=ze.accessor,Ve=ze.defaultPivot,Je=ze.disablePivot;ze.canPivot=Ue?E(ze.canPivot,Je!==!0&&void 0,Re!==!0&&void 0,!0):E(ze.canPivot,Ve,Le,!1),ze.canPivot&&(ze.togglePivot=function(){return R.togglePivot(ze.id)}),ze.Aggregated=ze.Aggregated||ze.Cell}),G.forEach(function(ze){ze.getPivotToggleProps=f(te().getPivotToggleProps,{instance:Pe(),header:ze})});var Ie=S(Ae);_(function(){Ie()&&ne({type:d.resetPivot})},[ne,Te?null:W]),Object.assign(R,{togglePivot:function(ze,Ue){ne({type:d.togglePivot,columnId:ze,value:Ue})}})}function bi(R){R.allCells.forEach(function(W){W.isPivoted=W.column.isPivoted})}d.resetSelectedRows="resetSelectedRows",d.toggleAllRowsSelected="toggleAllRowsSelected",d.toggleRowSelected="toggleRowSelected",d.toggleAllPageRowsSelected="toggleAllPageRowsSelected";var Pp=function(R){R.getToggleRowSelectedProps=[o0],R.getToggleAllRowsSelectedProps=[s0],R.getToggleAllPageRowsSelectedProps=[l0],R.stateReducers.push($p),R.useInstance.push(u0),R.prepareRow.push(d0)};Pp.pluginName="useRowSelect";var o0=function(R,W){var U=W.instance,G=W.row,te=U.manualRowSelectedKey,Y=te===void 0?"isSelected":te;return[R,{onChange:function(ne){G.toggleRowSelected(ne.target.checked)},style:{cursor:"pointer"},checked:!(!G.original||!G.original[Y])||G.isSelected,title:"Toggle Row Selected",indeterminate:G.isSomeSelected}]},s0=function(R,W){var U=W.instance;return[R,{onChange:function(G){U.toggleAllRowsSelected(G.target.checked)},style:{cursor:"pointer"},checked:U.isAllRowsSelected,title:"Toggle All Rows Selected",indeterminate:Boolean(!U.isAllRowsSelected&&Object.keys(U.state.selectedRowIds).length)}]},l0=function(R,W){var U=W.instance;return[R,{onChange:function(G){U.toggleAllPageRowsSelected(G.target.checked)},style:{cursor:"pointer"},checked:U.isAllPageRowsSelected,title:"Toggle All Current Page Rows Selected",indeterminate:Boolean(!U.isAllPageRowsSelected&&U.page.some(function(G){var te=G.id;return U.state.selectedRowIds[te]}))}]};function $p(R,W,U,G){if(W.type===d.init)return o({selectedRowIds:{}},R);if(W.type===d.resetSelectedRows)return o({},R,{selectedRowIds:G.initialState.selectedRowIds||{}});if(W.type===d.toggleAllRowsSelected){var te=W.value,Y=G.isAllRowsSelected,ne=G.rowsById,be=G.nonGroupedRowsById,Ae=be===void 0?ne:be,Te=te!==void 0?te:!Y,Re=Object.assign({},R.selectedRowIds);return Te?Object.keys(Ae).forEach(function(Ht){Re[Ht]=!0}):Object.keys(Ae).forEach(function(Ht){delete Re[Ht]}),o({},R,{selectedRowIds:Re})}if(W.type===d.toggleRowSelected){var Le=W.id,Pe=W.value,Ie=G.rowsById,ze=G.selectSubRows,Ue=ze===void 0||ze,Ve=G.getSubRows,Je=R.selectedRowIds[Le],bt=Pe!==void 0?Pe:!Je;if(Je===bt)return R;var Xe=o({},R.selectedRowIds);return function Ht(Lt){var ar=Ie[Lt];if(ar&&(ar.isGrouped||(bt?Xe[Lt]=!0:delete Xe[Lt]),Ue&&Ve(ar)))return Ve(ar).forEach(function(nt){return Ht(nt.id)})}(Le),o({},R,{selectedRowIds:Xe})}if(W.type===d.toggleAllPageRowsSelected){var Fe=W.value,gt=G.page,qe=G.rowsById,mt=G.selectSubRows,Dt=mt===void 0||mt,ut=G.isAllPageRowsSelected,ht=G.getSubRows,Gt=Fe!==void 0?Fe:!ut,pt=o({},R.selectedRowIds);return gt.forEach(function(Ht){return function Lt(ar){var nt=qe[ar];if(nt.isGrouped||(Gt?pt[ar]=!0:delete pt[ar]),Dt&&ht(nt))return ht(nt).forEach(function(Ot){return Lt(Ot.id)})}(Ht.id)}),o({},R,{selectedRowIds:pt})}return R}function u0(R){var W=R.data,U=R.rows,G=R.getHooks,te=R.plugins,Y=R.rowsById,ne=R.nonGroupedRowsById,be=ne===void 0?Y:ne,Ae=R.autoResetSelectedRows,Te=Ae===void 0||Ae,Re=R.state.selectedRowIds,Le=R.selectSubRows,Pe=Le===void 0||Le,Ie=R.dispatch,ze=R.page,Ue=R.getSubRows;y(te,["useFilters","useGroupBy","useSortBy","useExpanded","usePagination"],"useRowSelect");var Ve=n.useMemo(function(){var ht=[];return U.forEach(function(Gt){var pt=Pe?function Ht(Lt,ar,nt){if(ar[Lt.id])return!0;var Ot=nt(Lt);if(Ot&&Ot.length){var kr=!0,_n=!1;return Ot.forEach(function(dt){_n&&!kr||(Ht(dt,ar,nt)?_n=!0:kr=!1)}),!!kr||!!_n&&null}return!1}(Gt,Re,Ue):!!Re[Gt.id];Gt.isSelected=!!pt,Gt.isSomeSelected=pt===null,pt&&ht.push(Gt)}),ht},[U,Pe,Re,Ue]),Je=Boolean(Object.keys(be).length&&Object.keys(Re).length),bt=Je;Je&&Object.keys(be).some(function(ht){return!Re[ht]})&&(Je=!1),Je||ze&&ze.length&&ze.some(function(ht){var Gt=ht.id;return!Re[Gt]})&&(bt=!1);var Xe=S(Te);_(function(){Xe()&&Ie({type:d.resetSelectedRows})},[Ie,W]);var Fe=n.useCallback(function(ht){return Ie({type:d.toggleAllRowsSelected,value:ht})},[Ie]),gt=n.useCallback(function(ht){return Ie({type:d.toggleAllPageRowsSelected,value:ht})},[Ie]),qe=n.useCallback(function(ht,Gt){return Ie({type:d.toggleRowSelected,id:ht,value:Gt})},[Ie]),mt=S(R),Dt=f(G().getToggleAllRowsSelectedProps,{instance:mt()}),ut=f(G().getToggleAllPageRowsSelectedProps,{instance:mt()});Object.assign(R,{selectedFlatRows:Ve,isAllRowsSelected:Je,isAllPageRowsSelected:bt,toggleRowSelected:qe,toggleAllRowsSelected:Fe,getToggleAllRowsSelectedProps:Dt,getToggleAllPageRowsSelectedProps:ut,toggleAllPageRowsSelected:gt})}function d0(R,W){var U=W.instance;R.toggleRowSelected=function(G){return U.toggleRowSelected(R.id,G)},R.getToggleRowSelectedProps=f(U.getHooks().getToggleRowSelectedProps,{instance:U,row:R})}var Jc=function(R){return{}},nl=function(R){return{}};d.setRowState="setRowState",d.setCellState="setCellState",d.resetRowState="resetRowState";var Ki=function(R){R.stateReducers.push(c0),R.useInstance.push(h0),R.prepareRow.push(wi)};function c0(R,W,U,G){var te=G.initialRowStateAccessor,Y=te===void 0?Jc:te,ne=G.initialCellStateAccessor,be=ne===void 0?nl:ne,Ae=G.rowsById;if(W.type===d.init)return o({rowState:{}},R);if(W.type===d.resetRowState)return o({},R,{rowState:G.initialState.rowState||{}});if(W.type===d.setRowState){var Te,Re=W.rowId,Le=W.value,Pe=R.rowState[Re]!==void 0?R.rowState[Re]:Y(Ae[Re]);return o({},R,{rowState:o({},R.rowState,(Te={},Te[Re]=b(Le,Pe),Te))})}if(W.type===d.setCellState){var Ie,ze,Ue,Ve,Je,bt=W.rowId,Xe=W.columnId,Fe=W.value,gt=R.rowState[bt]!==void 0?R.rowState[bt]:Y(Ae[bt]),qe=(gt==null||(Ie=gt.cellState)==null?void 0:Ie[Xe])!==void 0?gt.cellState[Xe]:be((ze=Ae[bt])==null||(Ue=ze.cells)==null?void 0:Ue.find(function(mt){return mt.column.id===Xe}));return o({},R,{rowState:o({},R.rowState,(Je={},Je[bt]=o({},gt,{cellState:o({},gt.cellState||{},(Ve={},Ve[Xe]=b(Fe,qe),Ve))}),Je))})}}function h0(R){var W=R.autoResetRowState,U=W===void 0||W,G=R.data,te=R.dispatch,Y=n.useCallback(function(Ae,Te){return te({type:d.setRowState,rowId:Ae,value:Te})},[te]),ne=n.useCallback(function(Ae,Te,Re){return te({type:d.setCellState,rowId:Ae,columnId:Te,value:Re})},[te]),be=S(U);_(function(){be()&&te({type:d.resetRowState})},[G]),Object.assign(R,{setRowState:Y,setCellState:ne})}function wi(R,W){var U=W.instance,G=U.initialRowStateAccessor,te=G===void 0?Jc:G,Y=U.initialCellStateAccessor,ne=Y===void 0?nl:Y,be=U.state.rowState;R&&(R.state=be[R.id]!==void 0?be[R.id]:te(R),R.setState=function(Ae){return U.setRowState(R.id,Ae)},R.cells.forEach(function(Ae){R.state.cellState||(R.state.cellState={}),Ae.state=R.state.cellState[Ae.column.id]!==void 0?R.state.cellState[Ae.column.id]:ne(Ae),Ae.setState=function(Te){return U.setCellState(R.id,Ae.column.id,Te)}}))}Ki.pluginName="useRowState",d.resetColumnOrder="resetColumnOrder",d.setColumnOrder="setColumnOrder";var zp=function(R){R.stateReducers.push(m0),R.visibleColumnsDeps.push(function(W,U){var G=U.instance;return[].concat(W,[G.state.columnOrder])}),R.visibleColumns.push(f0),R.useInstance.push(p0)};function m0(R,W,U,G){return W.type===d.init?o({columnOrder:[]},R):W.type===d.resetColumnOrder?o({},R,{columnOrder:G.initialState.columnOrder||[]}):W.type===d.setColumnOrder?o({},R,{columnOrder:b(W.columnOrder,R.columnOrder)}):void 0}function f0(R,W){var U=W.instance.state.columnOrder;if(!U||!U.length)return R;for(var G=[].concat(U),te=[].concat(R),Y=[],ne=function(){var be=G.shift(),Ae=te.findIndex(function(Te){return Te.id===be});Ae>-1&&Y.push(te.splice(Ae,1)[0])};te.length&&G.length;)ne();return[].concat(Y,te)}function p0(R){var W=R.dispatch;R.setColumnOrder=n.useCallback(function(U){return W({type:d.setColumnOrder,columnOrder:U})},[W])}zp.pluginName="useColumnOrder",h.canResize=!0,d.columnStartResizing="columnStartResizing",d.columnResizing="columnResizing",d.columnDoneResizing="columnDoneResizing",d.resetResize="resetResize";var Np=function(R){R.getResizerProps=[Qi],R.getHeaderProps.push({style:{position:"relative"}}),R.stateReducers.push(Fp),R.useInstance.push(Mu),R.useInstanceBeforeDimensions.push(g0)},Qi=function(R,W){var U=W.instance,G=W.header,te=U.dispatch,Y=function(ne,be){var Ae=!1;if(ne.type==="touchstart"){if(ne.touches&&ne.touches.length>1)return;Ae=!0}var Te,Re,Le=function(Xe){var Fe=[];return function gt(qe){qe.columns&&qe.columns.length&&qe.columns.map(gt),Fe.push(qe)}(Xe),Fe}(be).map(function(Xe){return[Xe.id,Xe.totalWidth]}),Pe=Ae?Math.round(ne.touches[0].clientX):ne.clientX,Ie=function(){window.cancelAnimationFrame(Te),Te=null,te({type:d.columnDoneResizing})},ze=function(){window.cancelAnimationFrame(Te),Te=null,te({type:d.columnResizing,clientX:Re})},Ue=function(Xe){Re=Xe,Te||(Te=window.requestAnimationFrame(ze))},Ve={mouse:{moveEvent:"mousemove",moveHandler:function(Xe){return Ue(Xe.clientX)},upEvent:"mouseup",upHandler:function(Xe){document.removeEventListener("mousemove",Ve.mouse.moveHandler),document.removeEventListener("mouseup",Ve.mouse.upHandler),Ie()}},touch:{moveEvent:"touchmove",moveHandler:function(Xe){return Xe.cancelable&&(Xe.preventDefault(),Xe.stopPropagation()),Ue(Xe.touches[0].clientX),!1},upEvent:"touchend",upHandler:function(Xe){document.removeEventListener(Ve.touch.moveEvent,Ve.touch.moveHandler),document.removeEventListener(Ve.touch.upEvent,Ve.touch.moveHandler),Ie()}}},Je=Ae?Ve.touch:Ve.mouse,bt=!!function(){if(typeof z=="boolean")return z;var Xe=!1;try{var Fe={get passive(){return Xe=!0,!1}};window.addEventListener("test",null,Fe),window.removeEventListener("test",null,Fe)}catch{Xe=!1}return z=Xe}()&&{passive:!1};document.addEventListener(Je.moveEvent,Je.moveHandler,bt),document.addEventListener(Je.upEvent,Je.upHandler,bt),te({type:d.columnStartResizing,columnId:be.id,columnWidth:be.totalWidth,headerIdWidths:Le,clientX:Pe})};return[R,{onMouseDown:function(ne){return ne.persist()||Y(ne,G)},onTouchStart:function(ne){return ne.persist()||Y(ne,G)},style:{cursor:"col-resize"},draggable:!1,role:"separator"}]};function Fp(R,W){if(W.type===d.init)return o({columnResizing:{columnWidths:{}}},R);if(W.type===d.resetResize)return o({},R,{columnResizing:{columnWidths:{}}});if(W.type===d.columnStartResizing){var U=W.clientX,G=W.columnId,te=W.columnWidth,Y=W.headerIdWidths;return o({},R,{columnResizing:o({},R.columnResizing,{startX:U,headerIdWidths:Y,columnWidth:te,isResizingColumn:G})})}if(W.type===d.columnResizing){var ne=W.clientX,be=R.columnResizing,Ae=be.startX,Te=be.columnWidth,Re=be.headerIdWidths,Le=(ne-Ae)/Te,Pe={};return(Re===void 0?[]:Re).forEach(function(Ie){var ze=Ie[0],Ue=Ie[1];Pe[ze]=Math.max(Ue+Ue*Le,0)}),o({},R,{columnResizing:o({},R.columnResizing,{columnWidths:o({},R.columnResizing.columnWidths,{},Pe)})})}return W.type===d.columnDoneResizing?o({},R,{columnResizing:o({},R.columnResizing,{startX:null,isResizingColumn:null})}):void 0}Np.pluginName="useResizeColumns";var g0=function(R){var W=R.flatHeaders,U=R.disableResizing,G=R.getHooks,te=R.state.columnResizing,Y=S(R);W.forEach(function(ne){var be=E(ne.disableResizing!==!0&&void 0,U!==!0&&void 0,!0);ne.canResize=be,ne.width=te.columnWidths[ne.id]||ne.originalWidth||ne.width,ne.isResizing=te.isResizingColumn===ne.id,be&&(ne.getResizerProps=f(G().getResizerProps,{instance:Y(),header:ne}))})};function Mu(R){var W=R.plugins,U=R.dispatch,G=R.autoResetResize,te=G===void 0||G,Y=R.columns;y(W,["useAbsoluteLayout"],"useResizeColumns");var ne=S(te);_(function(){ne()&&U({type:d.resetResize})},[Y]);var be=n.useCallback(function(){return U({type:d.resetResize})},[U]);Object.assign(R,{resetResizing:be})}var eh={position:"absolute",top:0},Ru=function(R){R.getTableBodyProps.push(Lu),R.getRowProps.push(Lu),R.getHeaderGroupProps.push(Lu),R.getFooterGroupProps.push(Lu),R.getHeaderProps.push(function(W,U){var G=U.column;return[W,{style:o({},eh,{left:G.totalLeft+"px",width:G.totalWidth+"px"})}]}),R.getCellProps.push(function(W,U){var G=U.cell;return[W,{style:o({},eh,{left:G.column.totalLeft+"px",width:G.column.totalWidth+"px"})}]}),R.getFooterProps.push(function(W,U){var G=U.column;return[W,{style:o({},eh,{left:G.totalLeft+"px",width:G.totalWidth+"px"})}]})};Ru.pluginName="useAbsoluteLayout";var Lu=function(R,W){return[R,{style:{position:"relative",width:W.instance.totalColumnsWidth+"px"}}]},Pu={display:"inline-block",boxSizing:"border-box"},$u=function(R,W){return[R,{style:{display:"flex",width:W.instance.totalColumnsWidth+"px"}}]},th=function(R){R.getRowProps.push($u),R.getHeaderGroupProps.push($u),R.getFooterGroupProps.push($u),R.getHeaderProps.push(function(W,U){var G=U.column;return[W,{style:o({},Pu,{width:G.totalWidth+"px"})}]}),R.getCellProps.push(function(W,U){var G=U.cell;return[W,{style:o({},Pu,{width:G.column.totalWidth+"px"})}]}),R.getFooterProps.push(function(W,U){var G=U.column;return[W,{style:o({},Pu,{width:G.totalWidth+"px"})}]})};function Ho(R){R.getTableProps.push(Bp),R.getRowProps.push(rh),R.getHeaderGroupProps.push(rh),R.getFooterGroupProps.push(rh),R.getHeaderProps.push(v0),R.getCellProps.push(y0),R.getFooterProps.push(J)}th.pluginName="useBlockLayout",Ho.pluginName="useFlexLayout";var Bp=function(R,W){return[R,{style:{minWidth:W.instance.totalColumnsMinWidth+"px"}}]},rh=function(R,W){return[R,{style:{display:"flex",flex:"1 0 auto",minWidth:W.instance.totalColumnsMinWidth+"px"}}]},v0=function(R,W){var U=W.column;return[R,{style:{boxSizing:"border-box",flex:U.totalFlexWidth?U.totalFlexWidth+" 0 auto":void 0,minWidth:U.totalMinWidth+"px",width:U.totalWidth+"px"}}]},y0=function(R,W){var U=W.cell;return[R,{style:{boxSizing:"border-box",flex:U.column.totalFlexWidth+" 0 auto",minWidth:U.column.totalMinWidth+"px",width:U.column.totalWidth+"px"}}]},J=function(R,W){var U=W.column;return[R,{style:{boxSizing:"border-box",flex:U.totalFlexWidth?U.totalFlexWidth+" 0 auto":void 0,minWidth:U.totalMinWidth+"px",width:U.totalWidth+"px"}}]};function ce(R){R.stateReducers.push(_t),R.getTableProps.push(Oe),R.getHeaderProps.push(Ge),R.getRowProps.push(sr)}d.columnStartResizing="columnStartResizing",d.columnResizing="columnResizing",d.columnDoneResizing="columnDoneResizing",d.resetResize="resetResize",ce.pluginName="useGridLayout";var Oe=function(R,W){var U=W.instance;return[R,{style:{display:"grid",gridTemplateColumns:U.visibleColumns.map(function(G){var te;return U.state.gridLayout.columnWidths[G.id]?U.state.gridLayout.columnWidths[G.id]+"px":(te=U.state.columnResizing)!=null&&te.isResizingColumn?U.state.gridLayout.startWidths[G.id]+"px":typeof G.width=="number"?G.width+"px":G.width}).join(" ")}}]},Ge=function(R,W){var U=W.column;return[R,{id:"header-cell-"+U.id,style:{position:"sticky",gridColumn:"span "+U.totalVisibleHeaderCount}}]},sr=function(R,W){var U=W.row;return U.isExpanded?[R,{style:{gridColumn:"1 / "+(U.cells.length+1)}}]:[R,{}]};function _t(R,W,U,G){if(W.type===d.init)return o({gridLayout:{columnWidths:{}}},R);if(W.type===d.resetResize)return o({},R,{gridLayout:{columnWidths:{}}});if(W.type===d.columnStartResizing){var te=W.columnId,Y=W.headerIdWidths,ne=dr(te);if(ne!==void 0){var be=G.visibleColumns.reduce(function(Fe,gt){var qe;return o({},Fe,((qe={})[gt.id]=dr(gt.id),qe))},{}),Ae=G.visibleColumns.reduce(function(Fe,gt){var qe;return o({},Fe,((qe={})[gt.id]=gt.minWidth,qe))},{}),Te=G.visibleColumns.reduce(function(Fe,gt){var qe;return o({},Fe,((qe={})[gt.id]=gt.maxWidth,qe))},{}),Re=Y.map(function(Fe){var gt=Fe[0];return[gt,dr(gt)]});return o({},R,{gridLayout:o({},R.gridLayout,{startWidths:be,minWidths:Ae,maxWidths:Te,headerIdGridWidths:Re,columnWidth:ne})})}return R}if(W.type===d.columnResizing){var Le=W.clientX,Pe=R.columnResizing.startX,Ie=R.gridLayout,ze=Ie.columnWidth,Ue=Ie.minWidths,Ve=Ie.maxWidths,Je=Ie.headerIdGridWidths,bt=(Le-Pe)/ze,Xe={};return(Je===void 0?[]:Je).forEach(function(Fe){var gt=Fe[0],qe=Fe[1];Xe[gt]=Math.min(Math.max(Ue[gt],qe+qe*bt),Ve[gt])}),o({},R,{gridLayout:o({},R.gridLayout,{columnWidths:o({},R.gridLayout.columnWidths,{},Xe)})})}return W.type===d.columnDoneResizing?o({},R,{gridLayout:o({},R.gridLayout,{startWidths:{},minWidths:{},maxWidths:{}})}):void 0}function dr(R){var W,U=(W=document.getElementById("header-cell-"+R))==null?void 0:W.offsetWidth;if(U!==void 0)return U}r._UNSTABLE_usePivotColumns=nn,r.actions=d,r.defaultColumn=h,r.defaultGroupByFn=It,r.defaultOrderByFn=vn,r.defaultRenderer=u,r.emptyRenderer=c,r.ensurePluginOrder=y,r.flexRender=I,r.functionalUpdate=b,r.loopHooks=v,r.makePropGetter=f,r.makeRenderer=A,r.reduceHooks=g,r.safeUseLayoutEffect=w,r.useAbsoluteLayout=Ru,r.useAsyncDebounce=function(R,W){W===void 0&&(W=0);var U=n.useRef({}),G=S(R),te=S(W);return n.useCallback(function(){var Y=i(regeneratorRuntime.mark(function ne(){var be,Ae,Te,Re=arguments;return regeneratorRuntime.wrap(function(Le){for(;;)switch(Le.prev=Le.next){case 0:for(be=Re.length,Ae=new Array(be),Te=0;Te<be;Te++)Ae[Te]=Re[Te];return U.current.promise||(U.current.promise=new Promise(function(Pe,Ie){U.current.resolve=Pe,U.current.reject=Ie})),U.current.timeout&&clearTimeout(U.current.timeout),U.current.timeout=setTimeout(i(regeneratorRuntime.mark(function Pe(){return regeneratorRuntime.wrap(function(Ie){for(;;)switch(Ie.prev=Ie.next){case 0:return delete U.current.timeout,Ie.prev=1,Ie.t0=U.current,Ie.next=5,G().apply(void 0,Ae);case 5:Ie.t1=Ie.sent,Ie.t0.resolve.call(Ie.t0,Ie.t1),Ie.next=12;break;case 9:Ie.prev=9,Ie.t2=Ie.catch(1),U.current.reject(Ie.t2);case 12:return Ie.prev=12,delete U.current.promise,Ie.finish(12);case 15:case"end":return Ie.stop()}},Pe,null,[[1,9,12,15]])})),te()),Le.abrupt("return",U.current.promise);case 5:case"end":return Le.stop()}},ne)}));return function(){return Y.apply(this,arguments)}}(),[G,te])},r.useBlockLayout=th,r.useColumnOrder=zp,r.useExpanded=Ke,r.useFilters=No,r.useFlexLayout=Ho,r.useGetLatest=S,r.useGlobalFilter=va,r.useGridLayout=ce,r.useGroupBy=X,r.useMountedLayoutEffect=_,r.usePagination=yn,r.useResizeColumns=Np,r.useRowSelect=Pp,r.useRowState=Ki,r.useSortBy=$t,r.useTable=function(R){for(var W=arguments.length,U=new Array(W>1?W-1:0),G=1;G<W;G++)U[G-1]=arguments[G];R=ke(R),U=[it].concat(U);var te=n.useRef({}),Y=S(te.current);Object.assign(Y(),o({},R,{plugins:U,hooks:at()})),U.filter(Boolean).forEach(function(dt){dt(Y().hooks)});var ne=S(Y().hooks);Y().getHooks=ne,delete Y().hooks,Object.assign(Y(),g(ne().useOptions,ke(R)));var be=Y(),Ae=be.data,Te=be.columns,Re=be.initialState,Le=be.defaultColumn,Pe=be.getSubRows,Ie=be.getRowId,ze=be.stateReducer,Ue=be.useControlledState,Ve=S(ze),Je=n.useCallback(function(dt,yr){if(!yr.type)throw console.info({action:yr}),new Error("Unknown Action \u{1F446}");return[].concat(ne().stateReducers,Array.isArray(Ve())?Ve():[Ve()]).reduce(function(Lr,bn){return bn(Lr,yr,dt,Y())||Lr},dt)},[ne,Ve,Y]),bt=n.useReducer(Je,void 0,function(){return Je(Re,{type:d.init})}),Xe=bt[0],Fe=bt[1],gt=g([].concat(ne().useControlledState,[Ue]),Xe,{instance:Y()});Object.assign(Y(),{state:gt,dispatch:Fe});var qe=n.useMemo(function(){return k(g(ne().columns,Te,{instance:Y()}))},[ne,Y,Te].concat(g(ne().columnsDeps,[],{instance:Y()})));Y().columns=qe;var mt=n.useMemo(function(){return g(ne().allColumns,C(qe),{instance:Y()}).map(T)},[qe,ne,Y].concat(g(ne().allColumnsDeps,[],{instance:Y()})));Y().allColumns=mt;var Dt=n.useMemo(function(){for(var dt=[],yr=[],Lr={},bn=[].concat(mt);bn.length;){var Gr=bn.shift();tt({data:Ae,rows:dt,flatRows:yr,rowsById:Lr,column:Gr,getRowId:Ie,getSubRows:Pe,accessValueHooks:ne().accessValue,getInstance:Y})}return[dt,yr,Lr]},[mt,Ae,Ie,Pe,ne,Y]),ut=Dt[0],ht=Dt[1],Gt=Dt[2];Object.assign(Y(),{rows:ut,initialRows:[].concat(ut),flatRows:ht,rowsById:Gt}),v(ne().useInstanceAfterData,Y());var pt=n.useMemo(function(){return g(ne().visibleColumns,mt,{instance:Y()}).map(function(dt){return O(dt,Le)})},[ne,mt,Y,Le].concat(g(ne().visibleColumnsDeps,[],{instance:Y()})));mt=n.useMemo(function(){var dt=[].concat(pt);return mt.forEach(function(yr){dt.find(function(Lr){return Lr.id===yr.id})||dt.push(yr)}),dt},[mt,pt]),Y().allColumns=mt;var Ht=n.useMemo(function(){return g(ne().headerGroups,D(pt,Le),Y())},[ne,pt,Le,Y].concat(g(ne().headerGroupsDeps,[],{instance:Y()})));Y().headerGroups=Ht;var Lt=n.useMemo(function(){return Ht.length?Ht[0].headers:[]},[Ht]);Y().headers=Lt,Y().flatHeaders=Ht.reduce(function(dt,yr){return[].concat(dt,yr.headers)},[]),v(ne().useInstanceBeforeDimensions,Y());var ar=pt.filter(function(dt){return dt.isVisible}).map(function(dt){return dt.id}).sort().join("_");pt=n.useMemo(function(){return pt.filter(function(dt){return dt.isVisible})},[pt,ar]),Y().visibleColumns=pt;var nt=Be(Lt),Ot=nt[0],kr=nt[1],_n=nt[2];return Y().totalColumnsMinWidth=Ot,Y().totalColumnsWidth=kr,Y().totalColumnsMaxWidth=_n,v(ne().useInstance,Y()),[].concat(Y().flatHeaders,Y().allColumns).forEach(function(dt){dt.render=A(Y(),dt),dt.getHeaderProps=f(ne().getHeaderProps,{instance:Y(),column:dt}),dt.getFooterProps=f(ne().getFooterProps,{instance:Y(),column:dt})}),Y().headerGroups=n.useMemo(function(){return Ht.filter(function(dt,yr){return dt.headers=dt.headers.filter(function(Lr){return Lr.headers?function bn(Gr){return Gr.filter(function(jo){return jo.headers?bn(jo.headers):jo.isVisible}).length}(Lr.headers):Lr.isVisible}),!!dt.headers.length&&(dt.getHeaderGroupProps=f(ne().getHeaderGroupProps,{instance:Y(),headerGroup:dt,index:yr}),dt.getFooterGroupProps=f(ne().getFooterGroupProps,{instance:Y(),headerGroup:dt,index:yr}),!0)})},[Ht,Y,ne]),Y().footerGroups=[].concat(Y().headerGroups).reverse(),Y().prepareRow=n.useCallback(function(dt){dt.getRowProps=f(ne().getRowProps,{instance:Y(),row:dt}),dt.allCells=mt.map(function(yr){var Lr=dt.values[yr.id],bn={column:yr,row:dt,value:Lr};return bn.getCellProps=f(ne().getCellProps,{instance:Y(),cell:bn}),bn.render=A(Y(),yr,{row:dt,cell:bn,value:Lr}),bn}),dt.cells=pt.map(function(yr){return dt.allCells.find(function(Lr){return Lr.column.id===yr.id})}),v(ne().prepareRow,dt,{instance:Y()})},[ne,Y,mt,pt]),Y().getTableProps=f(ne().getTableProps,{instance:Y()}),Y().getTableBodyProps=f(ne().getTableBodyProps,{instance:Y()}),v(ne().useFinalInstance,Y()),Y()},Object.defineProperty(r,"__esModule",{value:!0})})})(xE,xE.exports);xm.exports=xE.exports;function gft({globalFilter:e,setGlobalFilter:t}){const[r,n]=q.useState(e),a=xm.exports.useAsyncDebounce(o=>{t(o||void 0)},200),{t:i}=Ct(["common"]);return x("span",{children:x("input",{value:r||"",onChange:o=>{n(o.target.value),a(o.target.value)},placeholder:i("common:enter_search_criteria"),className:"form-control"})})}const vft="z2m-",PZ=e=>`${vft}${e}`,yft=v9((e,t)=>{so.setItem(PZ(e),t)}),_ft=(e,t,r,n)=>{if(n){const{instanceId:a}=n,{sortBy:i,globalFilter:o}=e;yft(a,{sortBy:i,globalFilter:o})}return e},e0=({columns:e,data:t,id:r})=>{const n=so.getItem(PZ(r))||{},{getTableProps:a,getTableBodyProps:i,headerGroups:o,rows:s,prepareRow:l,state:d,visibleColumns:u,setGlobalFilter:c}=xm.exports.useTable({instanceId:r,stateReducer:_ft,columns:e,data:t,autoResetSortBy:!1,autoResetFilters:!1,initialState:n},xm.exports.useGlobalFilter,xm.exports.useSortBy);return de("table",He(Se({},a()),{className:"table responsive",children:[de("thead",{children:[x("tr",{children:x("th",{colSpan:u.length+1,children:x(gft,{globalFilter:d.globalFilter,setGlobalFilter:c})})}),o.map(h=>de("tr",He(Se({},h.getHeaderGroupProps()),{children:[x("th",{className:"text-nowrap",children:"#"}),h.headers.map(m=>de("th",He(Se({className:"text-nowrap"},m.getHeaderProps(m.getSortByToggleProps())),{children:[x("span",{className:et({"btn-link me-1":m.canSort}),children:m.render("Header")}),x("span",{children:x("i",{className:et("fa",{"fa-sort-amount-down invisible":!m.isSorted,"fa-sort-amount-down-alt":m.isSorted&&!m.isSortedDesc,"fa-sort-amount-down":m.isSorted&&m.isSortedDesc})})})]})))]})))]}),x("tbody",He(Se({},i()),{children:s.map((h,m)=>(l(h),de("tr",He(Se({},h.getRowProps()),{children:[x("td",{children:x("div",{className:"font-weight-bold",children:m+1})}),h.cells.map(f=>x("td",He(Se({},f.getCellProps()),{children:f.render("Cell")})))]}))))}))]}))};class bft extends le.exports.Component{constructor(){super(...arguments),this.onIdentifyClick=t=>{const{touchlinkIdentify:r}=this.props;r(t)},this.onResetClick=t=>{const{touchlinkReset:r}=this.props;r(t)}}renderTouchlinkDevices(){const{touchlinkDevices:t,devices:r,touchlinkIdentifyInProgress:n,touchlinkResetInProgress:a,t:i}=this.props,o=n||a,s=[{Header:i("zigbee:ieee_address"),accessor:l=>l.ieee_address,Cell:({row:{original:l}})=>r[l.ieee_address]?x($s,{to:uw(l.ieee_address),children:l.ieee_address}):l.ieee_address},{Header:i("zigbee:friendly_name"),accessor:l=>{var d;return(d=r[l.ieee_address])==null?void 0:d.friendly_name}},{id:"channel",Header:i("zigbee:channel"),accessor:"channel"},{id:"actions",Header:"",Cell:({row:{original:l}})=>de("div",{className:"btn-group float-right",role:"group","aria-label":"Basic example",children:[x(yt,{disabled:o,item:l,title:i("identify"),className:"btn btn-primary",onClick:this.onIdentifyClick,children:x("i",{className:et("fa",{"fa-exclamation-triangle":!n,"fas fa-circle-notch fa-spin":n})})}),x(yt,{disabled:o,item:l,title:i("factory_reset"),className:"btn btn-danger",onClick:this.onResetClick,children:x("i",{className:et("fa",{"fa-broom":!a,"fas fa-circle-notch fa-spin":a})})})]})}];return x("div",{className:"table-responsive",children:x(e0,{id:"touchlinkDevices",columns:s,data:t})})}renderNoDevices(){const{touchlinkScan:t,t:r}=this.props;return x(yt,{className:"btn btn-primary mx-auto d-block",onClick:t,children:r("scan")})}render(){const{touchlinkDevices:t,touchlinkScanInProgress:r,touchlinkScan:n,t:a}=this.props;return de("div",{className:"card",children:[de("div",{className:"card-header allign-middle",children:[a("detected_devices_message",{count:t.length}),x(yt,{title:a("rescan"),className:"btn btn-primary btn-sm float-right",onClick:n,children:x("i",{className:"fa fa-sync"})})]}),x("div",{className:"card-body",children:r?x("div",{className:"d-flex justify-content-center",children:x("div",{className:"spinner-border",role:"status",children:x("span",{className:"sr-only",children:a("common:loading")})})}):t.length===0?this.renderNoDevices():this.renderTouchlinkDevices()})]})}}const wft=["touchlinkDevices","devices","touchlinkScanInProgress","touchlinkIdentifyInProgress","touchlinkResetInProgress"];var Sft=Mn(["touchlink","zigbee","common"])($r(wft,Br)(bft));const Aft={"ui:order":["base_topic","server","user","password","client_id","version","ca","key","cert","reject_unauthorized","*"]},Tft={"ui:order":["port","adapter","disable_led","*"]},kft={"ui:order":["port","host","*"]};var Cft={mqtt:Aft,serial:Tft,frontend:kft},Eft=Sq,IB=tn;function Ift(e,t,r,n){return e==null?[]:(IB(t)||(t=t==null?[]:[t]),r=n?void 0:r,IB(r)||(r=r==null?[]:[r]),Eft(e,t,r))}var Dft=Ift;function xft(e){const{devices:t}=e,{t:r}=Ct(["stats","zigbee"]),n=Object.values(t).filter(s=>s.type!=="Coordinator"),a=n.length,i={byType:{},byPowerSource:{},byVendor:{},byModel:{}};n.forEach(s=>{i.byModel[s.model_id]=(i.byModel[s.model_id]||0)+1,i.byVendor[s.manufacturer]=(i.byVendor[s.manufacturer]||0)+1,i.byType[r(s.type)]=(i.byType[r(s.type)]||0)+1;const l=r("zigbee:"+yC(s.power_source));i.byPowerSource[l]=(i.byPowerSource[l]||0)+1});const o=Object.entries(i).map(([s,l])=>x("li",{className:"list-group-item d-flex justify-content-between align-items-start",children:de("div",{className:"ms-2 me-auto",children:[x("div",{className:"fw-bold",children:r(s)}),Dft(Object.entries(l),[([d,u])=>u],["desc"]).map(([d,u])=>de("div",{children:[d,": ",u]},d))]})},s));return de("ol",{className:"list-group list-group-numbered",children:[x("li",{className:"list-group-item d-flex justify-content-between align-items-start",children:x("div",{className:"ms-2 me-auto",children:de("div",{className:"fw-bold",children:[r("total")," ",a]})})}),o]})}const Oft={access:"public",cache:""},Mft=["*.css"],Rft="zigbee2mqtt-frontend",Lft="0.6.106",Pft="GPL-3.0",$ft={build:"vite build",preview:"vite preview",start:"vite serve",postversion:"git push && git push --tags",version:"conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",pretty:'prettier --write "./**/*.{js,jsx,json}"',postinstall:"husky install",prepublishOnly:"pinst --disable",postpublish:"pinst --enable"},zft=["dist/*"],Nft={"@commitlint/cli":"^16.1.0","@commitlint/config-conventional":"^16.0.0","@ebay/nice-modal-react":"^1.2.1","@fortawesome/fontawesome-free":"^6.0.0","@rjsf/core":"^4.1.1","@toolz/local-storage":"^1.0.5","@types/color-convert":"^2.0.0","@types/d3-drag":"^3.0.1","@types/d3-force":"^3.0.3","@types/d3-selection":"^3.0.2","@types/d3-zoom":"^3.0.1","@types/events":"^3.0.0","@types/file-saver":"^2.0.5","@types/json-schema":"^7.0.11","@types/lodash":"^4.14.178","@types/react":"^17.0.39","@types/react-dom":"^17.0.11","@types/react-router-dom":"^5.3.3","@types/react-table":"^7.7.9","@types/react-transition-group":"^4.4.4","@types/reconnectingwebsocket":"^1.0.7","@types/ws":"^8.5.3","@typescript-eslint/eslint-plugin":"^4.33.0","@typescript-eslint/parser":"^4.33.0","@vitejs/plugin-react":"^1.3.2","ace-builds":"^1.4.14",bootstrap:"^5.1.3",classnames:"^2.2.6","color-convert":"^2.0.1","conventional-changelog-cli":"^2.2.2","d3-drag":"^3.0.0","d3-force":"^3.0.0","d3-force-reuse":"^1.0.1","d3-selection":"^3.0.0","d3-zoom":"^3.0.0","deep-diff":"^1.0.2",eslint:"^7.32.0","eslint-config-prettier":"^8.5.0","eslint-config-react":"^1.1.7","eslint-plugin-prettier":"^4.0.0","eslint-plugin-react":"^7.28.0",events:"^3.3.0","file-saver":"^2.0.5",husky:"^7.0.4",i18next:"^21.6.16","i18next-browser-languagedetector":"^6.1.3",jszip:"^3.7.1","line-reader":"^0.4.0",lodash:"^4.17.21",notyf:"^3.10.0",pinst:"^2.1.6",prettier:"^2.5.1",react:"^17.0.1","react-ace":"^9.5.0","react-app-polyfill":"^3.0.0","react-bootstrap":"^2.4.0","react-css-theme-switcher":"^0.3.0","react-dom":"^17.0.1","react-i18next":"^11.16.6","react-image":"^4.0.3","react-notifications":"^1.7.3","react-router-dom":"^5.3.0","react-table":"^7.7.0","react-transition-group":"^4.4.2","reconnecting-websocket":"^4.4.0",sass:"^1.52.0","timeago.js":"^4.0.2",typescript:"^4.5.5",unistore:"^3.5.2",vite:"^2.9.9","vite-plugin-compression":"^0.5.1","vite-plugin-html":"^3.2.0","vite-plugin-sass-dts":"^1.1.31",ws:"^8.6.0","zigbee-herdsman":"^0.14.26","zigbee-herdsman-converters":"^14.0.425"},Fft="index.js",Bft={hooks:{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS"}},Wft={type:"git",url:"git+https://github.com/nurikk/zigbee2mqtt-frontend.git"},Hft={url:"https://github.com/nurikk/zigbee2mqtt-frontend/issues"},jft={"@rjsf/bootstrap-5":"https://github.com/nurikk/fileshare/blob/main/rjsf-bootstrap-5-4.2.0.tgz?raw=true"};var Uft={private:!1,publishConfig:Oft,sideEffects:Mft,name:Rft,version:Lft,license:Pft,scripts:$ft,eslintIgnore:zft,devDependencies:Nft,main:Fft,husky:Bft,repository:Wft,bugs:Hft,dependencies:jft};const Vft=Xw(gO),hv="main",$Z=["groups","devices","device_options","ban","whitelist","map_options"],Gft=["object","array"],DB=(e,t={},r={})=>{t.required&&(t.required=t.required.filter(n=>e.includes(n)));for(const n of e)t.properties&&delete t.properties[n],delete r[n];return{schema:t,config:r}},qft=[{translationKey:"settings",url:"/settings/settings"},{translationKey:"tools",url:"/settings/tools"},{translationKey:"about",url:"/settings/about"},{translationKey:"raw",url:"/settings/bridge"},{translationKey:"translate",url:"/settings/translate"},{translationKey:"donate",url:"/settings/donate"}],Kft=[x("div",{className:"row pb-2",children:x("div",{className:"col",children:x("a",{target:"_blank",rel:"noopener noreferrer",href:"https://www.buymeacoffee.com/nurikk",children:x("img",{crossOrigin:"anonymous",src:"https://img.buymeacoffee.com/button-api/?text=Thanks for frontend&emoji=\u{1F37A}&slug=nurikk&button_colour=FFDD00&font_colour=000000&font_family=Arial&outline_colour=000000&coffee_colour=ffffff"})})})},"nurikk"),x("div",{className:"row pb-2",children:x("div",{className:"col",children:x("a",{target:"_blank",rel:"noopener noreferrer",href:"https://www.buymeacoffee.com/koenkk",children:x("img",{crossOrigin:"anonymous",src:"https://img.buymeacoffee.com/button-api/?text=Thanks for zigbee2mqtt&emoji=\u2615&slug=koenkk&button_colour=FFDD00&font_colour=000000&font_family=Arial&outline_colour=000000&coffee_colour=ffffff"})})})},"koenkk")].sort(()=>Math.random()-.5),Qft=(e,t)=>Gft.includes(t.type)&&!$Z.includes(e)||(t&&t.oneOf?t.oneOf.length>0:!1);class Zft extends le.exports.Component{constructor(){super(...arguments),this.state={keyName:hv},this.downloadBackup=()=>{const{backup:t,bridgeInfo:r}=this.props,n=b9(new Date).replace(/[\s_:]/g,"-"),a=`z2m-backup.${r.version}.${n}.zip`;Mx.exports.saveAs(`data:application/zip;base64,${t}`,a)},this.onSettingsSave=t=>{const{formData:r}=t,{updateBridgeConfig:n}=this.props,{keyName:a}=this.state;n(a===hv?r:{[a]:r})}}renderCategoriesTabs(){const{t}=this.props;return x("ul",{className:"nav nav-tabs",children:qft.map(r=>x("li",{className:"nav-item",children:x(p2,{className:"nav-link",activeClassName:"active",to:r.url,children:t(r.translationKey)})},r.url))})}render(){return de("div",{className:"tab",children:[this.renderCategoriesTabs(),x("div",{className:"tab-content h-100 p-0 p-sm-3",children:x("div",{className:"tab-pane fade show active",children:this.renderSwitcher()})})]})}renderSwitcher(){const{match:t}=this.props,{tab:r}=t.params;switch(r){case"tools":return this.renderTools();case"bridge":return this.renderBridgeInfo();case"about":return this.renderAbout();case"settings":return this.renderSettings();case"donate":return this.renderDonate();case"translate":return this.renderTranslate();default:return x(jG,{to:"/settings/settings"})}}renderTranslate(){return x("div",{className:"p-3",children:de("p",{children:["You can help with the translation at ",x("a",{target:"_blank",rel:"noopener noreferrer",href:"https://poeditor.com/join/project?hash=Az88waAhPd",children:"POEditor"})]})})}renderAbout(){var l,d,u,c,h,m,f,g;const{bridgeInfo:t,devices:r,t:n}=this.props,i=((l=t.version)==null?void 0:l.match(/^\d+\.\d+\.\d+$/))===null?t.version:x("a",{target:"_blank",rel:"noopener noreferrer",href:`https://github.com/Koenkk/zigbee2mqtt/releases/tag/${t.version}`,children:t.version}),o=t.commit?de(St,{children:["commit: ",x("a",{target:"_blank",rel:"noopener noreferrer",href:`https://github.com/Koenkk/zigbee2mqtt/commit/${t.commit}`,children:t.commit})]}):null,s=[{translationKey:"zigbee2mqtt_version",content:de(St,{children:[i," ",o]})},{translationKey:"coordinator_type",content:x(St,{children:(u=(d=t.coordinator)==null?void 0:d.type)!=null?u:n("common:unknown")})},{translationKey:"coordinator_revision",content:x(St,{children:(m=(h=(c=t.coordinator)==null?void 0:c.meta)==null?void 0:h.revision)!=null?m:n("common:unknown")})},{translationKey:"coordinator_ieee_address",content:x(St,{children:(g=(f=t.coordinator)==null?void 0:f.ieee_address)!=null?g:n("common:unknown")})},{translationKey:"frontend_version",content:Uft.version},{translationKey:"stats",content:x(xft,{devices:r})}];return x("div",{className:"p-3",children:s.map(v=>de("dl",{className:"row",children:[x("dt",{className:"col-sm-3",children:n(v.translationKey)}),x("dd",{className:"col-sm-9",children:v.content})]},v.translationKey))})}renderBridgeInfo(){const{bridgeInfo:t}=this.props;return x("div",{className:"p-3",children:x("pre",{children:JSON.stringify(t,null,4)})})}renderBackupControls(){const{backup:t,preparingBackup:r,requestBackup:n,t:a}=this.props;return r?x(yt,{className:"btn btn-primary d-block mt-2 disabled",children:x(SG,{})}):t?x(yt,{className:"btn btn-primary d-block mt-2",onClick:this.downloadBackup,children:a("download_z2m_backup")}):x(yt,{className:"btn btn-primary d-block mt-2",onClick:n,children:a("request_z2m_backup")})}renderTools(){const{exportState:t,restartBridge:r,t:n}=this.props;return de("div",{className:"p-3",children:[x(yt,{className:"btn btn-primary d-block mt-2",onClick:t,children:n("download_state")}),x(yt,{className:"btn btn-danger d-block mt-2",onClick:r,prompt:!0,children:n("restart_zigbee2mqtt")}),this.renderBackupControls()]})}getSettingsTabs(){const{bridgeInfo:{config_schema:t={properties:{}}},t:r}=this.props,n=Object.entries(t.properties).filter(([a,i])=>Qft(a,i)).map(([a,i])=>({name:a,title:r(a,{defaultValue:i.title})}));return n.unshift({name:hv,title:r("main",{defaultValue:"Main"})}),n}getSettingsInfo(){const{keyName:t}=this.state,{bridgeInfo:{config_schema:r,config:n}}=this.props;let a=DB($Z,TC(r),TC(n)),i=a.schema,o;if(t===hv){const s=this.getSettingsTabs().map(l=>l.name);a=DB(s,a.schema,a.config),i=a.schema,o=a.config}else o=a.config[t],a.schema.properties&&(i=a.schema.properties[t]);return{currentSchema:i,currentConfig:o}}renderSettingsTabs(){const{t}=this.props,r=this.getSettingsTabs(),{keyName:n}=this.state;return x("div",{className:"nav nav-pills",children:r.map(a=>x("li",{className:"nav-item",children:x("a",{className:et("nav-link",{"bg-primary active":n===a.name}),"aria-current":"page",href:"#",onClick:i=>{this.setState({keyName:a.name}),i.preventDefault()},children:t(a.name,{defaultValue:a.title})})},a.name))})}renderSettings(){const{keyName:t}=this.state,{currentSchema:r,currentConfig:n}=this.getSettingsInfo();return de("div",{className:"tab",children:[this.renderSettingsTabs(),x("div",{className:"tab-content",children:x("div",{className:"tab-pane active",children:x(Vft,{idPrefix:t,schema:r,formData:n,onSubmit:this.onSettingsSave,uiSchema:Cft[t],fields:oZ})})})]})}renderDonate(){const{t}=this.props,r=t("donation_text",{returnObjects:!0,defaultValue:[]});return de("div",{className:"container-fluid",children:[r.map(n=>x("p",{children:n},n)),Kft]})}}const Yft=m2(Zft),Xft=["bridgeInfo","missingTranslations","devices","backup","preparingBackup"],Jft=Mn(["settings","common"])($r(Xft,Br)(Yft));function zZ(e){const[t,r]=le.exports.useState(e),n=le.exports.useRef(null),a=o=>{o.key==="Escape"&&r(!1)},i=o=>{n.current&&!n.current.contains(o.target)&&r(!1)};return le.exports.useEffect(()=>(document.addEventListener("keydown",a,!0),document.addEventListener("click",i,!0),()=>{document.removeEventListener("keydown",a,!0),document.removeEventListener("click",i,!0)})),{ref:n,isComponentVisible:t,setIsComponentVisible:r}}function ept(e,t){le.exports.useEffect(()=>{const r=n=>{!e.current||e.current.contains(n.target)||t(n)};return document.addEventListener("mousedown",r),document.addEventListener("touchstart",r),()=>{document.removeEventListener("mousedown",r),document.removeEventListener("touchstart",r)}},[e,t])}function tpt(e,t){if(e==null)return{};var r={},n=Object.keys(e),a,i;for(i=0;i<n.length;i++)a=n[i],!(t.indexOf(a)>=0)&&(r[a]=e[a]);return r}function rpt(e){for(var t=document.head,r=0;r<t.childNodes.length;r++){var n,a=t.childNodes[r];if(a.nodeType===8&&(a==null||(n=a.nodeValue)==null?void 0:n.trim())===e)return a}return null}function npt(e){return typeof HTMLElement=="object"?e instanceof HTMLElement:e&&typeof e=="object"&&e!==null&&e.nodeType===1&&typeof e.nodeName=="string"}function apt(e){var t={};return e.forEach(function(r){return t[r]=r}),t}function ipt(e){for(var t=document.createElement("link"),r=0,n=Object.entries(e);r<n.length;r++){var a=n[r],i=a[0],o=a[1];if(i==="onload"){t.onload=e.onload;continue}t[i]=o}return t}var Om;(function(e){e.idle="idle",e.loading="loading",e.loaded="loaded"})(Om||(Om={}));var NZ=le.exports.createContext(void 0);function opt(e){var t=e.themeMap,r=e.insertionPoint,n=e.defaultTheme,a=e.id,i=a===void 0?"current-theme-style":a,o=e.attr,s=o===void 0?"data-theme":o,l=tpt(e,["themeMap","insertionPoint","defaultTheme","id","attr"]),d=le.exports.useState(Om.idle),u=d[0],c=d[1],h=le.exports.useState(),m=h[0],f=h[1],g=le.exports.useCallback(function(b){if(r||r===null){var S=npt(r)?r:rpt(r);if(!S)return console.warn("Insertion point '"+r+"' does not exist. Be sure to add comment on head and that it matches the insertionPoint"),document.head.appendChild(b);var w=S.parentNode;if(w)return w.insertBefore(b,S.nextSibling)}else return document.head.appendChild(b)},[r]),v=le.exports.useCallback(function(b){var S=b.theme;if(S!==m){if(t[S]){c(Om.loading);var w=ipt({type:"text/css",rel:"stylesheet",id:i+"_temp",href:t[S],onload:function(){var A=document.getElementById(i);A&&A.remove();var I=document.getElementById(i+"_temp");I&&I.setAttribute("id",i),c(Om.loaded)}});g(w),f(S)}else return console.warn("Could not find specified theme");document.body.setAttribute(s,S)}},[t,g,s,i,m]);le.exports.useEffect(function(){n&&v({theme:n})},[n]),le.exports.useEffect(function(){var b=Object.keys(t);b.map(function(S){var w="theme-prefetch-"+S;if(!document.getElementById(w)){var _=document.createElement("link");_.rel="prefetch",_.type="text/css",_.id=w,_.href=t[S],g(_)}return""})},[t,g]);var y=le.exports.useMemo(function(){return{switcher:v,status:u,currentTheme:m,themes:apt(Object.keys(t))}},[v,u,m,t]);return le.exports.createElement(NZ.Provider,Object.assign({value:y},l))}function spt(){var e=le.exports.useContext(NZ);if(!e)throw new Error("To use `useThemeSwitcher`, component must be within a ThemeSwitcherProvider");return e}const lpt=e=>{const{saveCurrentTheme:t}=e,{switcher:r,themes:n,status:a,currentTheme:i}=spt(),o=i==="dark";return a==="loading"?x("div",{children:"Loading styles..."}):x(yt,{item:o,className:"btn btn-info",onClick:l=>{const d=l?n.light:n.dark;t(d),r({theme:d})},children:o?"\u{1F311}":"\u{1F31E}"})};var upt="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABDCAYAAABqS6DaAAABg2lDQ1BJQ0MgcHJvZmlsZQAAKJF9kT1Iw0AcxV9TpSIVBzuIOASsThbEijhqFYpQIdQKrTqYXPoFTRqSFBdHwbXg4Mdi1cHFWVcHV0EQ/ABxdHJSdJES/5cUWsR4cNyPd/ced+8AoVFhmtU1AWi6baaTCTGbWxVDrxAwiAhGEJeZZcxJUgq+4+seAb7exXiW/7k/R5+atxgQEIlnmWHaxBvE05u2wXmfOMJKskp8Tjxu0gWJH7muePzGueiywDMjZiY9TxwhFosdrHQwK5ka8RRxVNV0yheyHquctzhrlRpr3ZO/MJzXV5a5TnMYSSxiCRJEKKihjApsxGjVSbGQpv2Ej3/I9UvkUshVBiPHAqrQILt+8D/43a1ViE96SeEE0P3iOB+jQGgXaNYd5/vYcZonQPAZuNLb/moDmPkkvd7WokdA/zZwcd3WlD3gcgcYfDJkU3alIE2hUADez+ibcsDALdC75vXW2sfpA5ChrlI3wMEhMFak7HWfd/d09vbvmVZ/P7jXcsNND5Q3AAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAA3XAAAN1wFCKJt4AAAAB3RJTUUH5gIYFCQtTLzIUAAAAPpJREFUeNrt2s0JwkAUReGMBkXBjUEEKxBLsAlrsAibsh9FlIA7124E/xibSOBhvlPCPXC5b5j0rseHAmEoU5FXYohDTwSEgBBCQMifrKz7fiiFQKTzdJHFoLJACCEghBA0PXtTXwihZu+nHpm9KguEEAJCCAEh/z57b9vK7I0kxPO7ygIhhIAQQtAC5WD5lUKk2ev5XWWBEEJACCEgpAOz97qem72RDsPXyccslQVCCAEhhKD5lTXZPKUQ6Q7x/K6yQAghIIQQENKB2XuZ+Wwd6jDMvmWpLBBCCAghBC2srGr3kEKkO8Tzu8oCIYSAEELQxuzNRTqKIQ4/168l3OOMpgUAAAAASUVORK5CYII=",dpt="assets/uk.9b7898ef.png",cpt="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABDBAMAAACYZb3pAAAAHlBMVEXtKTn3qa/84OK2q80pQqIAI5Wrt9ztKTn5t7z///9ckyEgAAAABXRSTlPU7Pj6/i021ewAAAA8SURBVEjHY3BBA85KaECAAR2EooGwmWigvRwNjGoZ1TKqZVTLqJZRLaNaRrWMahnVMqplVMuQ0UJ6LwkAaPHwH750UDMAAAAASUVORK5CYII=",hpt="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABDCAMAAABdlVDoAAADAFBMVEUAAAAAADMAAGYAAJkAAMwAAP8AMwAAMzMAM2YAM5kAM8wAM/8AZgAAZjMAZmYAZpkAZswAZv8AmQAAmTMAmWYAmZkAmcwAmf8AzAAAzDMAzGYAzJkAzMwAzP8A/wAA/zMA/2YA/5kA/8wA//8zAAAzADMzAGYzAJkzAMwzAP8zMwAzMzMzM2YzM5kzM8wzM/8zZgAzZjMzZmYzZpkzZswzZv8zmQAzmTMzmWYzmZkzmcwzmf8zzAAzzDMzzGYzzJkzzMwzzP8z/wAz/zMz/2Yz/5kz/8wz//9mAABmADNmAGZmAJlmAMxmAP9mMwBmMzNmM2ZmM5lmM8xmM/9mZgBmZjNmZmZmZplmZsxmZv9mmQBmmTNmmWZmmZlmmcxmmf9mzABmzDNmzGZmzJlmzMxmzP9m/wBm/zNm/2Zm/5lm/8xm//+ZAACZADOZAGaZAJmZAMyZAP+ZMwCZMzOZM2aZM5mZM8yZM/+ZZgCZZjOZZmaZZpmZZsyZZv+ZmQCZmTOZmWaZmZmZmcyZmf+ZzACZzDOZzGaZzJmZzMyZzP+Z/wCZ/zOZ/2aZ/5mZ/8yZ///MAADMADPMAGbMAJnMAMzMAP/MMwDMMzPMM2bMM5nMM8zMM//MZgDMZjPMZmbMZpnMZszMZv/MmQDMmTPMmWbMmZnMmczMmf/MzADMzDPMzGbMzJnMzMzMzP/M/wDM/zPM/2bM/5nM/8zM////AAD/ADP/AGb/AJn/AMz/AP//MwD/MzP/M2b/M5n/M8z/M///ZgD/ZjP/Zmb/Zpn/Zsz/Zv//mQD/mTP/mWb/mZn/mcz/mf//zAD/zDP/zGb/zJn/zMz/zP///wD//zP//2b//5n//8z///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABlenwdAAABAHRSTlP///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG8mZagAAAAlwSFlzAAAOxAAADsQBlSsOGwAAADdJREFUWIXtzQENAAAIAyD7FzCadWzxuQkFqAkoiUQikUgkEolEIrmSdIBEIpFIJBKJRCKRvEoWJNiqA2rbaEoAAAAASUVORK5CYII=",mpt="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAA8AgMAAADtUfddAAAACVBMVEUAAADdAAD/zgDGIigcAAAAHUlEQVQ4y2NgGAWjAAhCcYFRmRElswoXGJUZSTIAQ83yHB4q//IAAAAASUVORK5CYII=",fpt="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABDBAMAAACYZb3pAAAAFVBMVEXVKx7///8AOaZUNHFkh8nVKx7///90yNRsAAAAAnRSTlPU1BJ52+4AAAA3SURBVEjH7csxAQAgEMSws4AFLGABC1jAv4TX0PmaPVlYPmaxWErLxbIxi8VSWg6Wh1ksltLCDf2spTBQVKLHAAAAAElFTkSuQmCC",ppt="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFYAAAA8CAIAAABzW9qcAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAABmJLR0QA/wD/AP+gvaeTAAAAB3RJTUUH5QYFFi0G4yEFGwAADslJREFUaN7tm3lw3dV1x7/n3vv76S3Se9olS5asxZY3eZMrKEuoiXHSOGwtUwqkC00Ylk6h06bLH4SmZZhOZ9ImM2mYGJhC0nbSEDwlBgMZTIILrQ208oIXyciWrN3Sk/T09PS23+937+kfT7JlW7a8SFan8ZH+eH88/e6933t+53POuVeEl27GL7eJhZ7Awtt1Ca5LcF2ChZdAEkviX1IJJDEB2rW0axGwgEKoaz8kAYrY9SRAT9b2EPDdk4s12FLa4wVQ4lpLIIk1k+tYy8Px76/suL0kBsK9paNPtNUdG8uD5WW/cE2nhLurrs1I2c3XrgLh6aXd29cdq8vLuC4ZTfV56T+sPGUEfxANsaeUNIxrp8I1kkARGxbGVTcXj+3ccPTBqmEycDUpYkHwNCnC58ti9xWPHEwGuuJBCFaCzTURYt4lEARJ7LmW3/K+vbLjhdUnynyu4xIRJJ35DgOupoqA+7XKoeKczO5o2HFtJTVo3qPD/EpgEWstjFZ3Lxr6WdPRLWUxo6ENKWICmAEQQACyimhDAG4snvj98qGOjN0aCzHYmmd3mC8JJDERaccqDWRebmx/bnl3SGnHIwFiJmOICEKAJEiAAGbSRhCIAFdTga0fqBxeFZz4MBYaT+cIZQTxPAWIuZeAAIvY8yQbemRJ/84NrU2FCc8lbYiYlGIRZOlnYqTTMp600xlFgOUzMpeFzaRhtGCGMbQmP/lYxeCwli3REBthzU+YpLktlieR5qpJ5pXG4ME1BEOWbRDARMR6d1/Nrn21B0+U9o3kJtIWgKDPrSiaWF83tKXp5JamzrxSF0m4joBgSzAU3h8KP9Fadyw2L9ScMwmyGZ7nKQjzdF3Ps/XdQsF1iQAwVIhHBnx/v/2GV95dM9hbCENQBkojG+yY4El4AoJLK6N/8IVDf/5bHxctSnvjBAIDlsXGwzdPVD/XsRhaKsvTc5dEzY0EitgzAp68qTi6beWJtQVJuPCYCJCCEcAPdjT+ybbPj/UXIOBI2yUCMzGDp+QjAhEzQzsKyZz8irHvPPbzh+89jCS0IQYUMSwcigYeb6vfEymA0koYby7c4WpjwTnMe3Ea8wCSkiHxtb/70l8/vyVthJWX4WyCwMRMPIkD4myMZGImksYKOslEzo531/SMBO659bggMBNovqh5VRJMZ947ZzMPTFIwJO56+r5XdzRZhQkQayMwezwjY0hIowJOy3/XtXQVPXRHqwCYSRLPBzWvUILpzPunxvbnlneHlXY8kgRBAGCYRBAP/+3W195osovjrpaXFcwZZJjs3HTroaqT0cC9m9u1Q4IgCHNOzcuW4HzmbSxMeC4xQ01NwNPCKuCX/339sy9s9pUkPCOlECQghBCCBCH7M6tpI6xgZt++msrSaHPToJcSQjAASTAGxtCaguSjFYMjV0fNywuHF2KemvY+GiZpc3dfzpKvfBUTfggPkDAaQgIGYEgBJSBJWEoQMdgYcDZVpGzKeMYEsfFkbm76+CsvlhUntUti2lge09VT81K9YLLO886t8whnUv0pCYTw80tv3TMwsWXjjbkbN9Y2rCu85calS1aGV6+qXFZfESoM5OTYxFZqbMIkMuwyYMgSSgrj6kk8TBmDLFunh/NcaX791zr1lCNMCQQGvKurNS/JC2Zknstnbf7pBzKzUOVvez8MFZZ1JDpLgvlSyLAdbBvruq1swwtHdnx95e9YGd+PDv5Hnbv0k8Pd733S1nU80d0bRSoRripMO57jaJ7mDETMnswPJ0+88mJhftp4dD4EPCbrNDVb6/cMXwY1Z/GC08zzncc8OfPDFYyh/AeHxf1H29v9oyXRLhw5MjJykvs6UuOnzOhIpjFvaZTHBuze+9feWtXM/vXjD9y1rmqVr6G8/qam6v2HB5zROPktSWJKCFKWTo7krVk+sLYx4qXPcoTp7jCNms7uaOgSqXkxL7CIXS1g5N2Lhr63oqMq1zEuDNNF+nzaCBU0T7/0lRd23lgaTncPTCTiKYDABkKCTK4/SLYuKghUVYR/ZWVVxdKcLzSv7PJ12LkcpGCk2+nYl/m31w+17BuAlxR5fgDGsJLGiwV+956Wf/6bt9yYUNJccAJMglhY6J2w/6itbsdAKYS2pHEv7A4ze4GYjXkXVJSYGE9+d0P3EWfzlqWDo/F4IkU+QRZBApIcnXEy3thoortj+KO97bve6/yXHYc696dzJ4piOr52+SKvNvLAneuKaqWVDne2R9i4ymcxM2tBln78iwfERTf1ItSkC1BzBgkEwXiStXikpn/n+taNRecy70LGDKEQi9vf2n5LAsEjbb3xpEtKMANT0yYhSJBQUuQoGcyBLRzH6e4Y+vmuox/vjfUdz5An8hfJ/GXe7ZurK5eE4gP2qc4B+BSENODHvnTA59NspkfMmTb2fGqOhplJSD5fv3MlEIAxtDqUeHvj0cdrBnOIXY8UMV1SfCWSiI77vr292XGFsMS5qjNgOPtyMsMYZgYJIX0W2zKYa53oHX3nteNdre6GkoZTud0P33Hz4o1UHCjbf2CInbTttx7duj8v6LKhWedDhGxLLiDNXeXRO4tH98Rzh9J2NmpMt3nsIJ8WPDtddnVJaWhNw6JffNBGOdZkqGNmZs1ERMMjCRBESO7Ze2zPns823b5i0RMD8YrRp/5yXdVa9YPvdHX0fyYubSsuy871AgaEwFAq56WeRX0Za1P+eMBntCYAlzI6CbCmbW9tSCRySJrJisAYEIFExtWnhsddc2YbbFtJKbRhAoiIBDFD5ljkU53HBl97s605vDZePNiwOvwbd6wfHe6/r3mX329mfREAGIYBWTaPO/LJ1rrHDzdEMrZQfH4gnSEWMCCkIcktI/kvD5ZU287a/KQguIbkLLEQYPhy9L++t2owEla2MYYBVJTnTyQdIjKaXUdnIyoRYSLd2Li4pDA42BmBbdGUizKDGdJvMbB71+FTJ9SWpuU94f4/3Vpbol9hnn39LpMlIRR+0le0df+qDyKFwtYkjJmJCzMfqBkmw7BsdyhtP7B/1T0tK3pStm0zAxfPPT0tEMD6+ggc4Y1N3LKx5o5bGvr7o2yYM+5koTOlV+OGmoNH+w9+2vO5TauKC4Psmelr09oAQCjnk4+O3/XgjwJty8p9g1rzxV/ebCvFtrk3Zd/bsuK3968eTNuW7RqGucDML5YaGZAQkFK3xkLf7y8NC/2rBRNCwjXZUmdm7aSfx0blzk9vaFxdcKBtcHB4wkk54YJAeVl4LJo47UhsGES5wZxEykk7ejyR0cacU0oTYUllYZo54zrbf3r8i2t/XF3ZpV3MyEXO5oiKifC9k4vuPrDycCykLBdilm2b5VjVMDwmZblpLZ86vOzmj9d8GgvYNgtgxtxTCkYKX76ho6okOpESXsqJT6QhhK1kOM8H8PR4NjQyMTyWhOGhyHgm406P8tl3SghxW3OtMaaxoaasbLQ6/7+gIWiGvMhjEoBt86FY4JaP1zx5eFlKS2W5HpOZraNySSfLHhMRK9vdO5q/bu+Gb7RVG8Cy+PxTUCJ2M6K02rmz+ZPO/VE7IEgIACWFwWOdEbhapyeXKqRAyrlhTdWtN9bD1UKKqWKRALBnhCSdyLzxi6O3Ni0+/OHAQ5s+razXbuZcJkxuvsUGeKateu3e9XtG8pXtEvElttUuo19gQFIaBj6MFL4aKVwdSNWH0sTwmM5KGQnCYGN95IXda1NJWwjDJMYTmUwys37dksLCYGQgRpYEGERpVw+PJZMZl6RQSoLBrgeigvxgaiJdVBpat6J890c9eaWZV5/+aa7l4uxY6DEpAWnh/Uh46/5Vr/eXQRopzbwUy1OSEwGW0kPpnB/2lfWlrU0F44Gcs6hJBM8VoTKn2J98871GFXAMk9YGnikoDDqujkYTpCQzSFIynkkmHUjy++0VdaWnTgw2rKoEUW4gJzfPX1QQ7OqLJAbk83/2s9tu6nUTQk4VSGcx72jdHx+tH3Fsy/IYdLlNtCtpnGXdgQRaRvJfPjUDNYVgnabmdYMnI8F9/1Nr56a1EaRkZCAWjSbO5EUASUFSAHBdPTgSX9pQHhlNJFLO8trSjt6R4ehY/KT18IMtzz72n16clJz8qxmYZ2lxpQ3lK+wdMogBS+m4q7YPlO2P+2/NHy/0azYwPNkaI417P9fe0lXUeqjKCmaYAaVIyem9gMkcgAgEIaihpvh417D2TG7QGo3F3UjuXV8+8uo33oCLbJTQTERQNnqT9u8dWvZce21CC8vSerIffSV2VR3k6dTc1l8aOouanNXioTtae2K+lpZaVsaytJk8Sp1cv89nKSU9V4OIGb0nh8kWtsW5wfBwD3/1/o9+/MybYGhD2fA2xbzyS2fe/EqAbOEDUlI7Rr5zqvjdaKg5b6Ii1yUDA2ImAdyz+Xhtxcjuw4uTQyFIlkpLwZQ9Q8gWS8RSQAqWOVI7So/7He5/8S/e/uaje+BMHqVIgrRxaCzwmwdXvHhysUdQc3QxZ26OVQ2ICErp7kRgW1+5p2lTYUxa0IaYyWSoad3Qo5sPCr/bfio/PhIyKZu1BJPRMJqgJWcsk7SNo0rLY0/e//H2Z3be1NzvxYlBWQAbg79qr37wUENPIqBsLyv91c8cC3Ksumtfza59NQdOlP1/O1ad9sTTF8rwSPXAPzScDPm05xAYzGRZBn5AAGmkkzLlKAB+2/MFNHyAAVJwXUHEICiL4xn59c9qXupeBGCerqTNvQRZk8QMMo4qDab+cXnn/ZXDMHA0KcAwMUMKFoIns1MDY0hn710Qe4AtGQI/6St66ljdYMIvbI8wXzfR5kuCrE1vwD6/omPx2Q1YPkOHya7UFTQ/r97m967RRamZPVCf/D27zptL5i2wBDiPmrumUfN0ceExqXlj3sJLkLXT1OyaOENNZcHTZEDzyrz/KxKcFuLcWjMvLRXej4S3Hlj1et+V1HlXb/MbDi8w5LRr2DW92WvYWLhr2AsgQdYksWFiTwEg5Ylrfvv6tC3AZfysZRcsLTf7eaHWv5ASTBdiYe36/yZdl+C6BNclAID/BUwSpfcJY6YzAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDIxLTA2LTA1VDIyOjQ0OjU1KzAwOjAw3ulX6gAAACV0RVh0ZGF0ZTptb2RpZnkAMjAyMS0wNi0wNVQyMjo0NDo1NSswMDowMK+071YAAAAASUVORK5CYII=",gpt="assets/es.2fe6a1a7.png",vpt="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABDBAMAAACYZb3pAAAAD1BMVEUAW7rawxsAW7t/mF7/1QCzxg4pAAAAAnRSTlPU+CChtw0AAAAxSURBVEjH7csxEQAgDASwt4AFLNQC/jUhofd7sifp3ZqiKIqi7GVqeTVFURRF2cupfb6QiufYvy3hAAAAAElFTkSuQmCC",ypt="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGUAAABDCAYAAACFicvkAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAToSURBVHhe7ZpdaBxVFMf/dz73I27bpIk2iQ+NBkUf2mKrVcQvEATxQaVIKa0VBBF8EAUrPoiChSL1xWd9EhH8eNdARUQfFBQriIogaikaTWI22ezs7nx57uyNyRo32dmN7u3O+ZEwO3M3O5P7m3vuOXdWLExOx2C0wlBbRiNYioZoI0WMheoV0z8pAjCvrcOYCGBM+iienlUNTP+kUHphXBlg6M2Lya8ocb6xSs9SRDECrO46NPgqB+HGMKd8mIc8FM/OwphqqNbs0rMU5/5lmHt9tZcCOnPu5CLEZRHimoHgXBH1N3YiLpvqDdmlNylODPeRRZjX19WBzhF2jMZMEYsH9qJ2dhj+xwUE513E8yylJynWwVoySuzbqqlDWFwXCM/nAF+g/l4Jwed51cJ0L4WyJ/vuSiLDur1Kc0v3E3U8ZyL83lF7TeRcZV6j5hc6F2juyQpdSxGlCNaBWtJhxljQHC3bSOwZKL48S2LqyFGItA96qmXw6VqKcQVlTNNrmZJzZKmXcdeKFH15ALE7ROn9C3BOlBH+2DqSBpn2C5IyPN25QpM4dbzY+BaLCj/7PgpfinjJaGZPVRlr/kGF2t4uIaZtJzgPLCP3xALMq+jc9CfRBRvLRycQ/Wyrdww2m64Si1yM/Kk5OA8tQQxRPbKef+l7WRC2QPvhdy68l3bD/6Swsb0d9NliV4j80/Owbq0mCUH0hwXvzEiSGAw6Wy/dU+pq3+KhcIYKu8lAHeyAgLKqt0qovTqM6DdLHUyHfQ+NRLo6f2YoKTJjWQ6FLOVvjPEAhdO/w6ZMS4pqCzVJCVKGlNJLJ8pkAvTTadgbFFI95JIhTFbw+efmNoYzRfBlDtVnx5Kw1XG4YlpIdQvKOzb4jIq8Rvu7P6ZRwkJ6I3VcsA55ySTcDvOGGow9KeYeZgPppNAAcR5cTrYJdYHgizyii5SqqpEhdoQw91NRuQ0YY/RZlHpnjVRSzKsbMPc1O1zWJdXnR1E5No7KiXH454rJcZlG2zdR9d3lcv565MOv3JMLazdBRjBPlUZeUK+3xD1ehn2zh/AbFyuPKxE0v8iVXX+GXguRLIuIkRCNdynz2mTu2QzrRg8uVfEyqXDuahawUnT4rZuJTKzj/1AuEEohtdd3ovLwBIKvWydzuVblvTKMymN7kgLPvK77sCOlhz84ySq0vEKTRkzttV2Ifu2u3rnU6Dgllne/OdWglJeyry2+4yDXrcz9dfgfNENaN4jREDs++gnRrIV4xUDl+DjixWw8a0lVp6RCRq4ePtm5l6p5I4b/aSFZUZAjM/qF177+Xxy6jPVzkIxUckTKq1s9rMeV/uf0d9ZUZ5fzVe5kubmziix1ViXIbUaESPonhc7sPvon3GNluCTEOry9D8kuZfonJaLB8GERuafmkX9mLvnyhXt0Kfl2S9bpb/gqRBAqoRIFKjrvWEmWcbJO/yZ6qvhlMSond+uwh2jOhPfiqGrMNv3Nvkw6dUSF5nQD1r4a6u+UVEO20SMlppRXPtCKy/2NprqgRy/QbcFC1uCe0BCWoiEsRUNYioawFA1hKRrCUjSEpWgIS9EQlqIhLEVDWIqGsBQNYSkawlI0hKVoCEvREJaiISxFQ1iKhrAUDWEpGsJSNISlaAhL0RCWoiEsRUNYioawFA1hKRrCUjSEpWgH8Bcb8oc81KIm3gAAAABJRU5ErkJggjyqDpYsyIsHLzzjq5Q8c1ShZGSJEdEtGJR8ppPG5GL3oeD5mhB4VH9WqKMtpON7XIa8xGdsbTflvmymwoGwmgbdAUvHXw+XoOWssObJ8goz36xqqP9Z89pL1GoI1ayr32BNah/InlVky2lvD/xWt8EKrT9L0beGyLolo5qtsd0DokD3Pgm+q9tgZT9rJevmDDV/fZxafjlausUrjWq8VtTvK5E3SvcFivpJLtlIsoXQ9Gk/BR9IqPsgwT91/S8u39BWnfGdI7atZRmy70mQfQeu9fJT3bYbZLHetPcEGQapd0+Wb/Yhm7Xpbe3TWwEAFvU5YpkuWbemKflEF40uW0SJ9QvUlCjvcEaoakPDNEjlO8g4h4KU3aP/LmqYvoY5jcq8M5cKuK6qZjRMsOS7JcsFbagNDRMsqC0IFrBAsIAFggUsECxggWABCwQLWCBYwALBAhYIFrBAsIAFggUsECxggWABCwQLWCBYwALBAhYIFrBAsIAFggUsECxggWABCwQLWCBYwALBAhYIFrBAsIAFggUsECxggWABCwQLWCBYwALBAhYIFrBAsIAFggUsECxggWABCwQLWCBYwALBAhYIFrBAsIAFggUsECxggWABCwQLWCBYwALBAgZE/wHMEhfWcYGEPAAAAABJRU5ErkJggg==",_pt="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAA1CAYAAAC3ME4GAAABcWlDQ1BpY2MAACiRdZE9S8NQFIbftkqrtnTQQcQhQxWHFoqCOGoduhQptYJVl+Q2aYUkDTcpUlwFF4eCg+ji1+A/0FVwVRAERRBx8Q/4tUiJ5zaFFmlPuDkP7z3v4d5zAX9GZ4bdlwQM0+G5dEpaLaxJwXeEMAAfIkjIzLYWstkMesbPI1VSPCREr951XWOoqNoM8IWIZ5nFHeJ54syWYwneIx5hZblIfEIc53RA4luhKx6/CS55/CWY53OLgF/0lEodrHQwK3ODeIo4ZuhV1jqPuElYNVeWKY/RGoeNHNJIQYKCKjahw0GCskkz6+5LNn1LqJCH0d9CDZwcJZTJGye1Sl1VyhrpKn06amLu/+dpazPTXvdwCuh/dd3PCSC4DzTqrvt76rqNMyDwAlybbX+F5jT3TXq9rcWOgegOcHnT1pQD4GoXGH22ZC43pQAtv6YBHxdApAAM3wOD696sWvs4fwLy2/REd8DhETBJ9dGNP69cZ+Ub+qnAAAAACXBIWXMAAA9hAAAPYQGoP6dpAAABBklEQVR4Ae3VQY1CMQAG4fc2Jbsa8IAObqjAxzriAAZwgRUu5EFQ8SWdKpjO9E/X2/6wLR3GwA9DEsjXQEGwh1CQgmAGMJwWUhDMAIbTQgqCGcBwWkhBMAMYTgspCGYAw2khBcEMYDgtBAsyXs8nhjQ3ztifjnMbwG6/bp+DMU2NM7blNbUA7fJ96liRghQEM4DhtJCCYAYwnBZSEMwAhtNCCoIZwHBaSEEwAxhOCykIZgDDaSFYkLEuNZGajPP/ReKZnmVc74/pJUgCxt/vTuKZnqUPBHsCBSkIZgDDaSEFwQxgOC2kIJgBDKeFFAQzgOG0kIJgBjCcFlIQzACG00IKghnAcN7ZXA/1YVkO6AAAAABJRU5ErkJggg==",bpt="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAEAEAYAAAAM4nQlAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAADYUlEQVR42u3WoQ2DUBRA0deqSgboAnWYJpWI9s+BxTMJC3SULtAEgaioYwYkyUehsV+cM8JVNwIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACOnSKGIaWcpaBk78/z0c8RbXO7v356UKZl+l7HS8R/bauu1oOynSUAAAMAABgAAMAAAAAGAAAwAACAAQAADAAAYAAAAAMAABgAAMAAAAAGAAAwAACAAQAADAAAYAAAAAMAAAYAADAAAIABAAAMAABgAAAAAwAAGAAAwAAAAAYAADAAAIABAAAMAABgAAAAAwAAGAAAwAAAAAYAAAwAAGAAAAADAAAYAADAAAAABgAAMAAAgAEAAAwAAGAAAAADAAAYAADAAAAABgAAMAAAgAEAAAwAABgAAMAAAAAGAAAwAACAAQAADAAAYAAAAAMAABgAAMAAAAAGAAAwAACAAQAADAAAYAAAAAMAABgAADAAAIABAAAMAABgAAAAAwAAGAAAwAAAAAYAADAAAIABAAAMAABgAAAAAwAAGAAAwAAAAAYAADAAAGAAJAAAAwAAGAAAwAAAAAYAADAAAIABAAAMAABgAAAAAwAAGAAAwAAAAAYAADAAAIABAAAMAABgAAAAAwAABgAAMAAAgAEAAAwAAGAAAAADAAAYAADAAAAABgAAMAAAgAEAAAwAAGAAAAADAAAYAADAAAAABgAADAAAYAAAAAMAABgAAMAAAAAGAAAwAACAAQAADAAAYAAAAAMAABgAAMAAAAAGAAAwAACAAQAADAAAGAAAwAAAAAYAADAAAIABAAAMAABgAAAAAwAAGAAAwAAAAAYAADAAAIABAAAMAABgAAAAAwAAGAAAMAAAgAEAAAwAAGAAAAADAAAYAADAAAAABgAAMAAAgAEAAAwAAGAAAAADAAAYAADAAAAABgAAMAAAYAAkAAADAAAYAADAAAAABgAAMAAAgAEAAAwAAGAAAAADAAAYAADAAAAABgAAMAAAgAEAAAwAAGAAAAADAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdhtsThDegrKepAAAAABJRU5ErkJggg==",wpt="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAP8AAACqCAMAAABVlWm8AAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAACZFBMVEUAAJV+AEv+AAAKCplycsQHB5jAwOVAQLALC5r4+PyEhMwBAZVKSrT////JyelnZ8COjtD8/P4SEpwWFp5ZWbrBweVtbcLT0+1SUrdBQbB9fcn+/v8XF5+WltP19fs5Oa1cXLvb2/C3t+EDA5bu7vihodghIaNzc8Wvr97j4/NlZb8vL6lra8EqKqapqdvp6fYnJ6Vvb8Ps7PcCApalpdrf3/Kzs98yMqphYb2dndYEBJeyst9+fsl3d8aJic5jY74dHaHr6/ePj9EYGJ9RUbfX1+4uLqgVFZ79/f4aGqBERLFiYr5pacFmZr9VVbgxMakGBpczM6q1teCTk9I0NKsMDJrS0uzd3fGZmdUNDZrPz+spKaaKis7a2vBaWrpOTrXo6PVPT7YiIqOqqtz7+/3MzOqAgMqIiM5gYL2wsN7l5fTAwOQPD5tNTbUTE515ecf5+f3Ly+klJaS7u+PU1O0rK6cJCZnx8fn29vtubsO9veRJSbMREZzg4PK0tOCmptr09Po6Oq3Z2e+bm9WQkNHv7/gbG6CPj9CZmdQODps7O64ICJje3vEmJqWrq9wwMKkUFJ3y8vrm5vVkZL91dcYFBZdGRrLNzeqLi8+trd1oaMAkJKT39/y6uuI9Pa4tLaisrNyamtUcHKEQEJsoKKYwMKgJCZjc3PDz8/p/f8o8PK6NjdCcnNaRkdGCgsu2tuGkpNlxccS8vONISLPh4fMsLKfw8PlDQ7EEBJYjI6Ti4vPCwuWjo9mHh81YWLrt7fhCQrBfX7w2Nqu4uOGRkdIZGaABAZYCApVTU7fCwuaXl9RkZL5rcd7JAAAAAWJLR0QN9rRh9QAAAAd0SU1FB+QJChEeD3q2migAAASMSURBVHja7dvnWxRXFAfgExEF12NbFeMqFsAYwcZqNJINKuICukRMgqBoVBBLNBpCiGn23rvYe4klJvae2DX5p5wZZnaHdWd89oOPz577u1/Yu8uX90y55957LtH7bR+0eL+N4Icffvjhhx9++OGPqyUp7m+ZrLa/VWul/SmpbdTye5p323I719/F+ZPaN+t24I6d7H1vZ+n3f5eu9l4aczc7P+1D6f7uPlsAeviYe9r56cnS/b3YFoDezNzHxue+4t//GZm2AGRpfu4X4fNH8se//hwJwMe6f0CEz9ny/TkcDsBAnc+DIvzBHvn+IRwOwFDDn+u3+DxMhfxveDgAnxh+HmHxeaQK/k/ZDMCovJ6fBQKfD8q3+DxaBX9ngzpmbEH4YfePa2V8Vyg0/x8ftPeCRZp+qD7xLy6ZMDFU+sUk7WPZZM3/ZbOB8quvpfiD5VMqSivD3amcpSX906qmN930nD55hpb2fTOTZ4X/ZXaoOrernPs/WM5cM6e2zG/05s7TRoH5Pra1BTkZVPDtQuPnykUVU9ieJQp4/vUA6ENddUjL9r4j/+IlHNW+ryPtJhhVFvihJjJAynn/eestaOGP1DCf32w/lVBG1VKz48uR9v437wDmnyn5F47VlvxKv/3OHM/VT6Txz7wDlnloOcduK7JpZVFcVz+hxn8jAEv7UYid2qokWh0fP6HyH/0RWEM91jr6uQ2tS43j5k+0/M9b33E0rXfmc7qXVsdz9RMt//VuoI0rXPxcS5tyJOf/m2mkG5+3yJ7/bF1I21z9PI22p8j07yitGL7TQ7vc/btpT82cuSV7Zfkb9lVN1fP9/bTRnc+NNEv/k3ng4CEhfr+W0h82dUfo0Fv8WXTU+rirOlSc8H5/6XSbLo+OvcV/nMpsvZoTJ3H98fxLev8vcPfni3z/h8f/U1Tt7j9NZ1IE539naZ4r/5zs/M97girPu/n/oAuC839j/nfRbf4XpEty53/6Ls9l8mY6+/+kk3Ln/03rP7NptyO/sMHYHJO5/mOu/13x0F8O/PPH6IJP6vqftcXJf1Py1djrv9eo03Wp67+29f8btPlADP7NW3S7Uer6v3n1rf0fz57UaH67O4L3f3S+bf8vn6jueJFdf7e9n4rvmft/JZeF7f9506L2f+/vIBryoNB67+U9nEQ0brDY/d839///aaln+QX/PpoY6patT3YePxG8/x+r/iP36bPn1jcvXr4SXf/hVP+z7L/aQKBx2//hzVEl6n9i1X+ZAVCh/it2/V9TAFSo/3Oo/zQCoEL9p1P9rxEA+fW/zvXfegDk13+71P9rAZBf/+92/iNYLv/8h+v5n2C59PM/SaFm3ejzX0Hp579UP/8X1ZQ7/xndFD//q/z5b9XP/xP88MMPP/zwww8//Inlb6F2gx9++OGHH3744Ycffvjhhx9++OGHH3744Ycffvjhhx9++OGHH3744Ycffvjhhx9++OGHH3744Ycffvjhhx9++OGHH3744Ycffvjhhx9++OGHH3744Ycffvjhhx9++OGHH3744YcffvjfXXsNJsvwbVC9pnIAAAAldEVYdGRhdGU6Y3JlYXRlADIwMjAtMDktMTBUMTc6MzA6MTUrMDA6MDCydZ56AAAAJXRFWHRkYXRlOm1vZGlmeQAyMDIwLTA5LTEwVDE3OjMwOjE1KzAwOjAwwygmxgAAAABJRU5ErkJggg==",Spt="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABDCAYAAABqS6DaAAAJCElEQVR42u2dCUwUZxTHV6KmTQAhSE0LojaatMqpeLTRGi3eGGPQStp6EC9UUMEzmtTaS6IEGmwNKCgoaMQqFRFF8UitRhCVBKOVWhFFKKgFFQQ0+rr/0W86DLvLLDuzzKTzki/R5x4z89/3m/d933ujgYiu6UM9w0C6qcp0QXRBdNMF0QXRTbWCFBQUUHNzs+YvFM4B56JpQW7fvk2Ojo7k4+NDRUVFmhWjsLCQvL29ydnZmcrLy7UpyKtXr2j06NFkMBi4ERERwfmeP3+uqaiAhYeH8+cxZswYbQqybds2/iT69OlDT58+pcTERPL19dVEtLCoSE5OpidPnlCvXr3489m+fbu2BCkrKyMnJyfu4B0cHOj06dN0584dLuTh69q1K/catdqtW7eoS5cu3LF269aN7t69SydOnKBOnTpxPiXRZVAaVYsXL+b8QUFBvA8IgEVGRtLly5dVI8SlS5do2bJl3J/nzZvHH+/48eM534IFC3jf2LFjtSGIOVQxX+/evTkfwh5/xy8xPj6+w8WIjY2lzp07c8e0c+dOevz4MXl5efHHzdAl9O3Zs0fdgohRderUqRaogi8/P58Ld+YDBoCDjrbc3FweSS4uLlRRUUHHjx/nfUDXvXv3KC8vj/PNmDGDHj58SE1NTeoURIyqRYsWmUUVwp355s+frxpkhYWF8cc1YcIEs+gCZnG++/bto2nTpqlTECGqGJaSkpLMogoD4Q80qMXq6urI09OTPz5T6ILvxYsXLe4ncmZdBiVQBSzZC1UvG5upseweNZVXcn+WG13AlCV0yZ11GeRGFcMSJlCWfO1ClfG7Gq6VUsWWZCr5dDYV9hxJFxz9W4xCjxFUEjSHe01DSSn3HlvQFRMTYxZdQp9cWZdBblQhEzGFKqHPalQZL+qjnDNUPHR6KwHaGnjPP7lnrRIG6PL396eDBw9yPzjMS8ToSklJ4Xw9e/aUFV0GuVCF8BVjSQ5U1RffoJJRM60WQjxKRs+i+qvXJX8vlniqqqpo6tSpFtEl9MmBLpsEQR7OZrQLFy6UHVUP9ufSxe5DbBaDDXzWg8xjkr8fE1dLmGKZ2Ny5c/kViL1793Yssq5cuULBwcHyosqIifINCbIJIR7lG3+ShDBx1sUwJUYXXodrUFxcrJ60t76+ntzc3MxmWtagqvLnDMXEYKNyq7RZtjDrMoUpd3d3evbsmTpn6ogW7H0wVAknhVJRVZt/gS44D1RcEHxH3emLVmddQnT5+fnJEhWKrmVhD6GhoaHF+pVUVD1/WEsFnp8oLwZLkY1p84tHdVajC+taIIISezuK7YdgeQHRYg2qbq2Ls5sYbNxZH28VuhAVV69e1dZ+iDBasrKypKXQJX/R8XeG210QZF7N96slHeOhQ4cU3/FUTdVJTFiM3cXgs66vt6pmPU01goQELuowQTCb1wURWGnRTfpwgPyC5DkPpt1uIyjDbTjlOwdafC0WJ3VB3ljCuh3kEhBN52UQ4awxnY30mkp9vZeQIXAtPzoZh/eAcFrvEUznnAJava8m44guCLPVczZzFy21u20pb5rx/e/5LW0hhKnRz3sxHXL9qMV7K2JTdEGYzZqygbtQU/p+0W4xUtxH0lsDV7UpBhuuxoj8xfVj/v23ozfpgjALDnp9kRwGraXd3UdYLcZh12Hk5h8lWQw2+vosod/e4Ks0bK0uCLMvJ3/FX6R3/ZbRERfpK7ynnALpAyOCrBWDjdWek19HyMoYXRBma8I2t7hIPfyW067uI9sU44DxPoBfeXvFYPcT7h6yJVkXhNlP61NaXShkRRP7zaRE91H0u9N/IiATw81/xvuh1GXQapvEYCPHZSjVpGfrgjC7WXTD4gV7e9Aq8vKNpD4+EeQ4cKUsIggHEoKmu1W6IELrGxgl+4WWOlKHzNRn6mKLCP2+wwQ5tzLu/yEIyiwPHDggebW3q0z3BGtGD//l1CRxtTczM1PxbjDFBEF/Rf/+/bk9hGPHpBUWLJj2jd0FWfLZd5KOLScnhzsX9Iwo2d9iUCIqsJu2Y8cOfocNtUvYdWvL/i6rImcFbtrmhtOglVRd3vbNvLa2ljw8PPjz2bVrF1fAoUS0yCoI+isQFWz/fNy4cfxJoFRGiv2adIQcAtcoLgZWBbISD0s6ptmzZ/PnMXHiRM6HfXZEi9z9LYpUnbBtW3QeoVKD+aSia0P4j4oL8u2SBKtQJWxTEFaiqK7qBFGBSgwUMWDzX1zY0B50vXr5kpZ+/oNiYiCjw3e0B1XigofU1FTudbgGckSLTYKkpaXxXUemMGULumBJG9NkzbzwWfhMyal4RAR/3JMmTeJRZc6HKs6MjIyOE0Rcs4sSfTGmbEEX7FzWOfIfusJmMXyHRtP57POSvxc37OrqagoJCSFXV9dWqGK+o0ePtmpf6FBkmSoVFWIKPpSZouTSWnQJEbY3PpP6DY62fvHQ+J6MuExJiBKiCu3bbA6FonKclxBVpvCFc1TFTd1UMTXDVGhoKJciwsDZ9qBLKExBbgGtnRtLAcOiubRVLEA3Y9qMf8NrLuUVWiWEqaxq06bXG1cQBO1r5vDFKhpVIYipdoP79+9TdnY211+BivAzZ87YhC5z9uxJA/15uZT+KLxODY8bbP48YVYFLOE8UKeMWToMtVmVlZUma35VlfYK0YWnHqCcFAP9FUKcCTMxa9GltImzKmRQQixNnz6dGhsbuR8Z2i/kRJUiE0MhutAUaS7rshVdSpkQVWgvEGOJTQqR6sP279/PtUerdqYubj84efKkyawL4S03upRAlanedRwrfIiWmpoaetmOe5Rd17KEVe9AFzIscdYFdLGsC11HCQkJHS5IXFwc3w2G+ZU4g2JZlbCnMD09XRurvcK+ENbqZgpdUVFRsvdX2GLob1mxYoVZVLHWNTmzKrsIIkYXshQhurT0NCBLj9nQ1H6I+IEzDF0BAQGqigpL0YJeEKBK3P6MTFEz+yHm0MUe04THUmjFWC+I8DEaSqHKLoIAXehjRxO+kl1HShtWcbGUwh5mpllBYNju1NJzFi1Fiz0eTag/t1dlpguiC6KbLoguiG62CKL/zzYqGv8Cn+meishYe/gAAAAASUVORK5CYII=",Apt="assets/cz.aa47f7b6.png",Tpt="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABDBAMAAACYZb3pAAAAFVBMVEXVKx7///8AOaZUNHFkh8nVKx7///90yNRsAAAAAWJLR0QAiAUdSAAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB+ULGAs7NQ50qgoAAAA0SURBVEjH7dShEQAgDACxrlA2oPsPieNqEOjmfexHtlbddj4LBEFmkvoOQZChxGARBJlHDliGRdp7bzpsAAAAAElFTkSuQmCC",kpt="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAA+CAIAAABSlSmSAAABWWlDQ1BEaXNwbGF5IFAzAAAokZ2OPyiEYRzHP88dvXUocm4wPeVPBsQZzmJwlIg6Mtyd6b33/qlznt57i5vUWYxKBmVisDJeBgaDZCCRQWQ1upJCj+HoXAbls3y/ffrW7weudlOpTA2wkHXsmbGgDEei0njEwKABH9K0cmo4FJoE+M5qXm4QAFc9plKZs9bNQsdK49TgVvP15VNL4fe+Ck88kbOAdyBhKdsBEQfalhzlgFgDvHY4EgWxDXhT5b4PeGPlfgJ47dmZERC3gLTSZhzEK9Ad++FTP/rXXYC60fmcyph5GRr449t/4CSWHYCRRZW351NpRw4rlUnI8azV2y39ff0BCEeisrwuTSMA4TuvuNUHGDrSWh9W3MQRHATAU6y4rkFoqoPTojJtEwA34Eom4XkPGiLQfAGeuVxywA+AqA9C7b3WpU4wNuBjXeu3Ha0/dsF9B8fZTxUhZe6KC5V+AAAACXBIWXMAAAsTAAALEwEAmpwYAAAE7mlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDggNzkuMTY0MDM2LCAyMDE5LzA4LzEzLTAxOjA2OjU3ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1wOkNyZWF0ZURhdGU9IjIwMjEtMTEtMzBUMDk6NDE6MjQrMDE6MDAiIHhtcDpNb2RpZnlEYXRlPSIyMDIxLTExLTMwVDA5OjQ1OjU3KzAxOjAwIiB4bXA6TWV0YWRhdGFEYXRlPSIyMDIxLTExLTMwVDA5OjQ1OjU3KzAxOjAwIiBkYzpmb3JtYXQ9ImltYWdlL3BuZyIgcGhvdG9zaG9wOkNvbG9yTW9kZT0iMyIgcGhvdG9zaG9wOklDQ1Byb2ZpbGU9IkRpc3BsYXkgUDMiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NmQ3NDRiMzctYjEzNi0yYTQ4LTlmNTQtMzVlNWE0ZDY3NWYwIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjZkNzQ0YjM3LWIxMzYtMmE0OC05ZjU0LTM1ZTVhNGQ2NzVmMCIgeG1wTU06T3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOjZkNzQ0YjM3LWIxMzYtMmE0OC05ZjU0LTM1ZTVhNGQ2NzVmMCI+IDx4bXBNTTpIaXN0b3J5PiA8cmRmOlNlcT4gPHJkZjpsaSBzdEV2dDphY3Rpb249InNhdmVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOjZkNzQ0YjM3LWIxMzYtMmE0OC05ZjU0LTM1ZTVhNGQ2NzVmMCIgc3RFdnQ6d2hlbj0iMjAyMS0xMS0zMFQwOTo0NTo1NyswMTowMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIDIxLjAgKFdpbmRvd3MpIiBzdEV2dDpjaGFuZ2VkPSIvIi8+IDwvcmRmOlNlcT4gPC94bXBNTTpIaXN0b3J5PiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PtsNxjAAAAG/SURBVHic7ZxLboMwFEXftbKFbq4b6aTDTrqELqv7iXgZGAhR+R0haIjuGZlgY+fk4diyZcX7T2xAuqczRzJcPz5ny0dkXL6/trThMC4by48KIuU31n8o5b8bcCYsC2BZAMsCWBbAsgCWBbAsgGUBLAtgWYD9ZelU079ZHFkAywJYFmB3WVKzdxWH4cgCHCBLy1lOgiMLYFkAywLw1Z0c9EFrRuf5On0WlqVyHwrkM4lQZHbLmDvNsHT9fdvnyV0FSuQ0ow3G+oUVoen4bTMr2/jVQ031bnZphTLr2yDVAmK/9tZF1kVo9EkpZX3B27LTT1BklIxU1Hh/zKmIKI36dGQ/jLm36u/Dq96xSneXhamxsFax2gicyt99nsPMSw2YuuN/Q4BlASwLYFkAywJYFsCyAJYFeL5B6SJ1hF0aKaM09VJNaSc3TYnU3Ji2n0rVxHCS0M+rJoprywZcrZiyLmzAjYg4zQbcTa/h6yyfrsN9FsCyAJYFsCyAZQEsC2BZAMsCWBbAsgCWBbAsgGUBLAtgWQDLAlgWwLIAlgWwLIBlASwLcJpFVmn83JvhyUHqFk7r5cw5ORpu1119os4NHzhrTvSbX80AAAAASUVORK5CYII=",Cpt="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABDCAYAAABqS6DaAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAmcSURBVHhe7VpbbBxXGf7O3PbidWKndp2EODeSQClCFWppaR5QRNRUIkARpAVVeazCQyWExDU8pEVC9IEHpIikqLyQ8sALakobenkAehFUgAjQqgl1Kmo7iVNfsB2vd3euh++fXRdn4y0tnnXGm/lW4/XM2Zk5c77///7/P2fUSHFAI0NqYDS+M6QEGSEpQ0ZIypARkjJkhKQMGSEpQ0ZIypARkjJkhKQMGSEpQ0ZIypARkjJkhKQMGSEpQ0ZIyrDihGio+O8V0DwaBFC+DwRhvH+9YkUIEQq6PE0aTERwYIWXMZuzYR/9AQYnz2Ow8jY2upPY4E3xe6K+f/4swu9+FV41IEE1GJHFzYRrkbAOxoqtGNoRb1OLoB46jP4jX0cFAQq0B8XNQMiPEKZh8Yh4kdImPBXCiQDfMDH+xYOwn3wWruOw151LSlsJMTiYoRnAjGy4d30a207+IvaWZvBnMRmm9uErCzZ7pJVCyAaT35oEGBF3DBtDmz4Ga3YCRT+Ebxo8q7PQVkIiRYuv+RiYGYbqKsEMSIfdaFyEGv0j51M9bZIwM46RHz8O67mnUByZQNTbjcnP7MGHDh2C2r4VmrxUf/8y5vbvR6DyjSt0DtpCiBUq1Kg1pbl59OsyPH4MiR2xLywKW9zV3GUox7mb7oAz/CZlTHzIokwx2kQKnhHyCKUrNFEzKW1GFzaPvo6oW2E2vx2+xbgkv9FL+d7qQ1sI0SqCy4xpmzsNK+D/loFco+0dMJMSWbqw+25UXvszB9ymZDXa/gdCI4Dv9GPn1BkMl3p4bg6B0RmEJJ5lxfbNAL7Fvcj/QkTU+WgJpRcyJlQJ6q+vosu32RHxnvcGub7pzeJf+R70/+YJxqm2qe6KI1FCDFq9Q/2xjnyLVis5lAkx3LoM1eEzuxKMOOvgFkux3FCZKDnvvSuagchmkC8ij6l9X4FzQ1+j5b8Q0kKSLqFpNSFRyXJNk3HDxYCelFHjgEg0uBI1budNJrfFvjilXR4iZnAkmV5oND2F1CwWs7bLOQt5yuZqQaL24/gKa199IfYHGmcTGQEFbB5nb7kVurSOZCRxawqdcTUZAl3Mo2ZbKPjNJpFuJEpIyErb+ejNjb0r4Qk9UREb/zmC3ioJS8hoW7m3SQ8ZnLsIg31aTUiMEPGK3L33c6Alib0ajhfhwvoPs91CmTKiVD2WtAuVfJWypbF+dIR79eISuu4tYgtamdCVGr/rfU8LEiNELLXvxE8oS0tUfoTnUF7K06hZovsRA3miznkV7MBijaOhNqyDf99+hLoYJxCouKjctRv9/34dpSOHY09t5WXXAskF9TDEYG2C5QUHQQJIE8p/P4fpO3fzv5WxR10sYHDiTd5Nocpt4p4HsPmJx+Lb1xjPVFDGeInyymJTcQTSUlcu20yFTcmmIneecUJSzaX5Lf/wCL2iTZOCyqc3eCwsWdEHlCLDRVDmMX4kqytw23ySZMgRKmWe8WzS3klZq8tmmor8ZRNixiLMatwp8TEVU81GQxO8l0+/r1rj/UBrkhAamK95cL/9IDbNTWNz5TwNxISzaG0lziNoMMMfuBV2PkI+hUXKsnvksxCwWNlFliNqQCx9SXdmGrmEHUTikMx3dZ1+CVsqk9gezmDwoe+QIMoQO5MjBcai9Fq4mX72KZjTF1BlfLdTWJ4sm5B6UBQqAj5+6yc0WQxKRZ4krCiEx5F/+1OfQ/mRH8VT9eIBBjMoQ0fsGw1l8bSKodB9935+11D0TXp3ezO9/wfLJ4QDIFJUqlYpEHz4FgVGuOlGelNjJyGEHGAZ1O65WVz+/iMYK6zDkNWDsW8+HPfL49PJEtgCZBHMZsDrOv5TzOSAqp1whxLA8gkhGTK7K3IQkhKOUqPlSgx89gCCZd/tSkj+ELJSFzsIlcXrOyjkiwiPHcdo3weZgIt3MJAzzY4Xuyhlvs286+C9UMU1TLASdtkEkNwQFfP1gqvFzGv+4a8xiC5do7QDMptcB4tCknbJNDB2/yEed5FjF3eMnUM19Bq/SQ8StFmF8Mxr8FrkkE6uADeoNPbaD0NmlemtHgf/grEeRm4Q4a9PYbw4iGGnGxf33oNdb52NZUw8LS1IVERm9325Za0hy7T2fQcae+1HoJhj0VunvvE9BCWf8cuPB14zM+u2SvBfeQUXdtxEkU2XbCVWqctFjEBhkztWP9AENxY0A+O5fqZH7Q+musvGhpEzuNi3jcWizQSrxiDvxG2mZF8yrcJMjDlZZxWGi1FzHEw/eDgO8DL8i/Mth7ey6SU9J35G65XbtpcUxyhgtrg+HvyAtdICGYKQZIgBSR2TJjIEiS5QWdqVKS16yXSdjXihovHE3JcaTdMqhz7yCRRGR9icoD2IFSyaQ3OYWWnlk3yLg5++9LYVEvUQeS1HWzm80bejYXmLzI93im/GQdv5j78gLORZspgoLD1b/65QHHyZ9RBCoyrLUXn9tAkeMyufcWQ1kSFIlJB6JKF1Vsu49NijiMRqmyCzr6EdYcv4MKw9d8BtNfn1Lij58ooQcHlNCd7tt8Gw+BiLvGM1oy2vAUEFyAUmel88BevjtyA0zXhaQ4ZMplcWpErs2piawtCNW2F0d8MRvWO76H68gEQ304ZPq9FyFttIps7DqJSx5qWnUX76OfjHjvH3VjxV0glI2EPqUJETV9ATe/Zi/HcvxjPCC7m+vMkbM8NNxET39WKXN4OBN06jdkMvrIrPdNWFIRNfPMliLREoB5ZbQdnsxprf/hJb9BQu//wk/ONHUXQlWC+daq9GtMVDQlq1KS+vWS4tPQfj9k9i6/O/arQ2wLtKnJHUU95NlLdHZG5KXhsSvmrVeQQzFVjFAvJrS/VTeI7Pxrf6t2LtrAfNk3wmDvLKaqIJwjVEeyRrCeiKi3Wjf0Jp4zbUDAv5kLfl6IsjtBrKhY4peJhj4uw++Qy8L30BQa7nHY/rNKyYWRmFHC7dfCeGnH54z5yidStae0jLbvygCVIpKKau4i2TRx/FPGUrPPAAqoU6GZ1KyMp5CDcZ3AWYYYA5xofevfsQHPw8um7bBaunH/7YDOb/+DfoE4/D/8MLsAslSpucWb9C83U6DStGSDPinIuVosQR34wnMBjAGQ/iKQ3Z53H+MRN5oW714No9LQddyToKZcsUAhhMZIbWitPXWLBIzPVFhuCaPbF4hmRHIj/ykjbDe7zIFC9ycZMjreJLJ+P6M8GUIyMkZcgISRkyQlKGjJCUISMkZcgISRkyQlKGjJCUISMkZcgISRkyQlKGjJBUAfgPxailVeB/AAcAAAAASUVORK5CYII=",xB="assets/missing-locale.4d6286c0.png";const Ept="Deutsch",Ipt="English",Dpt="Espa\xF1ol",xpt="Fran\xE7ais",Opt="Nederlands",Mpt="Polski",Rpt="Brazilian Portuguese",Lpt="\u0420\u0443\u0441\u0441\u043A\u0438\u0439",Ppt="\u0423\u043A\u0440\u0430\u0457\u043D\u0441\u044C\u043A\u0430",$pt="\u7B80\u4F53\u4E2D\u6587",zpt="Italiano",Npt="\u7E41\u9AD4\u4E2D\u6587",Fpt="\uD55C\uAD6D\uC5B4",Bpt="\u010Cesky",Wpt="Suomi",Hpt="Svenska",jpt="Catal\xE0",Upt="Turkish";var FA={de:Ept,en:Ipt,es:Dpt,fr:xpt,nl:Opt,pl:Mpt,ptbr:Rpt,ru:Lpt,ua:Ppt,chs:$pt,it:zpt,zh:Npt,ko:Fpt,cs:Bpt,fi:Wpt,sv:Hpt,ca:jpt,tr:Upt};const OB={ca:upt,en:dpt,fr:cpt,pl:hpt,de:mpt,ru:fpt,ptbr:ppt,es:gpt,ua:vpt,chs:ypt,nl:_pt,it:bpt,zh:wpt,ko:Spt,cs:Apt,fi:Tpt,sv:kpt,tr:Cpt};function Vpt(){var s;const{i18n:e}=Ct("localeNames"),{ref:t,isComponentVisible:r,setIsComponentVisible:n}=zZ(!1),a=l=>{e.changeLanguage(l),n(!1)},i=Object.keys(e.options.resources).map(l=>{var d;return de("a",{className:"dropdown-item",href:"#",onClick:u=>{a(l),u.preventDefault()},children:[x("img",{src:(d=OB[l])!=null?d:xB,alt:FA[l],width:"20",className:"align-middle me-1"}),x("span",{className:"align-middle",children:FA[l]})]},l)}),o=e.language.split("-")[0];return de("li",{className:"nav-item dropdown",children:[x("a",{className:et("nav-flag dropdown-toggle",{show:r}),href:"#",onClick:l=>{n(!r),l.preventDefault()},children:x("img",{src:(s=OB[o])!=null?s:xB,alt:FA[o]})}),x("div",{ref:t,className:et("dropdown-menu dropdown-menu-end",{show:r}),children:i})]})}const Gpt=[{href:"/",key:"devices",exact:!0},{href:"/dashboard",key:"dashboard"},{href:"/map",key:"map"},{href:"/settings",key:"settings"},{href:"/groups",key:"groups"},{href:"/ota",key:"ota"},{href:"/touchlink",key:"touchlink"},{href:"/logs",key:"logs"},{href:"/extensions",key:"extensions"}],qpt=({devices:e,setPermitJoin:t,bridgeInfo:r})=>{var v;const{t:n}=Ct(["navbar"]),{ref:a,isComponentVisible:i,setIsComponentVisible:o}=zZ(!1),[s,l]=le.exports.useState({}),{permit_join:d,permit_join_timeout:u}=r,c=y=>{l(y),o(!1)},h=Object.values(e).filter(y=>y.type==="Router").sort((y,b)=>y.friendly_name.localeCompare(b.friendly_name)).map(y=>x("li",{children:x(yt,{item:y,className:"dropdown-item",onClick:c,children:y.friendly_name})},y.friendly_name)),m=()=>{t(!d,s)},f=x(St,{children:u?x("div",{className:"d-inline-block mx-1",style:{width:"30px",maxWidth:"30px"},children:y9(u)}):null}),g=de(St,{children:[n(d?"disable_join":"permit_join")," (",(v=s==null?void 0:s.friendly_name)!=null?v:n("all"),")",f]});return de("div",{className:"btn-group text-nowrap me-1",children:[x("button",{onClick:m,type:"button",className:"btn btn-outline-secondary",children:g}),h.length?de(St,{children:[x(yt,{type:"button",onClick:o,item:!i,className:"btn btn-outline-secondary dropdown-toggle dropdown-toggle-split",children:x("span",{className:"visually-hidden",children:n("toggle_dropdown")})}),de("ul",{ref:a,className:et("dropdown-menu",{show:i}),children:[x("li",{children:x(yt,{className:"dropdown-item",onClick:c,children:n("all")})},"all"),h]})]}):null]})},Kpt=e=>{const{devices:t,setPermitJoin:r,bridgeInfo:n,restartBridge:a,setTheme:i,t:o}=e,s=le.exports.useRef(),[l,d]=le.exports.useState(!1);return ept(s,()=>{d(!1)}),x("nav",{className:"navbar navbar-expand-md navbar-light",children:de("div",{ref:s,className:"container-fluid",children:[x($s,{onClick:()=>d(!1),to:"/",children:Bze()?`Z2M@${document.location.hostname}`:"Zigbee2MQTT"}),x("button",{onClick:()=>{d(!l)},className:"navbar-toggler",type:"button",children:x("span",{className:"navbar-toggler-icon"})}),de("div",{className:et("navbar-collapse collapse",{show:l}),children:[de("ul",{className:"navbar-nav",children:[Gpt.map(u=>x("li",{className:"nav-item",children:x(p2,{onClick:()=>d(!1),exact:u.exact,className:"nav-link",to:u.href,activeClassName:"active",children:o(u.key)})},u.href)),x(Vpt,{})]}),x(qpt,{devices:t,setPermitJoin:r,bridgeInfo:n}),x(lpt,{saveCurrentTheme:i})]}),n.restart_required?x(yt,{onClick:a,prompt:!0,className:"btn btn-danger me-1",children:o("restart")}):null]})})},Qpt=["bridgeInfo","devices"],Zpt=Mn("navbar")($r(Qpt,Br)(Kpt)),Ypt=e=>{const[t,r]=le.exports.useState(e);return[t,a=>r(He(Se({},t),{[a.currentTarget.name]:a.currentTarget.value}))]},Xpt=hi.create(e=>{const{name:t,onRename:r}=e,n=vu(),[a,i]=Ypt({friendlyName:t}),o=async()=>{await r(t,a.friendlyName),n.remove()};return de(wp,{isOpen:n.visible,children:[de(yp,{children:[x("h3",{children:"Rename group"}),x("small",{children:t})]}),x(_p,{children:de("div",{className:"mb-3",children:[x("label",{className:"form-label",children:"Friendly name"}),x("input",{name:"friendlyName",onChange:i,type:"text",className:"form-control",value:a.friendlyName})]})}),de(bp,{children:[x("button",{type:"button",className:"btn btn-secondary",onClick:n.remove,children:"Close"}),x("button",{type:"button",className:"btn btn-primary",onClick:o,children:"Save changes"})]})]})});function Jpt(e){const{t}=Ct(["groups"]),{groups:r,removeGroup:n,renameGroup:a}=e,i=[{id:"group_id",Header:t("group_id"),accessor:o=>o.id,Cell:({row:{original:o}})=>x($s,{to:`/group/${o.id}`,children:o.id})},{id:"friendly_name",Header:t("group_name"),accessor:o=>o.friendly_name,Cell:({row:{original:o}})=>x($s,{to:`/group/${o.id}`,children:o.friendly_name})},{id:"members",Header:t("group_members"),accessor:o=>{var s;return(s=o.members.length)!=null?s:0}},{id:"scenes",Header:t("group_scenes"),accessor:o=>{var s,l;return(l=(s=o.scenes)==null?void 0:s.length)!=null?l:0}},{Header:"",id:"actions",Cell:({row:{original:o}})=>de("div",{className:"btn-group float-right btn-group-sm",role:"group",children:[x(yt,{className:"btn btn-primary",onClick:()=>hi.show(Xpt,{name:o.friendly_name,onRename:a}),title:t("rename_group"),children:x("i",{className:"fa fa-edit"})}),x(yt,{prompt:!0,title:t("remove_group"),item:o.friendly_name,onClick:n,className:"btn btn-danger",children:x("i",{className:"fa fa-trash"})})]})}];return x("div",{className:"card",children:x(e0,{id:"groups",columns:i,data:r})})}class egt extends le.exports.Component{constructor(){super(...arguments),this.state={newGroupName:"",newGroupId:void 0},this.changeHandler=t=>{const{name:r,value:n}=t.target;this.setState({[r]:n})},this.onGroupCreateSubmit=()=>{const{newGroupName:t,newGroupId:r}=this.state,{createGroup:n}=this.props;n(t,r)},this.renameGroup=(t,r)=>{const{renameGroup:n}=this.props;n(t,r)}}renderGroupCreationForm(){const{t}=this.props,{newGroupName:r,newGroupId:n}=this.state;return x("div",{className:"card",children:x("div",{className:"card-body",children:de("div",{className:"input-group",children:[x("label",{htmlFor:"newGroupName",className:"sr-only",children:t("new_group_name")}),x("input",{onChange:this.changeHandler,value:r,required:!0,type:"text",name:"newGroupName",className:"form-control",id:"newGroupName",placeholder:t("new_group_name_placeholder")}),x("label",{htmlFor:"newGroupName",className:"sr-only",children:t("new_group_id")}),x("input",{onChange:this.changeHandler,value:n===void 0?"":n,type:"number",name:"newGroupId",className:"form-control",id:"newGroupId",placeholder:t("new_group_id_placeholder")}),x(yt,{onClick:this.onGroupCreateSubmit,className:"btn btn-primary form-control",children:t("create_group")})]})})})}render(){const{groups:t,removeGroup:r,renameGroup:n}=this.props;return de(St,{children:[this.renderGroupCreationForm(),x(Jpt,{groups:t,removeGroup:r,renameGroup:n})]})}}const tgt=["groups","devices","deviceStates","bridgeInfo"],rgt=Mn("groups")($r(tgt,Br)(egt));var ngt={"action-column":"_action-column_1729o_1","device-pic":"_device-pic_1729o_8","device-image":"_device-image_1729o_14"};function agt(e){const{data:t,lastSeenType:r,availabilityFeatureEnabled:n,homeassistantEnabled:a,setDeviceDescription:i}=e,{renameDevice:o,removeDevice:s,configureDevice:l}=e,{t:d}=Ct(["zigbee","common","avaliability"]),u=r!=="disable"?[{id:"last_seen",Header:d("last_seen"),accessor:({state:m})=>{var f;return(f=_9(m,r))==null?void 0:f.getTime()},Cell:({row:{original:{state:m}}})=>x(_2,{state:m,lastSeenType:r})}]:[],c=n?[{id:"availability",Header:d("avaliability:avaliability"),accessor:({availabilityState:m})=>qG(m)?m:m.state,Cell:({row:{original:{availabilityState:m,availabilityEnabledForDevice:f}}})=>x(KG,{availability:m,availabilityEnabledForDevice:f})}]:[],h=[{id:"pic",Header:d("pic"),Cell:({row:{original:{device:m,state:f}}})=>x(cp,{className:ngt["device-image"],device:m,deviceStatus:f}),accessor:m=>m,disableSortBy:!0},{id:"friendly_name",Header:d("friendly_name"),accessor:({device:m})=>[m.friendly_name,m.description].join(" "),Cell:({row:{original:{device:m}}})=>de(St,{children:[x($s,{to:uw(m.ieee_address),children:m.friendly_name}),x("small",{className:"d-block",children:m.description})]})},{id:"ieee_address",Header:d("ieee_address"),accessor:({device:m})=>[m.ieee_address,Jk(m.network_address,4)].join(" "),Cell:({row:{original:{device:m}}})=>de(St,{children:[x("div",{children:m.ieee_address}),de("div",{children:["(",Jk(m.network_address,4),")"]})]})},{id:"manufacturer",Header:d("manufacturer"),accessor:({device:m})=>{var f;return[(f=m.definition)==null?void 0:f.vendor,m.manufacturer].join(" ")},Cell:({row:{original:{device:m}}})=>x(g2,{device:m})},{id:"model",Header:d("model"),accessor:({device:m})=>{var f;return[(f=m.definition)==null?void 0:f.model,m.model_id].join(" ")},Cell:({row:{original:{device:m}}})=>x(v2,{device:m})},{id:"lqi",Header:d("lqi"),accessor:({state:m})=>m.linkquality,Cell:({row:{original:{state:m}}})=>x(fc,{value:m.linkquality,name:"linkquality"})},...u,...c,{id:"power",Header:d("power"),accessor:({state:m,device:f})=>{var g;return[m.battery,(g=f.definition)==null?void 0:g.power].join(" ")},Cell:({row:{original:{state:m,device:f}}})=>x(y2,{source:f.power_source,battery:m.battery,batteryLow:m.battery_low})},{id:"controls",Header:"",Cell:({row:{original:{device:m,state:f}}})=>x(VG,{device:m,state:f,homeassistantEnabled:a,renameDevice:o,removeDevice:s,configureDevice:l,setDeviceDescription:i}),disableSortBy:!0}];return x("div",{className:"card",children:x("div",{className:"table-responsive",children:x(e0,{id:"zigbee",columns:h,data:t})})})}function igt(e){const{devices:t,deviceStates:r,bridgeInfo:{config:n},availability:a}=e,{renameDevice:i,removeDevice:o,configureDevice:s,setDeviceDescription:l}=e,d=!!n.availability,u=!!(n!=null&&n.homeassistant),c=()=>Object.values(t).filter(m=>m.type!=="Coordinator").map(m=>{var g,v,y;const f=(g=r[m.friendly_name])!=null?g:{};return{id:m.friendly_name,device:m,state:f,availabilityState:(v=a[m.friendly_name])!=null?v:"offline",availabilityEnabledForDevice:((y=n.devices[m.ieee_address])==null?void 0:y.availability)!==!1}}),h=q.useMemo(()=>c(),[t,r]);return x(agt,{data:h,lastSeenType:n.advanced.last_seen,availabilityFeatureEnabled:d,homeassistantEnabled:u,renameDevice:i,removeDevice:o,configureDevice:s,setDeviceDescription:l})}const ogt=["devices","deviceStates","bridgeInfo","availability"],sgt=Mn(["zigbee","common"])($r(ogt,Br)(igt));var lgt={"device-image":"_device-image_29lej_1"};const ugt=e=>{var s;const{t}=Ct("ota"),{device:r,state:n,checkOTA:a,updateOTA:i}=e,o=(s=n==null?void 0:n.update)!=null?s:{};switch(o.state){case"updating":return de(St,{children:[x("div",{className:"progress",children:de("div",{className:"progress-bar progress-bar-striped progress-bar-animated",style:{width:`${o.progress}%`},children:[o.progress,"%"]})}),x("div",{children:t("remaining_time",{remaining:y9(o.remaining)})})]});case"available":return x(yt,{className:"btn btn-danger btn-sm",onClick:i,item:r.friendly_name,prompt:!0,children:t("update")});default:return x(yt,{className:"btn btn-primary btn-sm",onClick:a,item:r.friendly_name,children:t("check")})}};class dgt extends le.exports.Component{constructor(){super(...arguments),this.checkAllOTA=()=>{const{checkOTA:t}=this.props;this.getAllOtaDevices().forEach(({device:n})=>t(n.friendly_name))}}getAllOtaDevices(){const{devices:t,deviceStates:r}=this.props;return Object.values(t).filter(n=>{var a;return(a=n==null?void 0:n.definition)==null?void 0:a.supports_ota}).map(n=>{var i;const a=(i=r[n.friendly_name])!=null?i:{};return{id:n.friendly_name,device:n,state:a}})}render(){const{checkOTA:t,updateOTA:r,t:n}=this.props,a={checkOTA:t,updateOTA:r},i=this.getAllOtaDevices(),o=[{Header:n("zigbee:pic"),Cell:({row:{original:{device:s,state:l}}})=>x(cp,{className:lgt["device-image"],device:s,deviceStatus:l}),disableSortBy:!0},{Header:n("zigbee:friendly_name"),accessor:({device:s})=>s.friendly_name,Cell:({row:{original:{device:s}}})=>x($s,{to:uw(s.ieee_address),children:s.friendly_name})},{Header:n("zigbee:manufacturer"),accessor:({device:s})=>{var l;return[s.manufacturer,(l=s.definition)==null?void 0:l.vendor].join(" ")},Cell:({row:{original:{device:s}}})=>x(g2,{device:s})},{Header:n("zigbee:model"),accessor:({device:s})=>{var l;return[s.model_id,(l=s.definition)==null?void 0:l.model].join(" ")},Cell:({row:{original:{device:s}}})=>x(v2,{device:s})},{Header:n("zigbee:firmware_build_date"),accessor:({device:s})=>s.date_code},{Header:n("zigbee:firmware_version"),accessor:({device:s})=>s.software_build_id,Cell:({row:{original:{device:s}}})=>x(m9e,{device:s})},{Header:()=>x(yt,{className:"btn btn-danger btn-sm",onClick:this.checkAllOTA,prompt:!0,children:n("check_all")}),id:"check_all",Cell:({row:{original:{device:s,state:l}}})=>x(ugt,Se({device:s,state:l},a))}];return x("div",{className:"card",children:x("div",{className:"table-responsive",children:x(e0,{id:"otaDevices",columns:o,data:i})})})}}const cgt=["devices","deviceStates"];var hgt=Mn(["ota","zigbee","common"])($r(cgt,Br)(dgt));class Xa extends q.Component{constructor(){super(...arguments),this.state={},this.downloadState=t=>{w9(ir.getState(),"initialState.json"),t.preventDefault()}}static getDerivedStateFromError(t){return{error:t}}render(){const{error:t}=this.state;if(t){const r={template:"bug_report.yaml",stacktracke:[`**Current url**: ${window.location.toString()}`,`**Previous url**: ${document.referrer}`,`
89
89
  `,`**Error type**: ${t==null?void 0:t.name}`,`**Error message**: ${t==null?void 0:t.message}`,`
90
90
 
91
91
  `,t==null?void 0:t.stack].join(`
@@ -254,4 +254,4 @@ fall_down_status`,static_dwell_alarm:"static_dwell_alarm",o_sensitivity:"O Gevoe
254
254
  `,"Calibration time":"\u6821\u6B63\u6642\u9593","Maximum light brightness":"","Indicates if CO (carbon monoxide) is detected":"\u6307\u793A\u6AA2\u6E2C\u5230\u4E00\u6C27\u5316\u78B3 (CO)","The measured CO (carbon monoxide) value":"","The measured formaldehyd value":"The measured formaldehyde value","Measured PM2.5 (particulate matter) concentration":"Measured PM\u2082.\u2085 (particulate matter) concentration","Group where the action was triggered on":"","The measured occupancy value":"","The measured noise value":"","Indicates whether the device detected noise":"","Time in seconds after which noise is cleared after detecting it (default: 60)":"","Time in seconds after which occupancy is cleared after detecting it (default: 60)":"","Self-heating compensation. The compensation value is subtracted from the measured temperature":"","If the sensor is triggered by the slightest movement, reduce the sensitivity, otherwise increase it (default: 50)":"","The minimum noise level at which the detector will work (default: 50)":"","Automatic calibration of the CO2 sensor. If ON, the CO2 sensor will automatically calibrate every 7 days.":"","Ventilate the room for 20 minutes, turn on manual calibration, and turn it off after one second. After about 5 minutes the CO2 sensor will show 400ppm. Calibration completed":"","Turn on when working in conditions of high humidity (more than 70 %, RH) or condensation, if the sensor shows 0 or 100 %.":"","White brightness of this light":"","Valve state if open or closed":"","Position of the valve":"","Control backlight dimming behavior":"Control backlight dimming behaviour","Door status":"","User ID can only number 1":"","Pincode to set, set pincode(4 digit) to null to clear":"","temperature of device internal mcu":"","Measured electrical power factor":"","Measured electrical ac frequency":"","Currently status":"","Instantaneous measured apparent power":"","Instantaneous measured power on phase A":"","Instantaneous measured power on phase B":"","Instantaneous measured power on phase C":"","Instantaneous measured power factor":"","Sum of consumed energy on phase A":"","Sum of consumed energy on phase B":"","Sum of consumed energy on phase C":"","Measured electrical AC frequency":"","Measured electrical potential value on phase A":"","Measured electrical potential value between phase A and B":"","Measured electrical potential value between phase B and C":"","Measured electrical potential value between phase C and A":"","Instantaneous measured electrical current on phase A":"","Time in seconds after which occupancy is cleared after detecting it":"","Controls the behaviour when the device is powered on":"\u88DD\u7F6E\u901A\u96FB\u6642\u7684\u9810\u8A2D\u72C0\u614B","Sets dimming mode to autodetect or fixed RC/RL/RL_LED mode (max load is reduced in RL_LED)":"","Duration of lift":"","Controls how programming affects the thermostat. Possible values: setpoint (only use specified setpoint), schedule (follow programmed setpoint schedule). Changing this value does not clear programmed schedules.":"","Not clear how this affects operation. However, it would appear that the device does not execute any motor functions if this is set to false. This may be a means to conserve battery during periods that the heating system is not energized (e.g. during summer). `false` No Heat Available or `true` Heat Available":"","If `radiator_covered` is `true`: Set at maximum 30 minutes interval but not more often than every 5 minutes and 0.1 degrees difference. Resets every 35 minutes to standard. If `radiator_covered` is `false`: Set at maximum 3 hours interval but not more often than every 30 minutes and 0.1 degrees difference. Resets every 3 hours to standard. Value 21C = 2100 (-8000=undefined).":"","Set if the TRV should solely rely on external_measured_room_sensor or operate in offset mode. `false` = Auto Offset Mode or `true` = Room Sensor Mode":"","Whether or not the window open feature is enabled":"","Mean radiator load for room calculated by gateway for load balancing purposes (-8000=undefined)":"","Specific for pre-heat running in Zigbee Weekly Schedule mode":"","Status of adaptation run: None (before first run), In Progress, Valve Characteristic Found, Valve Characteristic Lost":"","Automatic adaptation run enabled (the one during the night)":"","Adaptation run control: Initiate Adaptation Run or Cancel Adaptation Run":"","Regulation SetPoint Offset in range -2.5\xB0C to 2.5\xB0C in steps of 0.1\xB0C. Value 2.5\xB0C = 25.":"","Temperature sensitivity":"","Enable LED":"","Temperature/humidity alarm status":"","Temperature scale (\xB0F/\xB0C)":"","OLED brightness when operating the buttons. Default: Medium.":"","Key beep volume and vibration level. Default: Low.":"","Type of the external floor sensor. Default: NTC 10K/25.":"","The sensor used for heat control. Default: Room Sensor.":"","The mode after a power reset. Default: Previous Mode.":"","The tempearatue calibration for the exernal floor sensor, between -3 and 3 in 0.1\xB0C. Default: 0.":"","The duration of Dry Mode, between 5 and 100 minutes. Default: 5.":"","The mode after Dry Mode. Default: Auto.":"","The temperature on the display. Default: Room Temperature.":"","The threshold to detect window open, between 1.5 and 4 in 0.5 \xB0C. Default: 0 (disabled).":"","Hysteresis setting, between 0.5 and 2 in 0.1 \xB0C. Default: 0.5.":"","Room temperature alarm threshold, between 20 and 60 in \xB0C. 0 means disabled. Default: 45.":"","Power on behavior state":"Power on behaviour state","ECO mode (energy saving mode)":"\u7BC0\u80FD\u6A21\u5F0F","Indicator light status":"","The delta between local_temperature and current_heating_setpoint to trigger Heat":"","Serial Number":"","Base index":"","Tarif option":"","Subscribed intensity level":"","HCHC index":"","HCHP index":"","BBRHCJW index":"","BBRHPJW index":"","BBRHCJR index":"","BBRHPJR index":"","RMS current":"","RMS current (phase 2)":"","RMS current (phase 3)":"","RMS current peak":"","RMS current peak (phase 2)":"","RMS current peak (phase 3)":"","Three-phase power peak":"","Apparent power":"","Current pricing period":"","Tomorrow color":"","Schedule HPHC":"","Presence of potentials":"","EJP start notice (30min)":"","Subscribed Power Exceeded Warning":"","Over Current Warning (phase 1)":"","Over Current Warning (phase 2)":"","Over Current Warning (phase 3)":"","Current supplier price label":"","Current tariff index number":"","Customer tele-information protocol version":"","Current date and time":"","Total provider active power delivered (index 07)":"","Total provider active power delivered (index 08)":"","Total provider active power delivered (index 09)":"","Total provider active power delivered (index 10)":"","Active energy withdrawn Distributor (index 01)":"","Active energy withdrawn Distributor (index 02)":"","Active energy withdrawn Distributor (index 03)":"","Active energy withdrawn Distributor (index 04)":"","Total active power injected":"","Total reactive power (Q1)":"","Total reactive power (Q2)":"","Total reactive power (Q3)":"","Total reactive power (Q4)":"","RMS voltage":"","RMS voltage (phase 2)":"","RMS voltage (phase 3)":"","Register of Statutes":"","Apparent power threshold":"","Instantaneous apparent power injected":"","Apparent power max. injected n":"","Apparent power max. injected n-1":"","Current point of the active load curve drawn":"","Previous point of the active load curve drawn":"","Point n of the withdrawn active load curve":"","Point n-1 of the withdrawn active load curve":"","Average RMS voltage (phase 1)":"","Average RMS voltage (phase 2)":"","Average RMS voltage (phase 3)":"","Immediate apparent power delivered (phase 2)":"","Immediate apparent power delivered (phase 3)":"","Apparent power delivered peak (phase 2)":"","Apparent power delivered peak (phase 3)":"","Apparent power max. draw-off n-1":"","Apparent power max. draw-off n-1 (phase 2)":"","Apparent power max. draw-off n-1 (phase 3)":"","Message short":"","Message ultra-short":"","PRM number":"","Start mobile point 1":"","Stop mobile point 1":"","Start mobile point 2":"","Stop mobile point 2":"","Start mobile point 3":"","Stop mobile point 3":"","Current day number supplier calendar":"","Next day number supplier calendar":"","Profile of the next supplier calendar day":"","Profile of the next check-in day":"","Controls behaviour of led/siren on alarm":"Controls behaviour of LED/siren on alarm","Measured eCO2 value":"Measured CO2 value","Auto off after specific time.":"\u7279\u5B9A\u6642\u9593\u5F8C\u81EA\u52D5\u95DC\u9589","Enable the LED when the light is off":"","Works only when the pilot wire is deactivated":"","Animation Effect to use for the LEDs":"","Calculated by using a hue color circle(value/255*360) If color = 255 display white":"","Brightness of the LEDs":"","1-60 is in seconds calculated 61-120 is in minutes calculated by(value-60) Example a value of 65 would be 65-60 = 5 minutes - 120-254 Is in hours calculated by(value-120) Example a value of 132 would be 132-120 would be 12 hours. - 255 Indefinitely":"","Individual LED to target.":"","Animation Effect to use for the LED":"","Brightness of the LED":"","1-60 is in seconds calculated 61-120 is in minutes calculated by(value-60) Example a value of 65 would be 65-60 = 5 minutes - 120-254 Is in hours calculated by(value-120) Example a value of 132 would be 132-120 would be 12 hours. - 255 Indefinitely":"","This changes the speed that the light dims up when controlled from the hub. A setting of 0 turns the light immediately on. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 25 (2.5s)":"","This changes the speed that the light dims up when controlled at the switch. A setting of 0 turns the light immediately on. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpRemote setting.":"","This changes the speed that the light turns on when controlled from the hub. A setting of 0 turns the light immediately on. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpRemote setting.":"","This changes the speed that the light turns on when controlled at the switch. A setting of 0 turns the light immediately on. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpRemote setting.":"","This changes the speed that the light dims down when controlled from the hub. A setting of 0 turns the light immediately off. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpRemote setting.":"","This changes the speed that the light dims down when controlled at the switch. A setting of 0 turns the light immediately off. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpLocal setting.":"","This changes the speed that the light turns off when controlled from the hub. A setting of 'instant' turns the light immediately off. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with rampRateOffToOnRemote setting.":"","This changes the speed that the light turns off when controlled at the switch. A setting of 'instant' turns the light immediately off. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with rampRateOffToOnLocal setting.":"","The minimum level that the dimmer allows the bulb to be dimmed to. Useful when the user has an LED bulb that does not turn on or flickers at a lower level.":"","The maximum level that the dimmer allows the bulb to be dimmed to.Useful when the user has an LED bulb that reaches its maximum level before the dimmer value of 99 or when the user wants to limit the maximum brightness.":"","Inverts the orientation of the switch. Useful when the switch is installed upside down. Essentially up becomes down and down becomes up.":"","Automatically turns the switch off after this many seconds. When the switch is turned on a timer is started. When the timer expires, the switch is turned off. 0 = Auto off is disabled.":"","Default level for the dimmer when it is turned on at the switch. A setting of 0 means that the switch will return to the level that it was on before it was turned off.":"","Default level for the dimmer when it is turned on from the hub. A setting of 0 means that the switch will return to the level that it was on before it was turned off.":"","The state the switch should return to when power is restored after power failure. 0 = off, 1-100 = level, 101 = previous.":"","Shows the level that the load is at for x number of seconds after the load is adjusted and then returns to the Default LED state. 0 = Stay Off, 1-10 = seconds, 11 = Stay On.":"","Power level change that will result in a new power report being sent. The value is a percentage of the previous report.0 = disabled, 1-32767 = 0.1W-3276.7W.":"","Time period between consecutive power & energy reports being sent (in seconds). The timer is reset after each report is sent.":"","Energy reports Energy level change which will result in sending a new energy report.0 = disabled, 1-32767 = 0.01kWh-327.67kWh. Default setting: 10 (0.1 kWh)":"","Set the power type for the device.":"","Set the switch configuration.":"","This will set the button press delay. 0 = no delay (Disables Button Press Events), 1 = 100ms, 2 = 200ms, 3 = 300ms, etc. up to 900ms. Default = 500ms.":"","For use with Smart Bulbs that need constant power and are controlled via commands rather than power.":"","Set the color of the LED Indicator when the load is on.":"","Set the color of the LED Indicator when the load is off.":"","Set the intensity of the LED Indicator when the load is on.":"","Set the intensity of the LED Indicator when the load is off.":"","Ability to control switch from the wall.":"","Ability to control switch from the hub.":"","Use device as a Dimmer or an On/Off switch.":"","When the device is in On/Off mode, use full LED bar or just one LED.":"","Display progress on LED bar during firmware update.":"","0-254:This is the color of the LED strip in a hex representation. 255:Synchronization with default all LED strip color parameter.":"","Intesity of LED strip when on. 101 = Syncronized with default all LED strip intensity parameter.":"","Intesity of LED strip when off. 101 = Syncronized with default all LED strip intensity parameter.":"","Result of a double tap on the up button.":"","Measured Hcho value":"Measured HCHO value","Measured PM10 (particulate matter) concentration":"Measured PM\u2081\u2080 (particulate matter) concentration","Remaining battery 2 in %":"","Illuminance calibration in lux":"","Temperature calibration (-2.0...2.0)":"","Enable reporting":"","Control mode":"","External switch type":"","External switch status":"","Load detection mode":"","Load type":"","Load dimmable":"","Power supply mode":"","Pulses per kwh. Default 1000 imp/kWh. Range 0 to 65535":"Pulses per kWh. Default 1000 imp/kWh. Range 0 to 65535","Indicates if the card is inserted (= true) or not (= false)":"","Current temperature measured on the external sensor (floor)":"","The difference between the temperature at which the thermostat switches off, and the temperature at which it switches on again.":"","Max guarding temperature":"","Prevent changes. `false` = run normally. `true` = prevent from making changes.":"","Enables the LED when the light is off":"","Brightness of this backlight LED":"","Enable or disable the blue backlight LED":""},$1t={undefined:"undefined",state:"\u72C0\u614B",brightness:"\u4EAE\u5EA6",color_temp:"\u8272\u6EAB",color_temp_startup:"\u555F\u52D5\u8272\u6EAB",color_xy:"\u984F\u8272 xy",effect:"\u6548\u679C",linkquality:"\u9023\u63A5\u8CEA\u91CF",local_temperature:"\u672C\u5730\u6EAB\u5EA6",system_mode:"\u7CFB\u7D71\u6A21\u5F0F",local_temperature_calibration:"\u672C\u5730\u6EAB\u5EA6\u6821\u6E96",position:"\u4F4D\u7F6E",options:"\u8A2D\u5B9A",motor_working_mode:"",percent_state:"",border:"",power_outage_memory:"\u5FA9\u96FB\u6642\u56DE\u5FA9\u505C\u96FB\u524D\u72C0\u614B",battery:"\u96FB\u91CF",action:"\u52D5\u4F5C",power_on_behavior:"\u555F\u52D5\u6642\u9810\u8A2D\u96FB\u6E90\u884C\u70BA",battery_low:"\u4F4E\u96FB\u91CF",color_hs:"\u984F\u8272(HS)",action_source_name:"",action_source_user:"",voltage:"\u96FB\u58D3",operation_mode:"\u904B\u4F5C\u6A21\u5F0F",power:"\u96FB\u6E90",energy:"\u80FD\u6E90",temperature:"\u6EAB\u5EA6",current:"\u96FB\u6D41",led_disabled_night:"LED Disabled Night",contact:"\u9580\u7A97",illuminance:"\u5149\u7167\u5EA6",illuminance_lux:"\u5149\u7167\u5EA6",flip_indicator_light:"",humidity:"\u6FD5\u5EA6",lcd_brightness:"LCD Brightness",lcd_auto_brightness_enabled:"LCD Auto Brightness Enabled",standby_lcd_brightness:"Standby LCD Brightness",device_temperature:"\u8A2D\u5099\u6EAB\u5EA6",power_outage_count:"\u96FB\u6E90\u65B7\u96FB\u6B21\u6578",charging_status:"",motor_state:"",running:"\u57F7\u884C\u4E2D",strength:"\u5F37\u5EA6",angle_x:"\u89D2\u5EA6 X",angle_y:"\u89D2\u5EA6 Y",angle_z:"\u89D2\u5EA6 Z",smoke:"\u7159\u9727",smoke_density_dbm:"",mute_buzzer:"\u8702\u9CF4\u5668\u975C\u97F3",mute:"\u975C\u97F3",heartbeat_indicator:"",linkage_alarm:"",gas_sensitivity:"\u5929\u7136\u6C23\u9748\u654F\u5EA6",tamper:`\u7BE1\u6539
255
255
  `,auto_off:"\u81EA\u52D5\u95DC\u9589",water_leak:"\u6F0F\u6C34",presence_event:"",monitoring_mode:"\u5075\u6E2C\u6A21\u5F0F",approach_distance:"\u9760\u8FD1\u8DDD\u96E2",reset_nopresence_status:"",occupancy:"\u6709\u4EBA",detection_interval:"",pressure:"\u6C23\u58D3",ac_connected:"",test_alarm:"",test_alarm_result:"",battery_level:"",fault_alarm:"",silence_siren:"",report_interval:"",temperature_unit_convert:"",max_temperature:"\u6700\u9AD8\u6EAB\u5EA6",min_temperature:"\u6700\u4F4E\u6EAB\u5EA6",max_humidity:"",min_humidity:"",target_distance:"",minimum_range:"",maximum_range:"",detection_delay:"",fading_time:"",self_test:"",brightness_state:"",action_step_size:"",action_transition_time:"",action_rate:"",child_lock:"\u5152\u7AE5\u9396",tumble_switch:"",fall_sensitivity:"\u6389\u843D\u9748\u654F\u5EA6",tumble_alarm_time:"",fall_down_status:"\u6389\u843D\u72C0\u614B",static_dwell_alarm:"",led_status:"LED Status",trigger:"",garage_door_contact:"\u8ECA\u5EAB\u9580\u72C0\u614B",indicator_mode:"",current_heating_setpoint:"\u76EE\u524D\u52A0\u71B1\u8A2D\u5B9A\u6EAB\u5EA6",preset:"\u9810\u8A2D",away_mode:"\u96E2\u958B\u6A21\u5F0F",comfort_temperature:"\u8212\u9069\u6EAB\u5EA6",eco_temperature:"\u7BC0\u80FD\u6EAB\u5EA6",holiday_start_stop:"",schedule:"\u884C\u7A0B",force:"\u529B\u91CF",week:"\u9031",backlight_mode:"\u80CC\u5149\u6A21\u5F0F",moving:"\u79FB\u52D5",calibration:"\u6821\u6E96",motor_reversal:"\u99AC\u9054\u53CD\u8F49",max_brightness:"",carbon_monoxide:"\u4E00\u6C27\u5316\u78B3",co:"\u4E00\u6C27\u5316\u78B3",co2:"\u4E8C\u6C27\u5316\u78B3",formaldehyd:"Formaldehyde",pm25:"PM\u2082.\u2085",action_group:"",occupancy_level:"",noise:"\u566A\u97F3",noise_detected:"\u566A\u97F3\u5075\u6E2C",noise_timeout:"",occupancy_sensitivity:"",noise_detect_level:"",co2_autocalibration:"",co2_manual_calibration:"",th_heater:"",white_brightness:"",led_intensity_on:"LED Intensity On",led_intensity_off:"LED Intensity Off",door_state:"\u9580\u72C0\u614B",power_factor:"",ac_frequency:"",status:"\u72C0\u614B",power_apparent:"",power_phase_a:"",power_phase_b:"",power_phase_c:"",energy_phase_a:"",energy_phase_b:"",energy_phase_c:"",voltage_phase_a:"",voltage_phase_ab:"",voltage_phase_bc:"",voltage_phase_ca:"",current_phase_a:"",lift_duration:"",programming_operation_mode:"",radiator_covered:"",window_open_feature:"",preheat_status:"",adaptation_run_status:"",adaptation_run_settings:"",adaptation_run_control:"",regulation_setpoint_offset:"",led_indication:"LED Indication",action_duration:"",temperature_sensitivity:"\u6EAB\u5EA6\u9748\u654F\u5EA6",led_enable:"LED Enable",temperature_scale:"",battpercentage:"",outdoor_temperature:"",button_vibration_level:"",floor_sensor_type:"",powerup_status:"",floor_sensor_calibration:"",dry_time:"",mode_after_dry:"",temperature_display:"",window_open_check:"",hysterersis:"",display_auto_off_enabled:"",alarm_airtemp_overvalue:"",backlight:"",color_power_on_behavior:"Colour Power On Behaviour",valve_state:"\u6578\u503C\u72C0\u614B",indicate_light:"",ADCO:"",BASE:"",OPTARIF:"",ISOUSC:"",HCHC:"",HCHP:"",BBRHCJW:"",BBRHPJW:"",BBRHCJR:"",BBRHPJR:"",IINST:"",IINST2:"",IINST3:"",IMAX:"",IMAX2:"",IMAX3:"",PMAX:"",PAPP:"",PTEC:"",DEMAIN:"",HHPHC:"",PPOT:"",PEJP:"",ADPS:"",ADIR1:"",ADIR2:"",ADIR3:"",LTARF:"",NTARF:"",VTIC:"",DATE:"",EASF07:"",EASF08:"",EASF09:"",EASF10:"",EASD01:"",EASD02:"",EASD03:"",EASD04:"",EAIT:"",ERQ1:"",ERQ2:"",ERQ3:"",ERQ4:"",URMS1:"",URMS2:"",URMS3:"",STGE:"",PCOUP:"",SINSTI:"",SMAXIN:"","SMAXIN-1":"",CCASN:"","CCASN-1":"",CCAIN:"","CCAIN-1":"",UMOY1:"",UMOY2:"",UMOY3:"",SINSTS2:"",SINSTS3:"",SMAXN2:"",SMAXN3:"","SMAXN-1":"","SMAXN2-1":"","SMAXN3-1":"",MSG1:"",MSG2:"",PRM:"",DPM1:"",FPM1:"",DPM2:"",FPM2:"",DPM3:"",FPM3:"",RELAIS:"",NJOURF:"","NJOURF+1":"","PJOURF+1":"",PPOINTE1:"",led_when_off:"",led_when_on:"LED When On",cable_outlet_mode:"",led_effect:"",color:"",individual_led_effect:"",led:"LED",dimmingSpeedUpRemote:"",dimmingSpeedUpLocal:"",rampRateOffToOnRemote:"",rampRateOffToOnLocal:"",dimmingSpeedDownRemote:"",dimmingSpeedDownLocal:"",rampRateOnToOffRemote:"",rampRateOnToOffLocal:"",minimumLevel:"",maximumLevel:"",invertSwitch:"",autoTimerOff:"",defaultLevelLocal:"",defaultLevelRemote:"",stateAfterPowerRestored:"",loadLevelIndicatorTimeout:"",activePowerReports:"",periodicPowerAndEnergyReports:"",activeEnergyReports:"",powerType:"",switchType:"",physicalOnOffDelay:"",smartBulbMode:"",ledColorWhenOn:"",ledColorWhenOff:"",ledIntensityWhenOn:"",ledIntensityWhenOff:"",localProtection:"",remoteProtection:"",outputMode:"",onOffLedMode:"",firmwareUpdateInProgressIndicator:"",defaultLed1ColorWhenOn:"",defaultLed1ColorWhenOff:"",defaultLed1IntensityWhenOn:"",defaultLed1IntensityWhenOff:"",defaultLed2ColorWhenOn:"",defaultLed2ColorWhenOff:"",defaultLed2IntensityWhenOn:"",defaultLed2IntensityWhenOff:"",defaultLed3ColorWhenOn:"",defaultLed3ColorWhenOff:"",defaultLed3IntensityWhenOn:"",defaultLed3IntensityWhenOff:"",defaultLed4ColorWhenOn:"",defaultLed4ColorWhenOff:"",defaultLed4IntensityWhenOn:"",defaultLed4IntensityWhenOff:"",defaultLed5ColorWhenOn:"",defaultLed5ColorWhenOff:"",defaultLed5IntensityWhenOn:"",defaultLed5IntensityWhenOff:"",defaultLed6ColorWhenOn:"",defaultLed6ColorWhenOff:"",defaultLed6IntensityWhenOn:"",defaultLed6IntensityWhenOff:"",defaultLed7ColorWhenOn:"",defaultLed7ColorWhenOff:"",defaultLed7IntensityWhenOn:"",defaultLed7IntensityWhenOff:"",doubleTapUpEvent:"",hcho:"HCHO",aqi:"AQI",pm10:"PM\u2081\u2080",battery2:"",control_mode:"",switch_status:"",load_detection_mode:"",load_type:"",load_dimmable:"",power_supply_mode:"",led_feedback:"LED Feedback",soil_moisture:"\u571F\u58E4\u6FD5\u5EA6",card:"\u5361\u7247",led_state:"LED State",external_temperature:"",hysteresis:"",max_temperature_protection:"",backlight_led:""},z1t={add_to_group:"\u65B0\u589E\u5230\u7FA4\u7D44",create_group:"\u5EFA\u7ACB\u7FA4\u7D44",new_group_id:"\u65B0\u7FA4\u7D44 ID",new_group_id_placeholder:"\u6307\u5B9A\u7FA4\u7D44 ID",new_group_name:"\u65B0\u7FA4\u7D44\u540D\u7A31",new_group_name_placeholder:"\u4F8B\uFF1A\u6211\u7684\u81E5\u5BA4\u71C8",remove_group:"\u79FB\u9664\u7FA4\u7D44",group_id:"\u7FA4\u7D44 ID",group_name:"\u7FA4\u7D44\u540D\u7A31",group_members:"\u7FA4\u7D44\u6210\u54E1",group_scenes:"\u7FA4\u7D44\u5834\u666F",rename_group:"\u91CD\u65B0\u547D\u540D\u7FA4\u7D44"},N1t={empty_logs_message:"\u7121\u65E5\u8A8C",filter_by_text:"\u6309\u6587\u5B57\u904E\u6FFE",show_only:"\u53EA\u986F\u793A"},F1t={help_coordinator_link_description:"\u5BE6\u7DDA\u8868\u793A\u9023\u63A5\u5230\u5354\u8ABF\u5668",help_end_device_description:"\u7DA0\u8272\u70BA\u7D42\u7AEF\u88DD\u7F6E",help_is_coordinator:"\u70BA\u5354\u8ABF\u5668",help_lqi_description:"\u9023\u63A5\u54C1\u8CEA\u4ECB\u65BC 0 - 255 (\u8D8A\u9AD8\u8D8A\u597D)\uFF0C\u6578\u503C\u5177\u6709 / \u8868\u793A\u6709\u591A\u91CD\u9023\u63A5",help_router_description:"\u85CD\u8272\u70BA\u8DEF\u7531\u7BC0\u9EDE",help_router_links_description:"\u865B\u7DDA\u8868\u793A\u9023\u63A5\u5230\u8DEF\u7531\u7BC0\u9EDE",hide:"\u9EDE\u6211\u96B1\u85CF\u8AAA\u660E",load:"\u8F09\u5165\u7DB2\u8DEF\u62D3\u6A38\u5716",loading:"\u6839\u64DA\u4F60\u7684\u7DB2\u8DEF\u898F\u6A21\uFF0C\u9019\u53EF\u80FD\u9700\u8981\u5341\u79D2\u5230\u5169\u5206\u9418\u7684\u6642\u9593\u3002"},B1t={all:"\u5168\u90E8",dashboard:"\u7E3D\u89BD",devices:"\u88DD\u7F6E",disable_join:"\u505C\u7528\u65B0\u88DD\u7F6E\u914D\u5C0D",extensions:"\u64F4\u5145",groups:"\u7FA4\u7D44",logs:"\u65E5\u8A8C",map:"\u7DB2\u8DEF\u5716",permit_join:"\u5141\u8A31\u88DD\u7F6E\u52A0\u5165",restart:"\u91CD\u555F",settings:"\u8A2D\u5B9A",toggle_dropdown:"\u5207\u63DB\u4E0B\u62C9\u9078\u55AE",touchlink:`
256
256
  `},W1t={check:"\u6AA2\u67E5\u66F4\u65B0",check_all:"\u6AA2\u67E5\u5168\u90E8\u66F4\u65B0",empty_ota_message:"\u4F60\u6C92\u6709\u652F\u63F4 OTA \u66F4\u65B0\u7684\u88DD\u7F6E",remaining_time:"\u5269\u9918\u6642\u9593 {{- remaining}}",update:"\u66F4\u65B0\u88DD\u7F6E\u97CC\u9AD4"},H1t={about:"\u95DC\u65BC",advanced:"\u9032\u968E",availability:"\u53EF\u7528\u6027",blocklist:"\u5C01\u9396\u88DD\u7F6E\u5217\u8868",coordinator_revision:"\u5354\u8ABF\u5668\u7248\u672C",coordinator_type:"\u5354\u8ABF\u5668\u985E\u578B",donate:"\u8D0A\u52A9",donation_text:["\u55E8, %username%, \u82E5\u89BA\u5F97\u6211\u5011\u505A\u5F97\u4E0D\u932F","\u8ACB\u5225\u541D\u55C7\u5C0D\u6211\u5011\u8AAA\u8072\u52A0\u6CB9 ;)"],download_state:"\u4E0B\u8F09\u72C0\u614B",experimental:"\u5BE6\u9A57\u6027\u529F\u80FD",external_converters:"\u5916\u90E8\u8F49\u63DB\u5668",frontend:"\u524D\u7AEF",frontend_version:"\u524D\u7AEF\u7248\u672C",main:"\u57FA\u790E",ota:"OTA \u66F4\u65B0",passlist:"\u5141\u8A31\u88DD\u7F6E\u5217\u8868",raw:"RAW",restart_zigbee2mqtt:"\u91CD\u555F Zigbee2MQTT",serial:"\u4E32\u5217\u901A\u8A0A",settings:"\u8A2D\u5B9A",tools:"\u5DE5\u5177",zigbee2mqtt_version:"Zigbee2MQTT \u7248\u672C",translate:"\u7FFB\u8B6F",stats:"\u7D71\u8A08"},j1t={detected_devices_message:"\u6AA2\u6E2C\u5230{{count}}\u500B touchlink \u88DD\u7F6E",rescan:"\u91CD\u65B0\u6383\u63CF",scan:"\u6383\u63CF"},U1t={clear:"\u7121\u4EBA",closed:"\u95DC\u9589",false:"\u5426",not_supported:"\u4E0D\u652F\u63F4",occupied:"\u6709\u4EBA",open:"\u958B\u555F",supported:"\u652F\u63F4",true:"\u662F",empty_string:'\u7A7A\u5B57\u4E32("")',leaking:"\u6D29\u6F0F",tampered:"\u7BE1\u6539",null:"\u7A7A\u503C",Clear:"\u6E05\u9664",Closed:"\u95DC\u9589",Occupied:"\u5360\u7528\u4E2D",Open:"\u958B\u555F"},V1t={actions:"\u52D5\u4F5C",attribute:"\u5C6C\u6027",battery:"\u96FB\u6C60",block_join:"\u9632\u6B62\u518D\u6B21\u52A0\u5165",cluster:"\u53E2\u96C6",description:"\u63CF\u8FF0",device_type:"\u88DD\u7F6E\u985E\u578B",endpoint:"\u7AEF\u9EDE",firmware_build_date:"\u97CC\u9AD4\u7DE8\u8B6F\u6642\u9593",firmware_version:"\u97CC\u9AD4\u7248\u672C",force_remove:"\u5F37\u5236\u79FB\u9664",friendly_name:"\u66B1\u7A31",ieee_address:"IEEE \u5730\u5740",input_clusters:"\u8F38\u5165\u53E2\u96C6",interview_completed:"\u914D\u5C0D\u6210\u529F",interview_failed:"\u914D\u5C0D\u5931\u6557",interviewing:"\u914D\u5C0D\u4E2D",last_seen:"\u6700\u5F8C\u51FA\u73FE",lqi:"\u9023\u7DDA\u54C1\u8CEA",mains_single_phase:"\u55AE\u76F8\u96FB\u6E90",manufacturer:"\u88FD\u9020\u5546",max_rep_interval:"\u6700\u5927\u56DE\u5831\u9593\u9694",min_rep_change:"\u4FEE\u6539\u6700\u5C0F\u56DE\u5831\u9593\u9694",min_rep_interval:"\u6700\u5C0F\u56DE\u5831\u9593\u9694",model:"\u578B\u865F",network_address:"\u7DB2\u8DEF\u5730\u5740",none:"\u7121",output_clusters:"\u8F38\u51FA\u53E2\u96C6",pic:"\u5716\u7247",power:"\u96FB\u6E90\u985E\u578B",reconfigure:"\u91CD\u65B0\u8A2D\u7F6E\u88DD\u7F6E",remove_device:"\u79FB\u9664\u88DD\u7F6E",rename_device:"\u91CD\u65B0\u547D\u540D\u88DD\u7F6E",select_attribute:"\u9078\u64C7\u5C6C\u6027",select_cluster:"\u9078\u64C7\u53E2\u96C6",support_status:"\u53D7\u652F\u63F4\u72C0\u614B",unsupported:"\u4E0D\u652F\u63F4",updating_firmware:"\u66F4\u65B0\u97CC\u9AD4\u4E2D",update_Home_assistant_entity_id:"\u66F4\u65B0 Home Assistant \u5BE6\u9AD4 ID",zigbee_manufacturer:"Zigbee \u88FD\u9020\u5546",zigbee_model:"Zigbee \u578B\u865F",device:"\u88DD\u7F6E",channel:"\u983B\u9053",save_description:"\u5132\u5B58\u63CF\u8FF0"},G1t={scene_id:"\u5834\u666F ID",store:"\u5132\u5B58",remove:"\u79FB\u9664",remove_all:"\u5168\u90E8\u79FB\u9664",add:"\u65B0\u589E",select_scene:"\u9078\u64C7\u5834\u666F",scene_name:"\u5834\u666F\u540D\u7A31"},q1t={byType:"\u6309\u8A2D\u5099\u985E\u578B",byPowerSource:"\u6309\u96FB\u6E90\u985E\u578B",byVendor:"\u6309\u5EE0\u5546",byModel:"\u6309\u578B\u865F",total:"\u7E3D\u8A08",EndDevice:"\u7D42\u7AEF\u8A2D\u5099",Router:"\u8DEF\u7531\u5668"},K1t={avaliability:"\u53EF\u7528",offline:"\u96E2\u7DDA",online:"\u5728\u7DDA",disabled:"\u7981\u7528",enabled:"\u555F\u7528"},Q1t={"Home Assistant legacy triggers, when enabled Zigbee2mqt will send an empty 'action' or 'click' after one has been send. A 'sensor_action' and 'sensor_click' will be discoverd":"Home Assistant legacy triggers, when enabled Zigbee2mqtt will send an empty 'action' or 'click' after one has been sent. A 'sensor_action' and 'sensor_click' will be discovered","Location of override OTA index file":" Location of override OTA index file ","Payload to be used for device availabilty and bridge/state topics. true = text, false = JSON":"","Name of the device in Home Assistant":""},Z1t={"Availability (simple)":"","Availability (advanced)":"","Disable led":"Disable LED","OTA index override file name":"","Frontend (simple)":"","Frontend (advanced)":"","Options that are applied to all devices":"","Legacy availability payload":"","Baudrate (deprecated)":"","RTS / CTS (deprecated)":"","IKEA TRADFRI OTA use test url (deprecated)":"","Experimental (deprecated)":"","Home Assistant":"","Home Assistant name":""};var Y1t={common:O1t,devicePage:M1t,exposes:R1t,extensions:L1t,featureDescriptions:P1t,featureNames:$1t,groups:z1t,logs:N1t,map:F1t,navbar:B1t,ota:W1t,settings:H1t,touchlink:j1t,values:U1t,zigbee:V1t,scene:G1t,stats:q1t,avaliability:K1t,settingsSchemaDescriptions:Q1t,settingsSchemaTitles:Z1t};const X1t={action:"\uC561\uC158",actions:"\uC561\uC158",apply:"\uC801\uC6A9",attribute:"\uC18D\uC131",bind:"\uBC14\uC778\uB4DC",check_all:"\uC804\uCCB4 \uD655\uC778",clear:"\uCD08\uAE30\uD654",close:"\uB2EB\uAE30",cluster:"\uD074\uB7EC\uC2A4\uD130",clusters:"\uD074\uB7EC\uC2A4\uD130",confirmation:"\uBA85\uB839 \uD655\uC778",delete:"\uC0AD\uC81C",destination:"\uB300\uC0C1",devices:"\uC7A5\uCE58",dialog_confirmation_prompt:"\uC2E4\uD589\uD560\uAE4C\uC694?",disable:"\uD574\uC81C",enter_search_criteria:"\uAC80\uC0C9\uC5B4 \uC785\uB825",groups:"\uADF8\uB8F9",loading:"\uB85C\uB529 \uC911...",none:"\uC5C6\uC74C",ok:"\uD655\uC778",read:"\uC77D\uAE30",save:"\uC800\uC7A5",select_device:"\uC7A5\uCE58 \uC120\uD0DD",select_endpoint:"endpoint \uC120\uD0DD",unbind:"\uBC14\uC778\uB4DC \uD574\uC81C",write:"\uC4F0\uAE30",destination_endpoint:"\uB300\uC0C1 endpoint"},J1t={about:"\uC790\uC138\uD788",bind:"\uBC14\uC778\uB4DC",clusters:"\uD074\uB7EC\uC2A4\uD130",dev_console:"\uAC1C\uBC1C\uC790 \uCF58\uC194",reporting:"\uBCF4\uACE0",settings:"\uC124\uC815",settings_specific:"\uC124\uC815 (specific)",state:"\uC0C1\uD0DC",unknown_device:"\uC54C \uC218 \uC5C6\uB294 \uC7A5\uCE58"},eSt={empty_exposes_definition:"Exposes \uC815\uC758 \uC5C6\uC74C"},tSt={create_new_extension:"\uC0C8 \uC775\uC2A4\uD150\uC158 \uB9CC\uB4E4\uAE30",extension_name_propmt:"\uC0C8 \uC775\uC2A4\uD150\uC158 \uC774\uB984 \uC785\uB825",select_extension_to_edit:"\uBC14\uAFC0 \uC775\uC2A4\uD150\uC158 \uC120\uD0DD"},rSt={"Color temperature of this light":"Colour temperature of this light","Color temperature after cold power on of this light":"Colour temperature after cold power on of this light","Color of this light in the CIE 1931 color space (x/y)":"Colour of this light in the CIE 1931 colour space (xy)","Link quality (signal strength)":"\uC5F0\uACB0 \uD488\uC9C8(\uC2E0\uD638 \uAC15\uB3C4)","Temperature setpoint":"\uC628\uB3C4 \uC124\uC815\uAC12","Motor speed":"\uBAA8\uD130 \uC18D\uB3C4","Recover state after power outage":"\uC815\uC804 \uD6C4 \uC0C1\uD0DC \uBCF5\uAD6C","Remaining battery in %":"\uB0A8\uC740 \uBC30\uD130\uB9AC(%)","Color of this light expressed as hue/saturation":"Colour of this light expressed as hue/saturation","Type of user, unrestricted: owner (default), (year|week)_day_schedule: user has ability to open lock based on specific time period, master: user has ability to both program and operate the door lock, non_access: user is recognized by the lock but does not have the ability to open the lock":"","Triggered action on the lock":"","Source of the triggered action on the lock":"","ID of user that triggered the action on the lock":"","Sum of consumed energy":"\uC18C\uBE44 \uC5D0\uB108\uC9C0 \uD569\uACC4","Measured temperature value":"\uCE21\uC815\uB41C \uC628\uB3C4 \uAC12","Measured electrical potential value":"\uCE21\uC815\uB41C \uC804\uC704 \uAC12","Enable/disable the LED at night":"\uC57C\uAC04\uC5D0 LED \uD65C\uC131\uD654/\uBE44\uD65C\uC131\uD654","Disables the physical switch button":"\uBB3C\uB9AC\uC801 \uC2A4\uC704\uCE58 \uBC84\uD2BC \uBE44\uD65C\uC131\uD654","Maximum allowed load, turns off if exceeded":"\uCD5C\uB300 \uD5C8\uC6A9 \uBD80\uD558, \uCD08\uACFC \uC2DC \uAEBC\uC9D0","Measured illuminance in lux":"\uCE21\uC815\uB41C \uC870\uB3C4(lux)","After turn on, the indicator light turns on while switch is off, and vice versa":"","Measured relative humidity":"\uCE21\uC815\uB41C \uC0C1\uB300 \uC2B5\uB3C4","Temperature of the device":"\uC7A5\uCE58 \uC628\uB3C4","Number of power outages (since last pairing)":"","Number of power outages":"","The current charging status.":"","The current state of the motor.":"","Whether the motor is moving or not":"","Motor state":"","Value of smoke concentration":"","Value of smoke concentration in dB/m":"","Starts the self-test process (checking the indicator light and buzzer work properly)":"","Self-test in progress":"","Mute the buzzer for 80 seconds (buzzer cannot be pre-muted, because this function only works when the alarm is triggered)":"","Buzzer muted":"","When this option is enabled then in the normal monitoring state, the green indicator light flashes every 60 seconds":"","When this option is enabled and a smoke is detected, other detectors with this option enabled will also sound the alarm buzzer":"","Value of gas concentration":"",'Gas concentration value at which an alarm is triggered ("10%LEL" is more sensitive than "15%LEL")':"","Mute the buzzer for 10 minutes (buzzer cannot be pre-muted, because this function only works when the alarm is triggered)":"","When this option is enabled and a gas leak is detected, other detectors with this option enabled will also sound the alarm buzzer":"",'"Preparation" or "work" (measurement of the gas concentration value and triggering of an alarm are only performed in the "work" state)':"",'Presence events: "enter", "leave", "left_enter", "right_leave", "right_enter", "left_leave", "approach", "away"':"","Monitoring mode with or without considering right and left sides":"","The distance at which the sensor detects approaching":"","Different sensitivities means different static human body recognition rate and response speed of occupied":"","Reset the status of no presence":"","Time interval for detecting actions":"","Decoupled mode for center button":"Decoupled mode for centre button","Switch between rgbw mode or dual color temperature mode":"","Is the device plugged in":"","Smoke alarm status":"","Test alarm":"","Test alarm result":"","Battery level state":"","Alarm enable":"","Fault alarm status":"","Silence siren":"","Enables/disables physical input on the device":"\uC7A5\uCE58\uC758 \uBB3C\uB9AC\uC801\uC778 \uC785\uB825 \uC0AC\uC6A9/\uD574\uC81C","The dimmer is capable of measuring the reactanceto distinguish inductive and capacitive loads.":"The dimmer is capable of measuring the reactance to distinguish inductive and capacitive loads.","Controls the behavior when the device is powered on":"Controls the behaviour when the device is powered on","PIR sensor sensitivity (refresh and update only while active)":"","PIR keep time in seconds (refresh and update only while active)":"","Report interval":"","Current display unit":"","Temperature alarm status":"","Alarm temperature max":"\uCD5C\uACE0 \uC628\uB3C4 \uACBD\uBCF4","Alarm temperature min":"\uCD5C\uC800 \uC628\uB3C4 \uACBD\uBCF4","Humidity alarm status":"","Alarm humidity max":"","Alarm humidity min":"","Distance to target":"","Minimum range":"","Maximum range":"","Detection delay":"","Fading time":"","Self_test, possible resuts: checking, check_success, check_failure, others, comm_fault, radar_fault.":"","Brightness state":"","Speed of movement":"\uC774\uB3D9 \uC18D\uB3C4","presets for sensitivity for presence and movement":"","Tumble status switch":"","fall sensitivity of the radar":"","tumble alarm time":"","fall down status":"","static dwell alarm":"","Led status switch":"LED status switch","Alarm humidity status":"\uC2B5\uB3C4 \uACBD\uBCF4 \uC0C1\uD0DC","Alarm temperature status":"\uC628\uB3C4 \uACBD\uBCF4 \uC0C1\uD0DC","Trigger the door movement":"","Indicates if the garage door contact is closed (= true) or open (= false)":"","Relay LED indicator mode":"","Plug LED indicator mode":"","Maximum temperature":"\uCD5C\uB300 \uC628\uB3C4","Minimum temperature":"\uCD5C\uC18C \uC628\uB3C4",Position:"\uC704\uCE58","Away mode":"\uC678\uCD9C \uBAA8\uB4DC",'When Anti-Freezing function is activated, the temperature in the house is kept at 8 \xB0C, the device display "AF".press the pair button to cancel.':"",'Battery life can be prolonged by switching the heating off. To achieve this, the valve is closed fully. To activate the heating stop, the device display "HS", press the pair button to cancel.':"","Window open?":"","Mode of this device, in the `heat` mode the TS0601 will remain continuously heating, i.e. it does not regulate to the desired temperature. If you want TRV to properly regulate the temperature you need to use mode `auto` instead setting the desired temperature.":"","Enable/disable auto lock":"\uC790\uB3D9 \uC7A0\uAE08 \uC0AC\uC6A9/\uD574\uC81C","Enable/disable away mode":"\uC678\uCD9C \uBAA8\uB4DC \uC0AC\uC6A9/\uD574\uC81C","Force the valve position":"\uAC15\uC81C \uBCA8\uBE0C \uC704\uCE58","Maximum light brightness":"","The measured CO (carbon monoxide) value":"","The measured formaldehyd value":"The measured formaldehyde value","Measured PM2.5 (particulate matter) concentration":"Measured PM\u2082.\u2085 (particulate matter) concentration","Group where the action was triggered on":"","The measured occupancy value":"","The measured noise value":"","Indicates whether the device detected noise":"","Time in seconds after which noise is cleared after detecting it (default: 60)":"","Time in seconds after which occupancy is cleared after detecting it (default: 60)":"","Self-heating compensation. The compensation value is subtracted from the measured temperature":"","If the sensor is triggered by the slightest movement, reduce the sensitivity, otherwise increase it (default: 50)":"","The minimum noise level at which the detector will work (default: 50)":"","Automatic calibration of the CO2 sensor. If ON, the CO2 sensor will automatically calibrate every 7 days.":"","Ventilate the room for 20 minutes, turn on manual calibration, and turn it off after one second. After about 5 minutes the CO2 sensor will show 400ppm. Calibration completed":"","Turn on when working in conditions of high humidity (more than 70 %, RH) or condensation, if the sensor shows 0 or 100 %.":"","White brightness of this light":"","Valve state if open or closed":"","Position of the valve":"","Control backlight dimming behavior":"Control backlight dimming behaviour","Door status":"","User ID can only number 1":"","Pincode to set, set pincode(4 digit) to null to clear":"","temperature of device internal mcu":"","Measured electrical power factor":"","Measured electrical ac frequency":"","Currently status":"","Instantaneous measured apparent power":"","Instantaneous measured power on phase A":"","Instantaneous measured power on phase B":"","Instantaneous measured power on phase C":"","Instantaneous measured power factor":"","Sum of consumed energy on phase A":"","Sum of consumed energy on phase B":"","Sum of consumed energy on phase C":"","Measured electrical AC frequency":"","Measured electrical potential value on phase A":"","Measured electrical potential value between phase A and B":"","Measured electrical potential value between phase B and C":"","Measured electrical potential value between phase C and A":"","Instantaneous measured electrical current on phase A":"","Time in seconds after which occupancy is cleared after detecting it":"","Sets dimming mode to autodetect or fixed RC/RL/RL_LED mode (max load is reduced in RL_LED)":"","Duration of lift":"","Controls how programming affects the thermostat. Possible values: setpoint (only use specified setpoint), schedule (follow programmed setpoint schedule). Changing this value does not clear programmed schedules.":"","Not clear how this affects operation. However, it would appear that the device does not execute any motor functions if this is set to false. This may be a means to conserve battery during periods that the heating system is not energized (e.g. during summer). `false` No Heat Available or `true` Heat Available":"","If `radiator_covered` is `true`: Set at maximum 30 minutes interval but not more often than every 5 minutes and 0.1 degrees difference. Resets every 35 minutes to standard. If `radiator_covered` is `false`: Set at maximum 3 hours interval but not more often than every 30 minutes and 0.1 degrees difference. Resets every 3 hours to standard. Value 21C = 2100 (-8000=undefined).":"","Set if the TRV should solely rely on external_measured_room_sensor or operate in offset mode. `false` = Auto Offset Mode or `true` = Room Sensor Mode":"","Whether or not the window open feature is enabled":"","Mean radiator load for room calculated by gateway for load balancing purposes (-8000=undefined)":"","Specific for pre-heat running in Zigbee Weekly Schedule mode":"","Status of adaptation run: None (before first run), In Progress, Valve Characteristic Found, Valve Characteristic Lost":"","Automatic adaptation run enabled (the one during the night)":"","Adaptation run control: Initiate Adaptation Run or Cancel Adaptation Run":"","Regulation SetPoint Offset in range -2.5\xB0C to 2.5\xB0C in steps of 0.1\xB0C. Value 2.5\xB0C = 25.":"","Temperature sensitivity":"","Enable LED":"","Temperature/humidity alarm status":"","Temperature scale (\xB0F/\xB0C)":"","OLED brightness when operating the buttons. Default: Medium.":"","Key beep volume and vibration level. Default: Low.":"","Type of the external floor sensor. Default: NTC 10K/25.":"","The sensor used for heat control. Default: Room Sensor.":"","The mode after a power reset. Default: Previous Mode.":"","The tempearatue calibration for the exernal floor sensor, between -3 and 3 in 0.1\xB0C. Default: 0.":"","The duration of Dry Mode, between 5 and 100 minutes. Default: 5.":"","The mode after Dry Mode. Default: Auto.":"","The temperature on the display. Default: Room Temperature.":"","The threshold to detect window open, between 1.5 and 4 in 0.5 \xB0C. Default: 0 (disabled).":"","Hysteresis setting, between 0.5 and 2 in 0.1 \xB0C. Default: 0.5.":"","Room temperature alarm threshold, between 20 and 60 in \xB0C. 0 means disabled. Default: 45.":"","Do not disturb mode":"\uBC29\uD574 \uAE08\uC9C0 \uBAA8\uB4DC","Power on behavior state":"Power on behaviour state","ECO mode (energy saving mode)":"ECO \uBAA8\uB4DC(\uC5D0\uB108\uC9C0 \uC808\uC57D \uBAA8\uB4DC)","Indicator light status":"","The delta between local_temperature and current_heating_setpoint to trigger Heat":"","Maximum temperature limit":"\uCD5C\uB300 \uC628\uB3C4 \uC81C\uD55C","Serial Number":"","Base index":"","Tarif option":"","Subscribed intensity level":"","HCHC index":"","HCHP index":"","BBRHCJW index":"","BBRHPJW index":"","BBRHCJR index":"","BBRHPJR index":"","RMS current":"","RMS current (phase 2)":"","RMS current (phase 3)":"","RMS current peak":"","RMS current peak (phase 2)":"","RMS current peak (phase 3)":"","Three-phase power peak":"","Apparent power":"","Current pricing period":"","Tomorrow color":"","Schedule HPHC":"","Presence of potentials":"","EJP start notice (30min)":"","Subscribed Power Exceeded Warning":"","Over Current Warning (phase 1)":"","Over Current Warning (phase 2)":"","Over Current Warning (phase 3)":"","Current supplier price label":"","Current tariff index number":"","Customer tele-information protocol version":"","Current date and time":"","Total provider active power delivered (index 07)":"","Total provider active power delivered (index 08)":"","Total provider active power delivered (index 09)":"","Total provider active power delivered (index 10)":"","Active energy withdrawn Distributor (index 01)":"","Active energy withdrawn Distributor (index 02)":"","Active energy withdrawn Distributor (index 03)":"","Active energy withdrawn Distributor (index 04)":"","Total active power injected":"","Total reactive power (Q1)":"","Total reactive power (Q2)":"","Total reactive power (Q3)":"","Total reactive power (Q4)":"","RMS voltage":"","RMS voltage (phase 2)":"","RMS voltage (phase 3)":"","Register of Statutes":"","Apparent power threshold":"","Instantaneous apparent power injected":"","Apparent power max. injected n":"","Apparent power max. injected n-1":"","Current point of the active load curve drawn":"","Previous point of the active load curve drawn":"","Point n of the withdrawn active load curve":"","Point n-1 of the withdrawn active load curve":"","Average RMS voltage (phase 1)":"","Average RMS voltage (phase 2)":"","Average RMS voltage (phase 3)":"","Immediate apparent power delivered (phase 2)":"","Immediate apparent power delivered (phase 3)":"","Apparent power delivered peak (phase 2)":"","Apparent power delivered peak (phase 3)":"","Apparent power max. draw-off n-1":"","Apparent power max. draw-off n-1 (phase 2)":"","Apparent power max. draw-off n-1 (phase 3)":"","Message short":"","Message ultra-short":"","PRM number":"","Start mobile point 1":"","Stop mobile point 1":"","Start mobile point 2":"","Stop mobile point 2":"","Start mobile point 3":"","Stop mobile point 3":"","Current day number supplier calendar":"","Next day number supplier calendar":"","Profile of the next supplier calendar day":"","Profile of the next check-in day":"","Motor options":"\uBAA8\uD130 \uC635\uC158","Motor direction":"\uBAA8\uD130 \uBC29\uD5A5","Motor is moving":"\uBAA8\uD130\uAC00 \uB3D9\uC791\uC911\uC785\uB2C8\uB2E4","Controls behaviour of led/siren on alarm":"Controls behaviour of LED/siren on alarm","Measured eCO2 value":"Measured CO2 value","Temperature 1":"\uC628\uB3C4 1","Temperature 2":"\uC628\uB3C4 2","Temperature 3":"\uC628\uB3C4 3","Temperature 4":"\uC628\uB3C4 4","Temperature 5":"\uC628\uB3C4 5","Temperature 6":"\uC628\uB3C4 6","Temperature 7":"\uC628\uB3C4 7","Temperature 8":"\uC628\uB3C4 8","Temperature 9":"\uC628\uB3C4 9","Enable the LED when the light is off":"","Works only when the pilot wire is deactivated":"","Animation Effect to use for the LEDs":"","Calculated by using a hue color circle(value/255*360) If color = 255 display white":"","Brightness of the LEDs":"","1-60 is in seconds calculated 61-120 is in minutes calculated by(value-60) Example a value of 65 would be 65-60 = 5 minutes - 120-254 Is in hours calculated by(value-120) Example a value of 132 would be 132-120 would be 12 hours. - 255 Indefinitely":"","Individual LED to target.":"","Animation Effect to use for the LED":"","Brightness of the LED":"","1-60 is in seconds calculated 61-120 is in minutes calculated by(value-60) Example a value of 65 would be 65-60 = 5 minutes - 120-254 Is in hours calculated by(value-120) Example a value of 132 would be 132-120 would be 12 hours. - 255 Indefinitely":"","This changes the speed that the light dims up when controlled from the hub. A setting of 0 turns the light immediately on. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 25 (2.5s)":"","This changes the speed that the light dims up when controlled at the switch. A setting of 0 turns the light immediately on. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpRemote setting.":"","This changes the speed that the light turns on when controlled from the hub. A setting of 0 turns the light immediately on. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpRemote setting.":"","This changes the speed that the light turns on when controlled at the switch. A setting of 0 turns the light immediately on. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpRemote setting.":"","This changes the speed that the light dims down when controlled from the hub. A setting of 0 turns the light immediately off. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpRemote setting.":"","This changes the speed that the light dims down when controlled at the switch. A setting of 0 turns the light immediately off. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpLocal setting.":"","This changes the speed that the light turns off when controlled from the hub. A setting of 'instant' turns the light immediately off. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with rampRateOffToOnRemote setting.":"","This changes the speed that the light turns off when controlled at the switch. A setting of 'instant' turns the light immediately off. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with rampRateOffToOnLocal setting.":"","The minimum level that the dimmer allows the bulb to be dimmed to. Useful when the user has an LED bulb that does not turn on or flickers at a lower level.":"","The maximum level that the dimmer allows the bulb to be dimmed to.Useful when the user has an LED bulb that reaches its maximum level before the dimmer value of 99 or when the user wants to limit the maximum brightness.":"","Inverts the orientation of the switch. Useful when the switch is installed upside down. Essentially up becomes down and down becomes up.":"","Automatically turns the switch off after this many seconds. When the switch is turned on a timer is started. When the timer expires, the switch is turned off. 0 = Auto off is disabled.":"","Default level for the dimmer when it is turned on at the switch. A setting of 0 means that the switch will return to the level that it was on before it was turned off.":"","Default level for the dimmer when it is turned on from the hub. A setting of 0 means that the switch will return to the level that it was on before it was turned off.":"","The state the switch should return to when power is restored after power failure. 0 = off, 1-100 = level, 101 = previous.":"","Shows the level that the load is at for x number of seconds after the load is adjusted and then returns to the Default LED state. 0 = Stay Off, 1-10 = seconds, 11 = Stay On.":"","Power level change that will result in a new power report being sent. The value is a percentage of the previous report.0 = disabled, 1-32767 = 0.1W-3276.7W.":"","Time period between consecutive power & energy reports being sent (in seconds). The timer is reset after each report is sent.":"","Energy reports Energy level change which will result in sending a new energy report.0 = disabled, 1-32767 = 0.01kWh-327.67kWh. Default setting: 10 (0.1 kWh)":"","Set the power type for the device.":"","Set the switch configuration.":"","This will set the button press delay. 0 = no delay (Disables Button Press Events), 1 = 100ms, 2 = 200ms, 3 = 300ms, etc. up to 900ms. Default = 500ms.":"","For use with Smart Bulbs that need constant power and are controlled via commands rather than power.":"","Set the color of the LED Indicator when the load is on.":"","Set the color of the LED Indicator when the load is off.":"","Set the intensity of the LED Indicator when the load is on.":"","Set the intensity of the LED Indicator when the load is off.":"","Ability to control switch from the wall.":"","Ability to control switch from the hub.":"","Use device as a Dimmer or an On/Off switch.":"","When the device is in On/Off mode, use full LED bar or just one LED.":"","Display progress on LED bar during firmware update.":"","0-254:This is the color of the LED strip in a hex representation. 255:Synchronization with default all LED strip color parameter.":"","Intesity of LED strip when on. 101 = Syncronized with default all LED strip intensity parameter.":"","Intesity of LED strip when off. 101 = Syncronized with default all LED strip intensity parameter.":"","Result of a double tap on the up button.":"","Measured Hcho value":"Measured HCHO value","Measured PM10 (particulate matter) concentration":"Measured PM\u2081\u2080 (particulate matter) concentration","Remaining battery 2 in %":"","Illuminance calibration in lux":"","Temperature calibration (-2.0...2.0)":"","Enable reporting":"","Control mode":"","External switch type":"","External switch status":"","Load detection mode":"","Load type":"","Load dimmable":"","Power supply mode":"","Current state":"\uD604\uC7AC \uC0C1\uD0DC","Pulses per kwh. Default 1000 imp/kWh. Range 0 to 65535":"Pulses per kWh. Default 1000 imp/kWh. Range 0 to 65535","Indicates if the card is inserted (= true) or not (= false)":"","Current temperature measured on the external sensor (floor)":"","The difference between the temperature at which the thermostat switches off, and the temperature at which it switches on again.":"","Max guarding temperature":"","Prevent changes. `false` = run normally. `true` = prevent from making changes.":"","Enables the LED when the light is off":"","Brightness of this backlight LED":"","Enable or disable the blue backlight LED":""},nSt={undefined:"undefined",state:"\uC0C1\uD0DC",brightness:"\uBC1D\uAE30",color_temp:"\uC0C9 \uC628\uB3C4",color_temp_startup:"Colour Temp Startup",color_xy:"Colour xy",linkquality:"\uC5F0\uACB0\uD488\uC9C8",local_temperature:"Local \uC628\uB3C4",system_mode:"\uC2DC\uC2A4\uD15C \uBAA8\uB4DC",local_temperature_calibration:"Local \uC628\uB3C4 \uBCF4\uC815",position:"\uC704\uCE58",options:"\uC635\uC158",motor_speed:"\uBAA8\uD130 \uC18D\uB3C4",motor_working_mode:"",percent_state:"",border:"",power_outage_memory:"\uC815\uC804 \uBA54\uBAA8\uB9AC",battery:"\uBC30\uD130\uB9AC",action:"\uC561\uC158",power_on_behavior:"Power On Behaviour",battery_low:"\uC800\uC804\uC555 \uBC30\uD130\uB9AC",color_hs:"Colour Hue/Saturation",lock_state:"\uC7A0\uAE08 \uC0C1\uD0DC",action_source_name:"",action_source_user:"",voltage:"\uC804\uC555",operation_mode:"\uB3D9\uC791 \uBAA8\uB4DC",power:"\uC804\uC6D0",energy:"\uC5D0\uB108\uC9C0",temperature:"\uC628\uB3C4",current:"\uC804\uB958",led_disabled_night:"LED Disabled Night",button_lock:"\uBC84\uD2BC \uC7A0\uAE08",contact:"\uC811\uCD09",illuminance:"\uBC1D\uAE30",illuminance_lux:"\uC870\uB3C4 lux",flip_indicator_light:"",humidity:"\uC2B5\uB3C4",lcd_brightness:"LCD \uBC1D\uAE30",language:"\uC5B8\uC5B4",lcd_auto_brightness_enabled:"LCD \uC790\uB3D9 \uBC1D\uAE30 \uD65C\uC131\uD654",homepage:"\uD648\uD398\uC774\uC9C0",standby_lcd_brightness:"\uB300\uAE30\uBAA8\uB4DC LCD \uBC1D\uAE30",available_switches:"\uC0AC\uC6A9 \uAC00\uB2A5\uD55C \uC2A4\uC704\uCE58",device_temperature:"\uC7A5\uCE58 \uC628\uB3C4",power_outage_count:"",charging_status:"",motor_state:"",running:"",strength:"\uAC15\uB3C4",angle_x:"X \uAC01\uB3C4",angle_y:"Y \uAC01\uB3C4",angle_z:"Z \uAC01\uB3C4",smoke:"\uC5F0\uAE30",smoke_density:"\uC5F0\uAE30 \uB18D\uB3C4",smoke_density_dbm:"",mute_buzzer:"",mute:"",heartbeat_indicator:"",linkage_alarm:"",gas_sensitivity:"",tamper:"\uBD84\uB9AC \uAC10\uC9C0",auto_off:"Auto off",water_leak:"\uB204\uC218",presence_event:"",monitoring_mode:"",approach_distance:"",reset_nopresence_status:"",occupancy:"\uAC10\uC9C0",detection_interval:"",pressure:"\uC555\uB825",alarm:"\uACBD\uBCF4",ac_connected:"",test_alarm:"",test_alarm_result:"",battery_level:"",fault_alarm:"",silence_siren:"",report_interval:"",temperature_unit_convert:"",temperature_alarm:"\uC628\uB3C4 \uACBD\uBCF4",max_temperature:"\uCD5C\uB300 \uC628\uB3C4",min_temperature:"\uCD5C\uC800 \uC628\uB3C4",humidity_alarm:"\uC2B5\uB3C4 \uACBD\uBCF4",max_humidity:"",min_humidity:"",target_distance:"",minimum_range:"",maximum_range:"",detection_delay:"",fading_time:"",self_test:"",brightness_state:"",action_step_size:"",action_transition_time:"",action_rate:"",child_lock:"\uC5B4\uB9B0\uC774 \uC7A0\uAE08",motion_speed:"\uBAA8\uD130 \uC18D\uB3C4",tumble_switch:"",fall_sensitivity:"",tumble_alarm_time:"",fall_down_status:"",static_dwell_alarm:"",led_status:"LED \uC0C1\uD0DC",alarm_temperature_max:"\uCD5C\uB300 \uC628\uB3C4 \uACBD\uBCF4",alarm_temperature_min:"\uCD5C\uC18C \uC628\uB3C4 \uACBD\uBCF4",alarm_humidity_max:"\uCD5C\uB300 \uC2B5\uB3C4 \uACBD\uBCF4",alarm_humidity_min:"\uCD5C\uC18C \uC2B5\uB3C4 \uACBD\uBCF4",alarm_humidity:"\uC2B5\uB3C4 \uACBD\uBCF4",alarm_temperature:"\uC628\uB3C4 \uACBD\uBCF4",trigger:"",garage_door_contact:"",indicator_mode:"",min_brightness:"\uCD5C\uC18C \uBC1D\uAE30",preset:"\uD504\uB9AC\uC14B",monday_schedule:"\uC6D4\uC694\uC77C \uC77C\uC815",tuesday_schedule:"\uD654\uC694\uC77C \uC77C\uC815",wednesday_schedule:"\uC218\uC694\uC77C \uC77C\uC815",thursday_schedule:"\uBAA9\uC694\uC77C \uC77C\uC815",friday_schedule:"\uAE08\uC694\uC77C \uC77C\uC815",saturday_schedule:"\uD1A0\uC694\uC77C \uC77C\uC815",sunday_schedule:"\uC77C\uC694\uC77C \uC77C\uC815",away_mode:"\uC678\uCD9C \uBAA8\uB4DC",comfort_temperature:"\uD3B8\uC548\uD55C \uC628\uB3C4",holiday_start_stop:"",schedule:"",week:"\uC8FC",workdays_schedule:"\uADFC\uBB34\uC77C \uC77C\uC815",holidays_schedule:"\uD734\uC77C \uC77C\uC815",moving:"\uC6C0\uC9C1\uC784",calibration:"\uCE98\uB9AC\uBE0C\uB808\uC774\uC158",motor_reversal:"\uC5ED\uBC29\uD5A5 \uBAA8\uD130\uD68C\uC804",max_brightness:"",carbon_monoxide:"\uC77C\uC0B0\uD654\uD0C4\uC18C",co:"",co2:"CO2",formaldehyd:"Formaldehyde",pm25:"PM\u2082.\u2085",action_group:"",occupancy_level:"",noise:"",noise_detected:"",noise_timeout:"",occupancy_sensitivity:"",noise_detect_level:"",co2_autocalibration:"",co2_manual_calibration:"",th_heater:"",white_brightness:"",led_intensity_on:"LED Intensity On",led_intensity_off:"LED Intensity Off",minimum_brightness:"\uCD5C\uC18C \uBC1D\uAE30",door_state:"",power_factor:"",ac_frequency:"",status:"",power_apparent:"",power_phase_a:"",power_phase_b:"",power_phase_c:"",energy_phase_a:"",energy_phase_b:"",energy_phase_c:"",voltage_phase_a:"",voltage_phase_ab:"",voltage_phase_bc:"",voltage_phase_ca:"",current_phase_a:"",lift_duration:"",programming_operation_mode:"",radiator_covered:"",window_open_feature:"",preheat_status:"",adaptation_run_status:"",adaptation_run_settings:"",adaptation_run_control:"",regulation_setpoint_offset:"",led_indication:"LED Indication",action_duration:"",temperature_sensitivity:"",led_enable:"LED Enable",temperature_min:"\uCD5C\uC18C \uC628\uB3C4",temperature_max:"\uCD5C\uB300 \uC628\uB3C4",temperature_scale:"",humidity_min:"\uCD5C\uC18C \uC2B5\uB3C4",humidity_max:"\uCD5C\uB300 \uC2B5\uB3C4",battpercentage:"",outdoor_temperature:"",button_vibration_level:"",floor_sensor_type:"",sensor:"\uC13C\uC11C",powerup_status:"",floor_sensor_calibration:"",dry_time:"",mode_after_dry:"",temperature_display:"",window_open_check:"",hysterersis:"",display_auto_off_enabled:"",alarm_airtemp_overvalue:"",backlight:"",do_not_disturb:"\uBC29\uD574 \uAE08\uC9C0 \uBAA8\uB4DC",color_power_on_behavior:"Colour Power On Behaviour",valve_state:"",indicate_light:"",ADCO:"",BASE:"",OPTARIF:"",ISOUSC:"",HCHC:"",HCHP:"",BBRHCJW:"",BBRHPJW:"",BBRHCJR:"",BBRHPJR:"",IINST:"",IINST2:"",IINST3:"",IMAX:"",IMAX2:"",IMAX3:"",PMAX:"",PAPP:"",PTEC:"",DEMAIN:"",HHPHC:"",PPOT:"",PEJP:"",ADPS:"",ADIR1:"",ADIR2:"",ADIR3:"",LTARF:"",NTARF:"",VTIC:"",DATE:"",EASF07:"",EASF08:"",EASF09:"",EASF10:"",EASD01:"",EASD02:"",EASD03:"",EASD04:"",EAIT:"",ERQ1:"",ERQ2:"",ERQ3:"",ERQ4:"",URMS1:"",URMS2:"",URMS3:"",STGE:"",PCOUP:"",SINSTI:"",SMAXIN:"","SMAXIN-1":"",CCASN:"","CCASN-1":"",CCAIN:"","CCAIN-1":"",UMOY1:"",UMOY2:"",UMOY3:"",SINSTS2:"",SINSTS3:"",SMAXN2:"",SMAXN3:"","SMAXN-1":"","SMAXN2-1":"","SMAXN3-1":"",MSG1:"",MSG2:"",PRM:"",DPM1:"",FPM1:"",DPM2:"",FPM2:"",DPM3:"",FPM3:"",RELAIS:"",NJOURF:"","NJOURF+1":"","PJOURF+1":"",PPOINTE1:"",led_when_off:"",led_when_on:"LED When On",cable_outlet_mode:"",led_effect:"",color:"",individual_led_effect:"",led:"LED",dimmingSpeedUpRemote:"",dimmingSpeedUpLocal:"",rampRateOffToOnRemote:"",rampRateOffToOnLocal:"",dimmingSpeedDownRemote:"",dimmingSpeedDownLocal:"",rampRateOnToOffRemote:"",rampRateOnToOffLocal:"",minimumLevel:"",maximumLevel:"",invertSwitch:"",autoTimerOff:"",defaultLevelLocal:"",defaultLevelRemote:"",stateAfterPowerRestored:"",loadLevelIndicatorTimeout:"",activePowerReports:"",periodicPowerAndEnergyReports:"",activeEnergyReports:"",powerType:"",switchType:"",physicalOnOffDelay:"",smartBulbMode:"",ledColorWhenOn:"",ledColorWhenOff:"",ledIntensityWhenOn:"",ledIntensityWhenOff:"",localProtection:"",remoteProtection:"",outputMode:"",onOffLedMode:"",firmwareUpdateInProgressIndicator:"",defaultLed1ColorWhenOn:"",defaultLed1ColorWhenOff:"",defaultLed1IntensityWhenOn:"",defaultLed1IntensityWhenOff:"",defaultLed2ColorWhenOn:"",defaultLed2ColorWhenOff:"",defaultLed2IntensityWhenOn:"",defaultLed2IntensityWhenOff:"",defaultLed3ColorWhenOn:"",defaultLed3ColorWhenOff:"",defaultLed3IntensityWhenOn:"",defaultLed3IntensityWhenOff:"",defaultLed4ColorWhenOn:"",defaultLed4ColorWhenOff:"",defaultLed4IntensityWhenOn:"",defaultLed4IntensityWhenOff:"",defaultLed5ColorWhenOn:"",defaultLed5ColorWhenOff:"",defaultLed5IntensityWhenOn:"",defaultLed5IntensityWhenOff:"",defaultLed6ColorWhenOn:"",defaultLed6ColorWhenOff:"",defaultLed6IntensityWhenOn:"",defaultLed6IntensityWhenOff:"",defaultLed7ColorWhenOn:"",defaultLed7ColorWhenOff:"",defaultLed7IntensityWhenOn:"",defaultLed7IntensityWhenOff:"",doubleTapUpEvent:"",air_quality:"\uB300\uAE30\uC9C8",replace_filter:"\uD544\uD130 \uAD50\uCCB4",hcho:"HCHO",aqi:"AQI",pm10:"PM\u2081\u2080",battery2:"",control_mode:"",switch_status:"",load_detection_mode:"",load_type:"",load_dimmable:"",power_supply_mode:"",valve_position:"\uBCA8\uBE0C \uC704\uCE58",floor_temp:"\uBC14\uB2E5 \uC628\uB3C4",max_floor_temp:"\uCD5C\uB300 \uBC14\uB2E5 \uC628\uB3C4",mean_power:"\uD3C9\uADE0 \uC804\uB825",led_feedback:"LED Feedback",soil_moisture:"\uD1A0\uC591 \uC2B5\uB3C4",sensors_type:"\uC13C\uC11C \uC885\uB958",sensors_count:"\uC13C\uC11C \uAC1C\uC218",cpu_temperature:"CPU \uC628\uB3C4",card:"",lock_mode:"\uC7A0\uAE08 \uBAA8\uB4DC",service_mode:"\uC11C\uBE44\uC2A4 \uBAA8\uB4DC",led_state:"LED \uC0C1\uD0DC",external_temperature:"",hysteresis:"",max_temperature_protection:"",backlight_led:""},aSt={add_to_group:"\uADF8\uB8F9 \uCD94\uAC00",create_group:"\uADF8\uB8F9 \uC0DD\uC131",new_group_id:"\uC0C8 \uADF8\uB8F9 \uC544\uC774\uB514",new_group_id_placeholder:"\uD2B9\uBCC4 \uADF8\uB8F9 ID (\uC635\uC158)",new_group_name:"\uC0C8 \uADF8\uB8F9 \uC774\uB984",new_group_name_placeholder:"\uC608: my_bedroom_lights",remove_group:"\uADF8\uB8F9 \uC0AD\uC81C",group_id:"\uADF8\uB8F9 ID",group_name:"\uADF8\uB8F9 \uC774\uB984",group_members:"\uADF8\uB8F9 \uAD6C\uC131\uC694\uC18C"},iSt={empty_logs_message:"\uD45C\uC2DC\uD560 \uB0B4\uC6A9 \uC5C6\uC74C",filter_by_text:"\uBB38\uC790\uC5F4 \uD544\uD130",show_only:"\uD45C\uC2DC\uD560 \uD56D\uBAA9"},oSt={help_coordinator_link_description:"\uC2E4\uC120 : \uCF54\uB514\uB124\uC774\uD130\uC640 \uC5F0\uACB0",help_end_device_description:"\uB179\uC0C9 : End Device",help_is_coordinator:": \uCF54\uB514\uB124\uC774\uD130",help_lqi_description:"Link quality \uAC12\uC740 0~255 (\uB192\uC744\uC218\uB85D \uC88B\uC74C), \uC5EC\uB7EC \uC720\uD615\uC758 \uB9C1\uD06C\uB97C \uB098\uD0C0\uB0C5\uB2C8\uB2E4.",help_router_description:"\uD30C\uB791 : Router",help_router_links_description:"\uC810\uC120 : Routes\uC640 \uC5F0\uACB0",hide:"\uC228\uAE30\uAE30",load:"\uB9F5 \uBCF4\uAE30",loading:"\uB124\uD2B8\uC6CC\uD06C \uD06C\uAE30\uC5D0 \uB530\uB77C \uB2E4\uB974\uBA70 10\uCD08~2\uBD84\uC815\uB3C4 \uC18C\uC694\uB429\uB2C8\uB2E4."},sSt={all:"\uC804\uCCB4",dashboard:"\uB300\uC26C \uBCF4\uB4DC",devices:"\uC7A5\uCE58",disable_join:"\uD398\uC5B4\uB9C1 \uC624\uD504",extensions:"\uC775\uC2A4\uD150\uC158",groups:"\uADF8\uB8F9",logs:"\uB85C\uADF8",map:"\uC9C0\uB3C4",permit_join:"\uC5F0\uACB0 \uD5C8\uC6A9",restart:"\uC7AC\uC2DC\uC791",settings:"\uC124\uC815",touchlink:"\uD130\uCE58\uB9C1\uD06C"},lSt={check:"\uC2E0\uADDC \uC5C5\uB370\uC774\uD2B8 \uD655\uC778",check_all:"\uC804\uCCB4 \uC5C5\uB370\uC774\uD2B8 \uD655\uC778",empty_ota_message:"OTA \uC9C0\uC6D0\uC7A5\uCE58\uAC00 \uC5C6\uC2B5\uB2C8\uB2E4.",remaining_time:"\uB0A8\uC740 \uC2DC\uAC04 {{- remaining}}",update:"\uC7A5\uCE58 \uD38C\uC6E8\uC5B4 \uC5C5\uB370\uC774\uD2B8"},uSt={about:"\uC790\uC138\uD788",advanced:"\uACE0\uAE09",blocklist:"\uCC28\uB2E8 \uB9AC\uC2A4\uD2B8",coordinator_revision:"\uCF54\uB514\uB124\uC774\uD130 \uBC84\uC804",coordinator_type:"\uCF54\uB514\uB124\uC774\uD130 \uD615\uC2DD",donate:"\uAE30\uBD80",donation_text:["\uC548\uB155\uD558\uC138\uC694! %username%, \uC5F4\uC2EC\uD788 \uC77C\uD558\uB294 \uC6B0\uB9AC\uC5D0\uAC8C \uACE0\uB9C8\uC6C0\uC744 \uD45C\uC2DC\uD574\uC8FC\uC138\uC694.","\uB9DD\uC124\uC774\uC9C0 \uB9D0\uACE0 \uAC10\uC0AC\uC758 \uB9D0\uC774\uB77C\uB3C4 \uB0A8\uACA8\uC8FC\uC138\uC694 ;)"],download_state:"\uC0C1\uD0DC \uB2E4\uC6B4\uB85C\uB4DC",external_converters:"\uC678\uBD80 \uCEE8\uBC84\uD130",frontend_version:"Frontend \uBC84\uC804",ota:"OTA \uC5C5\uB370\uC774\uD2B8",restart_zigbee2mqtt:"Zigbee2MQTT \uC7AC\uC2DC\uC791",serial:"\uC2DC\uB9AC\uC5BC",settings:"\uC124\uC815",tools:"\uB3C4\uAD6C",zigbee2mqtt_version:"Zigbee2MQTT \uBC84\uC804",translate:"\uBC88\uC5ED",stats:"\uC0C1\uD0DC",coordinator_ieee_address:"\uCF54\uB514\uB124\uC774\uD130 IEEE \uC8FC\uC18C"},dSt={detected_devices_message:"{{count}} \uAC1C\uC758 \uD130\uCE58\uB9C1\uD06C \uC7A5\uCE58\uAC00 \uAC10\uC9C0\uB428.",rescan:"\uC7AC \uD0D0\uC0C9",scan:"\uD0D0\uC0C9"},cSt={clear:"\uC815\uC0C1",closed:"\uB2EB\uD798",not_supported:"\uC9C0\uC6D0\uD558\uC9C0 \uC54A\uC74C",open:"\uC5F4\uB9BC",supported:"\uC9C0\uC6D0\uB428",leaking:"\uB204\uC218",tampered:"\uBD84\uB9AC \uAC10\uC9C0",Closed:"\uB2EB\uD798"},hSt={actions:"\uC561\uC158",attribute:"\uC18D\uC131",battery:"\uBC30\uD130\uB9AC",cluster:"\uD074\uB7EC\uC2A4\uD130",description:"\uC124\uBA85",device_type:"\uC7A5\uCE58 \uC885\uB958",firmware_build_date:"\uD38C\uC6E8\uC5B4 \uC81C\uC791\uC77C",firmware_version:"\uD38C\uC6E8\uC5B4 \uBC84\uC804",force_remove:"\uAC15\uC81C \uC0AD\uC81C",ieee_address:"IEEE \uC8FC\uC18C",input_clusters:"\uC785\uB825 \uD074\uB7EC\uC2A4\uD130",interview_completed:"\uC778\uD130\uBDF0 \uC644\uB8CC",interview_failed:"\uC778\uD130\uBDF0 \uC2E4\uD328",manufacturer:"\uC81C\uC870\uC0AC",max_rep_interval:"\uCD5C\uB300 \uBCF4\uACE0 \uC8FC\uAE30",min_rep_change:"\uCD5C\uC18C \uBCF4\uACE0 \uBCC0\uD654\uAC12",min_rep_interval:"\uCD5C\uC18C \uBCF4\uACE0 \uC8FC\uAE30",model:"\uBAA8\uB378\uBA85",network_address:"\uB124\uD2B8\uC6CC\uD06C \uC8FC\uC18C",output_clusters:"\uCD9C\uB825 \uD074\uB7EC\uC2A4\uD130",pic:"\uC0AC\uC9C4",power:"\uD30C\uC6CC",reconfigure:"\uC7AC\uC124\uC815",remove_device:"\uC7A5\uCE58 \uC0AD\uC81C",rename_device:"\uC7A5\uCE58 \uC774\uB984 \uBCC0\uACBD",select_attribute:"\uC18D\uC131 \uC120\uD0DD",select_cluster:"\uD074\uB7EC\uC2A4\uD130 \uC120\uD0DD",support_status:"\uC9C0\uC6D0 \uC0C1\uD0DC",unsupported:"\uC9C0\uC6D0\uD558\uC9C0 \uC54A\uC74C",update_Home_assistant_entity_id:"Home Assistant entity ID \uC5C5\uB370\uC774\uD2B8",zigbee_manufacturer:"Zigbee \uC81C\uC870\uC0AC",zigbee_model:"Zigbee \uBAA8\uB378\uBA85"},mSt={remove:"\uC81C\uAC70",remove_all:"\uBAA8\uB450 \uC81C\uAC70",add:"\uCD94\uAC00",select_scene:"Scene \uC120\uD0DD",scene_name:"Scene \uC774\uB984"},fSt={offline:"\uC624\uD504\uB77C\uC778",online:"\uC628\uB77C\uC778"},pSt={"Home Assistant legacy triggers, when enabled Zigbee2mqt will send an empty 'action' or 'click' after one has been send. A 'sensor_action' and 'sensor_click' will be discoverd":"Home Assistant legacy triggers, when enabled Zigbee2mqtt will send an empty 'action' or 'click' after one has been sent. A 'sensor_action' and 'sensor_click' will be discovered","Location of the adapter. To autodetect the port, set null":"\uC5B4\uB311\uD130\uC758 \uC704\uCE58\uC785\uB2C8\uB2E4. \uD3EC\uD2B8\uB97C \uC790\uB3D9 \uAC10\uC9C0\uD558\uB824\uBA74 null\uC744 \uC785\uB825\uD558\uC138\uC694.","Disable LED of the adapter if supported":"\uC9C0\uC6D0\uB418\uB294 \uACBD\uC6B0 \uC5B4\uB311\uD130\uC758 LED \uB044\uAE30","Adapter type, not needed unless you are experiencing problems":"\uC5B4\uB311\uD130 \uC720\uD615, \uBB38\uC81C\uAC00 \uC5C6\uB2E4\uBA74 \uC124\uC815\uD560 \uD544\uC694\uAC00 \uC5C6\uC2B5\uB2C8\uB2E4","Your device may request a check for a new firmware update. This value determines how frequently third party servers may actually be contacted to look for firmware updates. The value is set in minutes, and the default is 1 day.":'\uC7A5\uCE58\uC5D0\uC11C \uC0C8 \uD38C\uC6E8\uC5B4 \uC5C5\uB370\uC774\uD2B8 \uD655\uC778\uC744 \uC694\uCCAD\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4. \uC774 \uAC12\uC740 \uD38C\uC6E8\uC5B4 \uC5C5\uB370\uC774\uD2B8\uB97C \uCC3E\uAE30 \uC704\uD574 \uD0C0\uC0AC \uC11C\uBC84\uC5D0 \uC2E4\uC81C\uB85C \uC811\uC18D\uD558\uB294 \uBE48\uB3C4\uB97C \uACB0\uC815\uD569\uB2C8\uB2E4. \uAC12\uC740 "\uBD84" \uB2E8\uC704\uB85C \uC124\uC815\uB418\uBA70 \uAE30\uBCF8\uAC12\uC740 1\uC77C\uC785\uB2C8\uB2E4.',"Zigbee devices may request a firmware update, and do so frequently, causing Zigbee2MQTT to reach out to third party servers. If you disable these device initiated checks, you can still initiate a firmware update check manually.":"Zigbee2MQTT\uAC00 \uD0C0\uC0AC \uC11C\uBC84\uB97C \uD1B5\uD574 Zigbee \uC7A5\uCE58\uC758 \uD38C\uC6E8\uC5B4 \uC5C5\uB370\uC774\uD2B8\uB97C \uC8FC\uAE30\uC801\uC73C\uB85C \uD655\uC778 \uBC0F \uC694\uCCAD\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4. \uC790\uB3D9 \uC5C5\uB370\uC774\uD2B8\uB97C \uBE44\uD65C\uC131\uD654\uD574\uB3C4 \uC218\uB3D9\uC73C\uB85C \uD38C\uC6E8\uC5B4 \uC5C5\uB370\uC774\uD2B8\uB97C \uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.","Location of override OTA index file":" Location of override OTA index file ","Payload to be used for device availabilty and bridge/state topics. true = text, false = JSON":"","Name of the device in Home Assistant":""},gSt={"Permit join":"\uC5F0\uACB0 \uD5C8\uC6A9","Availability (simple)":"","Availability (advanced)":"","Disable led":"LED \uB044\uAE30",Adapter:"\uC5B4\uB381\uD130","OTA updates":"OTA \uC5C5\uB370\uC774\uD2B8","Update check interval":"\uC5C5\uB370\uC774\uD2B8 \uD655\uC778 \uAC04\uACA9","Disable automatic update check":"\uC790\uB3D9 \uC5C5\uB370\uC774\uD2B8 \uD655\uC778 \uC548\uD568","OTA index override file name":"","Frontend (simple)":"","Frontend (advanced)":"","Options that are applied to all devices":"","Legacy availability payload":"","Log level":"\uB85C\uADF8 \uC2EC\uAC01\uB3C4","Baudrate (deprecated)":"","RTS / CTS (deprecated)":"","IKEA TRADFRI OTA use test url (deprecated)":"","Experimental (deprecated)":"","Home Assistant":"","Home Assistant name":""};var vSt={common:X1t,devicePage:J1t,exposes:eSt,extensions:tSt,featureDescriptions:rSt,featureNames:nSt,groups:aSt,logs:iSt,map:oSt,navbar:sSt,ota:lSt,settings:uSt,touchlink:dSt,values:cSt,zigbee:hSt,scene:mSt,avaliability:fSt,settingsSchemaDescriptions:pSt,settingsSchemaTitles:gSt};const ySt={action:"Akce",actions:"Akce",apply:"Pou\u017E\xEDt",attribute:"Atribut",bind:"Sv\xE1zat",check_all:"Zkontrolovat v\u0161e",clear:"Vy\u010Distit",close:"Zav\u0159\xEDt",clusters:"Clustery",confirmation:"V\xFDzva k potvrzen\xED",delete:"Vymazat",destination:"C\xEDl",devices:"Za\u0159\xEDzen\xED",dialog_confirmation_prompt:"Jste si jist\xFD?",disable:"Zak\xE1zat",enter_search_criteria:"Zadejte vyhled\xE1vac\xED krit\xE9ria",groups:"Skupiny",loading:"Na\u010D\xEDt\xE1n\xED...",none:"\u017D\xE1dn\xE9",read:"Na\u010D\xEDst",save:"Ulo\u017Eit",select_device:"Vyberte za\u0159\xEDzen\xED",select_endpoint:"Vybrat koncov\xFD bod",source_endpoint:"Zdroj koncov\xE9ho bodu",the_only_endpoint:"Jedin\xFD koncov\xFD bod",unbind:"Rozv\xE1zat",write:"Zapsat",destination_endpoint:"Koncov\xFD bod"},_St={about:"Informace",bind:"Sv\xE1zat",clusters:"Clustery",dev_console:"V\xFDvoj\xE1\u0159sk\xE1 konzole",reporting:"Hla\u0161en\xED",settings:"Nastaven\xED",settings_specific:"Nastaven\xED (specifick\xE9)",state:"Stav",scene:"Sc\xE9na",unknown_device:"Nezn\xE1m\xE9 za\u0159\xEDzen\xED"},bSt={empty_exposes_definition:"Vymazat exponovan\xE9 definice"},wSt={create_new_extension:"Vytvo\u0159it nov\xE9 roz\u0161\xED\u0159en\xED",extension_name_propmt:"Zadejte nov\xFD n\xE1zev roz\u0161\xED\u0159en\xED",select_extension_to_edit:"Vyberte roz\u0161\xED\u0159en\xED, kter\xE9 chcete upravit"},SSt={"On/off state of this light":"Stav zapnuto/vypnuto tohoto sv\u011Btla","Brightness of this light":"Jas tohoto sv\u011Btla","Color temperature of this light":"Barevn\xE1 teplota tohoto sv\u011Btla","Color temperature after cold power on of this light":"Barevn\xE1 teplota po studen\xE9m zapnut\xED tohoto sv\u011Btla","Color of this light in the CIE 1931 color space (x/y)":"Barva tohoto sv\u011Btla v barevn\xE9m prostoru CIE 1931 (x/y)","Triggers an effect on the light (e.g. make light blink for a few seconds)":"Spust\xED efekt na sv\u011Btlo (nap\u0159. nech\xE1 sv\u011Btlo na n\u011Bkolik sekund blikat)","Link quality (signal strength)":"Kvalita sign\xE1lu (s\xEDla sign\xE1lu)","Temperature setpoint":"Nastaven\xE1 hodnota teploty","Current temperature measured on the device":"Aktu\xE1ln\xED teplota nam\u011B\u0159en\xE1 na za\u0159\xEDzen\xED","Mode of this device":"Re\u017Eim tohoto za\u0159\xEDzen\xED","The current running state":"Aktu\xE1ln\xED provozn\xED stav","Offset to be used in the local_temperature":"Offset, kter\xFD m\xE1 b\xFDt pou\u017Eit v local_temperature","Position of the valve (= demanded heat) where 0% is fully closed and 100% is fully open":"Poloha ventilu (= po\u017Eadovan\xE9 teplo), kdy 0 % je zcela zav\u0159eno a 100 % je zcela otev\u0159eno.","Position of this cover":"Pozice tohoto krytu","Motor speed":"Rychlost motoru","On/off state of the switch":"Stav sp\xEDna\u010De zapnuto/vypnuto","Recover state after power outage":"Obnoven\xED stavu po v\xFDpadku nap\xE1jen\xED","Remaining battery in %":"Zb\xFDvaj\xEDc\xED baterie v %","Triggered action (e.g. a button click)":"Spu\u0161t\u011Bn\xE1 akce (nap\u0159. kliknut\xED na tla\u010D\xEDtko)","Indicates if the battery of this device is almost empty":"Ukazuje, zda je baterie tohoto za\u0159\xEDzen\xED t\xE9m\u011B\u0159 vybit\xE1","Color of this light expressed as hue/saturation":"Barva tohoto sv\u011Btla vyj\xE1d\u0159en\xE1 jako odst\xEDn/sytost","State of the lock":"Stav z\xE1mku","Actual state of the lock":"Aktu\xE1ln\xED stav z\xE1mku","User ID to set or clear the pincode for":"ID u\u017Eivatele pro kter\xE9ho dojde ke smaz\xE1n\xED nebo zm\u011Bn\u011B pin k\xF3du","Type of user, unrestricted: owner (default), (year|week)_day_schedule: user has ability to open lock based on specific time period, master: user has ability to both program and operate the door lock, non_access: user is recognized by the lock but does not have the ability to open the lock":"","Whether the user is enabled/disabled":"Zda je u\u017Eivatel povolen/zak\xE1z\xE1n","Pincode to set, set pincode to null to clear":"PIN k\xF3d pro nastaven\xED, nastaven\xED PIN k\xF3du na null pro vymaz\xE1n\xED","Triggered action on the lock":"","Source of the triggered action on the lock":"","ID of user that triggered the action on the lock":"","Voltage of the battery in millivolts":"Nap\u011Bt\xED baterie v milivoltech","Click mode, fast: only supports single click which will be send immediately after clicking.multi: supports more events like double and hold":"Re\u017Eim kliknut\xED, rychl\xFD: podporuje pouze jedno kliknut\xED, kter\xE9 bude odesl\xE1no ihned po kliknut\xED.multi: podporuje v\xEDce ud\xE1lost\xED, jako je double and hold","Click mode, fast: only supports single click which will be send immediately after clicking, multi: supports more events like double and hold":"Re\u017Eim kliknut\xED, rychl\xFD: podporuje pouze jedno kliknut\xED, kter\xE9 bude odesl\xE1no ihned po kliknut\xED, v\xEDcen\xE1sobn\xE9: podporuje v\xEDce ud\xE1lost\xED, jako je double a hold","Button mode":"M\xF3d tla\u010D\xEDtka","Rotation angle":"\xDAhel rotace","Rotation angle speed":"Rychlost \xFAhlu rotace","Rotation percent":"Procent rotace","Rotation percent speed":"Procentn\xED rychlost rotace","Rotation time":"\u010Cas rotace","Instantaneous measured power":"Okam\u017Eit\xFD nam\u011B\u0159en\xFD v\xFDkon","Sum of consumed energy":"Sou\u010Det spot\u0159ebovan\xE9 energie","Measured temperature value":"Hodnota nam\u011B\u0159en\xE9 teploty","Measured electrical potential value":"Nam\u011B\u0159en\xE1 hodnota elektrick\xE9ho potenci\xE1lu","Instantaneous measured electrical current":"Okam\u017Eit\xFD nam\u011B\u0159en\xFD elektrick\xFD proud","Enable/disable the power outage memory, this recovers the on/off mode after power failure":"Povol\xED/zak\xE1\u017Ee pam\u011B\u0165 v\xFDpadku nap\xE1jen\xED, obnov\xED re\u017Eim zapnut\xED/vypnut\xED po v\xFDpadku nap\xE1jen\xED","Enable/disable the LED at night":"Rozsv\xEDtit/zhasnout LED v noci","Disables the physical switch button":"Zak\xE1zat fyzick\xFD p\u0159ep\xEDna\u010D","Maximum allowed load, turns off if exceeded":"Maxim\xE1ln\xED povolen\xE9 zat\xED\u017Een\xED, vypne se, kdy\u017E je dosa\u017Eeno","Indicates if the contact is closed (= true) or open (= false)":"Ukazuje, zda je kontakt sepnut\xFD (= true) nebo otev\u0159en\xFD (= false)","Control both relay and usb or only the relay with the physical switch button":"Povol\xED/zak\xE1\u017Ee pam\u011B\u0165 v\xFDpadku nap\xE1jen\xED, obnov\xED re\u017Eim zapnut\xED/vypnut\xED po v\xFDpadku nap\xE1jen\xED","Raw measured illuminance":"RAW nam\u011B\u0159en\xE1 osv\u011Btlenost","Measured illuminance in lux":"Nam\u011B\u0159en\xE1 osv\u011Btlenost v luxech","Time interval in seconds to report after light changes":"Interval v sekund\xE1ch, po kter\xE9m se se sv\u011Btlo zm\u011Bn\xED","After turn on, the indicator light turns on while switch is off, and vice versa":"","Decoupled mode":`
257
- Odd\u011Blen\xFD re\u017Eim`,"Decoupled mode for left button":"Odd\u011Blen\xFD re\u017Eim pro lev\xE9 tla\u010D\xEDtko","Decoupled mode for right button":"Odd\u011Blen\xFD re\u017Eim pro prav\xE9 tla\u010D\xEDtko","Measured relative humidity":"Nam\u011B\u0159en\xE1 relativn\xED vlhkost","Measured VOC value":"Nam\u011B\u0159en\xE1 hodnota VOC","Decoupled mode for button":"Odd\u011Blen\xFD re\u017Eim pro tla\u010D\xEDtko","Enable standby":"Povolit pohotovostn\xED re\u017Eim","Display theme":"T\xE9ma displeje","Beep volume":"Hlasitost p\xEDpnut\xED","LCD brightness (will not persist if auto-brightness is enabled)":"Jas LCD (nez\u016Fstane zachov\xE1n, pokud nen\xED zapnut automatick\xFD jas)","Interface language":"Jazyk rozhran\xED","Screen saver style":"Styl spo\u0159i\u010De obrazovky","Display standby time":"\u010Cas zhasnut\xED displeje","Display font size":"Velikost fontu displeje","Enable LCD auto brightness":"Povolit automatick\xFD jas LCD","Default display homepage":"Hlavn\xED str\xE1nka displeje","Enable screen saver":"Povolit spo\u0159i\u010D obrazovky","Standby LCD brightness":"Jas LCD v pohotovostn\xEDm re\u017Eimu","Switch 1 text and icon":"vyp\xEDna\u010D 1 text a icona",Icon:"Ikona","Switch 2 text and icon":"vyp\xEDna\u010D 2 text a icona","Switch 3 text and icon":"vyp\xEDna\u010D 3 text a ikona","Wall switch type":"Typ n\xE1st\u011Bnn\xFD vypinac","Temperature of the device":"Teplota za\u0159\xEDzen\xED","Number of power outages (since last pairing)":"","Number of power outages":"","Enabling prevents both relais being on at the same time":"Povolen\xED zabr\xE1n\xED zapnut\xED obou rel\xE9 sou\u010Dasn\u011B","The current charging status.":"","The current state of the motor.":"","Whether the motor is moving or not":"","Motor state":"","Indicates whether the device detected vibration":"Indikuje kdy za\u0159\xEDzen\xED detekovalo vibrace","Indicates whether the device detected smoke":"Ukazuje, zda za\u0159\xEDzen\xED detekovalo kou\u0159","Value of smoke concentration":"","Value of smoke concentration in dB/m":"","Starts the self-test process (checking the indicator light and buzzer work properly)":"","Self-test in progress":"","Mute the buzzer for 80 seconds (buzzer cannot be pre-muted, because this function only works when the alarm is triggered)":"","Buzzer muted":"","When this option is enabled then in the normal monitoring state, the green indicator light flashes every 60 seconds":"","When this option is enabled and a smoke is detected, other detectors with this option enabled will also sound the alarm buzzer":"","Indicates whether the device detected gas":"Ozna\u010Duje, zda za\u0159\xEDzen\xED detekovalo plyn","Value of gas concentration":"",'Gas concentration value at which an alarm is triggered ("10%LEL" is more sensitive than "15%LEL")':"","Mute the buzzer for 10 minutes (buzzer cannot be pre-muted, because this function only works when the alarm is triggered)":"","When this option is enabled and a gas leak is detected, other detectors with this option enabled will also sound the alarm buzzer":"",'"Preparation" or "work" (measurement of the gas concentration value and triggering of an alarm are only performed in the "work" state)':"","Indicates whether the device is tampered":"Ukazuje, zda je se za\u0159\xEDzen\xEDm neopr\xE1vn\u011Bn\u011B manipulov\xE1no","Test mode activated":"Testovac\xED m\xF3d aktivov\xE1n","Device temperature (polled every 30 min)":"Teplota za\u0159\xEDzen\xE9 (detekov\xE1no ka\u017Ed\xFDch 30 minut)","Turn the device automatically off when attached device consumes less than 2W for 20 minutes":"Vypnout za\u0159\xEDzen\xED automaticky pokud m\xE1 p\u0159ipojen\xE9 za\u0159\xEDzen\xED spot\u0159ebu m\xE9n\u011B, ne\u017E 2W po dobu 20 minut","Side of the cube":"Strana krychle","Indicates whether the device detected a water leak":"Ukazuje, zda za\u0159\xEDzen\xED detekovalo \xFAnik vody","Indicates whether the device detected presence":"Indikuje kdy za\u0159\xEDzen\xED detekovalo n\u011B\u010D\xED p\u0159\xEDtomnost",'Presence events: "enter", "leave", "left_enter", "right_leave", "right_enter", "left_leave", "approach", "away"':"","Monitoring mode with or without considering right and left sides":"","The distance at which the sensor detects approaching":"","Different sensitivities means different static human body recognition rate and response speed of occupied":"","Reset the status of no presence":"","Indicates whether the device detected occupancy":"Ukazuje, zda za\u0159\xEDzen\xED detekovalo obsazenost","Time interval for detecting actions":"","The measured atmospheric pressure":"Nam\u011B\u0159en\xFD atmosf\xE9rick\xFD tlak","Decoupled mode for center button":"Odd\u011Blen\xFD re\u017Eim pro st\u0159edn\xED tla\u010D\xEDtko","Operation mode for left button":"Provozn\xED re\u017Eim pro lev\xE9 tla\u010D\xEDtko","Operation mode for right button":"Provozn\xED re\u017Eim pro prav\xE9 tla\u010D\xEDtko","Switch between rgbw mode or dual color temperature mode":"","Sound level":"\xDArove\u0148 hlasitosti","Intensity of the strobe":"Intenzita stroboskopu","Turn on/off the strobe (light) during warning":"Zapnut/vypnut stroboskop b\u011Bhem varov\xE1n\xED","Duration in seconds of the alarm":"D\xE9lka alarmu ve vte\u0159in\xE1ch","Is the device plugged in":"","Volume of siren":"Hlasitost sir\xE9ny","Smoke alarm status":"","Test alarm":"","Test alarm result":"","Battery level state":"","Alarm enable":"","Fault alarm status":"","Silence siren":"","Manually set window_open, ~1 minute to take affect.":"Ru\u010Dn\u011B nastavit okno_otevreno, ~1 minuta do efektu","Enables/disables physical input on the device":"Povol\xED/zak\xE1\u017Ee fyzick\xFD vstup do za\u0159\xEDzen\xED","Last action transaction number.":"\u010C\xEDslo transakce posledn\xED akce.","Alarm zone. Default value 0":"Alarm z\xF3na. Zakladni hodnota je 0","Configure genLevelCtrl":"Konfigurace genLevelCtrl","The dimmer is capable of measuring the reactanceto distinguish inductive and capacitive loads.":"The dimmer is capable of measuring the reactance to distinguish inductive and capacitive loads.","Configures the dimming technique.":"Konfigurace zp\u016Fsobu ztm\xEDv\xE1n\xED.","Controls the behavior when the device is powered on":"Ovl\xE1d\xE1 chov\xE1n\xED, kdy\u017E je za\u0159\xEDzen\xED zapnut\xE9","PIR sensor sensitivity (refresh and update only while active)":"","PIR keep time in seconds (refresh and update only while active)":"","Report interval":"","Current display unit":"","Temperature alarm status":"","Alarm temperature max":"Max teplota pro alarm","Alarm temperature min":"Min teplota pro alarm","Humidity alarm status":"","Alarm humidity max":"","Alarm humidity min":"","Distance to target":"","sensitivity of the radar":"senzitivita radaru","Minimum range":"","Maximum range":"","Detection delay":"","Fading time":"","Self_test, possible resuts: checking, check_success, check_failure, others, comm_fault, radar_fault.":"","Brightness state":"","Speed of movement":"Rychlost pohybu","direction of movement from the point of view of the radar":"sm\u011Br pohybu z pohledu radaru","presets for sensitivity for presence and movement":"","Tumble status switch":"","fall sensitivity of the radar":"","tumble alarm time":"","fall down status":"","static dwell alarm":"","O-Sensitivity mode":"O-senzitivita m\xF3d","V-Sensitivity mode":"V-senzitivita m\xF3d","Led status switch":"vyp\xEDna\u010D statusu LEDky","Working mode":"Pracovn\xED m\xF3d","Luminance level":"\xDArove\u0148 jasu","Alarm humidity status":"Stav vlhkosti pro alarm","Alarm temperature status":"Stav teploty pro alarm","Trigger the door movement":"","Indicates if the garage door contact is closed (= true) or open (= false)":"","Relay LED indicator mode":"","Minimum light brightness":"Minim\xE1ln\xED jas sv\u011Btla","Plug LED indicator mode":"","Maximum temperature":"Maxim\xE1ln\xED teplota","Minimum temperature":"Minim\xE1ln\xED teplota",Position:"Pozice","Enables/disables window detection on the device":"Povol\xED/zak\xE1\u017Ee detekci oken na za\u0159\xEDzen\xED","Window status closed or open ":"Stav okna zav\u0159eno nebo otev\u0159eno ",'Boost Heating: press and hold "+" for 3 seconds, the device will enter the boost heating mode, and the \u25B7\u2575\u25C1 will flash. The countdown will be displayed in the APP':'Zes\xEDlen\xED oh\u0159evu: stiskn\u011Bte a podr\u017Ete tla\u010D\xEDtko "+" po dobu 3 sekund, za\u0159\xEDzen\xED p\u0159ejde do re\u017Eimu zes\xEDlen\xE9ho oh\u0159evu a za\u010Dne blikat symbol \u25B7\u2575\u25C1. V aplikaci se zobraz\xED odpo\u010D\xEDt\xE1v\xE1n\xED.',"Countdown in minutes":"Odpo\u010Det v minut\xE1ch","Away mode":"Re\u017Eim pry\u010D","Enables/disables the status on the device":"Povolit/zak\xE1zat stav za\u0159\xEDzen\xED","Comfort temperature":"Komfortn\xED teplota","Eco temperature":"Eko teplota","Mode of this device (similar to system_mode)":"Re\u017Eim tohoto za\u0159\xEDzen\xED (podobn\xFD system_mode)",'When Anti-Freezing function is activated, the temperature in the house is kept at 8 \xB0C, the device display "AF".press the pair button to cancel.':"",'Battery life can be prolonged by switching the heating off. To achieve this, the valve is closed fully. To activate the heating stop, the device display "HS", press the pair button to cancel.':"","Is the device online":"Je za\u0159\xEDzen\xED online","Error status":"Status chyby","Window open?":"","Mode of this device, in the `heat` mode the TS0601 will remain continuously heating, i.e. it does not regulate to the desired temperature. If you want TRV to properly regulate the temperature you need to use mode `auto` instead setting the desired temperature.":"","Enable/disable auto lock":"Povolit/zak\xE1zat automatick\xFD z\xE1mek","Enable/disable away mode":"Povolit/zak\xE1zat re\u017Eim nep\u0159\xEDtomnosti","Away preset days":"P\u0159ednastaven\xE9 dny pro pry\u010D","Boost time":"Doba zv\xFD\u0161en\xED","Force the valve position":"Vynutit polohu ventilu","Away preset temperature":"P\u0159ednastaven\xE1 teplota pro pry\u010D","Schedule MODE \u23F1 - In this mode, the device executes a preset week programming temperature time and temperature.":"Re\u017Eim pl\xE1nu \u23F1 - V tomto re\u017Eimu za\u0159\xEDzen\xED prov\xE1d\xED p\u0159ednastaven\xE9 t\xFDdenn\xED vyt\xE1p\u011Bn\xED dle nastaven\xE9ho \u010Dasu vyt\xE1p\u011Bn\xED a teploty.","Week format user for schedule":"Form\xE1t kalend\xE1\u0159n\xEDho t\xFDdne","Calibration time":"\u010Cas kalibrace","Maximum light brightness":"","PIR sensor sensitivity":"Citlivost PIR senzoru","Indicates if CO (carbon monoxide) is detected":"Ukazuje, zda je detekov\xE1n CO (oxid uhelnat\xFD)","The measured CO (carbon monoxide) value":"","The measured formaldehyd value":"Nam\u011B\u0159en\xE1 hodnota formaldehydu","Measured PM2.5 (particulate matter) concentration":"Measured PM\u2082.\u2085 (particulate matter) concentration","Group where the action was triggered on":"","The measured occupancy value":"","The measured noise value":"","Indicates whether the device detected noise":"","Time in seconds after which noise is cleared after detecting it (default: 60)":"","Time in seconds after which occupancy is cleared after detecting it (default: 60)":"","Self-heating compensation. The compensation value is subtracted from the measured temperature":"","If the sensor is triggered by the slightest movement, reduce the sensitivity, otherwise increase it (default: 50)":"","The minimum noise level at which the detector will work (default: 50)":"","Automatic calibration of the CO2 sensor. If ON, the CO2 sensor will automatically calibrate every 7 days.":"","Ventilate the room for 20 minutes, turn on manual calibration, and turn it off after one second. After about 5 minutes the CO2 sensor will show 400ppm. Calibration completed":"","Turn on when working in conditions of high humidity (more than 70 %, RH) or condensation, if the sensor shows 0 or 100 %.":"","White brightness of this light":"","Valve state if open or closed":"","Position of the valve":"","Control backlight dimming behavior":"Control backlight dimming behaviour","Door status":"","User ID can only number 1":"","Pincode to set, set pincode(4 digit) to null to clear":"","temperature of device internal mcu":"","Measured electrical power factor":"","Measured electrical ac frequency":"","Currently status":"","People count":"Po\u010Det osob","Instantaneous measured apparent power":"","Instantaneous measured power on phase A":"","Instantaneous measured power on phase B":"","Instantaneous measured power on phase C":"","Instantaneous measured power factor":"","Sum of consumed energy on phase A":"","Sum of consumed energy on phase B":"","Sum of consumed energy on phase C":"","Measured electrical AC frequency":"","Measured electrical potential value on phase A":"","Measured electrical potential value on phase B":"Nam\u011B\u0159en\xE1 hodnota elektrick\xE9ho proudu na f\xE1zi B","Measured electrical potential value on phase C":"Nam\u011B\u0159en\xE1 hodnota elektrick\xE9ho proudu na f\xE1zi C","Measured electrical potential value between phase A and B":"","Measured electrical potential value between phase B and C":"","Measured electrical potential value between phase C and A":"","Instantaneous measured electrical current on phase A":"","Instantaneous measured electrical current on phase B":"Okam\u017Eit\xE1 nam\u011B\u0159en\xE1 hodnota elektrick\xE9ho proudu na f\xE1zi B","Instantaneous measured electrical current on phase C":"Okam\u017Eit\xE1 nam\u011B\u0159en\xE1 hodnota elektrick\xE9ho proudu na f\xE1zi C","Time in seconds after which occupancy is cleared after detecting it":"","Controls the behaviour when the device is powered on":"Ovl\xE1d\xE1 chov\xE1n\xED, kdy\u017E je za\u0159\xEDzen\xED zapnut\xE9","Icon shown on device displays":"Ikona zobrazen\xE1 na displeji","Calibrates valve on next wakeup":"Kalibrovat ventil p\u0159i dal\u0161\xEDm probuzen\xED","Sets dimming mode to autodetect or fixed RC/RL/RL_LED mode (max load is reduced in RL_LED)":"","Duration of lift":"","Auto off after specific time":"Automatick\xE9 vypnut\xED po nastaven\xE9m \u010Dase","Auto off timer time left":"Zb\xFDv\xE1 do automatick\xE9ho vypnut\xED","Liters of water consumed":"Spot\u0159ebov\xE1no litr\u016F vody","Controls how programming affects the thermostat. Possible values: setpoint (only use specified setpoint), schedule (follow programmed setpoint schedule). Changing this value does not clear programmed schedules.":"","Not clear how this affects operation. However, it would appear that the device does not execute any motor functions if this is set to false. This may be a means to conserve battery during periods that the heating system is not energized (e.g. during summer). `false` No Heat Available or `true` Heat Available":"","If `radiator_covered` is `true`: Set at maximum 30 minutes interval but not more often than every 5 minutes and 0.1 degrees difference. Resets every 35 minutes to standard. If `radiator_covered` is `false`: Set at maximum 3 hours interval but not more often than every 30 minutes and 0.1 degrees difference. Resets every 3 hours to standard. Value 21C = 2100 (-8000=undefined).":"","Set if the TRV should solely rely on external_measured_room_sensor or operate in offset mode. `false` = Auto Offset Mode or `true` = Room Sensor Mode":"","Whether or not the window open feature is enabled":"","Mean radiator load for room calculated by gateway for load balancing purposes (-8000=undefined)":"","Specific for pre-heat running in Zigbee Weekly Schedule mode":"","Status of adaptation run: None (before first run), In Progress, Valve Characteristic Found, Valve Characteristic Lost":"","Automatic adaptation run enabled (the one during the night)":"","Adaptation run control: Initiate Adaptation Run or Cancel Adaptation Run":"","Regulation SetPoint Offset in range -2.5\xB0C to 2.5\xB0C in steps of 0.1\xB0C. Value 2.5\xB0C = 25.":"","Blink green LED on motion detection":"Zablikat zelenou LED p\u0159i detekci pohybu","Mode of this fan":"M\xF3d tohoto v\u011Btr\xE1ku","Sound volume of the lock":"Hlasitost zvuku z\xE1mku","Auto relock after 7 seconds.":"Automaticky odemknout po 7 sekund\xE1ch","Temperature sensitivity":"","Enable LED":"","Temperature/humidity alarm status":"","Temperature scale (\xB0F/\xB0C)":"","Current temperature measured from the floor sensor":"Aktu\xE1ln\xED teplota m\u011B\u0159en\xE1 z podlahov\xE9ho \u010Didla","OLED brightness when operating the buttons. Default: Medium.":"","Key beep volume and vibration level. Default: Low.":"","Type of the external floor sensor. Default: NTC 10K/25.":"","The sensor used for heat control. Default: Room Sensor.":"","The mode after a power reset. Default: Previous Mode.":"","The tempearatue calibration for the exernal floor sensor, between -3 and 3 in 0.1\xB0C. Default: 0.":"","The duration of Dry Mode, between 5 and 100 minutes. Default: 5.":"","The mode after Dry Mode. Default: Auto.":"","The temperature on the display. Default: Room Temperature.":"","The threshold to detect window open, between 1.5 and 4 in 0.5 \xB0C. Default: 0 (disabled).":"","Hysteresis setting, between 0.5 and 2 in 0.1 \xB0C. Default: 0.5.":"","Room temperature alarm threshold, between 20 and 60 in \xB0C. 0 means disabled. Default: 45.":"","Do not disturb mode":"M\xF3d Neru\u0161it","Power on behavior state":"Power on behaviour state","ECO mode (energy saving mode)":"ECO m\xF3d (\xFAsporn\xFD re\u017Eim)","Boost Time Setting 100 sec - 900 sec, (default = 300 sec)":"Nastaven\xED doby zes\xEDlen\xED od 100s do 900s (defaultn\u011B 300s)","Indicator light status":"","The delta between local_temperature and current_heating_setpoint to trigger Heat":"","Mode of the fan":"M\xF3d v\u011Btr\xE1ku","Serial Number":"","Base index":"","Tarif option":"","Subscribed intensity level":"","HCHC index":"","HCHP index":"","BBRHPJW index":"","BBRHCJR index":"","BBRHPJR index":"","RMS current":"","RMS current (phase 2)":"","RMS current (phase 3)":"","RMS current peak":"","RMS current peak (phase 2)":"","RMS current peak (phase 3)":"","Three-phase power peak":"","Apparent power":"","Current pricing period":"","Tomorrow color":"","Schedule HPHC":"","Presence of potentials":"","EJP start notice (30min)":"","Subscribed Power Exceeded Warning":"","Over Current Warning (phase 1)":"","Over Current Warning (phase 2)":"","Over Current Warning (phase 3)":"","Current supplier price label":"","Current tariff index number":"","Customer tele-information protocol version":"","Current date and time":"","Total provider active power delivered (index 07)":"","Total provider active power delivered (index 08)":"","Total provider active power delivered (index 09)":"","Total provider active power delivered (index 10)":"","Active energy withdrawn Distributor (index 01)":"","Active energy withdrawn Distributor (index 02)":"","Active energy withdrawn Distributor (index 03)":"","Active energy withdrawn Distributor (index 04)":"","Total active power injected":"","Total reactive power (Q1)":"","Total reactive power (Q2)":"","Total reactive power (Q3)":"","Total reactive power (Q4)":"","RMS voltage":"","RMS voltage (phase 2)":"","RMS voltage (phase 3)":"","Register of Statutes":"","Apparent power threshold":"","Instantaneous apparent power injected":"","Apparent power max. injected n":"","Apparent power max. injected n-1":"","Current point of the active load curve drawn":"","Previous point of the active load curve drawn":"","Point n of the withdrawn active load curve":"","Point n-1 of the withdrawn active load curve":"","Average RMS voltage (phase 1)":"","Average RMS voltage (phase 2)":"","Average RMS voltage (phase 3)":"","Immediate apparent power delivered (phase 2)":"","Immediate apparent power delivered (phase 3)":"","Apparent power delivered peak (phase 2)":"","Apparent power delivered peak (phase 3)":"","Apparent power max. draw-off n-1":"","Apparent power max. draw-off n-1 (phase 2)":"","Apparent power max. draw-off n-1 (phase 3)":"","Message short":"","Message ultra-short":"","PRM number":"","Start mobile point 1":"","Stop mobile point 1":"","Start mobile point 2":"","Stop mobile point 2":"","Start mobile point 3":"","Stop mobile point 3":"","Current day number supplier calendar":"","Next day number supplier calendar":"","Profile of the next supplier calendar day":"","Profile of the next check-in day":"","Motor options":"Nastaven\xED motoru","Motor is moving":"Motor jede","Controls behaviour of led/siren on alarm":"Controls behaviour of LED/siren on alarm","Measured eCO2 value":"Measured CO2 value","Temperature 1":"Teplota 1","Temperature 2":"Teplota 2","Temperature 3":"Teplota 3","Temperature 4":"Teplota 4","Temperature 5":"Teplota 5","Temperature 6":"Teplota 6","Temperature 7":"Teplota 7","Temperature 8":"Teplota 8","Temperature 9":"Teplota 9","Auto off after specific time.":"Automatick\xE9 vypnut\xED po dan\xE9 dob\u011B.","Enable the LED when the light is off":"","Enables the LED when the light is on":"Povolit LED pokud je sv\u011Btlo zapnuto","Works only when the pilot wire is deactivated":"","Allow the device to change brightness":"Povolit za\u0159\xEDzen\xED zm\u011Bnit jas","Enabled LED":"LED povoleno","Illuminance calibration":"Kalibrace osv\u011Btlen\xED","Animation Effect to use for the LEDs":"","Calculated by using a hue color circle(value/255*360) If color = 255 display white":"","Brightness of the LEDs":"","1-60 is in seconds calculated 61-120 is in minutes calculated by(value-60) Example a value of 65 would be 65-60 = 5 minutes - 120-254 Is in hours calculated by(value-120) Example a value of 132 would be 132-120 would be 12 hours. - 255 Indefinitely":"","Individual LED to target.":"","Animation Effect to use for the LED":"","Brightness of the LED":"","1-60 is in seconds calculated 61-120 is in minutes calculated by(value-60) Example a value of 65 would be 65-60 = 5 minutes - 120-254 Is in hours calculated by(value-120) Example a value of 132 would be 132-120 would be 12 hours. - 255 Indefinitely":"","This changes the speed that the light dims up when controlled from the hub. A setting of 0 turns the light immediately on. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 25 (2.5s)":"","This changes the speed that the light dims up when controlled at the switch. A setting of 0 turns the light immediately on. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpRemote setting.":"","This changes the speed that the light turns on when controlled from the hub. A setting of 0 turns the light immediately on. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpRemote setting.":"","This changes the speed that the light turns on when controlled at the switch. A setting of 0 turns the light immediately on. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpRemote setting.":"","This changes the speed that the light dims down when controlled from the hub. A setting of 0 turns the light immediately off. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpRemote setting.":"","This changes the speed that the light dims down when controlled at the switch. A setting of 0 turns the light immediately off. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpLocal setting.":"","This changes the speed that the light turns off when controlled from the hub. A setting of 'instant' turns the light immediately off. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with rampRateOffToOnRemote setting.":"","This changes the speed that the light turns off when controlled at the switch. A setting of 'instant' turns the light immediately off. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with rampRateOffToOnLocal setting.":"","The minimum level that the dimmer allows the bulb to be dimmed to. Useful when the user has an LED bulb that does not turn on or flickers at a lower level.":"","The maximum level that the dimmer allows the bulb to be dimmed to.Useful when the user has an LED bulb that reaches its maximum level before the dimmer value of 99 or when the user wants to limit the maximum brightness.":"","Inverts the orientation of the switch. Useful when the switch is installed upside down. Essentially up becomes down and down becomes up.":"","Automatically turns the switch off after this many seconds. When the switch is turned on a timer is started. When the timer expires, the switch is turned off. 0 = Auto off is disabled.":"","Default level for the dimmer when it is turned on at the switch. A setting of 0 means that the switch will return to the level that it was on before it was turned off.":"","Default level for the dimmer when it is turned on from the hub. A setting of 0 means that the switch will return to the level that it was on before it was turned off.":"","The state the switch should return to when power is restored after power failure. 0 = off, 1-100 = level, 101 = previous.":"","Shows the level that the load is at for x number of seconds after the load is adjusted and then returns to the Default LED state. 0 = Stay Off, 1-10 = seconds, 11 = Stay On.":"","Power level change that will result in a new power report being sent. The value is a percentage of the previous report.0 = disabled, 1-32767 = 0.1W-3276.7W.":"","Time period between consecutive power & energy reports being sent (in seconds). The timer is reset after each report is sent.":"","Energy reports Energy level change which will result in sending a new energy report.0 = disabled, 1-32767 = 0.01kWh-327.67kWh. Default setting: 10 (0.1 kWh)":"","Set the power type for the device.":"","Set the switch configuration.":"","This will set the button press delay. 0 = no delay (Disables Button Press Events), 1 = 100ms, 2 = 200ms, 3 = 300ms, etc. up to 900ms. Default = 500ms.":"","For use with Smart Bulbs that need constant power and are controlled via commands rather than power.":"","Set the color of the LED Indicator when the load is on.":"","Set the color of the LED Indicator when the load is off.":"","Set the intensity of the LED Indicator when the load is on.":"","Set the intensity of the LED Indicator when the load is off.":"","Ability to control switch from the wall.":"","Ability to control switch from the hub.":"","Use device as a Dimmer or an On/Off switch.":"","When the device is in On/Off mode, use full LED bar or just one LED.":"","Display progress on LED bar during firmware update.":"","0-254:This is the color of the LED strip in a hex representation. 255:Synchronization with default all LED strip color parameter.":"","Intesity of LED strip when on. 101 = Syncronized with default all LED strip intensity parameter.":"","Intesity of LED strip when off. 101 = Syncronized with default all LED strip intensity parameter.":"","Result of a double tap on the up button.":"","Reporting interval in minutes":"Interval hl\xE1\u0161en\xED v minut\xE1ch","Temperature calibration":"Kalibrace teploty","Humidity calibration":"Kalibrace vlhkosti","Enable PIR sensor":"Povolit PIR seznzor","Enabled reporting":"Reporting povolen","Current fan speed":"Aktu\xE1ln\xED rychlost v\u011Btr\xE1ku","Measured air quality":"Nam\u011B\u0159en\xE1 kvalita vzduchu","Measured Hcho value":"Measured HCHO value","Air quality index":"Index kvality vzduchu","Measured PM10 (particulate matter) concentration":"Measured PM\u2081\u2080 (particulate matter) concentration","Countdown timer in minutes":"Odpo\u010Det v minut\xE1ch","Remaining battery 2 in %":"","Illuminance calibration in lux":"","Temperature calibration (-2.0...2.0)":"","Enable reporting":"","Control mode":"","External switch type":"","External switch status":"","Load detection mode":"","Load type":"","Load dimmable":"","Power supply mode":"","Displayed text on thermostat display (zone). Max 14 characters":"Zobrazen\xFD text na displeji termostatu (z\xF3na). Maxim\xE1ln\u011B 14 znak\u016F","Turn on or off night setting.":"Zapnout nebo vypnout no\u010Dn\xED nastaven\xED","Current state":"Aktu\xE1ln\xED stav","Enable or disable sound":"Zak\xE1zat nebo povolit zvuk","Time to ring before answer":"\u010Cas vyzv\xE1n\u011Bn\xED p\u0159ed odpov\u011Bd\xED","Enable LEDs feedback":"Povolen\xED zp\u011Btn\xE9 vazby LED","Enable ABC (Automatic Baseline Correction)":"Povolit ABC (Automatic Baseline Correction)","Critical (LED3) CO2 level":"Kritick\xE1 \xFArove\u0148 CO2 (LED3)","Adjust temperature":"Upravit teplotu","Adjust humidity":"Upravit vlhkost","Adjust pressure":"Upravit tlak","Measured soil moisture value":"Nam\u011B\u0159en\xE1 hodnota vlhkosti p\u016Fdy","Current count radioactive pulses per minute":"Aktu\xE1ln\xED po\u010Det radioaktivn\xEDch pulz\u016F za minutu","Current radiation level":"Aktu\xE1ln\xED \xFArove\u0148 radiace","Enable LED feedback":"Povolen\xED zp\u011Btn\xE9 vazby LED","Enable buzzer feedback":"Povolit zp\u011Btnou vazbu bzu\u010D\xE1kem","Critical radiation level":"Kritick\xE1 \xFArove\u0148 radiace","Type of installed tubes":"Typ instalovan\xFDch trubek","Count of installed tubes":"Po\u010Det instalovan\xFDch trubek","Temperature of the CPU":"Teplota CPU","Max duration of the siren":"Max dob\xE1 trv\xE1n\xED sir\xE9ny","Manual start of the siren":"Manu\xE1ln\xED start sir\xE9ny","Pulses per kwh. Default 1000 imp/kWh. Range 0 to 65535":"Pulses per kWh. Default 1000 imp/kWh. Range 0 to 65535","Current summation value sent to the display. e.g. 570 = 0,570 kWh":"Aktu\xE1ln\xED hodnota sou\u010Dtu odeslan\xE1 na displej. nap\u0159. 570 = 0,570 kWh","Is true if communication problem with meter is experienced":"Plat\xED, pokud dojde k probl\xE9mu s komunikac\xED s m\u011B\u0159i\u010Dem","Duration of Siren":"Doba trv\xE1n\xED sir\xE9ny","Manual Start of Siren":"Manu\xE1ln\xED start sir\xE9ny","Indicates if the card is inserted (= true) or not (= false)":"","Allow Master PIN Unlock":"Povolit odemknut\xED Master PINu","Allow RFID to Unlock":"Povolit RFID k odemknut\xED","Absolute min temperature allowed on the device":"Absolutn\xED minim\xE1ln\xED povolen\xE1 teplota na za\u0159\xEDzen\xED","Absolute max temperature allowed on the device":"Absolutn\xED maxim\xE1ln\xED povolen\xE1 teplota na za\u0159\xEDzen\xED","Min temperature limit set on the device":"Minim\xE1ln\xED teplotn\xED limit nastaven\xFD na za\u0159\xEDzen\xED","Max temperature limit set on the device":"Maxim\xE1ln\xED teplotn\xED limit nastaven\xFD na za\u0159\xEDzen\xED","Danfoss Output Status [Active vs Inactive])":"Danfoss status [aktivn\xED nebo neaktivn\xED])","Thermostat status":"Stav termostatu","Current temperature measured on the external sensor (floor)":"","The difference between the temperature at which the thermostat switches off, and the temperature at which it switches on again.":"","Max guarding temperature":"","Prevent changes. `false` = run normally. `true` = prevent from making changes.":"","Enables the LED when the light is off":"","Brightness of this backlight LED":"","Enable or disable the blue backlight LED":""},ASt={undefined:"nedefinvan\xE9",state:"Stav",brightness:"Jas",color_temp:"Teplota barev",color_temp_startup:"Teplota barev p\u0159i spu\u0161t\u011Bn\xED",color_xy:"Barva Xy",effect:"Efekt",linkquality:"Kvalita sign\xE1lu",local_temperature:"M\xEDstn\xED teplota",system_mode:"Syst\xE9mov\xFD re\u017Eim",local_temperature_calibration:"Kalibrace m\xEDstn\xED teploty",pi_heating_demand:"Popt\xE1vka po vyt\xE1p\u011Bn\xED p\xED",position:"Pozice",options:"Mo\u017Enosti",motor_speed:"Rychlost motoru",motor_working_mode:"",percent_state:"",mode:"M\xF3d",border:"",power_outage_memory:"Pam\u011B\u0165 p\u0159i v\xFDpadku nap\xE1jen\xED",battery:"Baterie",action:"Akce",power_on_behavior:"Chov\xE1n\xED p\u0159i zapnut\xED",battery_low:"Vybit\xE1 baterie",color_hs:"Barva (HS)",saturation:"Saturace",pin_code:"PIN k\xF3d",user:"U\u017Eivatel",user_type:"Typ u\u017Eivatele",user_enabled:"U\u017Eivatel povolen",action_source_name:"",action_source_user:"",voltage:"Nap\u011Bt\xED",operation_mode:"Provozn\xED re\u017Eim",power:"Nap\xE1jen\xED",energy:"Energie",temperature:"Teplota",current:"Proud",led_disabled_night:"Led v noci vypl\xE1",contact:"Kontakt",illuminance:"Osv\u011Btlen\xED",illuminance_lux:"Osv\u011Btlen\xED",detection_period:"Perioda detekce",flip_indicator_light:"",consumer_connected:"Konzument p\u0159ipojen",humidity:"Vlhkost",theme:"T\xE9ma",beep_volume:"Hlasitost p\xEDpnut\xED",lcd_brightness:"Jas LCD",language:"Jazyk",screen_saver_style:"Styl spo\u0159i\u010De obrazovky",standby_time:"Pohotovostn\xED doba",font_size:"Velikost fontu",lcd_auto_brightness_enabled:"Automatick\xFD jas LCD povolen",homepage:"Dom\xE1c\xED str\xE1nka",screen_saver_enabled:"Spo\u0159i\u010D obrazovky povolen",standby_lcd_brightness:"Standby LCD Brightness",available_switches:"Dostupn\xE9 p\u0159ep\xEDna\u010De",switch_type:"Typ p\u0159ep\xEDna\u010De",device_temperature:"Teplota za\u0159\xEDzen\xED",power_outage_count:"",charging_status:"",motor_state:"",running:"",vibration:"Vibrace",strength:"S\xEDla",sensitivity:"Citlivost",angle_x:"\xDAhel X",angle_y:"\xDAhel Y",angle_z:"\xDAhel Z",inserted:"Vlo\u017Eeno",smoke:"Kou\u0159",smoke_density:"Hustota kou\u0159e",smoke_density_dbm:"",selftest:"Autotest",mute_buzzer:"",mute:"",heartbeat_indicator:"",linkage_alarm:"",gas:"Plyn",gas_density:"Hustota plynu",gas_sensitivity:"",tamper:"Manipulovat",auto_off:"Automatick\xE9 vypnut\xED",action_angle:"Ak\u010Dn\xED \xFAhel",action_from_side:"Akce ze strany",action_side:"Ak\u010Dn\xED strana",action_to_side:"Akce na stranu",water_leak:"\xDAnik vody",presence:"P\u0159\xEDtomnost",presence_event:"",monitoring_mode:"",approach_distance:"",reset_nopresence_status:"",occupancy:"Obsazenost",detection_interval:"",pressure:"Tlak",warning:"Varov\xE1n\xED",level:"\xDArove\u0148",duration:"Trv\xE1n\xED",ac_connected:"",volume:"Hlasitost",test_alarm:"",test_alarm_result:"",battery_level:"",fault_alarm:"",silence_siren:"",level_config:"Konfigurace \xFArovn\u011B",on_off_transition_time:"D\xE9lka p\u0159echodu zapnut\xED/vypnut\xED",current_level_startup:"Aktu\xE1ln\xED \xFArove\u0148 spu\u0161t\u011Bn\xED",report_interval:"",temperature_unit_convert:"",temperature_alarm:"Teplotn\xED alarm",max_temperature:"Maxim\xE1ln\xED teplota",min_temperature:"Minim\xE1ln\xED teplota",humidity_alarm:"Alarm vlhkosti",max_humidity:"",min_humidity:"",target_distance:"",minimum_range:"",maximum_range:"",detection_delay:"",fading_time:"",self_test:"",brightness_state:"",action_step_size:"",action_transition_time:"",action_rate:"",child_lock:"D\u011Btsk\xFD z\xE1mek",countdown_timer:"\u010Cas odpo\u010Dtu",current_average:"Aktu\xE1ln\xED pr\u016Fm\u011Br",energy_consumed:"Spot\u0159ebov\xE1no energie",clear_device_data:"Vymazat data za\u0159\xEDzen\xED",motion_speed:"Rychlost pohybu",motion_direction:"Sm\u011Br pohybu",tumble_switch:"",fall_sensitivity:"",tumble_alarm_time:"",fall_down_status:"",static_dwell_alarm:"",led_status:"Status LED",trigger:"",garage_door_contact:"",indicator_mode:"",current_heating_setpoint:"Aktu\xE1ln\u011B nastaven\xE1 hodnota vyt\xE1p\u011Bn\xED",min_brightness:"Minim\xE1ln\xED jas",window:"Okno",heating:"Topen\xED",preset:"P\u0159ednastaven\xED",programming_mode:"Programovac\xED re\u017Eim",monday_schedule:"Pond\u011Bln\xED rozvrh",tuesday_schedule:"\xDAtern\xED pl\xE1n",thursday_schedule:"\u010Ctvrte\u010Dn\xED pl\xE1n",friday_schedule:"P\xE1te\u010Dn\xED rozvrh",saturday_schedule:"Sobotn\xED pl\xE1n",sunday_schedule:"Ned\u011Bln\xED pl\xE1n",away_mode:"Re\u017Eim pry\u010D",open_window:"Otev\u0159\xEDt okno",comfort_temperature:"Komfortn\xED teplota",eco_temperature:"Eko teplota",holiday_start_stop:"",schedule:"",schedule_monday:"Pl\xE1n pond\u011Bl\xED",schedule_tuesday:"Pl\xE1n \xFAter\xFD",schedule_wednesday:"Pl\xE1n st\u0159eda",schedule_thursday:"Pl\xE1n \u010Dtvrtek",schedule_friday:"Pl\xE1n p\xE1tek",schedule_saturday:"Pl\xE1n sobota",schedule_sunday:"Pl\xE1n ned\u011Ble",error_status:"Status chyby",away_preset_days:"P\u0159ednastaven\xE9 dny pro nep\u0159\xEDtomnost",boost_time:"Doba pro nav\xFD\u0161en\xED teploty",force:"S\xEDla",away_preset_temperature:"P\u0159ednastaven\xE1 teplota pro nep\u0159\xEDtomnost",week:"T\xFDden",workdays_schedule:"T\xFDdenn\xED kalend\xE1\u0159",holidays_schedule:"Pr\xE1zdninov\xFD kalend\xE1\u0159",backlight_mode:"Re\u017Eim podsv\xEDcen\xED",moving:"V pohybu",calibration:"Kalibrace",motor_reversal:"Zp\u011Btn\xFD chod motoru",calibration_time:"\u010Cas kalibrace",max_brightness:"",carbon_monoxide:"Oxid uhelnat\xFD",co:"",co2:"CO2",pm25:"Odpoledne",action_group:"",direction:"Sm\u011Br",occupancy_level:"",noise:"",noise_detected:"",noise_timeout:"",occupancy_timeout:"\u010Casov\xFD limit obsazen\xFD",occupancy_sensitivity:"",noise_detect_level:"",co2_autocalibration:"",co2_manual_calibration:"",th_heater:"",x_axis:"Osa X",y_axis:"Osa Y",z_axis:"Osa Z",beep:"P\xEDpnut\xED",white_brightness:"",led_intensity_on:"LED Intensity On",led_intensity_off:"LED Intensity Off",door_state:"",power_factor:"",ac_frequency:"",status:"",people:"Lid\xE9",power_apparent:"",power_phase_a:"",power_phase_b:"",power_phase_c:"",energy_phase_a:"",energy_phase_b:"",energy_phase_c:"",voltage_phase_a:"",voltage_phase_ab:"",voltage_phase_bc:"",voltage_phase_ca:"",current_phase_a:"",calibrate_valve:"Kalibrace ventilu",valve_calibration_status:"Stav kalibrace ventilu",lift_duration:"",timer:"Odpo\u010D\xEDt\xE1va\u010D",timer_time_left:"Zb\xFDv\xE1 \u010Das odpo\u010Dtu",water_consumed:"Spot\u0159ebov\xE1no vody",programming_operation_mode:"",radiator_covered:"",window_open_feature:"",day_of_week:"Den v t\xFDdnu",preheat_status:"",adaptation_run_status:"",adaptation_run_settings:"",adaptation_run_control:"",regulation_setpoint_offset:"",led_indication:"Indikace LED",action_duration:"akce_trvani",device_mode:"M\xF3d za\u0159\xEDzen\xED",sound_volume:"\xDArove\u0148 hlasitosti",temperature_sensitivity:"",led_enable:"Povolit LED",power_type:"Typ nap\xE1jen\xED",temperature_min:"Minim\xE1ln\xED teplota",temperature_max:"Maxim\xE1ln\xED teplota",temperature_scale:"",humidity_min:"Minim\xE1ln\xED vlhkost",humidity_max:"Maxim\xE1ln\xED vlhkost",melody:"Melodie",battpercentage:"procento baterie",outdoor_temperature:"",button_vibration_level:"",floor_sensor_type:"",sensor:"Senzor",powerup_status:"",floor_sensor_calibration:"",dry_time:"",mode_after_dry:"",temperature_display:"",window_open_check:"",hysterersis:"",display_auto_off_enabled:"",alarm_airtemp_overvalue:"",backlight:"",do_not_disturb:"Neru\u0161it",color_power_on_behavior:"Chov\xE1n\xED p\u0159i zapnut\xED - barva",eco_mode:"Eko m\xF3d",valve_state:"",indicate_light:"",deadzone_temperature:"Teplota mrtv\xE9 z\xF3ny",max_temperature_limit:"Limit maxim\xE1ln\xED teploty",fan_mode:"M\xF3d v\u011Btr\xE1ku",ADCO:"",BASE:"",OPTARIF:"",ISOUSC:"",HCHC:"",HCHP:"",BBRHCJW:"",BBRHPJW:"",BBRHCJR:"",BBRHPJR:"",IINST:"",IINST2:"",IINST3:"",IMAX:"",IMAX2:"",IMAX3:"",PMAX:"",PAPP:"",PTEC:"",DEMAIN:"",HHPHC:"",PPOT:"",PEJP:"",ADPS:"",ADIR1:"",ADIR2:"",ADIR3:"",LTARF:"",NTARF:"",VTIC:"",DATE:"",EASF07:"EASF07",EASF08:"",EASF09:"",EASF10:"",EASD01:"",EASD02:"",EASD03:"",EASD04:"",EAIT:"",ERQ1:"",ERQ2:"",ERQ3:"",ERQ4:"",URMS1:"",URMS2:"",URMS3:"",STGE:"",PCOUP:"",SINSTI:"",SMAXIN:"","SMAXIN-1":"",CCASN:"","CCASN-1":"",CCAIN:"","CCAIN-1":"",UMOY1:"",UMOY2:"",UMOY3:"",SINSTS2:"",SINSTS3:"",SMAXN2:"",SMAXN3:"","SMAXN-1":"","SMAXN2-1":"","SMAXN3-1":"",MSG1:"",MSG2:"",PRM:"",DPM1:"",FPM1:"",DPM2:"",FPM2:"",DPM3:"",FPM3:"",RELAIS:"",NJOURF:"","NJOURF+1":"","PJOURF+1":"",PPOINTE1:"",monday:"Pond\u011Bl\xED",tuesday:"\xDAter\xFD",wednesday:"St\u0159eda",thursday:"\u010Ctvrtek",friday:"P\xE1tek",saturday:"Sobota",sunday:"Ned\u011Ble",led_when_off:"",led_when_on:"LED When On",cable_outlet_mode:"",led_effect:"",color:"",individual_led_effect:"",led:"LED",dimmingSpeedUpRemote:"",dimmingSpeedUpLocal:"",rampRateOffToOnRemote:"",rampRateOffToOnLocal:"",dimmingSpeedDownRemote:"",dimmingSpeedDownLocal:"",rampRateOnToOffRemote:"",rampRateOnToOffLocal:"",minimumLevel:"",maximumLevel:"",invertSwitch:"",autoTimerOff:"",defaultLevelLocal:"",defaultLevelRemote:"",stateAfterPowerRestored:"",loadLevelIndicatorTimeout:"",activePowerReports:"",periodicPowerAndEnergyReports:"",activeEnergyReports:"",powerType:"",switchType:"",physicalOnOffDelay:"",smartBulbMode:"",ledColorWhenOn:"",ledColorWhenOff:"",ledIntensityWhenOn:"",ledIntensityWhenOff:"",localProtection:"",remoteProtection:"",outputMode:"",onOffLedMode:"",firmwareUpdateInProgressIndicator:"",defaultLed1ColorWhenOn:"",defaultLed1ColorWhenOff:"",defaultLed1IntensityWhenOn:"",defaultLed1IntensityWhenOff:"",defaultLed2ColorWhenOn:"",defaultLed2ColorWhenOff:"",defaultLed2IntensityWhenOn:"",defaultLed2IntensityWhenOff:"",defaultLed3ColorWhenOn:"",defaultLed3ColorWhenOff:"",defaultLed3IntensityWhenOn:"",defaultLed3IntensityWhenOff:"",defaultLed4ColorWhenOn:"",defaultLed4ColorWhenOff:"",defaultLed4IntensityWhenOn:"",defaultLed4IntensityWhenOff:"",defaultLed5ColorWhenOn:"",defaultLed5ColorWhenOff:"",defaultLed5IntensityWhenOn:"",defaultLed5IntensityWhenOff:"",defaultLed6ColorWhenOn:"",defaultLed6ColorWhenOff:"",defaultLed6IntensityWhenOn:"",defaultLed6IntensityWhenOff:"",defaultLed7ColorWhenOn:"",defaultLed7ColorWhenOff:"",defaultLed7IntensityWhenOn:"",defaultLed7IntensityWhenOff:"",doubleTapUpEvent:"",fan_speed:"Rychlost v\u011Btr\xE1ku",air_quality:"Kvalita vzduchu",replace_filter:"Vym\u011Bnit filtr",hcho:"HCHO",aqi:"Index kvality ovzdu\u0161\xED",pm10:"PM\u2081\u2080",battery_state:"Stav baterie",battery2:"",control_mode:"",switch_status:"",load_detection_mode:"",load_type:"",load_dimmable:"",power_supply_mode:"",valve_position:"Pozice ventilu",display_text:"Zobrazen\xFD text",sound:"Zvuk",led_feedback:"LED Feedback",soil_moisture:"Vlhkost p\u016Fdy",sensors_type:"Typ senzoru",sensors_count:"\u010C\xEDta\u010D senzoru",cpu_temperature:"Teplota CPU",interface_mode:"M\xF3d rozhran\xED",current_summation:"Aktu\xE1ln\xED shrnut\xED",reliability:"Spolehlivost",card:"",service_mode:"Servisn\xED m\xF3d",led_state:"Stav LED",external_temperature:"",hysteresis:"",max_temperature_protection:"",backlight_led:""},TSt={add_to_group:"P\u0159idat do skupiny",create_group:"Vytvo\u0159it skupinu",new_group_id:"ID nov\xE9 skupiny",new_group_id_placeholder:"V p\u0159\xEDpad\u011B pot\u0159eby zadejte ID skupiny",new_group_name:"Nov\xFD n\xE1zev skupiny",new_group_name_placeholder:"p\u0159\xEDklad: my_bedroom_lights",remove_group:"Odebrat skupinu",group_id:"ID skupiny",group_name:"N\xE1zev skupiny",group_members:"\u010Clenov\xE9 skupiny",group_scenes:"Skupinov\xE9 sc\xE9ny",rename_group:"P\u0159ejmenovat skupinu"},kSt={empty_logs_message:"Nic k zobrazen\xED",filter_by_text:"Filtrovat podle textu",show_only:"Filtrovat podle typu"},CSt={help_coordinator_link_description:"Pln\xE9 \u010D\xE1ry jsou spojen\xEDm s koordin\xE1torem",help_end_device_description:"Zelen\xE1 znamen\xE1 koncov\xE9 za\u0159\xEDzen\xED",help_is_coordinator:"je koordin\xE1tor",help_lqi_description:"Kvalita spojen\xED je mezi 0 - 255 (vy\u0161\u0161\xED je lep\u0161\xED), hodnota s / p\u0159edstavuje v\xEDce typ\u016F spojen\xED",help_router_description:"Modr\xE1 znamen\xE1 sm\u011Brova\u010D",help_router_links_description:"P\u0159eru\u0161ovan\xE9 \u010D\xE1ry jsou spojen\xEDm se sm\u011Brova\u010Dem",hide:"Kliknut\xEDm na m\u011B skryje\u0161",load:"Na\u010D\xEDst mapu",loading:"V z\xE1vislosti na velikosti va\u0161\xED s\xEDt\u011B m\u016F\u017Ee na\u010Dten\xED trvat 10 sekund a\u017E 2 minuty."},ESt={all:"V\u0161e",dashboard:"P\u0159ehled",devices:"Za\u0159\xEDzen\xED",disable_join:"Zak\xE1zat p\u0159ipojen\xED",extensions:"Roz\u0161\xED\u0159en\xED",groups:"Skupiny",logs:"Logy",map:"Mapa",permit_join:"Povolit p\u0159ipojen\xED",restart:"Restartovat",settings:"Nastaven\xED",toggle_dropdown:"P\u0159epnout rozbalovac\xED nab\xEDdku"},ISt={check:"Kontrola nov\xFDch aktualizac\xED",check_all:"Zkontrolovat v\u0161e",empty_ota_message:"Nem\xE1te \u017E\xE1dn\xE1 za\u0159\xEDzen\xED, kter\xE1 podporuj\xED OTA",remaining_time:"Zb\xFDvaj\xEDc\xED \u010Das {{- remaining}}",update:"Aktualizovat firmware za\u0159\xEDzen\xED"},DSt={about:"O m\u011B",advanced:"Pokro\u010Dil\xE9",availability:"Dostupnost",blocklist:"Seznam blokovan\xFDch",coordinator_revision:"Revize koordin\xE1tora",coordinator_type:"Typ koordin\xE1tora",donate:"P\u0159\xEDsp\u011Bvek",donation_text:["Dobr\xFD den, %username%, zde n\xE1m m\u016F\u017Eete pod\u011Bkovat za tvrdou pr\xE1ci","Nev\xE1hej a \u0159ekni taky n\u011Bco hezk\xE9ho ;)"],download_state:"St\xE1hnout konfiguraci",experimental:"Experiment\xE1ln\xED",external_converters:"Extern\xED p\u0159evodn\xEDky",frontend:"Rozhran\xED",frontend_version:"Verze frontendu",main:"Hlavn\xED",ota:"Aktualizace OTA",passlist:"P\u0159\xEDstupov\xE1 pr\xE1va",raw:"Surov\xE1",restart_zigbee2mqtt:"Restartovat Zigbee2MQTT",serial:"S\xE9riov\xFD",settings:"Nastaven\xED",tools:"N\xE1stroje",zigbee2mqtt_version:"Verze Zigbee2MQTT",translate:"P\u0159elo\u017Eit",stats:"statistiky",coordinator_ieee_address:"IEEE adresa koordin\xE1toru"},xSt={detected_devices_message:"Zji\u0161t\u011Bno {{count}} za\u0159\xEDzen\xED touchlink.",rescan:"Hledat znova",scan:"Hledat"},OSt={clear:"Vymazat",closed:"Zav\u0159eno",false:"Ne",not_supported:"Nen\xED podporov\xE1no",occupied:"Obsazen\xFD",open:"Otev\u0159eno",supported:"Podporov\xE1no",true:"Ano",empty_string:'Pr\xE1zdn\xFD \u0159et\u011Bzec("")',leaking:"Net\u011Bsnost",tampered:"Manipulov\xE1no",null:"Pr\xE1zdn\xE9",Clear:"Vy\u010Distit",Closed:"Zav\u0159eno",Occupied:"Obsazen\xFD",Open:"Otev\u0159\xEDt"},MSt={actions:"Akce",attribute:"Atribut",battery:"Baterie",block_join:"Zablokovat op\u011Btovn\xE9 p\u0159ipojen\xED",dc_source:"DC zdroj",description:"Popis",device_type:"Typ za\u0159\xEDzen\xED",endpoint:"Koncov\xFD bod",firmware_build_date:"Datum sestaven\xED firmwaru",firmware_version:"Verze firmwaru",force_remove:"Vynutit odstran\u011Bn\xED",friendly_name:"N\xE1zev",ieee_address:"IEEE adresa",input_clusters:"Vstupn\xED clustery",interview_completed:"P\xE1rov\xE1n\xED dokon\u010Deno",interview_failed:"P\xE1rov\xE1n\xED selhalo",interviewing:"P\xE1rov\xE1n\xED",last_seen:"Naposledy vid\u011Bno",mains_single_phase:"S\xED\u0165 (jednof\xE1zov\xE1)",manufacturer:"V\xFDrobce",max_rep_interval:"Max interval odezvy",min_rep_change:"Min zm\u011Bna odezvy",min_rep_interval:"Min interval odezvy",network_address:"S\xED\u0165ov\xE1 adresa",none:"\u017D\xE1dn\xFD",output_clusters:"V\xFDstupn\xED clustery",pic:"Obr.",power:"Nap\xE1jen\xED",power_level:"\xFArove\u0148 nap\xE1jen\xED",reconfigure:"P\u0159enastavit",remove_device:"Odebrat za\u0159\xEDzen\xED",rename_device:"P\u0159ejmenovat za\u0159\xEDzen\xED",select_attribute:"Vybrat atribut",select_cluster:"Vybrat cluster",support_status:"Stav podpory",unsupported:"Nepodporov\xE1no",updating_firmware:"Aktualizace firmwaru",update_Home_assistant_entity_id:"Aktualizovat ID entity v Home Assistant",zigbee_manufacturer:"V\xFDrobce Zigbee",zigbee_model:"Model Zigbee",device:"Za\u0159\xEDzen\xED",channel:"Kan\xE1l",available:"Dustupn\xFD"},RSt={scene_id:"ID sc\xE9ny",recall:"Odvol\xE1n\xED",store:"ulo\u017Eit",remove:"Odstranit",remove_all:"Odstranit v\u0161e",add:"P\u0159idat",select_scene:"Vybrat sc\xE9nu",scene_name:"N\xE1zev sc\xE9ny"},LSt={byType:"dle typu",byPowerSource:"dle zdroje nap\xE1jen\xED",byVendor:"dle v\xFDrobce",byModel:"dle modelu",total:"celkov\xE9",EndDevice:"Koncov\xE9 za\u0159\xEDzen\xED"},PSt={avaliability:"Dostupnost",offline:"Nedostupn\xE9",online:"Dostupn\xE9",disabled:"Zak\xE1z\xE1no",enabled:"Povoleno"},$St={"Home Assistant legacy triggers, when enabled Zigbee2mqt will send an empty 'action' or 'click' after one has been send. A 'sensor_action' and 'sensor_click' will be discoverd":"Home Assistant legacy triggers, when enabled Zigbee2mqtt will send an empty 'action' or 'click' after one has been sent. A 'sensor_action' and 'sensor_click' will be discovered","Allow new devices to join (re-applied at restart)":"Povolit p\u0159ipojen\xED nov\xFDch za\u0159\xEDzen\xED (p\u0159i restartu znovu pou\u017Eito)","Checks whether devices are online/offline":"Kontrola zda je za\u0159\xEDzen\xED online/offline","MQTT base topic for Zigbee2MQTT MQTT messages":"Z\xE1kladn\xED MQTT t\xE9ma Zigbee2MQTT zpr\xE1v","MQTT client ID":"ID klienta MQTT","Disable self-signed SSL certificate":"Zak\xE1zat self-signed SSL certifik\xE1t","Disable LED of the adapter if supported":"Vypne LED adapt\xE9ru, pokud to adapt\xE9r podporuje","Adapter type, not needed unless you are experiencing problems":"Typ adapt\xE9ru, obvykle nen\xED pot\u0159eba pokud nejsou probl\xE9my","Block devices from the network (by ieeeAddr)":"Blokovat za\u0159\xEDzen\xED (pomoc\xED ieeeAddr)","Location of override OTA index file":" Location of override OTA index file ","URL on which the frontend can be reached, currently only used for the Home Assistant device configuration page":"Adresa URL, na kter\xE9 je dostupn\xFD frontend, aktu\xE1ln\u011B pou\u017E\xEDvan\xE1 pouze pro konfigura\u010Dn\xED str\xE1nku za\u0159\xEDzen\xED Home Assistant","Disables the legacy api (false = disable)":"Zak\xE1\u017Ee star\u0161\xED API (false = zak\xE1zat)","Payload to be used for device availabilty and bridge/state topics. true = text, false = JSON":"","Log rotation":"P\u0159episov\xE1n\xED log\u016F","Create symlink to current logs in the log directory":"Vytvo\u0159\xED symlink aktu\xE1ln\xEDch protokol\u016F v adres\xE1\u0159i protokol\u016F","Location of log directory":"Um\xEDst\u011Bn\xED slo\u017Eky s logy","Logging level":"\xDArove\u0148 logov\xE1n\xED","Adapter concurrency (e.g. 2 for CC2531 or 16 for CC26X2R1) (default: null, uses recommended value)":"V\xE1ha adapt\xE9ru (nap\u0159. 2 pro CC2531 nebo 16 pro CC26X2R1) (v\xFDchoz\xED: null, doporu\u010Den\xE1 hodnota)","Adapter delay":"Zpo\u017Ed\u011Bn\xED adapt\xE9ru","Add a last_seen attribute to MQTT messages, contains date/time of last Zigbee message":"P\u0159idat do MQTT zpr\xE1v atribut last_seen, obsahuj\xEDc\xED datum/\u010Das posledn\xED Zigbee komunikace","Add an elapsed attribute to MQTT messages, contains milliseconds since the previous msg":"P\u0159idat do MQTT zpr\xE1v atribut elapsed, obsahuj\xEDc\xED milisekundy od p\u0159edchoz\xED zpr\xE1vy","Name of the device in Home Assistant":""},zSt={"Home Assistant integration":"Integrace Home Assistant","Home Assistant (simple)":"Home Assistant (jednoduch\xFD)","Home Assistant (advanced)":"Home Assistant (pokro\u010Dil\xFD)","Availability (simple)":"","Availability (advanced)":"",Active:"Aktivn\xED",Timeout:"\u010Casov\xFD limit",Passive:"Pasivn\xED",Availability:"Dostupnost","Base topic":"Z\xE1kladn\xED t\xE9ma",Keepalive:"Udr\u017Eovat na\u017Eivu","Certificate authority":"Certifika\u010Dn\xED autorita","SSL/TLS key":"SSL/TLS kl\xED\u010D","SSL/TLS certificate":"SSL/TLS certifik\xE1t",User:"U\u017Eivatel",Password:"Heslo","Client ID":"ID klienta","Reject unauthorized":"Odm\xEDtnout neautorizovan\xE9",Version:"Verze","Disable led":"Zak\xE1zat LED",Adapter:"Adapt\xE9r",Baudrate:"P\u0159enosov\xE1 rychlost",Networkmap:"S\xED\u0165ov\xE1 mapa","OTA updates":"OTA updaty","Update check interval":"Interval kontroly updat\u016F","Disable automatic update check":"Zak\xE1zat automatick\xE9 kontroly updat\u016F","IKEA TRADFRI OTA use test url":"IKEA TRADFRI OTA pou\u017Eije test url","OTA index override file name":"","Frontend (simple)":"Frontend (z\xE1kladn\xED)","Frontend (advanced)":"Frontend (pokro\u010Dil\xE9)","Auth token":"Autentiza\u010Dn\xED token","Options that are applied to all devices":"",Advanced:"Pokro\u010Dil\xFD","Legacy API":"Zastaral\xE9 API","Legacy availability payload":"","Log rotation":"P\u0159episov\xE1n\xED log soubor\u016F","Log output":"V\xFDstup log\u016F","Log directory":"Slo\u017Eka s logy","Log file":"Soubor s logy","Log level":"\xDArove\u0148 logov\xE1n\xED",Protocol:"Protokol",Path:"Cesta",Type:"Typ","ZigBee channel":"Kan\xE1l ZigBee","Adapter concurrency":"V\xE1ha adapt\xE9ru","Adapter delay":"Zpo\u017Ed\u011Bn\xED adapt\xE9ru","Cache state":"Stav mezipam\u011Bti","Last seen":"Naposledy vid\u011Bn",Elapsed:"Uplynul\xFD","Network key":"S\xED\u0165ov\xFD kl\xED\u010D","Timestamp format":"Form\xE1t \u010Dasov\xE9ho raz\xEDtka","Transmit power":"Vys\xEDlac\xED v\xFDkon",Reporting:"Hl\xE1\u0161en\xED","Baudrate (deprecated)":"P\u0159enosov\xE1 rychlost (zastaral\xE9)","RTS / CTS (deprecated)":"","IKEA TRADFRI OTA use test url (deprecated)":"","Experimental (deprecated)":"","Whitelist (deprecated, use passlist)":"Povolen\xE9 (zastaral\xE9, pou\u017Eijte passlist)","Ban (deprecated, use blocklist)":"Z\xE1kaz (zastaral\xE9, pou\u017Eijte blocklist)",Optimistic:"Optimistick\xFD",Icon:"Ikona","Home Assistant":"","Home Assistant name":""};var NSt={common:ySt,devicePage:_St,exposes:bSt,extensions:wSt,featureDescriptions:SSt,featureNames:ASt,groups:TSt,logs:kSt,map:CSt,navbar:ESt,ota:ISt,settings:DSt,touchlink:xSt,values:OSt,zigbee:MSt,scene:RSt,stats:LSt,avaliability:PSt,settingsSchemaDescriptions:$St,settingsSchemaTitles:zSt};const FSt={action:"Toiminto",actions:"Toiminnot",apply:"Aseta",attribute:"Attribuutti",bind:"Sido",check_all:"Tarkista kaikki",clear:"Pyyhi",close:"Sulje",cluster:"Ryp\xE4s",clusters:"Rypp\xE4\xE4t",confirmation:"Vahvistuskehote",delete:"Poista",destination:"Kohde",devices:"Laitteet",dialog_confirmation_prompt:"Oletko varma?",disable:"Poista k\xE4yt\xF6st\xE4",enter_search_criteria:"Anna hakukriteeri",groups:"Ryhm\xE4t",loading:"Ladataan...",none:"Ei mit\xE4\xE4n",read:"Lue",save:"Tallenna",select_device:"Valitse laite",select_endpoint:"Valitse p\xE4\xE4tepiste",source_endpoint:"L\xE4hdep\xE4\xE4tepiste",the_only_endpoint:"Ainoa p\xE4\xE4tepiste",unbind:"Vapauta sidos",write:"Kirjoita"},BSt={about:"Tietoja",bind:"Sido",clusters:"Rypp\xE4\xE4t",dev_console:"Kehityskonsoli",reporting:"Raportti",settings:"Asetukset",settings_specific:"Asetukset (erityiset)",state:"Tila",scene:"N\xE4kym\xE4",unknown_device:"Tuntematon laite"},WSt={empty_exposes_definition:"Exposes-m\xE4\xE4rittely on tyhj\xE4"},HSt={create_new_extension:"Luo uusi laajennus",extension_name_propmt:"Anna laajennuksen nimi",select_extension_to_edit:"Valitse muokattava laajennus"},jSt={"On/off state of this light":"T\xE4m\xE4n valon p\xE4\xE4ll\xE4/pois tila","Brightness of this light":"T\xE4m\xE4n valon kirkkaus","Color temperature of this light":"T\xE4m\xE4n valon v\xE4ril\xE4mp\xF6tila","Color temperature after cold power on of this light":"T\xE4m\xE4n valon v\xE4ril\xE4mp\xF6tila kylm\xE4k\xE4ynnistyksen j\xE4lkeen","Color of this light in the CIE 1931 color space (x/y)":"T\xE4m\xE4n valon v\xE4ri CIE 1931 v\xE4ritilassa (x/y)","Triggers an effect on the light (e.g. make light blink for a few seconds)":"Liipaisee valoefektint (esim. laita valo vilkkumaan muutamaksi sekunniksi)","Link quality (signal strength)":"Linkin laatu (signaalivoimakkuus)","Temperature setpoint":"L\xE4mp\xF6tila-asetus","Current temperature measured on the device":"Nykyinen laitteelta mitattu l\xE4mp\xF6tila","Mode of this device":"T\xE4m\xE4n laitteen tila","Offset to be used in the local_temperature":"Poikkeama, jota k\xE4ytet\xE4\xE4n local_temperature:n yhteydess\xE4","Position of this cover":"T\xE4m\xE4n peitteen asento","Motor speed":"Moottorin nopeus","On/off state of the switch":"Kytkimem p\xE4\xE4ll\xE4/pois tila","Recover state after power outage":"Toipumistila virtakatkon j\xE4lkeen","Remaining battery in %":"Pariston tila prosentteina","Triggered action (e.g. a button click)":"Liipaistu toiminto (esim. n\xE4pp\xE4inpainallus)","Indicates if the battery of this device is almost empty":"Osoittaa, ett\xE4 paristo on v\xE4hiss\xE4","Color of this light expressed as hue/saturation":"T\xE4m\xE4n valon v\xE4ri ilmaistuna s\xE4vy/kyll\xE4isyys","Type of user, unrestricted: owner (default), (year|week)_day_schedule: user has ability to open lock based on specific time period, master: user has ability to both program and operate the door lock, non_access: user is recognized by the lock but does not have the ability to open the lock":"","Triggered action on the lock":"","Source of the triggered action on the lock":"","ID of user that triggered the action on the lock":"","Voltage of the battery in millivolts":"Pariston j\xE4nnite millivoltteina","Instantaneous measured power":"Hetkellisesti mitattu teho","Sum of consumed energy":"Kulutettu kokonaisenergia","Measured temperature value":"Mitattu l\xE4mp\xF6tila","Measured electrical potential value":"Mitattu j\xE4nnitearvo","Instantaneous measured electrical current":"Hetkellisesti mitattu s\xE4hk\xF6virta","Indicates if the contact is closed (= true) or open (= false)":"Osoittaa, ett\xE4 kontaksti on suljettu (= true) tai avoin (= false)","Raw measured illuminance":"Valoisuuden raaka-arvo","Measured illuminance in lux":"Mitattu valoisuus lukseina","After turn on, the indicator light turns on while switch is off, and vice versa":"","Decoupled mode for left button":"Irroitustila vasemmalle painikkeelle","Decoupled mode for right button":"Irroitustila oikealle painikkeelle","Measured relative humidity":"Mitattu suhteellinen kosteus","Number of power outages (since last pairing)":"","Number of power outages":"","Enabling prevents both relais being on at the same time":"Salliminen est\xE4\xE4 molempien releiden samanaikaisen p\xE4\xE4ll\xE4olon","The current charging status.":"","The current state of the motor.":"","Whether the motor is moving or not":"","Motor state":"","Indicates whether the device detected smoke":"Osoittaa laitteen havainneen savua","Value of smoke concentration":"","Value of smoke concentration in dB/m":"","Starts the self-test process (checking the indicator light and buzzer work properly)":"","Self-test in progress":"","Mute the buzzer for 80 seconds (buzzer cannot be pre-muted, because this function only works when the alarm is triggered)":"","Buzzer muted":"","When this option is enabled then in the normal monitoring state, the green indicator light flashes every 60 seconds":"","When this option is enabled and a smoke is detected, other detectors with this option enabled will also sound the alarm buzzer":"","Value of gas concentration":"",'Gas concentration value at which an alarm is triggered ("10%LEL" is more sensitive than "15%LEL")':"","Mute the buzzer for 10 minutes (buzzer cannot be pre-muted, because this function only works when the alarm is triggered)":"","When this option is enabled and a gas leak is detected, other detectors with this option enabled will also sound the alarm buzzer":"",'"Preparation" or "work" (measurement of the gas concentration value and triggering of an alarm are only performed in the "work" state)':"","Indicates whether the device is tampered":"Osoittaa laitteen peukaloinnin","Side of the cube":"Kuution taho","Indicates whether the device detected a water leak":"Osoittaa laitteen havainneen vesivuodon",'Presence events: "enter", "leave", "left_enter", "right_leave", "right_enter", "left_leave", "approach", "away"':"","Monitoring mode with or without considering right and left sides":"","The distance at which the sensor detects approaching":"","Different sensitivities means different static human body recognition rate and response speed of occupied":"","Reset the status of no presence":"","Indicates whether the device detected occupancy":"Osoittaa laitteen havainneen paikallaolon","Time interval for detecting actions":"","The measured atmospheric pressure":"Mitattu ilmanpaine","Decoupled mode for center button":"Irroitustila keskipainikkeelle mode for center button","Switch between rgbw mode or dual color temperature mode":"","Is the device plugged in":"","Smoke alarm status":"","Test alarm":"","Test alarm result":"","Battery level state":"","Alarm enable":"","Fault alarm status":"","Silence siren":"","Enables/disables physical input on the device":"Sallii/est\xE4\xE4 laitteen fyysisen liit\xE4nn\xE4n","The dimmer is capable of measuring the reactanceto distinguish inductive and capacitive loads.":"The dimmer is capable of measuring the reactance to distinguish inductive and capacitive loads.","Controls the behavior when the device is powered on":"Ohjaa k\xE4ytt\xE4ytymist\xE4, kun laite on k\xE4ynnistetty","PIR sensor sensitivity (refresh and update only while active)":"","PIR keep time in seconds (refresh and update only while active)":"","Report interval":"","Current display unit":"","Temperature alarm status":"","Humidity alarm status":"","Alarm humidity max":"","Alarm humidity min":"","Distance to target":"","Minimum range":"","Maximum range":"","Detection delay":"","Fading time":"","Self_test, possible resuts: checking, check_success, check_failure, others, comm_fault, radar_fault.":"","Brightness state":"","presets for sensitivity for presence and movement":"","Tumble status switch":"","fall sensitivity of the radar":"","tumble alarm time":"","fall down status":"","static dwell alarm":"","Led status switch":"LED status switch","Trigger the door movement":"","Indicates if the garage door contact is closed (= true) or open (= false)":"","Relay LED indicator mode":"","Plug LED indicator mode":"","Maximum temperature":"Maksimil\xE4mp\xF6tila","Minimum temperature":"Minimil\xE4mp\xF6tila",Position:"Asento","Enables/disables window detection on the device":"Sallii/est\xE4\xE4 ikkunan havainnoinnin laitteella","Countdown in minutes":"Minuuttia j\xE4lejll\xE4","Away mode":"Poissa-tila","Comfort temperature":"Mukavuusl\xE4mp\xF6tila","Eco temperature":"S\xE4\xE4st\xF6l\xE4mp\xF6tila","Mode of this device (similar to system_mode)":"T\xE4m\xE4n laitteen tila (kuten system_mode)",'When Anti-Freezing function is activated, the temperature in the house is kept at 8 \xB0C, the device display "AF".press the pair button to cancel.':"",'Battery life can be prolonged by switching the heating off. To achieve this, the valve is closed fully. To activate the heating stop, the device display "HS", press the pair button to cancel.':"","Window open?":"","Mode of this device, in the `heat` mode the TS0601 will remain continuously heating, i.e. it does not regulate to the desired temperature. If you want TRV to properly regulate the temperature you need to use mode `auto` instead setting the desired temperature.":"","Enable/disable auto lock":"Salli/est\xE4 autom. lukitus","Enable/disable away mode":"Salli/est\xE4 poissa-tila","Away preset days":"Poissa: asetetut p\xE4iv\xE4t","Boost time":"Tehostusaika","Force the valve position":"Pakota venttiilin asento","Away preset temperature":"Poissa: asetettu l\xE4mp\xF6tila","Week format user for schedule":"Aikataulussa k\xE4ytett\xE4v\xE4 viikkomuoto","Calibration time":"Kalibrointiaika","Maximum light brightness":"","Indicates if CO (carbon monoxide) is detected":"Osoittaa CO:n (hiilimonoksidin) havaitsemisen","The measured CO (carbon monoxide) value":"","The measured formaldehyd value":"The measured formaldehyde value","Measured PM2.5 (particulate matter) concentration":"Measured PM\u2082.\u2085 (particulate matter) concentration","Group where the action was triggered on":"","The measured occupancy value":"","The measured noise value":"","Indicates whether the device detected noise":"","Time in seconds after which noise is cleared after detecting it (default: 60)":"","Time in seconds after which occupancy is cleared after detecting it (default: 60)":"","Self-heating compensation. The compensation value is subtracted from the measured temperature":"","If the sensor is triggered by the slightest movement, reduce the sensitivity, otherwise increase it (default: 50)":"","The minimum noise level at which the detector will work (default: 50)":"","Automatic calibration of the CO2 sensor. If ON, the CO2 sensor will automatically calibrate every 7 days.":"","Ventilate the room for 20 minutes, turn on manual calibration, and turn it off after one second. After about 5 minutes the CO2 sensor will show 400ppm. Calibration completed":"","Turn on when working in conditions of high humidity (more than 70 %, RH) or condensation, if the sensor shows 0 or 100 %.":"","White brightness of this light":"","Valve state if open or closed":"","Position of the valve":"","Control backlight dimming behavior":"Control backlight dimming behaviour","Door status":"","User ID can only number 1":"","Pincode to set, set pincode(4 digit) to null to clear":"","temperature of device internal mcu":"","Measured electrical power factor":"","Measured electrical ac frequency":"","Currently status":"","Instantaneous measured apparent power":"","Instantaneous measured power on phase A":"","Instantaneous measured power on phase B":"","Instantaneous measured power on phase C":"","Instantaneous measured power factor":"","Sum of consumed energy on phase A":"","Sum of consumed energy on phase B":"","Sum of consumed energy on phase C":"","Measured electrical AC frequency":"","Measured electrical potential value on phase A":"","Measured electrical potential value between phase A and B":"","Measured electrical potential value between phase B and C":"","Measured electrical potential value between phase C and A":"","Instantaneous measured electrical current on phase A":"","Time in seconds after which occupancy is cleared after detecting it":"","Controls the behaviour when the device is powered on":"Ohjaa k\xE4ytt\xE4ytymist\xE4, kun laite on k\xE4ynnistetty","Sets dimming mode to autodetect or fixed RC/RL/RL_LED mode (max load is reduced in RL_LED)":"","Duration of lift":"","Controls how programming affects the thermostat. Possible values: setpoint (only use specified setpoint), schedule (follow programmed setpoint schedule). Changing this value does not clear programmed schedules.":"","Not clear how this affects operation. However, it would appear that the device does not execute any motor functions if this is set to false. This may be a means to conserve battery during periods that the heating system is not energized (e.g. during summer). `false` No Heat Available or `true` Heat Available":"","If `radiator_covered` is `true`: Set at maximum 30 minutes interval but not more often than every 5 minutes and 0.1 degrees difference. Resets every 35 minutes to standard. If `radiator_covered` is `false`: Set at maximum 3 hours interval but not more often than every 30 minutes and 0.1 degrees difference. Resets every 3 hours to standard. Value 21C = 2100 (-8000=undefined).":"","Set if the TRV should solely rely on external_measured_room_sensor or operate in offset mode. `false` = Auto Offset Mode or `true` = Room Sensor Mode":"","Whether or not the window open feature is enabled":"","Mean radiator load for room calculated by gateway for load balancing purposes (-8000=undefined)":"","Specific for pre-heat running in Zigbee Weekly Schedule mode":"","Status of adaptation run: None (before first run), In Progress, Valve Characteristic Found, Valve Characteristic Lost":"","Automatic adaptation run enabled (the one during the night)":"","Adaptation run control: Initiate Adaptation Run or Cancel Adaptation Run":"","Regulation SetPoint Offset in range -2.5\xB0C to 2.5\xB0C in steps of 0.1\xB0C. Value 2.5\xB0C = 25.":"","Temperature sensitivity":"","Enable LED":"","Temperature/humidity alarm status":"","Temperature scale (\xB0F/\xB0C)":"","OLED brightness when operating the buttons. Default: Medium.":"","Key beep volume and vibration level. Default: Low.":"","Type of the external floor sensor. Default: NTC 10K/25.":"","The sensor used for heat control. Default: Room Sensor.":"","The mode after a power reset. Default: Previous Mode.":"","The tempearatue calibration for the exernal floor sensor, between -3 and 3 in 0.1\xB0C. Default: 0.":"","The duration of Dry Mode, between 5 and 100 minutes. Default: 5.":"","The mode after Dry Mode. Default: Auto.":"","The temperature on the display. Default: Room Temperature.":"","The threshold to detect window open, between 1.5 and 4 in 0.5 \xB0C. Default: 0 (disabled).":"","Hysteresis setting, between 0.5 and 2 in 0.1 \xB0C. Default: 0.5.":"","Room temperature alarm threshold, between 20 and 60 in \xB0C. 0 means disabled. Default: 45.":"","Power on behavior state":"Power on behaviour state","Indicator light status":"","The delta between local_temperature and current_heating_setpoint to trigger Heat":"","Serial Number":"","Base index":"","Tarif option":"","Subscribed intensity level":"","HCHC index":"","HCHP index":"","BBRHCJW index":"","BBRHPJW index":"","BBRHCJR index":"","BBRHPJR index":"","RMS current":"","RMS current (phase 2)":"","RMS current (phase 3)":"","RMS current peak":"","RMS current peak (phase 2)":"","RMS current peak (phase 3)":"","Three-phase power peak":"","Apparent power":"","Current pricing period":"","Tomorrow color":"","Schedule HPHC":"","Presence of potentials":"","EJP start notice (30min)":"","Subscribed Power Exceeded Warning":"","Over Current Warning (phase 1)":"","Over Current Warning (phase 2)":"","Over Current Warning (phase 3)":"","Current supplier price label":"","Current tariff index number":"","Customer tele-information protocol version":"","Current date and time":"","Total provider active power delivered (index 07)":"","Total provider active power delivered (index 08)":"","Total provider active power delivered (index 09)":"","Total provider active power delivered (index 10)":"","Active energy withdrawn Distributor (index 01)":"","Active energy withdrawn Distributor (index 02)":"","Active energy withdrawn Distributor (index 03)":"","Active energy withdrawn Distributor (index 04)":"","Total active power injected":"","Total reactive power (Q1)":"","Total reactive power (Q2)":"","Total reactive power (Q3)":"","Total reactive power (Q4)":"","RMS voltage":"","RMS voltage (phase 2)":"","RMS voltage (phase 3)":"","Register of Statutes":"","Apparent power threshold":"","Instantaneous apparent power injected":"","Apparent power max. injected n":"","Apparent power max. injected n-1":"","Current point of the active load curve drawn":"","Previous point of the active load curve drawn":"","Point n of the withdrawn active load curve":"","Point n-1 of the withdrawn active load curve":"","Average RMS voltage (phase 1)":"","Average RMS voltage (phase 2)":"","Average RMS voltage (phase 3)":"","Immediate apparent power delivered (phase 2)":"","Immediate apparent power delivered (phase 3)":"","Apparent power delivered peak (phase 2)":"","Apparent power delivered peak (phase 3)":"","Apparent power max. draw-off n-1":"","Apparent power max. draw-off n-1 (phase 2)":"","Apparent power max. draw-off n-1 (phase 3)":"","Message short":"","Message ultra-short":"","PRM number":"","Start mobile point 1":"","Stop mobile point 1":"","Start mobile point 2":"","Stop mobile point 2":"","Start mobile point 3":"","Stop mobile point 3":"","Current day number supplier calendar":"","Next day number supplier calendar":"","Profile of the next supplier calendar day":"","Profile of the next check-in day":"","Controls behaviour of led/siren on alarm":"Controls behaviour of LED/siren on alarm","Measured eCO2 value":"Measured CO2 value","Auto off after specific time.":"Autom. pois tietyn ajan j\xE4lkeen.","Enable the LED when the light is off":"","Works only when the pilot wire is deactivated":"","Animation Effect to use for the LEDs":"","Calculated by using a hue color circle(value/255*360) If color = 255 display white":"","Brightness of the LEDs":"","1-60 is in seconds calculated 61-120 is in minutes calculated by(value-60) Example a value of 65 would be 65-60 = 5 minutes - 120-254 Is in hours calculated by(value-120) Example a value of 132 would be 132-120 would be 12 hours. - 255 Indefinitely":"","Individual LED to target.":"","Animation Effect to use for the LED":"","Brightness of the LED":"","1-60 is in seconds calculated 61-120 is in minutes calculated by(value-60) Example a value of 65 would be 65-60 = 5 minutes - 120-254 Is in hours calculated by(value-120) Example a value of 132 would be 132-120 would be 12 hours. - 255 Indefinitely":"","This changes the speed that the light dims up when controlled from the hub. A setting of 0 turns the light immediately on. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 25 (2.5s)":"","This changes the speed that the light dims up when controlled at the switch. A setting of 0 turns the light immediately on. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpRemote setting.":"","This changes the speed that the light turns on when controlled from the hub. A setting of 0 turns the light immediately on. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpRemote setting.":"","This changes the speed that the light turns on when controlled at the switch. A setting of 0 turns the light immediately on. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpRemote setting.":"","This changes the speed that the light dims down when controlled from the hub. A setting of 0 turns the light immediately off. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpRemote setting.":"","This changes the speed that the light dims down when controlled at the switch. A setting of 0 turns the light immediately off. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpLocal setting.":"","This changes the speed that the light turns off when controlled from the hub. A setting of 'instant' turns the light immediately off. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with rampRateOffToOnRemote setting.":"","This changes the speed that the light turns off when controlled at the switch. A setting of 'instant' turns the light immediately off. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with rampRateOffToOnLocal setting.":"","The minimum level that the dimmer allows the bulb to be dimmed to. Useful when the user has an LED bulb that does not turn on or flickers at a lower level.":"","The maximum level that the dimmer allows the bulb to be dimmed to.Useful when the user has an LED bulb that reaches its maximum level before the dimmer value of 99 or when the user wants to limit the maximum brightness.":"","Inverts the orientation of the switch. Useful when the switch is installed upside down. Essentially up becomes down and down becomes up.":"","Automatically turns the switch off after this many seconds. When the switch is turned on a timer is started. When the timer expires, the switch is turned off. 0 = Auto off is disabled.":"","Default level for the dimmer when it is turned on at the switch. A setting of 0 means that the switch will return to the level that it was on before it was turned off.":"","Default level for the dimmer when it is turned on from the hub. A setting of 0 means that the switch will return to the level that it was on before it was turned off.":"","The state the switch should return to when power is restored after power failure. 0 = off, 1-100 = level, 101 = previous.":"","Shows the level that the load is at for x number of seconds after the load is adjusted and then returns to the Default LED state. 0 = Stay Off, 1-10 = seconds, 11 = Stay On.":"","Power level change that will result in a new power report being sent. The value is a percentage of the previous report.0 = disabled, 1-32767 = 0.1W-3276.7W.":"","Time period between consecutive power & energy reports being sent (in seconds). The timer is reset after each report is sent.":"","Energy reports Energy level change which will result in sending a new energy report.0 = disabled, 1-32767 = 0.01kWh-327.67kWh. Default setting: 10 (0.1 kWh)":"","Set the power type for the device.":"","Set the switch configuration.":"","This will set the button press delay. 0 = no delay (Disables Button Press Events), 1 = 100ms, 2 = 200ms, 3 = 300ms, etc. up to 900ms. Default = 500ms.":"","For use with Smart Bulbs that need constant power and are controlled via commands rather than power.":"","Set the color of the LED Indicator when the load is on.":"","Set the color of the LED Indicator when the load is off.":"","Set the intensity of the LED Indicator when the load is on.":"","Set the intensity of the LED Indicator when the load is off.":"","Ability to control switch from the wall.":"","Ability to control switch from the hub.":"","Use device as a Dimmer or an On/Off switch.":"","When the device is in On/Off mode, use full LED bar or just one LED.":"","Display progress on LED bar during firmware update.":"","0-254:This is the color of the LED strip in a hex representation. 255:Synchronization with default all LED strip color parameter.":"","Intesity of LED strip when on. 101 = Syncronized with default all LED strip intensity parameter.":"","Intesity of LED strip when off. 101 = Syncronized with default all LED strip intensity parameter.":"","Result of a double tap on the up button.":"","Measured Hcho value":"Measured HCHO value","Measured PM10 (particulate matter) concentration":"Measured PM\u2081\u2080 (particulate matter) concentration","Remaining battery 2 in %":"","Illuminance calibration in lux":"","Temperature calibration (-2.0...2.0)":"","Enable reporting":"","Control mode":"","External switch type":"","External switch status":"","Load detection mode":"","Load type":"","Load dimmable":"","Power supply mode":"","Pulses per kwh. Default 1000 imp/kWh. Range 0 to 65535":"Pulses per kWh. Default 1000 imp/kWh. Range 0 to 65535","Indicates if the card is inserted (= true) or not (= false)":"","Current temperature measured on the external sensor (floor)":"","The difference between the temperature at which the thermostat switches off, and the temperature at which it switches on again.":"","Max guarding temperature":"","Prevent changes. `false` = run normally. `true` = prevent from making changes.":"","Enables the LED when the light is off":"","Brightness of this backlight LED":"","Enable or disable the blue backlight LED":""},USt={undefined:"undefined",state:"Tila",brightness:"Kirkkaus",color_temp:"V\xE4ril\xE4mp\xF6tila",color_temp_startup:"V\xE4ril\xE4mp\xF6tila alussa",color_xy:"V\xE4ri Xy",effect:"Teho",linkquality:"Yhteyden laatu",local_temperature:"Paikallinen l\xE4mp\xF6tila",system_mode:"J\xE4rjestelm\xE4tila",local_temperature_calibration:"Paikallisen l\xE4mp\xF6tilan kalibrointi",position:"Paikka",options:"Valinnat",motor_speed:"moottorin nopeus",motor_working_mode:"",percent_state:"",border:"",power_outage_memory:"Virtakatkomuisti",battery:"Paristo",action:"Toiminta",power_on_behavior:"Toiminta virtakatkon j\xE4lkeen",battery_low:"Paristo v\xE4hiss\xE4",color_hs:"V\xE4ri (HS)",action_source_name:"",action_source_user:"",voltage:"J\xE4nnite",operation_mode:"Toimintomoodi",power:"Virta",energy:"Energia",temperature:"L\xE4mp\xF6tila",current:"Virta",led_disabled_night:"Led disabled night",contact:"Kontakti",illuminance:"Valoisuus",illuminance_lux:"Valoisuus",flip_indicator_light:"",consumer_connected:"Kulutus kytketty",humidity:"Kosteus",lcd_brightness:"LCD Brightness",lcd_auto_brightness_enabled:"LCD Auto Brightness Enabled",standby_lcd_brightness:"Standby LCD Brightness",power_outage_count:"",charging_status:"",motor_state:"",running:"",strength:"Voimakkuus",angle_x:"Kulma X",angle_y:"Kulma Y",angle_z:"Kulma Z",smoke:"Savu",smoke_density:"Savun Sakeus",smoke_density_dbm:"",mute_buzzer:"",mute:"",heartbeat_indicator:"",linkage_alarm:"",gas_sensitivity:"",tamper:"Peukalointi",auto_off:"Autom. pois",water_leak:"Vesivuoto",presence:"Paikalla",presence_event:"",monitoring_mode:"",approach_distance:"",reset_nopresence_status:"",occupancy:"Paikallaolo",detection_interval:"",pressure:"Ilmanpaine",alarm:"H\xE4lyytys",ac_connected:"",test_alarm:"",test_alarm_result:"",battery_level:"",fault_alarm:"",silence_siren:"",on_off_transition_time:"P\xE4\xE4lle Pois muutos aika",report_interval:"",temperature_unit_convert:"",max_temperature:"Max l\xE4mp\xF6tila",min_temperature:"Min l\xE4mp\xF6tila",max_humidity:"",min_humidity:"",target_distance:"",minimum_range:"",maximum_range:"",detection_delay:"",fading_time:"",self_test:"",brightness_state:"",action_step_size:"",action_transition_time:"",action_rate:"",child_lock:"Lapsilukko",motion_speed:"Liikkeen nopeus",motion_direction:"Liikkeen suunta",tumble_switch:"",fall_sensitivity:"",tumble_alarm_time:"",fall_down_status:"",static_dwell_alarm:"",led_status:"LED Status",trigger:"",garage_door_contact:"",indicator_mode:"",current_heating_setpoint:"Nykyinen l\xE4mmityksen asetus",preset:"Esiasetus",programming_mode:"Ohjelmointi Tila",thursday_schedule:"Torstai ohjelma",saturday_schedule:"Lauantai Ohjelma",sunday_schedule:"Sunnuntai Ohjelma",away_mode:"Poissa -tila",comfort_temperature:"Mukavuusl\xE4mp\xF6tila",eco_temperature:"S\xE4\xE4st\xF6l\xE4mp\xF6tila",holiday_start_stop:"",schedule:"",away_preset_days:"Poissa: p\xE4iv\xE4t",boost_time:"Tehostusaika",force:"Voima",away_preset_temperature:"Poissa: l\xE4mp\xF6tila",week:"Viikko",backlight_mode:"Taustavalotila",moving:"Liikkuu",calibration:"Kalibrointi",motor_reversal:"Moottorin peruutus",calibration_time:"kalibraatio aika",max_brightness:"",carbon_monoxide:"Hiilimonoksidi",co:"",co2:"CO2",formaldehyd:"Formaldehyde",pm25:"PM\u2082.\u2085",action_group:"",occupancy_level:"",noise:"",noise_detected:"",noise_timeout:"",occupancy_sensitivity:"",noise_detect_level:"",co2_autocalibration:"",co2_manual_calibration:"",th_heater:"",white_brightness:"",led_intensity_on:"LED Intensity On",led_intensity_off:"LED Intensity Off",door_state:"",power_factor:"",ac_frequency:"",status:"",power_apparent:"",power_phase_a:"",power_phase_b:"",power_phase_c:"",energy_phase_a:"",energy_phase_b:"",energy_phase_c:"",voltage_phase_a:"",voltage_phase_ab:"",voltage_phase_bc:"",voltage_phase_ca:"",current_phase_a:"",lift_duration:"",programming_operation_mode:"",radiator_covered:"",window_open_feature:"",preheat_status:"",adaptation_run_status:"",adaptation_run_settings:"",adaptation_run_control:"",regulation_setpoint_offset:"",led_indication:"LED Indication",action_duration:"",temperature_sensitivity:"",led_enable:"LED Enable",temperature_scale:"",battpercentage:"",outdoor_temperature:"",button_vibration_level:"",floor_sensor_type:"",powerup_status:"",floor_sensor_calibration:"",dry_time:"",mode_after_dry:"",temperature_display:"",window_open_check:"",hysterersis:"",display_auto_off_enabled:"",alarm_airtemp_overvalue:"",backlight:"",color_power_on_behavior:"Colour Power On Behaviour",valve_state:"",indicate_light:"",ADCO:"",BASE:"",OPTARIF:"",ISOUSC:"",HCHC:"",HCHP:"",BBRHCJW:"",BBRHPJW:"",BBRHCJR:"",BBRHPJR:"",IINST:"",IINST2:"",IINST3:"",IMAX:"",IMAX2:"",IMAX3:"",PMAX:"",PAPP:"",PTEC:"",DEMAIN:"",HHPHC:"",PPOT:"",PEJP:"",ADPS:"",ADIR1:"",ADIR2:"",ADIR3:"",LTARF:"",NTARF:"",VTIC:"",DATE:"",EASF07:"",EASF08:"",EASF09:"",EASF10:"",EASD01:"",EASD02:"",EASD03:"",EASD04:"",EAIT:"",ERQ1:"",ERQ2:"",ERQ3:"",ERQ4:"",URMS1:"",URMS2:"",URMS3:"",STGE:"",PCOUP:"",SINSTI:"",SMAXIN:"","SMAXIN-1":"",CCASN:"","CCASN-1":"",CCAIN:"","CCAIN-1":"",UMOY1:"",UMOY2:"",UMOY3:"",SINSTS2:"",SINSTS3:"",SMAXN2:"",SMAXN3:"","SMAXN-1":"","SMAXN2-1":"","SMAXN3-1":"",MSG1:"",MSG2:"",PRM:"",DPM1:"",FPM1:"",DPM2:"",FPM2:"",DPM3:"",FPM3:"",RELAIS:"",NJOURF:"","NJOURF+1":"","PJOURF+1":"",PPOINTE1:"",led_when_off:"",led_when_on:"LED When On",cable_outlet_mode:"",led_effect:"",color:"",individual_led_effect:"",led:"LED",dimmingSpeedUpRemote:"",dimmingSpeedUpLocal:"",rampRateOffToOnRemote:"",rampRateOffToOnLocal:"",dimmingSpeedDownRemote:"",dimmingSpeedDownLocal:"",rampRateOnToOffRemote:"",rampRateOnToOffLocal:"",minimumLevel:"",maximumLevel:"",invertSwitch:"",autoTimerOff:"",defaultLevelLocal:"",defaultLevelRemote:"",stateAfterPowerRestored:"",loadLevelIndicatorTimeout:"",activePowerReports:"",periodicPowerAndEnergyReports:"",activeEnergyReports:"",powerType:"",switchType:"",physicalOnOffDelay:"",smartBulbMode:"",ledColorWhenOn:"",ledColorWhenOff:"",ledIntensityWhenOn:"",ledIntensityWhenOff:"",localProtection:"",remoteProtection:"",outputMode:"",onOffLedMode:"",firmwareUpdateInProgressIndicator:"",defaultLed1ColorWhenOn:"",defaultLed1ColorWhenOff:"",defaultLed1IntensityWhenOn:"",defaultLed1IntensityWhenOff:"",defaultLed2ColorWhenOn:"",defaultLed2ColorWhenOff:"",defaultLed2IntensityWhenOn:"",defaultLed2IntensityWhenOff:"",defaultLed3ColorWhenOn:"",defaultLed3ColorWhenOff:"",defaultLed3IntensityWhenOn:"",defaultLed3IntensityWhenOff:"",defaultLed4ColorWhenOn:"",defaultLed4ColorWhenOff:"",defaultLed4IntensityWhenOn:"",defaultLed4IntensityWhenOff:"",defaultLed5ColorWhenOn:"",defaultLed5ColorWhenOff:"",defaultLed5IntensityWhenOn:"",defaultLed5IntensityWhenOff:"",defaultLed6ColorWhenOn:"",defaultLed6ColorWhenOff:"",defaultLed6IntensityWhenOn:"",defaultLed6IntensityWhenOff:"",defaultLed7ColorWhenOn:"",defaultLed7ColorWhenOff:"",defaultLed7IntensityWhenOn:"",defaultLed7IntensityWhenOff:"",doubleTapUpEvent:"",hcho:"HCHO",aqi:"AQI",pm10:"PM\u2081\u2080",battery2:"",control_mode:"",switch_status:"",load_detection_mode:"",load_type:"",load_dimmable:"",power_supply_mode:"",led_feedback:"LED Feedback",soil_moisture:"Maaper\xE4n kosteus",card:"",led_state:"LED State",external_temperature:"",hysteresis:"",max_temperature_protection:"",backlight_led:""},VSt={add_to_group:"Lis\xE4\xE4 ryhm\xE4\xE4n",create_group:"Luo ryhm\xE4",new_group_id:"Uuden ryhm\xE4n tunnus",new_group_id_placeholder:"Valitse ryhm\xE4tunnus, jos tarpeen",new_group_name:"Uuden ryhm\xE4n nimi",new_group_name_placeholder:"esimerkki: makkarin valot",remove_group:"Poista ryhm\xE4",group_id:"Ryhm\xE4n ID",group_name:"Ryhm\xE4n nimi",group_members:"Ryhm\xE4n j\xE4senet",group_scenes:"Ryhm\xE4n n\xE4kym\xE4t"},GSt={empty_logs_message:"Ei n\xE4ytett\xE4v\xE4\xE4",filter_by_text:"Suodata tekstill\xE4",show_only:"N\xE4yt\xE4 ainoastaan"},qSt={help_coordinator_link_description:"Yhten\xE4iset viivat ovat linkki koordinaattoriin",help_end_device_description:"Vihre\xE4 tarkoittaa loppup\xE4\xE4n laitetta",help_is_coordinator:"on koordinaattori",help_lqi_description:"Yhteyden laatu 0 - 255 (suurempi on parempi), arvoi, joissa / edustavat useita yhteystyyppej\xE4",help_router_description:"Sininen tarkoitaa reititint\xE4",help_router_links_description:"Katkoviivat ovat yhteyksi\xE4 reitittimeen",hide:"Napsauta piilottaaksesi",load:"Lataa kartta",loading:"Riippuen verkon koosta t\xE4m\xE4 voi kest\xE4\xE4 10 sekuntia tai jopa 2 minuuttia."},KSt={all:"Kaikki",dashboard:"Kojelauta",devices:"Laitteet",disable_join:"Est\xE4 liitokset",extensions:"Laajennukset",groups:"Ryhm\xE4t",logs:"Lokit",map:"Kartta",permit_join:"Salli liitokset",restart:"K\xE4ynnist\xE4 uudelleen",settings:"Asetukset"},QSt={check:"Tarkista p\xE4ivitykset",check_all:"Tarkista kaikki",empty_ota_message:"Sinulla ei ole OTAa tukevia laitteita",remaining_time:"Aikaa j\xE4ljell\xE4 {{- remaining}}",update:"P\xE4ivit\xE4 laitteen firmis"},ZSt={about:"Tietoja",advanced:"Edistyneet as.",blocklist:"Estolista",coordinator_revision:"Koordinaattorin revisio",coordinator_type:"Koordinaattorin tyyppi",donate:"Lahjoita",donation_text:["Moi, %username%, t\xE4\xE4ll\xE4 voi kiitt\xE4\xE4 meit\xE4 kovasta ty\xF6st\xE4","\xC4l\xE4 ep\xE4r\xF6i sanoa my\xF6s jotain mukavaa ;)"],download_state:"Latauksen tila",experimental:"Kokeellista",external_converters:"Ulkoiset muuntimet",frontend:"Etup\xE4\xE4",frontend_version:"Etup\xE4\xE4n versio",main:"P\xE4\xE4menu",ota:"OTA-p\xE4ivitykset",passlist:"P\xE4\xE4sylista",raw:"Raaka",restart_zigbee2mqtt:"K\xE4ynnist\xE4 Zigbee2MQTT uudelleen",serial:"Sarjanumero",settings:"Asetukset",tools:"Ty\xF6kalut",zigbee2mqtt_version:"Zigbee2MQTT:n versio",translate:"K\xE4\xE4nn\xE4",stats:"Tilastot"},YSt={detected_devices_message:"Havaittu {{count}} touchlink-laitetta.",rescan:"Hae uudelleen",scan:"Hae"},XSt={clear:"Pyyhi",closed:"Suljettu",false:"Ep\xE4tosi",not_supported:"Ei tuettu",occupied:"Varattu",open:"Avoin",supported:"Tuettu",true:"Tosi",empty_string:'Tyhj\xE4 merkkkijono("")',leaking:"Vuoto",tampered:"Peukaloitu"},JSt={actions:"Toiminnot",attribute:"Attribuutti",battery:"Paristo",block_join:"Est\xE4 uudelleenliittyminen",cluster:"Ryp\xE4s",dc_source:"DC l\xE4hde",description:"Kuvaus",device_type:"Laitetyyppi",endpoint:"P\xE4\xE4tepiste",firmware_build_date:"Firmiksen p\xE4iv\xE4ys",firmware_version:"Firmiksen versio",force_remove:"Pakota poisto",friendly_name:"Lempinimi",ieee_address:"IEEE-osoite",input_clusters:"Tuloryhm\xE4t",interview_completed:"Haastattelu p\xE4\xE4ttynyt",interview_failed:"Haastattelu ep\xE4onnistui",interviewing:"Haastatellaan",last_seen:"N\xE4hty viimeksi",mains_single_phase:"Verkkovirta (yksivaiheinen)",manufacturer:"Valmistaja",max_rep_interval:"Maksimi raportointiv\xE4li",min_rep_change:"Min. raportoitava muutos",min_rep_interval:"Minimi raportointiv\xE4li",model:"Malli",network_address:"Verkko-osoite",none:"Ei mit\xE4\xE4n",output_clusters:"L\xE4ht\xF6ryhm\xE4t",pic:"Kuva",power:"Virransy\xF6tt\xF6",power_level:"tehotaso",reconfigure:"Konfiguroi uudelleen",remove_device:"Poista laite",rename_device:"Nime\xE4 laite uudelleen",select_attribute:"Valitse attribuutti",select_cluster:"Valitse ryp\xE4s",support_status:"Tuen tila",unsupported:"Ei tuettu",updating_firmware:"Firmist\xE4 p\xE4ivitet\xE4\xE4n",update_Home_assistant_entity_id:"P\xE4ivit\xE4 Home Assistant entity ID",zigbee_manufacturer:"Zigbee Valmistaja",zigbee_model:"Zigbee Malli",device:"Laite",channel:"Kanava"},eAt={scene_id:"N\xE4kym\xE4n ID",recall:"Hae",store:"Talleta",remove:"Poista",remove_all:"Poista kaikki",add:"Lis\xE4\xE4",select_scene:"Valitse n\xE4kym\xE4",scene_name:"N\xE4kym\xE4n nimi"},tAt={byType:"Laitetyypin mukaan",byPowerSource:"Virtal\xE4hteen mukaan",byVendor:"Toimittajan mukaan",byModel:"Mallin mukaan",total:"Yhteens\xE4"},rAt={"Home Assistant legacy triggers, when enabled Zigbee2mqt will send an empty 'action' or 'click' after one has been send. A 'sensor_action' and 'sensor_click' will be discoverd":"Home Assistant legacy triggers, when enabled Zigbee2mqtt will send an empty 'action' or 'click' after one has been sent. A 'sensor_action' and 'sensor_click' will be discovered","Location of override OTA index file":" Location of override OTA index file ","Payload to be used for device availabilty and bridge/state topics. true = text, false = JSON":"","Name of the device in Home Assistant":""},nAt={"Availability (simple)":"","Availability (advanced)":"","Disable led":"Disable LED","OTA index override file name":"","Frontend (simple)":"","Frontend (advanced)":"","Options that are applied to all devices":"","Legacy availability payload":"","Baudrate (deprecated)":"","RTS / CTS (deprecated)":"","IKEA TRADFRI OTA use test url (deprecated)":"","Experimental (deprecated)":"","Home Assistant":"","Home Assistant name":""};var aAt={common:FSt,devicePage:BSt,exposes:WSt,extensions:HSt,featureDescriptions:jSt,featureNames:USt,groups:VSt,logs:GSt,map:qSt,navbar:KSt,ota:QSt,settings:ZSt,touchlink:YSt,values:XSt,zigbee:JSt,scene:eAt,stats:tAt,settingsSchemaDescriptions:rAt,settingsSchemaTitles:nAt};const iAt={action:"\xC5tg\xE4rd",actions:"\xC5tg\xE4rder",apply:"Till\xE4mpa",attribute:"Attribut",bind:"Binda",check_all:"Kontrollera alla",clear:"Rensa",close:"St\xE4ng",cluster:"Kluster",clusters:"Kluster",confirmation:"Bekr\xE4fta",delete:"Radera",devices:"Enheter",dialog_confirmation_prompt:"\xC4r du s\xE4ker?",disable:"Inaktivera",enter_search_criteria:"Ange s\xF6kkriterier",groups:"Grupper",loading:"Laddar...",none:"Ingen",read:"L\xE4s",save:"Spara",select_device:"V\xE4lj enhet",select_endpoint:"V\xE4lj slutpunkt",source_endpoint:"Inledande slutpunkt",the_only_endpoint:"Den enda slutpunkten",unbind:"Avbinda",write:"Skriv",destination_endpoint:"Destinationsslutpunkt"},oAt={about:"Om",bind:"Binda",clusters:"Kluster",dev_console:"Utvecklarkonsol",reporting:"Rapportering",settings:"Inst\xE4llningar",settings_specific:"Inst\xE4llningar (specifika)",state:"Status",scene:"Scen",unknown_device:"Ok\xE4nd enhet",exposes:"Exponerar"},sAt={empty_exposes_definition:"Finns inget att exponera"},lAt={create_new_extension:"Skapa nytt till\xE4gg",extension_name_propmt:"Ange nytt till\xE4ggsnamn",select_extension_to_edit:"V\xE4lj till\xE4gg att redigera"},uAt={"On/off state of this light":"P\xE5/av-status f\xF6r denna lampa","Brightness of this light":"Ljusk\xE4llans ljusstyrka","Color temperature of this light":"Ljusk\xE4llans f\xE4rgtemperatur","Color temperature after cold power on of this light":"F\xE4rgtemperatur efter str\xF6mavbrott","Color of this light in the CIE 1931 color space (x/y)":"F\xE4rg p\xE5 ljusk\xE4llan i f\xE4rgrymden CIE 1931 (x/y)","Triggers an effect on the light (e.g. make light blink for a few seconds)":"Utl\xF6ser en effekt p\xE5 ljuset (t.ex. f\xE5 ljuset att blinka i n\xE5gra sekunder)","Link quality (signal strength)":"Kommunikationskvalitet (signalstyrka)","Temperature setpoint":"St\xE4ll in temperaturen","Current temperature measured on the device":"Aktuell temperatur uppm\xE4tt av enheten","Mode of this device":"Enhetsl\xE4ge","The current running state":"Det aktuella k\xF6rl\xE4get","Offset to be used in the local_temperature":"Kalibrering av rumstemperaturen p\xE5 termostaten","Position of the valve (= demanded heat) where 0% is fully closed and 100% is fully open":"Ventilens l\xE4ge (= efterfr\xE5gad v\xE4rme) d\xE4r 0% \xE4r helt st\xE4ngd och 100% helt \xF6ppen","Position of this cover":"Gardinens l\xE4ge","Motor speed":"Motorvarvtal","On/off state of the switch":"P\xE5/av-status f\xF6r omkopplaren","Recover state after power outage":"\xC5terst\xE4ll str\xF6mmen efter avst\xE4ngning","Remaining battery in %":"\xC5terst\xE5ende batteri i %","Triggered action (e.g. a button click)":"Anropa en \xE5tg\xE4rd (som att trycka p\xE5 en knapp)","Indicates if the battery of this device is almost empty":"Indikerar om enhetens batteri n\xE4stan \xE4r tomt","Color of this light expressed as hue/saturation":"Ljusk\xE4llans f\xE4rg omvandlas till nyans/m\xE4ttnad","State of the lock":"L\xE5sets status","Actual state of the lock":"L\xE5sets faktiska status","User ID to set or clear the pincode for":"Anv\xE4ndar-ID att st\xE4lla in eller rensa pinkoden f\xF6r","Type of user, unrestricted: owner (default), (year|week)_day_schedule: user has ability to open lock based on specific time period, master: user has ability to both program and operate the door lock, non_access: user is recognized by the lock but does not have the ability to open the lock":"Typ av anv\xE4ndare, obegr\xE4nsad: \xE4gare (standard), (year|week)_day_schedule: anv\xE4ndaren har m\xF6jlighet att \xF6ppna l\xE5s baserat p\xE5 specifik tidsperiod, master: anv\xE4ndaren har m\xF6jlighet att b\xE5de programmera och anv\xE4nda d\xF6rrl\xE5set, non_access: anv\xE4ndaren k\xE4nns igen av l\xE5set men har inte m\xF6jlighet att \xF6ppna l\xE5set","Whether the user is enabled/disabled":"Om anv\xE4ndaren \xE4r aktiverad/inaktiverad","Pincode to set, set pincode to null to clear":"Pinkod att st\xE4lla in, l\xE4mna blankt f\xF6r att ta bort pinkod","Triggered action on the lock":"Utl\xF6st \xE5tg\xE4rd p\xE5 l\xE5set","Source of the triggered action on the lock":"K\xE4llan till den utl\xF6sta \xE5tg\xE4rden p\xE5 l\xE5set","ID of user that triggered the action on the lock":"ID f\xF6r anv\xE4ndaren som utl\xF6ste \xE5tg\xE4rden p\xE5 l\xE5set","Voltage of the battery in millivolts":"Batteriets sp\xE4nning i millivolt","Click mode, fast: only supports single click which will be send immediately after clicking.multi: supports more events like double and hold":"Klickl\xE4ge, snabbt: st\xF6der endast enkla klick som skickas direkt efter klickning. Multi: st\xF6der fler h\xE4ndelser som dubbel och ih\xE5llande",'Operation mode, select "command" to enable bindings (wake up the device before changing modes!)':'Driftl\xE4ge, v\xE4lj "kommando" f\xF6r att aktivera bindningar (v\xE4ck enheten innan du byter l\xE4ge!)',"Click mode, fast: only supports single click which will be send immediately after clicking, multi: supports more events like double and hold":"Klickl\xE4ge, snabbt: st\xF6der endast enkla klick som skickas direkt efter klickning, multi: st\xF6der fler h\xE4ndelser som dubbel och v\xE4nta","Button mode":"Knappl\xE4ge","Rotation angle":"Rotationsvinkel","Rotation angle speed":"Rotationsvinkelhastighet","Rotation percent":"Rotationsprocent","Rotation percent speed":"Rotationsprocenthastighet","Rotation time":"Rotationstid","Instantaneous measured power":"Tillf\xE4lligt uppm\xE4tt effektv\xE4rde","Sum of consumed energy":"Total energif\xF6rbrukning","Measured temperature value":"Uppm\xE4tt temperaturv\xE4rde","Measured electrical potential value":"Uppm\xE4tt sp\xE4nningsv\xE4rde","Instantaneous measured electrical current":"Tillf\xE4lligt uppm\xE4tt v\xE4rde p\xE5 str\xF6mstyrkan","Enable/disable the power outage memory, this recovers the on/off mode after power failure":"Aktivera/inaktivera minnet f\xF6r str\xF6mavbrott, detta \xE5terst\xE4ller p\xE5/av-l\xE4get efter str\xF6mavbrott","Enable/disable the LED at night":"Aktivera/inaktivera LED p\xE5 natten","Disables the physical switch button":"Inaktiverar den fysiska v\xE4xlingsknappen","Maximum allowed load, turns off if exceeded":"Maximal till\xE5ten belastning, st\xE4ngs av om den \xF6verskrids","Indicates if the contact is closed (= true) or open (= false)":"Kontaktstatus st\xE4ngd (= true) eller \xF6ppen (= false)","Control both relay and usb or only the relay with the physical switch button":"Styr b\xE5de rel\xE4 och usb eller bara rel\xE4et med den fysiska brytarknappen","Raw measured illuminance":"Det uppm\xE4tta belysningsstyrkan bearbetas inte","Measured illuminance in lux":"Uppm\xE4tt belysningsstyrka i lux","Time interval in seconds to report after light changes":"Tidsintervall i sekunder f\xF6r att rapportera efter ljusbyten","After turn on, the indicator light turns on while switch is off, and vice versa":"Efter p\xE5slag t\xE4nds indikatorlampan n\xE4r str\xF6mbrytaren \xE4r avst\xE4ngd och vice versa","Decoupled mode":"Fr\xE5nkopplat l\xE4ge","Indicates whether a plug is physically attached. Device does not have to pull power or even be connected electrically (state of this binary switch can be ON even if main power switch is OFF)":"Indikerar om en kontakt \xE4r fysiskt ansluten. Enheten beh\xF6ver inte dra str\xF6m eller ens vara ansluten elektriskt (tillst\xE5ndet f\xF6r denna bin\xE4ra str\xF6mbrytare kan vara P\xC5 \xE4ven om huvudstr\xF6mbrytaren \xE4r AV)","Decoupled mode for left button":"Separat l\xE4ge f\xF6r v\xE4nster knapp","Decoupled mode for right button":"Separat l\xE4ge f\xF6r h\xF6ger knapp","Measured relative humidity":"Uppm\xE4tt v\xE4rde p\xE5 fuktighet","Measured VOC value":"Uppm\xE4tt VOC-v\xE4rde","Anti flicker mode can be used to solve blinking issues of some lights.Quick mode makes the device respond faster.":"Anti-flimmerl\xE4ge kan anv\xE4ndas f\xF6r att l\xF6sa blinkande problem med vissa lampor. Snabbl\xE4ge g\xF6r att enheten reagerar snabbare.","Decoupled mode for button":"Fr\xE5nkopplat l\xE4ge f\xF6r knapp","Enable standby":"Aktivera standby","Display theme":"Visa tema","Beep volume":"Ljudvolym","LCD brightness (will not persist if auto-brightness is enabled)":"LCD-ljusstyrka (kommer inte att best\xE5 om automatisk ljusstyrka \xE4r aktiverad)","Interface language":"Gr\xE4nssnittsspr\xE5k","Screen saver style":"Stil f\xF6r sk\xE4rmsl\xE4ckare","Display standby time":"Visa standbytid","Display font size":"Visa teckenstorlek","Enable LCD auto brightness":"Aktivera automatisk LCD-ljusstyrka","Default display homepage":"Startsida f\xF6r standardvisning","Enable screen saver":"Aktivera sk\xE4rmsl\xE4ckare","Standby LCD brightness":"Standby LCD-ljusstyrka","Control which switches are available in the switches screen (none disables switches screen)":"Styr vilka omkopplare som \xE4r tillg\xE4ngliga p\xE5 sk\xE4rmen (ingen inaktiverar sk\xE4rmen)","Switch 1 text and icon":"Reglage 1 text och ikon",Icon:"Ikon","Switch 2 text and icon":"Reglage 2 text och ikon","Switch 3 text and icon":"Reglage 3 text och ikon","Wall switch type":"Typ av v\xE4ggbrytare","Temperature of the device":"Temperaturen p\xE5 enheten","Number of power outages (since last pairing)":"Antal str\xF6mavbrott (sedan senaste ihopparningen)","Number of power outages":"Antal str\xF6mavbrott","Enabling prevents both relais being on at the same time":"Aktivering f\xF6rhindrar att b\xE5da rel\xE4erna \xE4r p\xE5 samtidigt","The current charging status.":"Aktuell laddningsstatus.","The current state of the motor.":"Motorns nuvarande tillst\xE5nd.","Whether the motor is moving or not":"Om motorn r\xF6r sig eller inte","Motor state":"Motorstatus","Indicates whether the device detected vibration":"Indikerar om enheten har uppt\xE4ckt vibrationer","Indicates whether the device detected smoke":"Detektering av r\xF6k av enheten","Value of smoke concentration":"V\xE4rdet p\xE5 r\xF6kkoncentrationen","Value of smoke concentration in dB/m":"V\xE4rdet p\xE5 r\xF6kkoncentrationen i dB/m","Starts the self-test process (checking the indicator light and buzzer work properly)":"Startar sj\xE4lvtestprocessen (kontrollera att indikatorlampan och summern fungerar korrekt)","Self-test in progress":"Sj\xE4lvtest p\xE5g\xE5r","Mute the buzzer for 80 seconds (buzzer cannot be pre-muted, because this function only works when the alarm is triggered)":"St\xE4ng av pipsignalen i 80 sekunder (du kan inte st\xE4nga av pipsignalen i f\xF6rv\xE4g, eftersom den h\xE4r funktionen bara fungerar n\xE4r larmet g\xE5r)","Buzzer muted":"Summern avst\xE4ngd","When this option is enabled then in the normal monitoring state, the green indicator light flashes every 60 seconds":"Om detta alternativ \xE4r aktiverat, blinkar den gr\xF6na indikatorn var 60:e sekund i normalt \xF6vervakningstillst\xE5nd","When this option is enabled and a smoke is detected, other detectors with this option enabled will also sound the alarm buzzer":"Om det h\xE4r alternativet \xE4r aktiverat och r\xF6k uppt\xE4cks kommer andra detektorer med detta alternativ aktiverat ocks\xE5 att tjuta.","Indicates whether the device detected gas":"Indikerar om enheten uppt\xE4ckt gas","Value of gas concentration":"V\xE4rde p\xE5 gaskoncentration",'Gas concentration value at which an alarm is triggered ("10%LEL" is more sensitive than "15%LEL")':'Gaskoncentrationsv\xE4rde vid vilket ett larm utl\xF6ses ("10%LEL" \xE4r k\xE4nsligare \xE4n "15%LEL")',"Mute the buzzer for 10 minutes (buzzer cannot be pre-muted, because this function only works when the alarm is triggered)":"St\xE4ng av ljudet i 10 minuter (summern kan inte st\xE4ngas av i f\xF6rv\xE4g, eftersom denna funktion bara fungerar n\xE4r larmet utl\xF6ses)","When this option is enabled and a gas leak is detected, other detectors with this option enabled will also sound the alarm buzzer":"N\xE4r det h\xE4r alternativet \xE4r aktiverat och en gasl\xE4cka uppt\xE4cks, kommer andra detektorer med detta alternativ aktiverat ocks\xE5 att avge larmsignalen",'"Preparation" or "work" (measurement of the gas concentration value and triggering of an alarm are only performed in the "work" state)':'"F\xF6rberedelse" eller "arbete" (m\xE4tning av gaskoncentrationsv\xE4rdet och utl\xF6sning av ett larm utf\xF6rs endast i "arbetsl\xE4ge")',"Indicates whether the device is tampered":"Detektering av st\xF6rningar i enhetens funktion","Test mode activated":"Testl\xE4ge aktiverat","If the power is constantly lower than 2W within half an hour, the plug will be automatically turned off":"Om effekten konstant \xE4r l\xE4gre \xE4n 2W inom en halvtimme kommer kontakten att st\xE4ngas av automatiskt","Device temperature (polled every 30 min)":"Enhetstemperatur (kontroll sker var 30:e minut)","Turn the device automatically off when attached device consumes less than 2W for 20 minutes":"St\xE4ng av enheten automatiskt n\xE4r den anslutna enheten f\xF6rbrukar mindre \xE4n 2W under 20 minuter","Side of the cube":"Kubsidan","Indicates whether the device detected a water leak":"Detektering av vattenl\xE4ckor av enheten","Indicates whether the device detected presence":"Indikerar om enheten har uppt\xE4ckt n\xE4rvaro",'Presence events: "enter", "leave", "left_enter", "right_leave", "right_enter", "left_leave", "approach", "away"':'N\xE4rvaroh\xE4ndelser: "enter", "leave", "left_enter", "right_leave", "right_enter", "left_leave", "approach", "away"',"Monitoring mode with or without considering right and left sides":"\xD6vervakningsl\xE4ge med eller utan h\xE4nsyn till h\xF6ger och v\xE4nster sida","The distance at which the sensor detects approaching":"Avst\xE5ndet vid vilket sensorn uppt\xE4cker approximationen","Different sensitivities means different static human body recognition rate and response speed of occupied":"Olika k\xE4nsligheter betyder olika statisk m\xE4nsklig kroppsigenk\xE4nningshastighet och svarshastighet f\xF6r ockuperade","Reset the status of no presence":"\xC5terst\xE4ll n\xE4rvarostatus","Indicates whether the device detected occupancy":"N\xE4rvarodetekteringsanordning","Time interval for detecting actions":"Tidsintervall f\xF6r att uppt\xE4cka \xE5tg\xE4rder","The measured atmospheric pressure":"Uppm\xE4tt atmosf\xE4rstryck","Decoupled mode for center button":"Separat l\xE4ge f\xF6r mittknappen","Operation mode for left button":"Driftl\xE4ge f\xF6r v\xE4nster knapp","Operation mode for right button":"Driftl\xE4ge f\xF6r h\xF6ger knapp","Switch between rgbw mode or dual color temperature mode":"V\xE4xla mellan RGBW-l\xE4ge eller dubbelf\xE4rgstemperaturl\xE4ge","Mode of the warning (sound effect)":"L\xE4get f\xF6r varningen (ljudeffekt)","Sound level":"Ljudniv\xE5","Intensity of the strobe":"Strobens intensitet","Turn on/off the strobe (light) during warning":"Sl\xE5 p\xE5/av stroben (ljuset) under varning","Length of the flash cycle":"L\xE4ngden p\xE5 blink-cykel","Duration in seconds of the alarm":"Larmets varaktighet i sekunder","Is the device plugged in":"Enheten \xE4r ansluten till n\xE4tverket","Volume of siren":"Volym av siren","Smoke alarm status":"R\xF6kdetektorns status","Test alarm":"Larmtest","Test alarm result":"Larmtestets resultat","Battery level state":"Batteriniv\xE5ns status","Alarm enable":"Aktivera larm","Fault alarm status":"Fellarmstatus","Silence siren":"Tysta sirener","Detected by sudden temperature drop or set manually.":"Den best\xE4ms av ett pl\xF6tsligt temperaturfall eller st\xE4lls in manuellt.","Manually set window_open, ~1 minute to take affect.":"St\xE4ll in window_open manuellt, ~1 minut f\xF6r att tr\xE4da i kraft.","Enables/disables physical input on the device":"Aktiverar/inaktiverar fysisk inmatning p\xE5 enheten","Pin code introduced.":"Pinkod introducerad.","Last action transaction number.":"Transaktionsnummer f\xF6r senaste \xE5tg\xE4rd.","Alarm zone. Default value 0":"Larmzon. Standardv\xE4rde 0","Tilt of this cover":"gardinens lutning","Configure genLevelCtrl":"Konfigurera genLevelCtrl","Represents the time taken to move to or from the target level when On of Off commands are received by an On/Off cluster":"Representerar tiden det tar att flytta till eller fr\xE5n m\xE5lniv\xE5n n\xE4r P\xE5- eller Av-kommandon tas emot av ett P\xE5/Av-kluster","Represents the time taken to move the current level from the minimum level to the maximum level when an On command is received":"Representerar tiden det tar att flytta den aktuella niv\xE5n fr\xE5n miniminiv\xE5n till maximiniv\xE5n n\xE4r ett P\xE5-kommando tas emot","Represents the time taken to move the current level from the maximum level to the minimum level when an Off command is received":"Representerar den tid det tar att flytta den aktuella niv\xE5n fr\xE5n maxniv\xE5n till miniminiv\xE5n n\xE4r ett Av-kommando tas emot","Defines the desired startup level for a device when it is supplied with power":"Definierar \xF6nskad startniv\xE5 f\xF6r en enhet n\xE4r den matas med str\xF6m","Specifies the minimum light output the ballast can achieve.":"Specificerar den l\xE4gsta ljuseffekt ballasten kan uppn\xE5.","Specifies the maximum light output the ballast can achieve.":"Specificerar den maximala ljuseffekten som ballasten kan uppn\xE5.","Specifies the minimum light output of the ballast":"Anger den l\xE4gsta ljuseffekten f\xF6r ballasten","Specifies the maximum light output of the ballast":"Anger den maximala ljuseffekten f\xF6r ballasten","Specifies the minimum light output after switching on":"Anger den l\xE4gsta ljuseffekten efter p\xE5slagning","The dimmer supports AC forward phase control.":"Dimmern st\xF6der direkt styrning av AC-fasen.","The dimmer supports AC reverse phase control.":"Dimmern st\xF6der den omv\xE4nda fasen av v\xE4xelstr\xF6m.","The dimmer is capable of measuring the reactanceto distinguish inductive and capacitive loads.":"Dimmern kan m\xE4ta reaktansen f\xF6r att skilja induktiva och kapacitiva laster.","The dimmer is capable of replacing the built-in, default dimming curve.":"Dimmern kan ers\xE4tta den inbyggda, standarddimmerkurvan.","The dimmer is capable of detecting an output overload and shutting the output off.":"Dimmern kan detektera en utg\xE5ngs\xF6verbelastning och st\xE4nga av utg\xE5ngen.","The dimmer is currently operating in AC forward phase control mode.":"Dimmern arbetar f\xF6r n\xE4rvarande i normal AC-faskontrolll\xE4ge.","The dimmer is currently operating in AC reverse phase control mode.":"Dimmern arbetar f\xF6r n\xE4rvarande i omv\xE4nd AC-faskontrolll\xE4ge.","The output is currently turned off, because the dimmer has detected an overload.":"Utg\xE5ngen \xE4r f\xF6r n\xE4rvarande avst\xE4ngd eftersom dimmern har uppt\xE4ckt en \xF6verbelastning.","The dimmer's reactance discriminator had detected a capacitive load.":"Dimmerns reaktansdiskriminator hade detekterat en kapacitiv belastning.","The dimmer's reactance discriminator had detected an inductive load.":"Dimmerns reaktansdiskriminator hade uppt\xE4ckt en induktiv belastning.","Configures the dimming technique.":"Konfigurerar dimningstekniken.","Controls the behavior when the device is powered on":"Styr beteendet n\xE4r enheten sl\xE5s p\xE5","PIR sensor sensitivity (refresh and update only while active)":"PIR-sensork\xE4nslighet (ladda om och uppdatera endast n\xE4r aktiv)","PIR keep time in seconds (refresh and update only while active)":"PIR sparar tid i sekunder (ladda om och uppdatera endast n\xE4r aktiv)","Report interval":"Rapportintervall","Current display unit":"Aktuell displayenhet","Temperature alarm status":"Temperaturlarmstatus","Alarm temperature max":"Larmtemperatur max","Alarm temperature min":"Larmtemperatur min","Humidity alarm status":"Luftfuktighetslarmstatus","Alarm humidity max":"Larm n\xE4r fuktighet n\xE5r max","Alarm humidity min":"Larm n\xE4r fuktighet n\xE5r min","Distance to target":"Avst\xE5nd till m\xE5let","sensitivity of the radar":"radarns k\xE4nslighet","Minimum range":"Minsta r\xE4ckvidd","Maximum range":"Maximal r\xE4ckvidd","Detection delay":"Detekteringsf\xF6rdr\xF6jning","Fading time":"D\xE4mpningstid","Self_test, possible resuts: checking, check_success, check_failure, others, comm_fault, radar_fault.":"Sj\xE4lvtest, m\xF6jliga resultat: kontrollerar (checking), lyckad kontroll (check_success), kontrollfel (check_failure), andra (others), kommunikationsfel (comm_fault), radarfel (radar_fault).","Brightness state":"Status f\xF6r ljusstyrka",'Operation mode: "command" - for group control, "event" - for clicks':'Driftl\xE4ge: "kommando" - f\xF6r gruppkontroll, "h\xE4ndelse" - f\xF6r klick',"Speed of movement":"R\xF6relsehastighet","direction of movement from the point of view of the radar":"r\xF6relseriktning fr\xE5n radarns synvinkel","presets for sensitivity for presence and movement":"f\xF6rinst\xE4llningar f\xF6r k\xE4nslighet f\xF6r n\xE4rvaro och r\xF6relse","Tumble status switch":"Omkopplare f\xF6r tumlarstatus","fall sensitivity of the radar":"radarns fallk\xE4nslighet","tumble alarm time":"tumlar alarm tid","fall down status":"falla ner status","static dwell alarm":"statiskt uppeh\xE5llslarm","O-Sensitivity mode":"O-k\xE4nslighetsl\xE4ge","V-Sensitivity mode":"V-k\xE4nslighetsl\xE4ge","Led status switch":"LED-statusbrytare","Vacancy delay":"Vakansf\xF6rsening","Light-On luminance prefer":"F\xF6redragen Ljus-P\xE5-Luminans","Light-Off luminance prefer":"F\xF6redragen Ljus-Av-Luminans","Working mode":"Arbetsl\xE4ge","Luminance level":"Luminansniv\xE5","Reference luminance":"Referensluminans","Vacant confirm time":"Ledig bekr\xE4ftelsetid","Alarm humidity status":"Larm fuktstatus","Alarm temperature status":"Larmtemperaturstatus","Trigger the door movement":"Utl\xF6sa d\xF6rrr\xF6relsen","Indicates if the garage door contact is closed (= true) or open (= false)":"Visar om garageportens kontakt \xE4r st\xE4ngd (= true) eller \xF6ppen (= false)","Relay LED indicator mode":"LED-l\xE4ge f\xF6r rel\xE4indikatorn","Switch type settings":"Byt typinst\xE4llningar","Minimum light brightness":"L\xE4gsta ljusstyrka","Plug LED indicator mode":"Plugg LED-indikatorl\xE4ge","Maximum temperature":"Maximal temperatur","Minimum temperature":"L\xE4gsta temperatur","Enables/disables window detection on the device":"Aktiverar/inaktiverar f\xF6nsterdetektering p\xE5 enheten","Window status closed or open ":"Statusen f\xF6r f\xF6nstret \xE4r st\xE4ngt eller \xF6ppet","Device valve is open or closed (heating or not)":"Enhetsventilen \xE4r \xF6ppen eller st\xE4ngd (v\xE4rme eller inte)",'MANUAL MODE \u261D - In this mode, the device executes manual temperature setting. When the set temperature is lower than the "minimum temperature", the valve is closed (forced closed). AUTO MODE \u23F1 - In this mode, the device executes a preset week programming temperature time and temperature. ON - In this mode, the thermostat stays open OFF - In this mode, the thermostat stays closed':'MANUELLT L\xC4GE \u261D - I detta l\xE4ge utf\xF6r enheten manuell temperaturinst\xE4llning. N\xE4r den inst\xE4llda temperaturen \xE4r l\xE4gre \xE4n "minimitemperaturen" st\xE4ngs ventilen (tv\xE5ngsst\xE4ngning). AUTOL\xC4GE \u23F1 - I detta l\xE4ge utf\xF6r enheten en f\xF6rinst\xE4lld veckoprogrammering av temperaturtid och temperatur. P\xC5 - I detta l\xE4ge f\xF6rblir termostaten \xF6ppen AV - I detta l\xE4ge f\xF6rblir termostaten st\xE4ngd',"Auto MODE \u23F1 - In this mode, the device executes a preset week programming temperature time and temperature. ":"Auto MODE \u23F1 - I det h\xE4r l\xE4get k\xF6r enheten en f\xF6rinst\xE4lld veckoprogrammering av temperaturtid och temperatur.",'Boost Heating: press and hold "+" for 3 seconds, the device will enter the boost heating mode, and the \u25B7\u2575\u25C1 will flash. The countdown will be displayed in the APP':'Boost: Tryck och h\xE5ll "+" i 3 sekunder, ventilen v\xE4xlar till boost-l\xE4ge och \u25B7\u2575\u25C1 b\xF6rjar blinka. Varaktigheten visas i applikationen.',"Countdown in minutes":"Nedr\xE4kning i minuter","Away mode":"Bortal\xE4ge","Enables/disables the status on the device":"Aktiverar/inaktiverar status p\xE5 enheten","Open window temperature":"Temperatur med f\xF6nstret \xF6ppet","Comfort temperature":"Komforttemperatur","Eco temperature":"Ekotemperatur","Mode of this device (similar to system_mode)":"L\xE4ge f\xF6r denna enhet (liknande system_mode)","Setting minimum 0 - maximum 465 seconds boost time. The boost (\u2668) function is activated. The remaining time for the function will be counted down in seconds ( 465 to 0 ).":"Inst\xE4llning av minimum 0 - maximalt 465 sekunders \xF6kningstid. Snabbfunktionen (\u2668) \xE4r aktiverad. Den \xE5terst\xE5ende tiden f\xF6r funktionen kommer att r\xE4knas ned i sekunder ( 465 till 0 ).",'When Anti-Freezing function is activated, the temperature in the house is kept at 8 \xB0C, the device display "AF".press the pair button to cancel.':'N\xE4r frostskyddsfunktionen \xE4r aktiverad h\xE5lls temperaturen i huset vid 8\xB0C, enheten visar "AF". tryck p\xE5 parningsknappen f\xF6r att avbryta.','Battery life can be prolonged by switching the heating off. To achieve this, the valve is closed fully. To activate the heating stop, the device display "HS", press the pair button to cancel.':'Batteriets livsl\xE4ngd kan f\xF6rl\xE4ngas genom att st\xE4nga av v\xE4rmen. F\xF6r att uppn\xE5 detta st\xE4ngs ventilen helt. F\xF6r att aktivera v\xE4rmestoppet visar enheten "HS", tryck p\xE5 parningsknappen f\xF6r att avbryta.',"Holiday temperature":"Semestertemperatur","The holiday mode( \u26F1 ) will automatically start at the set time starting point and run the holiday temperature.":"Semesterl\xE4get ( \u26F1 ) startar automatiskt vid den inst\xE4llda startpunkten och k\xF6r semestertemperaturen.","Auto Mode \u23F1 - In this mode, the device executes a preset week programming temperature time and temperature. ":"Autol\xE4ge \u23F1 - I detta l\xE4ge k\xF6r enheten en f\xF6rinst\xE4lld veckoprogrammering av temperaturtid och temperatur.","Is the device online":"\xC4r enheten online","Error status":"Felstatus","Window open?":"\xC4r f\xF6nstret \xF6ppet?","Mode of this device, in the `heat` mode the TS0601 will remain continuously heating, i.e. it does not regulate to the desired temperature. If you want TRV to properly regulate the temperature you need to use mode `auto` instead setting the desired temperature.":'L\xE4get f\xF6r denna enhet, i "v\xE4rme"-l\xE4get kommer TS0601 att forts\xE4tta att v\xE4rmas upp, d.v.s. den reglerar inte till \xF6nskad temperatur. Om du vill att TRV ska reglera temperaturen korrekt m\xE5ste du anv\xE4nda l\xE4get "auto" ist\xE4llet f\xF6r att st\xE4lla in \xF6nskad temperatur.',"Enable/disable auto lock":"Aktivera/inaktivera automatisk l\xE5sning","Enable/disable away mode":"Aktivera/avaktivera bortal\xE4ge","Away preset days":"F\xF6rinst\xE4llda avresedagar","Boost time":"Accelerationstid","Force the valve position":"Tvinga ventilens l\xE4ge","Away preset temperature":"F\xF6rinst\xE4llda avg\xE5ngstemperaturer","Schedule MODE \u23F1 - In this mode, the device executes a preset week programming temperature time and temperature.":"Schemal\xE4ge \u23F1 - I detta l\xE4ge k\xF6r enheten en f\xF6rinst\xE4lld veckoprogrammering av temperaturtid och temperatur.","Week format user for schedule":"Veckovis anv\xE4ndarformat f\xF6r schemal\xE4ggning","Calibration time":"Kalibreringstid","Maximum light brightness":"Maximal ljusstyrka","PIR sensor sensitivity":"PIR-sensork\xE4nslighet","PIR keep time in seconds":"PIR h\xE5ller tiden i sekunder","Indicates if CO (carbon monoxide) is detected":"Detektion av CO (kolmonoxid)","The measured CO (carbon monoxide) value":"Det uppm\xE4tta CO-v\xE4rdet (kolmonoxid)","The measured CO2 (carbon dioxide) value":"Det uppm\xE4tta CO2-v\xE4rdet (koldioxid)","The measured formaldehyd value":"Det uppm\xE4tta formaldehydv\xE4rdet","Measured PM2.5 (particulate matter) concentration":"Uppm\xE4tt koncentration av PM2.5 (partiklar)","Group where the action was triggered on":"Gruppen d\xE4r \xE5tg\xE4rden inleddes","The measured occupancy value":"Det uppm\xE4tta bel\xE4ggningsv\xE4rdet","The measured noise value":"Det uppm\xE4tta bullerv\xE4rdet","Indicates whether the device detected noise":"Indikerar om enheten har uppt\xE4ckt brus","Time in seconds after which noise is cleared after detecting it (default: 60)":"Tid i sekunder efter vilket brus f\xF6rsvinner efter uppt\xE4ckt (standard: 60)","Time in seconds after which occupancy is cleared after detecting it (default: 60)":"Tid i sekunder efter vilken blockering rensas efter att den har uppt\xE4ckts (standard: 60)","Self-heating compensation. The compensation value is subtracted from the measured temperature":"Sj\xE4lvuppv\xE4rmningskompensation. Kompensationsv\xE4rdet subtraheras fr\xE5n den uppm\xE4tta temperaturen","If the sensor is triggered by the slightest movement, reduce the sensitivity, otherwise increase it (default: 50)":"Om sensorn utl\xF6ses av minsta lilla r\xF6relse, minska k\xE4nsligheten, annars \xF6ka den (standard: 50)","The minimum noise level at which the detector will work (default: 50)":"Minsta ljudniv\xE5 vid vilken detektorn kommer att fungera (standard: 50)","Automatic calibration of the CO2 sensor. If ON, the CO2 sensor will automatically calibrate every 7 days.":"Automatisk kalibrering av CO2-sensorn. Om den \xE4r aktiverad kommer CO2-sensorn att kalibreras automatiskt var 7:e dag.","Ventilate the room for 20 minutes, turn on manual calibration, and turn it off after one second. After about 5 minutes the CO2 sensor will show 400ppm. Calibration completed":"Ventilera rummet i 20 minuter, sl\xE5 p\xE5 manuell kalibrering och st\xE4ng av efter en sekund. Efter cirka 5 minuter visar CO2-sensorn 400 ppm. Kalibrering klar","Turn on when working in conditions of high humidity (more than 70 %, RH) or condensation, if the sensor shows 0 or 100 %.":"Sl\xE5 p\xE5 vid drift i h\xF6g luftfuktighet (mer \xE4n 70%, RH) eller kondensera om sensorn visar 0 eller 100%.","Indicates if the device is moving":"Indikerar om enheten r\xF6r sig","Accelerometer X value":"Accelerometer X-v\xE4rde","Accelerometer Y value":"Accelerometer Y-v\xE4rde","Accelerometer Z value":"Accelerometer Z-v\xE4rde","Trigger beep for x seconds":"Utl\xF6s pip i x sekunder","White brightness of this light":"Vit ljusstyrka f\xF6r detta ljus","Valve state if open or closed":"Ventilens tillst\xE5nd om den \xE4r \xF6ppen eller st\xE4ngd","Position of the valve":"Ventilens l\xE4ge","Control status LED when load ON":"Lysdiod f\xF6r kontrollstatus n\xE4r belastning \xE4r P\xC5","Control status LED when load OFF":"LED-kontrollstatus n\xE4r belastning \xE4r AV","Control minimum dimmer brightness":"Kontrollera minimiljusstyrkan f\xF6r dimmern","Control backlight dimming behavior":"Kontrollera dimmerns beteende f\xF6r bakgrundsbelysningen","Door status":"D\xF6rrstatus","User ID can only number 1":"Anv\xE4ndar-ID kan endast vara nummer 1","Pincode to set, set pincode(4 digit) to null to clear":"Pinkod f\xF6r att st\xE4lla in, st\xE4ll in pinkod (4 siffror) till null f\xF6r att radera","temperature of device internal mcu":"temperatur p\xE5 enhetens interna MCU","Measured electrical power factor":"Uppm\xE4tt elektrisk effektfaktor","Measured electrical ac frequency":"Uppm\xE4tt elektrisk v\xE4xelstr\xF6msfrekvens","Currently status":"Status f\xF6r n\xE4rvarande","People count":"Antal personer","Instantaneous measured apparent power":"Tillf\xE4lligt uppm\xE4tt skenbar effekt","Instantaneous measured power on phase A":"Tillf\xE4lligt uppm\xE4tt effekt i fas A","Instantaneous measured power on phase B":"Tillf\xE4lligt uppm\xE4tt effekt i fas B","Instantaneous measured power on phase C":"Tillf\xE4lligt uppm\xE4tt effekt i fas C","Instantaneous measured power factor":"Tillf\xE4lligt uppm\xE4tt effektfaktor","Sum of consumed energy on phase A":"M\xE4ngden energi som f\xF6rbrukas i fas A","Sum of consumed energy on phase B":"M\xE4ngden energi som f\xF6rbrukas i fas B","Sum of consumed energy on phase C":"M\xE4ngden energi som f\xF6rbrukas i fas C","Measured electrical AC frequency":"Uppm\xE4tt elektrisk AC-frekvens","Measured electrical potential value on phase A":"Det uppm\xE4tta v\xE4rdet av den elektriska potentialen i fas A","Measured electrical potential value on phase B":"Uppm\xE4tt elektriskt potentialv\xE4rde p\xE5 fas B","Measured electrical potential value on phase C":"Uppm\xE4tt elektrisk potentialv\xE4rde p\xE5 fas C","Measured electrical potential value between phase A and B":"Uppm\xE4tt v\xE4rde p\xE5 elektrisk potential mellan faserna A och B","Measured electrical potential value between phase B and C":"Uppm\xE4tt v\xE4rde p\xE5 elektrisk potential mellan faserna B och C","Measured electrical potential value between phase C and A":"Uppm\xE4tt v\xE4rde p\xE5 elektrisk potential mellan faserna C och A","Instantaneous measured electrical current on phase A":"Tillf\xE4lligt uppm\xE4tt elektrisk str\xF6m i fas A","Instantaneous measured electrical current on phase B":"Tillf\xE4lligt uppm\xE4tt elektrisk str\xF6m p\xE5 fas B","Instantaneous measured electrical current on phase C":"Tillf\xE4lligt uppm\xE4tt elektrisk str\xF6m p\xE5 fas C","Time in seconds after which occupancy is cleared after detecting it":"Tid i sekunder efter vilken bel\xE4ggning rensas efter att den har uppt\xE4ckts","Controls the behaviour when the device is powered on":"Styr beteendet n\xE4r enheten sl\xE5s p\xE5","Icon shown on device displays":"Ikon som visas p\xE5 enhetens sk\xE4rmar","Calibrates valve on next wakeup":"Kalibrerar ventilen vid n\xE4sta v\xE4ckning","Controls piloting mode":"Styr pilotl\xE4ge","Controls Capacitive or Inductive Dimming Mode":"Styr kapacitivt eller induktivt diml\xE4ge","Sets dimming mode to autodetect or fixed RC/RL/RL_LED mode (max load is reduced in RL_LED)":"St\xE4ller in dimningsl\xE4ge till autodetektering eller fast RC/RL/RL_LED-l\xE4ge (maxbelastning minskas i RL_LED)","Duration of lift":"Lyftets varaktighet","Auto off after specific time":"Automatisk avst\xE4ngning efter en viss tid","Auto off timer time left":"\xC5terst\xE5ende tid f\xF6r automatisk avst\xE4ngning","Time the valve was open when state on":"Tid d\xE5 ventilen var \xF6ppen n\xE4r status p\xE5","Liters of water consumed":"Liter vatten f\xF6rbrukat","Controls how programming affects the thermostat. Possible values: setpoint (only use specified setpoint), schedule (follow programmed setpoint schedule). Changing this value does not clear programmed schedules.":"Styr hur programmering p\xE5verkar termostaten. M\xF6jliga v\xE4rden: b\xF6rv\xE4rde (anv\xE4nd endast angivet b\xF6rv\xE4rde), schema (f\xF6lj programmerat b\xF6rv\xE4rdeschema). Att \xE4ndra detta v\xE4rde raderar inte programmerade scheman.","Is the unit in mounting mode. This is set to `false` for mounted (already on the radiator) or `true` for not mounted (after factory reset)":'Enheten \xE4r i monteringsl\xE4ge. Detta \xE4r inst\xE4llt p\xE5 "false" f\xF6r installerat (redan p\xE5 kylaren) eller "true" f\xF6r inte installerat (efter \xE5terst\xE4llning till fabriksinst\xE4llningarna)',"Set the unit mounting mode. `false` Go to Mounted Mode or `true` Go to Mounting Mode":'St\xE4ll in enhetens monteringsl\xE4ge. "False" f\xF6r att v\xE4xla till monterat l\xE4ge eller "True" f\xF6r att v\xE4xla till monteringsl\xE4ge',"Thermostat Orientation. This is important for the PID in how it assesses temperature. `false` Horizontal or `true` Vertical":'Orientering av termostaten. Detta \xE4r viktigt f\xF6r PID i hur termostaten utv\xE4rderar temperaturen. "False" horisontellt eller "true" vertikalt',"Viewing/Display Direction. `false` Horizontal or `true` Vertical":'Visa/visa riktning. "False" horisontellt eller "true" vertikalt',"Not clear how this affects operation. However, it would appear that the device does not execute any motor functions if this is set to false. This may be a means to conserve battery during periods that the heating system is not energized (e.g. during summer). `false` No Heat Available or `true` Heat Available":'Oklart hur detta p\xE5verkar driften. Det verkar dock som om enheten inte utf\xF6r n\xE5gra motorfunktioner om detta \xE4r inst\xE4llt p\xE5 "false". Detta kan vara ett s\xE4tt att spara p\xE5 batteriet under perioder d\xE5 v\xE4rmesystemet inte \xE4r str\xF6msatt (t.ex. under sommaren). "False" Ingen v\xE4rme tillg\xE4nglig eller "true" v\xE4rme tillg\xE4nglig',"Whether or not the unit needs warm water. `false` No Heat Request or `true` Heat Request":'Oavsett om apparaten beh\xF6ver varmvatten eller inte. "False" Ingen v\xE4rmebeg\xE4ran eller "True" v\xE4rmebeg\xE4ran',"Values observed are `0` (manual), `1` (schedule) or `2` (externally)":'De observerade v\xE4rdena \xE4r "0" (manuellt), "1" (schema) eller "2" (externt)',"If `radiator_covered` is `true`: Set at maximum 30 minutes interval but not more often than every 5 minutes and 0.1 degrees difference. Resets every 35 minutes to standard. If `radiator_covered` is `false`: Set at maximum 3 hours interval but not more often than every 30 minutes and 0.1 degrees difference. Resets every 3 hours to standard. Value 21C = 2100 (-8000=undefined).":'Om "radiator_covered" \xE4r "true": St\xE4ll in med maximalt 30 minuters intervall men inte oftare \xE4n var 5:e minut och 0,1 graders skillnad. \xC5terst\xE4lls var 35:e minut till standard. Om "radiator_covered" \xE4r "false": St\xE4ll in med maximalt 3 timmars intervall men inte oftare \xE4n var 30:e minut och 0,1 graders skillnad. \xC5terst\xE4lls var 3:e timme till standard. V\xE4rde 21C = 2100 (-8000=odefinierat).',"Set if the TRV should solely rely on external_measured_room_sensor or operate in offset mode. `false` = Auto Offset Mode or `true` = Room Sensor Mode":'St\xE4ll in om TRV enbart ska f\xF6rlita sig p\xE5 external_measured_room_sensor eller arbeta i offsetl\xE4ge. "false" = Auto Offset-l\xE4ge eller "true" = Rumssensorl\xE4ge',"Whether or not the window open feature is enabled":"Huruvida funktionen f\xF6r att \xF6ppna f\xF6nster \xE4r aktiverad eller inte","0=Quarantine, 1=Windows are closed, 2=Hold - Windows are maybe about to open, 3=Open window detected, 4=In window open state from external but detected closed locally":"0=Karant\xE4n, 1=F\xF6nster \xE4r st\xE4ngda, 2=V\xE4nta - Windows kanske \xE4r p\xE5 v\xE4g att \xF6ppnas, 3=\xD6ppet f\xF6nster uppt\xE4ckt, 4=I f\xF6nster \xF6ppet tillst\xE5nd fr\xE5n extern men uppt\xE4ckt st\xE4ngd lokalt","Set if the window is open or close. This setting will trigger a change in the internal window and heating demand. `false` (windows are closed) or `true` (windows are open)":'St\xE4ll in om f\xF6nstret \xE4r \xF6ppet eller st\xE4ngt. Denna inst\xE4llning kommer att utl\xF6sa en f\xF6r\xE4ndring av det interna f\xF6nstret och v\xE4rmebehovet. "False" (f\xF6nster \xE4r st\xE4ngda) eller "true" (f\xF6nster \xE4r \xF6ppna)',"Exercise day of week: 0=Sun...6=Sat, 7=undefined":"Tr\xE4ningsdag i veckan: 0=s\xF6n...6=l\xF6r, 7=odefinierad","Exercise trigger time. Minutes since midnight (65535=undefined). Range 0 to 1439":"Tr\xE4ningens utl\xF6sningstid. Minuter sedan midnatt (65535=odefinierat). Omr\xE5de 0 till 1439",'Scale factor of setpoint filter timeconstant ("aggressiveness" of control algorithm) 1= Quick ... 5=Moderate ... 10=Slow':'Skalfaktor f\xF6r b\xF6rv\xE4rdesfiltrets tidskonstant ("aggressivitet" f\xF6r styralgoritmen) 1=Snabb ... 5=M\xE5ttlig ... 10=L\xE5ngsam',"Whether or not the thermostat acts as standalone thermostat or shares load with other thermostats in the room. The gateway must update load_room_mean if enabled.":"Oavsett om termostaten fungerar som frist\xE5ende termostat eller delar belastning med andra termostater i rummet. Gatewayen m\xE5ste uppdatera ladda_rum_medel om den \xE4r aktiverad.","Mean radiator load for room calculated by gateway for load balancing purposes (-8000=undefined)":"Genomsnittlig radiatorbelastning f\xF6r rum ber\xE4knad av gateway f\xF6r lastbalanserings\xE4ndam\xE5l (-8000=odefinierad)","Load estimate on this radiator":"Belastningsuppskattning p\xE5 denna radiator","Specific for pre-heat running in Zigbee Weekly Schedule mode":"Speciellt f\xF6r f\xF6rv\xE4rmning i Zigbee Weekly Schedule-l\xE4ge","Status of adaptation run: None (before first run), In Progress, Valve Characteristic Found, Valve Characteristic Lost":"Status f\xF6r anpassningsk\xF6rning: Ingen (f\xF6re f\xF6rsta k\xF6rning), P\xE5g\xE5r, Ventilkarakteristik hittad, Ventilkarakteristik f\xF6rlorad","Automatic adaptation run enabled (the one during the night)":"Autostartanpassning aktiverad (en p\xE5 natten)","Adaptation run control: Initiate Adaptation Run or Cancel Adaptation Run":"Hantera anpassningsutf\xF6rande: starta anpassningsstarten eller avbryt anpassningsstarten","Regulation SetPoint Offset in range -2.5\xB0C to 2.5\xB0C in steps of 0.1\xB0C. Value 2.5\xB0C = 25.":"Offset av den inst\xE4llda kontrollpunkten i intervallet fr\xE5n -2,5\xB0C till 2,5\xB0C i steg om 0,1\xB0C. V\xE4rdet p\xE5 2,5\xB0C = 25.","Blink green LED on motion detection":"Blinka gr\xF6nt vid r\xF6relsedetektering","Ac louver position of this device":"AC jalusiposition f\xF6r denna enhet","On/off state of this fan":"P\xE5/av l\xE4ge f\xF6r denna fl\xE4kt","Mode of this fan":"L\xE4get f\xF6r denna fl\xE4kt","Sound volume of the lock":"Ljudvolym f\xF6r l\xE5set","Auto relock after 7 seconds.":"Automatisk \xE5terl\xE5sning efter 7 sekunder.","Temperature sensitivity":"Temperaturk\xE4nslighet","Enable LED":"Aktivera LED","Temperature/humidity alarm status":"Larmstatus f\xF6r temperatur/luftfuktighet","Temperature scale (\xB0F/\xB0C)":"Temperaturskala (\xB0F/\xB0C)","Current temperature measured from the floor sensor":"Aktuell temperatur m\xE4tt fr\xE5n golvgivaren","OLED brightness when operating the buttons. Default: Medium.":"OLED-ljusstyrka under knappman\xF6vrering. Standard: medium.","Key beep volume and vibration level. Default: Low.":"Knappvolym och vibrationsniv\xE5. Standard: l\xE5g.","Type of the external floor sensor. Default: NTC 10K/25.":"Typ av extern golvgivare. Standard: NTC 10K/25.","The sensor used for heat control. Default: Room Sensor.":"Sensor som anv\xE4nds f\xF6r v\xE4rmereglering. Standard: rumsgivare.","The mode after a power reset. Default: Previous Mode.":"L\xE4ge efter omstart. Standard: f\xF6reg\xE5ende l\xE4ge.","The tempearatue calibration for the exernal floor sensor, between -3 and 3 in 0.1\xB0C. Default: 0.":"Temperaturkalibrering f\xF6r utomhusgolvgivare, -3 till 3 vid 0,1\xB0C. Standard: 0.","The duration of Dry Mode, between 5 and 100 minutes. Default: 5.":"Varaktighet av torrl\xE4ge fr\xE5n 5 till 100 minuter. Standard: 5.","The mode after Dry Mode. Default: Auto.":"L\xE4ge efter torrl\xE4ge. Standard: Auto.","The temperature on the display. Default: Room Temperature.":"Temperatur p\xE5 displayen. Standard: Rumstemperatur.","The threshold to detect window open, between 1.5 and 4 in 0.5 \xB0C. Default: 0 (disabled).":"Tr\xF6skel f\xF6r att uppt\xE4cka ett \xF6ppet f\xF6nster fr\xE5n 1,5 till 4 vid 0,5\xB0C. Standard: 0 (av).","Hysteresis setting, between 0.5 and 2 in 0.1 \xB0C. Default: 0.5.":"Hysteresinst\xE4llning fr\xE5n 0,5 till 2 vid 0,1\xB0C. Standard: 0,5.","Room temperature alarm threshold, between 20 and 60 in \xB0C. 0 means disabled. Default: 45.":"Larmtr\xF6skel f\xF6r rumstemperatur fr\xE5n 20 till 60\xB0C. 0 betyder av. Standard: 45.","Do not disturb mode":"St\xF6r ej-l\xE4ge","Power on behavior state":"Str\xF6m p\xE5 beteendetillst\xE5nd","ECO mode (energy saving mode)":"ECO-l\xE4ge (str\xF6msparl\xE4ge)",'MANUAL MODE \u261D - In this mode, the device executes manual temperature setting. When the set temperature is lower than the "minimum temperature", the valve is closed (forced closed). PROGRAMMING MODE \u23F1 - In this mode, the device executes a preset week programming temperature time and temperature. HOLIDAY MODE \u26F1 - In this mode, for example, the vacation mode is set for 10 days and the temperature is setto 15 degrees Celsius. After 10 days, the device will automatically switch to programming mode. TEMPORARY MANUAL MODE - In this mode, \u261D icon will flash. At this time, the device executes the manually set temperature and returns to the weekly programming mode in the next time period. ':'MANUELLT L\xC4GE \u261D - I detta l\xE4ge utf\xF6r enheten manuell temperaturinst\xE4llning. N\xE4r den inst\xE4llda temperaturen \xE4r l\xE4gre \xE4n "minimitemperaturen" st\xE4ngs ventilen (tv\xE5ngsst\xE4ngd). PROGRAMMERINGSL\xC4GE \u23F1 - I detta l\xE4ge k\xF6r enheten en f\xF6rinst\xE4lld veckoprogrammering av temperaturtid och temperatur. SEMESTERL\xC4GE \u26F1 - I detta l\xE4ge \xE4r till exempel semesterl\xE4get inst\xE4llt p\xE5 10 dagar och temperaturen \xE4r inst\xE4lld p\xE5 15 grader Celsius. Efter 10 dagar v\xE4xlar enheten automatiskt till programmeringsl\xE4ge. TILLF\xC4LLIGT MANUELLT L\xC4GE - I detta l\xE4ge blinkar ikonen \u261D. Vid denna tidpunkt utf\xF6r enheten den manuellt inst\xE4llda temperaturen och \xE5terg\xE5r till veckoprogrammeringsl\xE4get under n\xE4sta tidsperiod.',"PROGRAMMING MODE \u23F1 - In this mode, the device executes a preset week programming temperature time and temperature. You can set up to 4 stages of temperature every for WEEKDAY \u2780\u2781\u2782\u2783\u2784, SATURDAY \u2785 and SUNDAY \u2786.":"PROGRAMMERINGSL\xC4GE \u23F1 - I detta l\xE4ge k\xF6r enheten en f\xF6rinst\xE4lld veckoprogrammering av temperaturtid och temperatur. Du kan st\xE4lla in upp till 4 temperatursteg varje f\xF6r VECKODAG \u2780\u2781\u2782\u2783\u2784, L\xD6RDAG \u2785 och S\xD6NDAG \u2786.","Boost Time Setting 100 sec - 900 sec, (default = 300 sec)":"Boost-tidsinst\xE4llning 100 sek - 900 sek, (standard = 300 sek)","Indicator light status":"Status f\xF6r indikatorlampa","The delta between local_temperature and current_heating_setpoint to trigger Heat":"Deltat mellan local_temperature och current_heating_setpoint f\xF6r att trigga v\xE4rme","Maximum temperature limit":"Maximal temperaturgr\xE4ns","Select temperature sensor to use":"V\xE4lj temperatursensor att anv\xE4nda","Mode of the fan":"L\xE4ge f\xF6r fl\xE4kten","Serial Number":"Serienummer","Base index":"Basindex","Tarif option":"Tariffalternativ","Subscribed intensity level":"Prenumererad intensitetsniv\xE5","HCHC index":"HCHC-index","HCHP index":"HCHP-index","BBRHCJW index":"BBRHCJW-index","BBRHPJW index":"BBRHPJW-index","BBRHCJR index":"BBRHCJR-index","BBRHPJR index":"BBRHPJR-index","RMS current":"RMS-str\xF6m","RMS current (phase 2)":"RMS-str\xF6m (fas 2)","RMS current (phase 3)":"RMS-str\xF6m (fas 3)","RMS current peak":"RMS-str\xF6mtopp","RMS current peak (phase 2)":"RMS-str\xF6mtopp (fas 2)","RMS current peak (phase 3)":"RMS-str\xF6mtopp (fas 3)","Three-phase power peak":"Trefas effekttopp","Apparent power":"Full styrka","Current pricing period":"Aktuell priss\xE4ttningsperiod","Tomorrow color":"F\xE4rg f\xF6r imorgon","Schedule HPHC":"Schemal\xE4gg HPHC","Presence of potentials":"N\xE4rvaro av potentialer","EJP start notice (30min)":"EJP startmeddelande (30min)","Subscribed Power Exceeded Warning":"Prenumererad str\xF6m \xF6verskriden Varning","Over Current Warning (phase 1)":"\xD6verstr\xF6msvarning (fas 1)","Over Current Warning (phase 2)":"\xD6verstr\xF6msvarning (fas 2)","Over Current Warning (phase 3)":"\xD6verstr\xF6msvarning (fas 3)","Current supplier price label":"Aktuell leverant\xF6rsprisetikett","Current tariff index number":"Aktuellt taxeindexnummer","Customer tele-information protocol version":"Kundens teleinformationsprotokollversion","Current date and time":"Aktuellt datum och tid","Total provider active power delivered (index 07)":"Total leverant\xF6rs aktiv effekt levererad (index 07)","Total provider active power delivered (index 08)":"Total leverant\xF6rs aktiv effekt levererad (index 08)","Total provider active power delivered (index 09)":"Total leverant\xF6rs aktiv effekt levererad (index 09)","Total provider active power delivered (index 10)":"Total leverant\xF6rs aktiv effekt levererad (index 10)","Active energy withdrawn Distributor (index 01)":"Aktiv energiuttagen distribut\xF6r (index 01)","Active energy withdrawn Distributor (index 02)":"Aktiv energiuttagen distribut\xF6r (index 02)","Active energy withdrawn Distributor (index 03)":"Aktiv energiuttagen distribut\xF6r (index 03)","Active energy withdrawn Distributor (index 04)":"Aktiv energiuttagen distribut\xF6r (index 04)","Total active power injected":"Total aktiv effekt injicerad","Total reactive power (Q1)":"Total reaktiv effekt (Q1)","Total reactive power (Q2)":"Total reaktiv effekt (Q2)","Total reactive power (Q3)":"Total reaktiv effekt (Q3)","Total reactive power (Q4)":"Total reaktiv effekt (Q4)","RMS voltage":"RMS-sp\xE4nning","RMS voltage (phase 2)":"RMS-sp\xE4nning (fas 2)","RMS voltage (phase 3)":"RMS-sp\xE4nning (fas 3)","Register of Statutes":"F\xF6rfattningsregister","Apparent power threshold":"Skenbar effekttr\xF6skel","Instantaneous apparent power injected":"Tillf\xE4lligt skenbar kraft injicerat","Apparent power max. injected n":"Skenbar effekt max. injicerat n","Apparent power max. injected n-1":"Skenbar effekt max. injicerat n-1","Current point of the active load curve drawn":"Aktuell punkt f\xF6r den aktiva lastkurvans str\xF6m","Previous point of the active load curve drawn":"F\xF6reg\xE5ende punkt p\xE5 den aktiva lastkurvans str\xF6m","Point n of the withdrawn active load curve":"Punkt n f\xF6r den tillbakadragna aktiva lastkurvan","Point n-1 of the withdrawn active load curve":"Punkt n-1 i den uttagna aktiva lastkurvan","Average RMS voltage (phase 1)":"Genomsnittlig RMS-sp\xE4nning (fas 1)","Average RMS voltage (phase 2)":"Genomsnittlig RMS-sp\xE4nning (fas 2)","Average RMS voltage (phase 3)":"Genomsnittlig RMS-sp\xE4nning (fas 3)","Immediate apparent power delivered (phase 2)":"Omedelbar skenbar effekt levererad (fas 2)","Immediate apparent power delivered (phase 3)":"Omedelbar skenbar effekt levererad (fas 3)","Apparent power delivered peak (phase 2)":"Skenbar effekt levererad topp (fas 2)","Apparent power delivered peak (phase 3)":"Skenbar effekt levererad topp (fas 3)","Apparent power max. draw-off n-1":"Skenbar effekt max. uttag n-1","Apparent power max. draw-off n-1 (phase 2)":"Skenbar effekt max. uttag n-1 (fas 2)","Apparent power max. draw-off n-1 (phase 3)":"Skenbar effekt max. uttag n-1 (fas 3)","Message short":"Meddelande kort","Message ultra-short":"Meddelande ultrakort","PRM number":"PRM-nummer","Start mobile point 1":"Starta mobil punkt 1","Stop mobile point 1":"Stoppa mobil punkt 1","Start mobile point 2":"Starta mobil punkt 2","Stop mobile point 2":"Stoppa mobil punkt 2","Start mobile point 3":"Starta mobil punkt 3","Stop mobile point 3":"Stoppa mobil punkt 3","Current day number supplier calendar":"Aktuellt dagnummer leverant\xF6rskalender","Next day number supplier calendar":"N\xE4sta dag nummer leverant\xF6r kalender","Profile of the next supplier calendar day":"Profil f\xF6r n\xE4sta leverant\xF6rskalenderdag","Profile of the next check-in day":"Profil f\xF6r n\xE4sta incheckningsdag","Motor options":"Motoralternativ","Motor direction":"Motorriktning","Motor is moving":"Motorn r\xF6r sig","Controls behaviour of led/siren on alarm":"Styr beteendet hos lysdioden/sirenen vid larm","Alarm zone. Default value 23":"Larmzon. Standardv\xE4rde 23","Measured eCO2 value":"Uppm\xE4tt CO2-v\xE4rde","Temperature setpoint automatic":"Temperaturb\xF6rv\xE4rde automatisk","Open window detection temperature":"Detekteringstemperatur f\xF6r \xF6ppet f\xF6nster","Open window time in minute":'K\xF6rtid f\xF6r "f\xF6nster \xF6ppet" i minuter',"Unknown binary one":"\xD6k\xE4nd bin\xE4r ett","Unknown binary two":"Ok\xE4nd bin\xE4r tv\xE5","Start away year 20xx":"Starta borta \xE5r 20xx","Start away month":"Starta efter m\xE5nad","Start away day":"Starta efter dag","Start away hours":"Starta efter timmar","Start away minutes":"Starta efter minuter","Temperature 1":"Temperatur 1","Hour TO for temp 1":"Timme TO f\xF6r temp 1","Minute TO for temp 1":"Minut TO f\xF6r temp 1","Temperature 2":"Temperatur 2","Hour TO for temp 2":"Timme TO f\xF6r temp 2","Minute TO for temp 2":"Minut TO f\xF6r temp 2","Temperature 3":"Temperatur 3","Hour TO for temp 3":"Timme TO f\xF6r temp 3","Minute TO for temp 3":"Minut TO f\xF6r temp 3","Temperature 4":"Temperatur 4","Hour TO for temp 4":"Timme TO f\xF6r temp 4","Minute TO for temp 4":"Minut TO f\xF6r temp 4","Temperature 5":"Temperatur 5","Hour TO for temp 5":"Timme TO f\xF6r temp 5","Minute TO for temp 5":"Minut TO f\xF6r temp 5","Temperature 6":"Temperatur 6","Hour TO for temp 6":"Timme TO f\xF6r temp 6","Minute TO for temp 6":"Minut TO f\xF6r temp 6","Temperature 7":"Temperatur 7","Hour TO for temp 7":"Timme TO f\xF6r temp 7","Minute TO for temp 7":"Minut TO f\xF6r temp 7","Temperature 8":"Temperatur 8","Hour TO for temp 8":"Timme TO f\xF6r temp 8","Minute TO for temp 8":"Minut TO f\xF6r temp 8","Temperature 9":"Temperatur 9","Hour TO for temp 9":"Timme TO f\xF6r temp 9","Minute TO for temp 9":"Minut TO f\xF6r temp 9","Auto off after specific time.":"Automatisk avst\xE4ngning efter viss tid.","Enable the LED when the light is off":"Sl\xE5 p\xE5 lysdioden n\xE4r lampan \xE4r sl\xE4ckt","Enables the LED when the light is on":"Aktiverar lysdioden n\xE4r lampan lyser","Works only when the pilot wire is deactivated":"Fungerar endast n\xE4r pilotkabeln \xE4r avaktiverad","Enable/disable the power alarm":"Aktivera/inaktivera str\xF6mlarmet","Specifies the minimum brightness value":"Anger l\xE4gsta ljusstyrka","Specifies the maximum brightness value":"Anger h\xF6gsta ljusstyrka","Allow the device to change brightness":"L\xE5t enheten \xE4ndra ljusstyrkan",'On/off (works only if device is in "switch" mode)':'P\xE5/av (fungerar endast om enheten \xE4r i "switch"-l\xE4ge)',"switch: allow on/off, auto will use wired action via C1/C2 on teleruptor with buttons":"switch: till\xE5t p\xE5/av, auto kommer att anv\xE4nda tr\xE5dbunden \xE5tg\xE4rd via C1/C2 p\xE5 teleruptor med knappar","switch: allow on/off, auto will use wired action via C1/C2 on contactor for example with HC/HP":"brytare: till\xE5t p\xE5/av, auto kommer att anv\xE4nda tr\xE5dbunden \xE5tg\xE4rd via C1/C2 p\xE5 kontaktorn till exempel med HC/HP","Enabled LED":"Aktiverad LED","PIR keep time 0:5s|1:30s|2:60s|3:180s|4:300s|5:600s|6:1200s|7:1800s":"PIR-h\xE5lltid 0:5s|1:30s|2:60s|3:180s|4:300s|5:600s|6:1200s|7:1800s","Illuminance calibration":"Belysningsstyrka kalibrering","Animation Effect to use for the LEDs":"Animationseffekt att anv\xE4nda f\xF6r lysdioderna","Calculated by using a hue color circle(value/255*360) If color = 255 display white":"Ber\xE4knat med hj\xE4lp av f\xE4rgnyanscirkeln (v\xE4rde/255*360) Om f\xE4rg = 255, visa vit","Brightness of the LEDs":"Lysdiodernas ljusstyrka","1-60 is in seconds calculated 61-120 is in minutes calculated by(value-60) Example a value of 65 would be 65-60 = 5 minutes - 120-254 Is in hours calculated by(value-120) Example a value of 132 would be 132-120 would be 12 hours. - 255 Indefinitely":"1-60 ber\xE4knas i sekunder 61-120 i minuter ber\xE4knas av (v\xE4rde-60) Exempelv\xE4rde 65 blir 65-60 = 5 minuter - 120-254 Ber\xE4knat i timmar med (v\xE4rde-120) Exempelv\xE4rde fr\xE5n 132 blir 132-120 blir 12 timmar. - 255 Inga begr\xE4nsningar","Individual LED to target.":"Individuell lysdiod till m\xE5l.","Animation Effect to use for the LED":"Animationseffekt som kan anv\xE4ndas f\xF6r lysdioden","Brightness of the LED":"Lysdiodens ljusstyrka","1-60 is in seconds calculated 61-120 is in minutes calculated by(value-60) Example a value of 65 would be 65-60 = 5 minutes - 120-254 Is in hours calculated by(value-120) Example a value of 132 would be 132-120 would be 12 hours. - 255 Indefinitely":"1-60 ber\xE4knas i sekunder 61-120 i minuter, ber\xE4knat av (v\xE4rde-60) Exempelv\xE4rde 65 kommer att vara 65-60 = 5 minuter - 120-254 Ber\xE4knat i timmar med (v\xE4rde-120) Exempelv\xE4rde fr\xE5n 132 kommer att vara 132-120 blir 12 timmar. - 255 Inga begr\xE4nsningar","This changes the speed that the light dims up when controlled from the hub. A setting of 0 turns the light immediately on. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 25 (2.5s)":"Detta \xE4ndrar hastigheten som ljuset dimmas upp n\xE4r det styrs fr\xE5n navet. En inst\xE4llning p\xE5 0 t\xE4nder ljuset omedelbart. Att \xF6ka v\xE4rdet saktar ner \xF6verg\xE5ngshastigheten. Varje nummer representerar 100ms. Standard = 25 (2.5s)","This changes the speed that the light dims up when controlled at the switch. A setting of 0 turns the light immediately on. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpRemote setting.":"Detta \xE4ndrar hastigheten som ljuset dimmas upp n\xE4r det styrs med str\xF6mbrytaren. En inst\xE4llning p\xE5 0 t\xE4nder ljuset omedelbart. Att \xF6ka v\xE4rdet saktar ner \xF6verg\xE5ngshastigheten. Varje nummer representerar 100ms. Standard = 127 - H\xE5ll i synk med dimmingSpeedUpRemote-inst\xE4llningen.","This changes the speed that the light turns on when controlled from the hub. A setting of 0 turns the light immediately on. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpRemote setting.":"Detta \xE4ndrar hastigheten med vilken ljuset t\xE4nds n\xE4r det styrs fr\xE5n navet. Inst\xE4llning 0 t\xE4nder omedelbart ljuset. Att \xF6ka v\xE4rdet saktar ner \xF6verg\xE5ngshastigheten. Varje nummer betyder 100ms. Standard = 127 - synkronisera med dimmingSpeedUpRemote-inst\xE4llningen.","This changes the speed that the light turns on when controlled at the switch. A setting of 0 turns the light immediately on. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpRemote setting.":"Detta \xE4ndrar hastigheten med vilken ljuset t\xE4nds n\xE4r det styrs av str\xF6mbrytaren. Inst\xE4llning 0 t\xE4nder omedelbart ljuset. Att \xF6ka v\xE4rdet saktar ner \xF6verg\xE5ngshastigheten. Varje nummer betyder 100ms. Standard = 127 - synkronisera med dimmingSpeedUpRemote-inst\xE4llningen.","This changes the speed that the light dims down when controlled from the hub. A setting of 0 turns the light immediately off. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpRemote setting.":"Detta \xE4ndrar hastigheten med vilken ljuset dimmas n\xE4r det styrs fr\xE5n navet. Inst\xE4llning 0 sl\xE4cker omedelbart ljuset. Att \xF6ka v\xE4rdet saktar ner \xF6verg\xE5ngshastigheten. Varje nummer betyder 100ms. Standard = 127 - synkronisera med dimmingSpeedUpRemote-inst\xE4llningen.","This changes the speed that the light dims down when controlled at the switch. A setting of 0 turns the light immediately off. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpLocal setting.":"","This changes the speed that the light turns off when controlled from the hub. A setting of 'instant' turns the light immediately off. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with rampRateOffToOnRemote setting.":"","This changes the speed that the light turns off when controlled at the switch. A setting of 'instant' turns the light immediately off. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with rampRateOffToOnLocal setting.":"","The minimum level that the dimmer allows the bulb to be dimmed to. Useful when the user has an LED bulb that does not turn on or flickers at a lower level.":"","The maximum level that the dimmer allows the bulb to be dimmed to.Useful when the user has an LED bulb that reaches its maximum level before the dimmer value of 99 or when the user wants to limit the maximum brightness.":"","Inverts the orientation of the switch. Useful when the switch is installed upside down. Essentially up becomes down and down becomes up.":"","Automatically turns the switch off after this many seconds. When the switch is turned on a timer is started. When the timer expires, the switch is turned off. 0 = Auto off is disabled.":"","Default level for the dimmer when it is turned on at the switch. A setting of 0 means that the switch will return to the level that it was on before it was turned off.":"","Default level for the dimmer when it is turned on from the hub. A setting of 0 means that the switch will return to the level that it was on before it was turned off.":"","The state the switch should return to when power is restored after power failure. 0 = off, 1-100 = level, 101 = previous.":"Tillst\xE5ndet som omkopplaren ska \xE5terg\xE5 till n\xE4r str\xF6mmen \xE5terst\xE4lls efter ett str\xF6mavbrott. 0 = av, 1-100 = niv\xE5, 101 = f\xF6reg\xE5ende.","Shows the level that the load is at for x number of seconds after the load is adjusted and then returns to the Default LED state. 0 = Stay Off, 1-10 = seconds, 11 = Stay On.":"","Power level change that will result in a new power report being sent. The value is a percentage of the previous report.0 = disabled, 1-32767 = 0.1W-3276.7W.":"","Time period between consecutive power & energy reports being sent (in seconds). The timer is reset after each report is sent.":"","Energy reports Energy level change which will result in sending a new energy report.0 = disabled, 1-32767 = 0.01kWh-327.67kWh. Default setting: 10 (0.1 kWh)":"","Set the power type for the device.":"St\xE4ll in vilken typ av str\xF6mf\xF6rs\xF6rjning f\xF6r enheten.","Set the switch configuration.":"Konfigurera omkopplaren.","This will set the button press delay. 0 = no delay (Disables Button Press Events), 1 = 100ms, 2 = 200ms, 3 = 300ms, etc. up to 900ms. Default = 500ms.":"","For use with Smart Bulbs that need constant power and are controlled via commands rather than power.":"","Set the color of the LED Indicator when the load is on.":"","Set the color of the LED Indicator when the load is off.":"","Set the intensity of the LED Indicator when the load is on.":"","Set the intensity of the LED Indicator when the load is off.":"","Ability to control switch from the wall.":"M\xF6jlighet att styra str\xF6mbrytaren fr\xE5n v\xE4ggen.","Ability to control switch from the hub.":"M\xF6jlighet att styra switchen fr\xE5n navet.","Use device as a Dimmer or an On/Off switch.":"","When the device is in On/Off mode, use full LED bar or just one LED.":"","Display progress on LED bar during firmware update.":"Visar f\xF6rlopp p\xE5 LED-panelen under firmwareuppdatering.","0-254:This is the color of the LED strip in a hex representation. 255:Synchronization with default all LED strip color parameter.":"","Intesity of LED strip when on. 101 = Syncronized with default all LED strip intensity parameter.":"LED-slingans styrka n\xE4r den \xE4r p\xE5. 101 = Synkroniserad med standardparametern f\xF6r intensitet f\xF6r alla LED-slingor.","Intesity of LED strip when off. 101 = Syncronized with default all LED strip intensity parameter.":"LED-slingans styrka n\xE4r den \xE4r av. 101 = Synkroniserad med standardparametern f\xF6r intensitet f\xF6r alla LED-slingor.","Result of a double tap on the up button.":"Resultatet av att dubbeltrycka upp-knappen.","Reporting interval in minutes":"Rapporteringsintervall i minuter","Temperature calibration":"Temperaturkalibrering","Humidity calibration":"Fuktighetskalibrering","Enable PIR sensor":"Aktivera PIR-sensor","Enabled reporting":"Aktiverad rapportering","Current fan speed":"Aktuell fl\xE4kthastighet","Measured air quality":"Uppm\xE4tt luftkvalitet","Filter is older than 6 months and needs replacing":"Filtret \xE4r \xE4ldre \xE4n 6 m\xE5nader och beh\xF6ver bytas ut","Indicates whether the device detected bright light (works only in night mode)":"Indikerar om enheten har uppt\xE4ckt starkt ljus (fungerar endast i nattl\xE4ge)","Prevent changes. `false` = run normally. `true` = prevent from making changes. Must be set to `false` when system_mode = off or `true` for heat":'F\xF6rhindra f\xF6r\xE4ndringar. "False" = arbeta i normalt l\xE4ge. "True" = f\xF6rbjud att g\xF6ra \xE4ndringar. M\xE5ste st\xE4llas in p\xE5 "false" n\xE4r system_mode = "disabled" eller "true" f\xF6r att v\xE4rma',"Period in minutes for which the setpoint hold will be active. 65535 = attribute not used. 0 to 360 to match the remote display":"Period i minuter under vilken b\xF6rv\xE4rdesh\xE5llningen \xE4r aktiv. 65535 = attribut anv\xE4nds inte. 0 till 360 f\xF6r att matcha fj\xE4rrkontrollens display","Measured Hcho value":"Uppm\xE4tt Hcho-v\xE4rde","Air quality index":"Luftkvalitetsindex","Measured PM10 (particulate matter) concentration":"Uppm\xE4tt PM10-koncentration (partiklar)","Valve open percentage (multiple of 10)":"Ventil\xF6ppningsprocent (multipel av 10)","Countdown timer in minutes":"Nedr\xE4kningstimer i minuter","SOS alarm":"SOS-larm","Remaining battery 2 in %":"Kvar av batteri 2 i %","Illuminance calibration in lux":"","Temperature calibration (-2.0...2.0)":"Temperaturkalibrering (-2.0...2.0)","Enable reporting":"Aktivera rapporter","Control mode":"Kontroll\xE4ge","External switch type":"Typ av extern brytare","External switch status":"Externt brytartillst\xE5nd","Load detection mode":"Ladda detekteringsl\xE4ge","Load type":"Ladda typ","Load dimmable":"Ladda dimbar","Power supply mode":"Str\xF6mf\xF6rs\xF6rjningsl\xE4ge","Select between direct control of the valve via the `valve_position` or automatic control of the valve based on the `current_heating_setpoint`. For manual control set the value to 1, for automatic control set the value to 2 (the default). When switched to manual mode the display shows a value from 0 (valve closed) to 100 (valve fully open) and the buttons on the device are disabled.":"V\xE4lj mellan direkt styrning av ventilen via `ventil_position` eller automatisk styrning av ventilen baserat p\xE5 `current_heating_setpoint`. F\xF6r manuell styrning st\xE4ll in v\xE4rdet till 1, f\xF6r automatisk styrning st\xE4ll in v\xE4rdet p\xE5 2 (standard). N\xE4r den v\xE4xlas till manuellt l\xE4ge visar displayen ett v\xE4rde fr\xE5n 0 (ventil st\xE4ngd) till 100 (ventil helt \xF6ppen) och knapparna p\xE5 enheten \xE4r avaktiverade.","Directly control the radiator valve when `trv_mode` is set to 1. The values range from 0 (valve closed) to 255 (valve fully open)":"Styr radiatorventilen direkt n\xE4r `trv_mode` \xE4r inst\xE4lld p\xE5 1. V\xE4rdena str\xE4cker sig fr\xE5n 0 (ventil st\xE4ngd) till 255 (ventil helt \xF6ppen)","Displayed text on thermostat display (zone). Max 14 characters":"Visad text p\xE5 termostatdisplayen (zon). Max 14 tecken","Load in W when heating is on (between 0-2000 W). The thermostat uses the value as input to the mean_power calculation.":"Belastning i W n\xE4r uppv\xE4rmning \xE4r p\xE5 (mellan 0-2000W). Termostaten anv\xE4nder v\xE4rdet som indata f\xF6r ber\xE4kningen av medeleffekt.","Device in regulator or thermostat mode.":"Enhet i regulator- eller termostatl\xE4ge.","When device is in regulator mode this controls the time between each in/out connection. When device is in thermostat mode this controls the time between each in/out switch when measured temperature is within +-0.5 \xB0C set temperature. Choose a long time for (slow) concrete floors and a short time for (quick) wooden floors.":"N\xE4r enheten \xE4r i regulatorl\xE4ge styr detta tiden mellan varje in/ut-anslutning. N\xE4r enheten \xE4r i termostatl\xE4ge styr detta tiden mellan varje in/ut-omkopplare n\xE4r den uppm\xE4tta temperaturen ligger inom +-0,5 \xB0C inst\xE4lld temperatur. V\xE4lj l\xE5ng tid f\xF6r (l\xE5ngsamma) betonggolv och kort tid f\xF6r (snabba) tr\xE4golv.",'Set max floor temperature (between 20-35 \xB0C) when "supervisor_floor" is set':'St\xE4ll in max golvtemperatur (mellan 20-35\xB0C) n\xE4r "supervisor_floor" \xE4r inst\xE4lld',"Reports average power usage last 10 minutes":"Rapporterar genomsnittlig str\xF6mf\xF6rbrukning senaste 10 minuterna",'When frost guard is ON, it is activated when the thermostat is switched OFF with the ON/OFF button.At the same time, the display will fade and the text "Frostsikring x \xB0C" appears in the display and remains until the thermostat is switched on again.':'N\xE4r frostvakten \xE4r P\xC5 aktiveras den n\xE4r termostaten st\xE4ngs AV med P\xC5/AV-knappen. Samtidigt ljusnar displayen och texten "Frostsikring x \xB0C" visas och finns kvar tills termostaten sl\xE5s p\xE5 igen.',"Turn on or off night setting.":"Sl\xE5 p\xE5 eller av nattinst\xE4llning.","Current state":"Nuvarande tillst\xE5nd","Select open mode":"V\xE4lj \xF6ppet l\xE4ge","Enable or disable sound":"Aktivera eller inaktivera ljud","Time to ring before answer":"Tid det ska ringa innan svar","Time to hold before open":"Tid att v\xE4nta innan \xF6ppning","Time to open before end":"Tid att \xF6ppna innan slut","Time after last bell to finish ring":"Tid efter sista klockan att sluta ringa","Reporting interval":"Rapporteringsintervall","Enable LEDs feedback":"Aktivera LED-feedback","Enable ABC (Automatic Baseline Correction)":"Aktivera ABC (Automatic Baseline Correction)","Warning (LED2) CO2 level":"Varning (LED2) CO2-niv\xE5","Critical (LED3) CO2 level":"Kritisk (LED3) CO2-niv\xE5","Adjust temperature":"Justera temperaturen","Adjust humidity":"Justera luftfuktigheten","Adjust pressure":"Justera trycket","Measured soil moisture value":"Uppm\xE4tt markfuktighetsv\xE4rde","Current count radioactive pulses per minute":"Aktuellt antal radioaktiva pulser per minut","Current radiation level":"Aktuell str\xE5lningsniv\xE5","Enable LED feedback":"Aktivera LED-respons","Enable buzzer feedback":"Aktivera summerrespons","Critical radiation level":"Kritisk str\xE5lningsniv\xE5","Type of installed tubes":"Typ av installerade r\xF6r","Count of installed tubes":"Antal installerade r\xF6r","This is applicable if tubes type is set to other":"Detta \xE4r till\xE4mpligt om r\xF6rtypen \xE4r inst\xE4lld p\xE5 annat","Temperature of the CPU":"CPU:ns temperatur","Indicates whether the device is being tested":"Indikerar om enheten testas","Set Squawk state":"St\xE4ll in Squawk-status","Turn on/off the strobe (light) for Squawk":"Sl\xE5 p\xE5/av stroben (ljuset) f\xF6r Squawk","Max duration of the siren":"Max l\xE4ngd p\xE5 sirenen","Manual start of the siren":"Manuell start av sirenen","Pulses per kwh. Default 1000 imp/kWh. Range 0 to 65535":"Pulser per kwh. Standard 1000 imp/kWh. Omr\xE5de 0 till 65535","Operating mode/probe":"Driftl\xE4ge/sond","Current summation value sent to the display. e.g. 570 = 0,570 kWh":"Aktuellt summeringsv\xE4rde skickas till displayen. t.ex. 570 = 0,570 kWh","Is true if communication problem with meter is experienced":"St\xE4mmer om kommunikationsproblem med m\xE4taren upplevs","Duration of Siren":"Sirenens varaktighet","Manual Start of Siren":"Manuell start av siren","Indicates reason if any fault":"Anger orsak vid eventuella fel","Indicates whether the device are in fault state":"Indikerar om enheten \xE4r i felstatus","Indicates if the card is inserted (= true) or not (= false)":'Indikerar om kortet \xE4r isatt (= "true") eller inte (= "false")',"Allow Master PIN Unlock":"Till\xE5t uppl\xE5sning av huvud-PIN","Allow RFID to Unlock":"Till\xE5t RFID att l\xE5sa upp","Allow Auto Re-Lock":"Till\xE5t automatisk \xE5terl\xE5sning","Lock-Mode of the Lock":"L\xE5s-l\xE4ge f\xF6r l\xE5set","Service Mode of the Lock":"Servicel\xE4ge f\xF6r l\xE5set","Absolute min temperature allowed on the device":"Absolut min temperatur till\xE5ten p\xE5 enheten","Absolute max temperature allowed on the device":"Absolut max temperatur till\xE5ten p\xE5 enheten","Min temperature limit set on the device":"Min temperaturgr\xE4ns inst\xE4lld p\xE5 enheten","Max temperature limit set on the device":"Max temperaturgr\xE4ns inst\xE4lld p\xE5 enheten","Danfoss Output Status [Active vs Inactive])":"Danfoss utmatningsstatus [Aktiv vs inaktiv])","Thermostat status":"Termostatstatus","Regulator Status":"Regulatorstatus","Water Status of Regulator":"Vattenstatus f\xF6r regulator","Regulator role (Master vs Slave)":"Regulatorroll (Master vs Slave)","State or sensor value":"Status eller sensorv\xE4rde","Current temperature measured on the external sensor (floor)":"","The difference between the temperature at which the thermostat switches off, and the temperature at which it switches on again.":"","Max guarding temperature":"","Manual start of siren":"Manuell start av siren","Prevent changes. `false` = run normally. `true` = prevent from making changes.":'F\xF6rhindra f\xF6r\xE4ndringar. "false" = k\xF6r normalt. "true" = f\xF6rhindra fr\xE5n att g\xF6ra \xE4ndringar.',"Enables the LED when the light is off":"Aktiverar LED n\xE4r lampan \xE4r sl\xE4ckt","Brightness of this backlight LED":"Ljusstyrkan f\xF6r denna bakgrundsbelysning","Enable or disable the blue backlight LED":"Aktivera eller inaktivera den bl\xE5 bakgrundsbelysningen"},dAt={undefined:"odefinierad",state:"Status",brightness:"Ljusstyrka",color_temp:"F\xE4rgtemp",color_temp_startup:"F\xE4rgtemperatur vid uppstart",color_xy:"F\xE4rg Xy",effect:"Effekt",linkquality:"L\xE4nkkvalitet",occupied_heating_setpoint:"Upptaget v\xE4rmeb\xF6rv\xE4rde",local_temperature:"Lokal temperatur",system_mode:"Systeml\xE4ge",running_state:"K\xF6rstatus",local_temperature_calibration:"Lokal temperaturskalibrering",pi_heating_demand:"Pi v\xE4rmebehov",options:"Alternativ",motor_speed:"Motorhastighet",motor_working_mode:"Motorns driftl\xE4ge",percent_state:"Procentstatus",mode:"L\xE4ge",motor_direction:"Motorriktning",border:"border",power_outage_memory:"Str\xF6mavbrottsminne",battery:"Batteri",action:"\xC5tg\xE4rd",power_on_behavior:"Str\xF6m p\xE5 beteende",battery_low:"L\xE5gt batteri",color_hs:"F\xE4rg Hs",hue:"Nyans",saturation:"M\xE4ttnad",lock_state:"L\xE5sstatus",pin_code:"Pinkod",user:"Anv\xE4ndare",user_type:"Anv\xE4ndartyp",user_enabled:"Anv\xE4ndare aktiverad",action_source_name:"Namnet p\xE5 k\xE4llan till \xE5tg\xE4rd",action_source_user:"",voltage:"Sp\xE4nning",click_mode:"Klickl\xE4ge",operation_mode:"Driftl\xE4ge",action_rotation_angle:"\xC5tg\xE4rdsrotationsvinkel",action_rotation_angle_speed:"\xC5tg\xE4rdsrotationsvinkelhastighet",action_rotation_percent:"\xC5tg\xE4rdsrotationsprocent",action_rotation_percent_speed:"\xC5tg\xE4rdsrotationsprocenthastighet",action_rotation_time:"\xC5tg\xE4rdsrotationstid",power:"Str\xF6m",energy:"Energi",temperature:"Temperatur",current:"Aktuell",led_disabled_night:"LED inaktiverad natt",button_lock:"Knappl\xE5s",overload_protection:"\xD6verbelastningsskydd",contact:"Kontakt",button_switch_mode:"Knappv\xE4xlingsl\xE4ge",illuminance:"Belysningsstyrka",illuminance_lux:"Ljusstyrka",detection_period:"Detektionsperiod",flip_indicator_light:"V\xE4xelindikatorlampa",consumer_connected:"Konsumentansluten",humidity:"Fuktighet",mode_switch:"L\xE4gesomkopplare",standby_enabled:"Standby aktiverad",theme:"Tema",beep_volume:"Pipvolym",lcd_brightness:"LCD Ljusstyrka",language:"Spr\xE5k",screen_saver_style:"Sk\xE4rmsl\xE4ckarstil",standby_time:"Standbytid",font_size:"Textstorlek",lcd_auto_brightness_enabled:"LCD automatisk ljusstyrka aktiverad",homepage:"Hemsida",screen_saver_enabled:"Sk\xE4rmsl\xE4ckare aktiverad",standby_lcd_brightness:"Standby LCD Ljusstyrka",available_switches:"Tillg\xE4ngliga reglage",switch_1_text_icon:"Textikon f\xF6r reglage 1",switch_1_icon:"Ikon f\xF6r reglage 1",switch_1_text:"Text f\xF6r reglage 1",switch_2_text_icon:"Textikon f\xF6r reglage 2",switch_2_icon:"Ikon f\xF6r reglage 2",switch_2_text:"Text f\xF6r reglage 2",switch_3_text_icon:"Textikon f\xF6r reglage 3",switch_3_icon:"Ikon f\xF6r reglage 3",switch_3_text:"Text f\xF6r reglage 3",switch_type:"Omkopplartyp",device_temperature:"Enhetstemperatur",power_outage_count:"Antal str\xF6mavbrott",reverse:"Omv\xE4nd",interlock:"Sp\xE4rr",charging_status:"Laddningsstatus",motor_state:"motor_state",running:"running",strength:"Styrka",sensitivity:"K\xE4nslighet",angle_x:"Vinkel X",angle_y:"Vinkel Y",angle_z:"Vinkel Z",inserted:"Insatt",smoke:"R\xF6k",smoke_density:"R\xF6kt\xE4thet",smoke_density_dbm:"R\xF6kdensitet dB/m",selftest:"Sj\xE4lvtest",mute_buzzer:"St\xE4ng av summern",mute:"mute",heartbeat_indicator:"Pulsindikator",linkage_alarm:"L\xE4nkvarning",gas_density:"Gasdensitet",gas_sensitivity:"Gask\xE4nslighet",tamper:"Manipulera",auto_off:"Automatisk avst\xE4ngning",action_angle:"\xC5tg\xE4rdsvinkel",action_from_side:"Handling fr\xE5n sidan",action_side:"\xC5tg\xE4rdssida",action_to_side:"\xC5tg\xE4rd till sida",water_leak:"Vattenl\xE4cka",presence:"N\xE4rvaro",presence_event:"N\xE4rvaroh\xE4ndelse",monitoring_mode:"\xD6vervakningsl\xE4ge",approach_distance:"N\xE4rmande avst\xE5nd",motion_sensitivity:"R\xF6relsek\xE4nslighet",reset_nopresence_status:"\xC5terst\xE4ll fr\xE5nvarostatus",occupancy:"Bel\xE4ggning",detection_interval:"Detektionsintervall",pressure:"Tryck",dimmer_mode:"Dimmerl\xE4ge",warning:"Varning",level:"Niv\xE5",strobe_level:"Stroboskopniv\xE5",strobe:"Stroboskop",strobe_duty_cycle:"Blinkningscykel",duration:"Varaktighet",ac_connected:"v\xE4xelstr\xF6m \xE4r ansluten",volume:"Volym",test_alarm:"Larmtest",test_alarm_result:"Resultatet av larmtestet",battery_level:"Batteriniv\xE5",fault_alarm:"Fellarm",silence_siren:"Tyst siren",window_open:"F\xF6nster \xF6ppet",window_open_force:"F\xF6nster\xF6ppningskraft",keypad_lockout:"Knappsatsl\xE5s",action_code:"\xC5tg\xE4rdskod",action_transaction:"\xC5tg\xE4rdstransaktion",action_zone:"\xC5tg\xE4rdszon",tilt:"Lutning",level_config:"Niv\xE5konfig",on_off_transition_time:"P\xE5/Av \xF6verg\xE5ngstid",on_transition_time:"\xD6verg\xE5ngstid vid P\xE5",off_transition_time:"\xD6verg\xE5ngstid vid Av",current_level_startup:"Uppstart p\xE5 nuvarande niv\xE5",ballast_physical_minimum_level:"Fysisk miniminiv\xE5 f\xF6r ballast",ballast_physical_maximum_level:"Fysisk maximiniv\xE5 f\xF6r ballast",ballast_minimum_level:"Miniminiv\xE5 f\xF6r ballast",ballast_maximum_level:"Maxniv\xE5 f\xF6r ballast",minimum_on_level:"Minimum P\xE5-Niv\xE5",capabilities_forward_phase_control:"Funktioner fram\xE5t faskontroll",capabilities_reverse_phase_control:"Funktioner Omv\xE4nd faskontroll",capabilities_reactance_discriminator:"Funktioner Reaktansdiskriminator",capabilities_configurable_curve:"Funktioner Konfigurerbar kurva",capabilities_overload_detection:"Funktioner \xF6verbelastningsdetektering",status_forward_phase_control:"Fram\xE5t faskontrollstatus",status_reverse_phase_control:"Status f\xF6r omv\xE4nd faskontroll",status_overload:"Status \xF6verbelastning",status_capacitive_load:"Status kapacitiv belastning",status_inductive_load:"Status induktiv belastning",mode_phase_control:"L\xE4ge Faskontroll",keep_time:"Beh\xE5ll tid",report_interval:"Rapportintervall",temperature_unit_convert:"Konvertera temperaturenhet",temperature_alarm:"Temperaturlarm",max_temperature:"Max temperatur",min_temperature:"Min temperatur",humidity_alarm:"Luftfuktighetslarm",max_humidity:"H\xF6gsta luftfuktighet",min_humidity:"L\xE4gsta luftfuktighet",target_distance:"Avst\xE5nd till m\xE5let",radar_sensitivity:"Radark\xE4nslighet",minimum_range:"Min r\xE4ckvidd",maximum_range:"Max r\xE4ckvidd",detection_delay:"detekteringsf\xF6rdr\xF6jning",fading_time:"D\xE4mpningstid",self_test:"Sj\xE4lvtestning",brightness_state:"Ljusstyrka",action_step_size:"\xC5tg\xE4rdsstegsstorlek",action_transition_time:"\xC5tg\xE4rds\xF6verg\xE5ngsperiod",action_rate:"\xC5tg\xE4rdshastighet",meter_number:"M\xE4tarnummer",trip:"Resa",child_lock:"Barnl\xE5s",countdown_timer:"Nedr\xE4kningstimer",voltage_rms:"RMS-sp\xE4nning",current_average:"Medelstr\xF6m",energy_consumed:"F\xF6rbrukad energi",clear_device_data:"Rensa enhetsdata",motion_speed:"R\xF6relsehastighet",motion_direction:"R\xF6relseriktning",radar_scene:"Radarscen",tumble_switch:"Vippbrytare",fall_sensitivity:"Fallk\xE4nslighet",tumble_alarm_time:"Vippbrytare f\xF6r larmtid",fall_down_status:"H\xF6stens status",static_dwell_alarm:"Statiskt uppeh\xE5llslarm",o_sensitivity:"O-k\xE4nslighet",v_sensitivity:"V-k\xE4nslighet",led_status:"LED-status",vacancy_delay:"Vakansf\xF6rdr\xF6jning",light_on_luminance_prefer:"F\xF6redragen Luminans vid ljus p\xE5",light_off_luminance_prefer:"F\xF6redragen Luminans vid ljus av",luminance_level:"Luminansniv\xE5",reference_luminance:"Referensluminans",vacant_confirm_time:"Ledig bekr\xE4ftelsetid",alarm_temperature_max:"Larmtemperatur max",alarm_temperature_min:"Larmtemperatur min",alarm_humidity_max:"Larm luftfuktighet max",alarm_humidity_min:"Larm luftfuktighet min",alarm_humidity:"Larm Fuktighet",alarm_temperature:"Larmtemperatur",trigger:"Utl\xF6sare",garage_door_contact:"Garageportskontakt",indicator_mode:"visningsl\xE4ge",current_heating_setpoint:"Aktuellt v\xE4rmeb\xF6rv\xE4rde",min_brightness:"Min ljusstyrka",window:"F\xF6nster",heating:"Uppv\xE4rmning",preset:"F\xF6rinst\xE4llning",programming_mode:"Programmeringsl\xE4ge",monday_schedule:"M\xE5ndagsschema",tuesday_schedule:"Tisdagsschema",wednesday_schedule:"Onsdagsschema",thursday_schedule:"Torsdagsschema",friday_schedule:"Fredagsschema",saturday_schedule:"L\xF6rdagsschema",sunday_schedule:"S\xF6ndagsschema",boost_heating:"\xD6ka uppv\xE4rmning",boost_heating_countdown:"\xD6ka uppv\xE4rmningens nedr\xE4kning",away_mode:"Bortal\xE4ge",open_window:"\xD6ppna f\xF6nster",open_window_temperature:"F\xF6nster\xF6ppningstemperatur",comfort_temperature:"Komforttemperatur",eco_temperature:"Ekotemperatur",boost_timeset_countdown:"\xD6ka tidsinst\xE4llningens nedr\xE4kning",frost_protection:"Frostskydd",heating_stop:"Uppv\xE4rmningsstopp",holiday_temperature:"Semestertemperatur",holiday_mode_date:"Datum f\xF6r semesterl\xE4ge",holiday_start_stop:"Semestertidens start/slut",schedule:"Schema",schedule_monday:"M\xE5ndagsschema",schedule_tuesday:"Tisdagsschema",schedule_wednesday:"Onsdagsschema",schedule_thursday:"Torsdagsschema",schedule_friday:"Fredagsschema",schedule_saturday:"L\xF6rdagsschema",schedule_sunday:"S\xF6ndagsschema",online:"Uppkopplad",error_status:"Felststus",away_preset_days:"Borta f\xF6rinst\xE4llda dagar",boost_time:"\xD6ka tid",force:"Tvinga",away_preset_temperature:"Borta f\xF6rinst\xE4lld temperatur",week:"Vecka",workdays_schedule:"Arbetsdagarsschema",holidays_schedule:"Semesterschema",backlight_mode:"Bakgrundsbelysningsl\xE4ge",moving:"Flyttas",calibration:"Kalibrering",motor_reversal:"Motorv\xE4ndning",calibration_time:"Kalibreringstid",max_brightness:"Max ljusstyrka",carbon_monoxide:"Kolmonoxid",co:"CO",co2:"CO2",action_group:"",direction:"Riktning",occupancy_level:"Bel\xE4ggningsniv\xE5",noise:"Buller",noise_detected:"Buller uppt\xE4ckt",noise_timeout:"V\xE4ntetid f\xF6r buller",occupancy_timeout:"Timeout f\xF6r bel\xE4ggning",temperature_offset:"Temperaturf\xF6rskjutning",occupancy_sensitivity:"",noise_detect_level:"",co2_autocalibration:"CO2 automatisk kalibrering",co2_manual_calibration:"CO2 manuell kalibrering",th_heater:"V\xE4rmare",x_axis:"X-axel",y_axis:"Y-axel",z_axis:"Z-axel",beep:"Pip",white_brightness:"Vit ljusstyrka",led_intensity_on:"LED-intensitet p\xE5",led_intensity_off:"LED-intensitet av",minimum_brightness:"Minsta ljusstyrka",backlight_auto_dim:"Automatisk dimmning av bakgrundsbelysning",door_state:"D\xF6rrstatus",power_factor:"Effektfaktor",ac_frequency:"V\xE4xelstr\xF6msfrekvens",people:"M\xE4nniskor",power_apparent:"",power_phase_a:"Effektfas A",power_phase_b:"Effektfas B",power_phase_c:"Effektfas C",energy_phase_a:"Energifas A",energy_phase_b:"Energifas B",energy_phase_c:"Energifas C",voltage_phase_a:"Sp\xE4nningsfas A",voltage_phase_b:"Voltfas B",voltage_phase_c:"Sp\xE4nningsfas C",voltage_phase_ab:"Sp\xE4nningsfas AB",voltage_phase_bc:"Sp\xE4nningsfas BC",voltage_phase_ca:"Sp\xE4nningsfas CA",current_phase_a:"Str\xF6mfas A",current_phase_b:"Str\xF6mfas B",current_phase_c:"Str\xF6mfas C",zone_mode:"Zonl\xE4ge",calibrate_valve:"Kalibrera ventil",valve_calibration_status:"Ventilkalibreringsstatus",schneider_pilot_mode:"Schneider Pilotl\xE4ge",lift_duration:"Slagl\xE4ngd",timer_state:"Timerstatus",timer_time_left:"Tid kvar f\xF6r timer",last_valve_open_duration:"Senaste ventil\xF6ppningstid",water_consumed:"Vattenf\xF6rbrukning",programming_operation_mode:"Programmeringsl\xE4ge",mounted_mode_active:"Monterat l\xE4ge aktivt",mounted_mode_control:"Monterad l\xE4geskontroll",thermostat_vertical_orientation:"Vertikal orientering av termostaten",viewing_direction:"Visningsriktning",heat_available:"Uppv\xE4rming tillg\xE4ngligt",heat_required:"Uppv\xE4rmning kr\xE4vs",setpoint_change_source:"K\xE4lla f\xF6r b\xF6rv\xE4rdes\xE4ndring",external_measured_room_sensor:"Extern uppm\xE4tt rumsgivare",radiator_covered:"Kylare t\xE4ckt",window_open_feature:"F\xF6nster\xF6ppningsfunktion",window_open_internal:"Intern f\xF6nster\xF6ppning",window_open_external:"Extern f\xF6nster\xF6ppning",day_of_week:"Veckodag",trigger_time:"Utl\xF6sningstid",algorithm_scale_factor:"Algoritmskalfaktor",load_balancing_enable:"Aktivera lastbalansering",load_room_mean:"Genomsnittlig lastrum",load_estimate:"Uppskattad belastning",preheat_status:"",adaptation_run_status:"",adaptation_run_settings:"",adaptation_run_control:"",regulation_setpoint_offset:"",led_indication:"LED-indikering",action_duration:"\xC5tg\xE4rdens varaktighet",device_mode:"Enhetsl\xE4ge",occupied_cooling_setpoint:"Upptaget kylningsb\xF6rv\xE4rde",ac_louver_position:"AC spj\xE4lll\xE4ge",sound_volume:"Ljudvolym",auto_relock:"Automatisk \xE5terl\xE5sning",temperature_sensitivity:"temperaturk\xE4nslighet",led_enable:"LED aktivera",power_type:"typ av str\xF6mk\xE4lla",temperature_min:"Minimitemperatur",temperature_max:"Maximitemperatur",temperature_scale:"",humidity_min:"L\xE4gsta luftfuktighet",humidity_max:"H\xF6gsta luftfuktighet",melody:"Melodi",battpercentage:"Batteriprocent",outdoor_temperature:"",button_vibration_level:"",floor_sensor_type:"",powerup_status:"",floor_sensor_calibration:"Kalibrering av golvgivaren",dry_time:"Torktid",mode_after_dry:"L\xE4ge efter torkning",temperature_display:"Temperaturdisplay",window_open_check:"Kontrollera \xF6ppet f\xF6nster",hysterersis:"F\xF6rdr\xF6jning",display_auto_off_enabled:"Sk\xE4rmen f\xF6r automatisk avst\xE4ngning \xE4r p\xE5",alarm_airtemp_overvalue:"Larm f\xF6r f\xF6r h\xF6g lufttemperatur",backlight:"Bakgrundsbelysning",do_not_disturb:"St\xF6r ej",color_power_on_behavior:"F\xE4rg n\xE4r den \xE4r p\xE5slagen",eco_mode:"Str\xF6msparl\xE4ge",valve_state:"Ventilstatus",boost_heating_countdown_time_set:"Nedr\xE4kningstid inst\xE4lld f\xF6r boost-uppv\xE4rmning",indicate_light:"Ljussignal",deadzone_temperature:"D\xF6dzonstemperatur",max_temperature_limit:"Maximal temperaturgr\xE4ns",fan_mode:"Fl\xE4ktl\xE4ge",ADCO:"ADCO",BASE:"BAS",OPTARIF:"OPTARIF",ISOUSC:"ISOUSC",HCHC:"HCHC",HCHP:"HCHP",BBRHCJW:"BBRHCJW",BBRHPJW:"BBRHPJW",BBRHCJR:"BBRHCJR",BBRHPJR:"BBRHPJR",IINST:"IINST",IINST2:"IINST2",IINST3:"IINST3",IMAX:"IMAX",IMAX2:"IMAX2",IMAX3:"IMAX3",PMAX:"PMAX",PAPP:"PAPP",PTEC:"PTEC",DEMAIN:"DEMAIN",HHPHC:"HHPHC",PPOT:"PPOT",PEJP:"PEJP",ADPS:"ADPS",ADIR1:"ADIR1",ADIR2:"ADIR2",ADIR3:"ADIR3",LTARF:"LTARF",NTARF:"NTARF",VTIC:"VTIC",DATE:"DATE",EASF07:"EASF07",EASF08:"EASF08",EASF09:"EASF09",EASF10:"EASF10",EASD01:"EASD01",EASD02:"EASD02",EASD03:"EASD03",EASD04:"EASD04",EAIT:"EAIT",ERQ1:"ERQ1",ERQ2:"ERQ2",ERQ3:"ERQ3",ERQ4:"ERQ4",URMS1:"URMS1",URMS2:"URMS2",URMS3:"URMS3",STGE:"STGE",PCOUP:"PCOUP",SINSTI:"SINSTI",SMAXIN:"SMAXIN","SMAXIN-1":"SMAXIN-1",CCASN:"CCASN","CCASN-1":"CCASN-1",CCAIN:"CCAIN","CCAIN-1":"CCAIN-1",UMOY1:"UMOY1",UMOY2:"UMOY2",UMOY3:"UMOY3",SINSTS2:"SINSTS2",SINSTS3:"SINSTS3",SMAXN2:"SMAXN2",SMAXN3:"SMAXN3","SMAXN-1":"SMAXN-1","SMAXN2-1":"SMAXN2-1","SMAXN3-1":"SMAXN3-1",MSG1:"MSG1",MSG2:"MSG2",PRM:"PRM",DPM1:"DPM1",FPM1:"FPM1",DPM2:"DPM2",FPM2:"FPM2",DPM3:"DPM3",FPM3:"FPM3",RELAIS:"RELAIS",NJOURF:"NJOURF","NJOURF+1":"NJOURF+1","PJOURF+1":"PJOURF+1",PPOINTE1:"PPOINTE1",alert_behaviour:"Varningsbeteende",eco2:"Eko 2",current_heating_setpoint_auto:"Aktuellt v\xE4rmeb\xF6rv\xE4rde Auto",detectwindow_temperature:"Detektera f\xF6nstertemperatur",detectwindow_timeminute:"Detektera f\xF6nster tidsminuter",binary_one:"Bin\xE4r 1",binary_two:"Bin\xE4r 2",away_setting:"Fr\xE5nvaroinst\xE4llning",away_preset_year:"Semester\xE5r",away_preset_month:"Semesterm\xE5nad",away_preset_day:"Semesterdag",away_preset_hour:"Semestertimme",away_preset_minute:"Semesterminut",monday:"M\xE5ndag",monday_temp_1:"M\xE5ndag temp 1",monday_hour_1:"M\xE5ndag timme 1",monday_minute_1:"M\xE5ndag minut 1",monday_temp_2:"M\xE5ndag temp 2",monday_hour_2:"M\xE5ndag timme 2",monday_minute_2:"M\xE5ndag minut 2",monday_temp_3:"M\xE5ndag temp 3",monday_hour_3:"M\xE5ndag timme 3",monday_minute_3:"M\xE5ndag timme 3",monday_temp_4:"M\xE5ndag temp 4",monday_hour_4:"M\xE5ndag timme 4",monday_minute_4:"M\xE5ndag minut 4",monday_temp_5:"M\xE5ndag temp 5",monday_hour_5:"M\xE5ndag timme 5",monday_minute_5:"M\xE5ndag minut 5",monday_temp_6:"M\xE5ndag temp 6",monday_hour_6:"M\xE5ndag timme 6",monday_minute_6:"M\xE5ndag minut 6",monday_temp_7:"M\xE5ndag temp 7",monday_hour_7:"M\xE5ndag timme 7",monday_minute_7:"M\xE5ndag minut 7",monday_temp_8:"M\xE5ndag temp 8",monday_hour_8:"M\xE5ndag timme 8",monday_minute_8:"M\xE5ndag minut 8",monday_temp_9:"M\xE5ndag temp 9",monday_hour_9:"M\xE5ndag timme 9",monday_minute_9:"M\xE5ndag minut 9",tuesday:"Tisdag",tuesday_temp_1:"Tisdag temp 1",tuesday_hour_1:"Tisdag timme 1",tuesday_minute_1:"Tisdag minut 1",tuesday_temp_2:"Tisdag temp 2",tuesday_hour_2:"Tisdag timme 2",tuesday_minute_2:"Tisdag minut 2",tuesday_temp_3:"Tisdag temp 3",tuesday_hour_3:"Tisdag timme 3",tuesday_minute_3:"Tisdag minut 3",tuesday_temp_4:"Tisdag temp 4",tuesday_hour_4:"Tisdag timme 4",tuesday_minute_4:"Tisdag minut 4",tuesday_temp_5:"Tisdag temp 5",tuesday_hour_5:"Tisdag timme 5",tuesday_minute_5:"Tisdag minut 5",tuesday_temp_6:"Tisdag temp 6",tuesday_hour_6:"Tisdag timme 6",tuesday_minute_6:"Tisdag minut 6",tuesday_temp_7:"Tisdag temp 7",tuesday_hour_7:"Tisdag timme 7",tuesday_minute_7:"Tisdag minut 7",tuesday_temp_8:"Tisdag temp 8",tuesday_hour_8:"Tisdag timme 8",tuesday_minute_8:"Tisdag minut 8",tuesday_temp_9:"Tisdag temp 9",tuesday_hour_9:"Tisdag timme 9",tuesday_minute_9:"Tisdag minut 9",wednesday:"Onsdag",wednesday_temp_1:"Onsdag temp 1",wednesday_hour_1:"Onsdag timme 1",wednesday_minute_1:"Onsdag minut 1",wednesday_temp_2:"Onsdag temp 2",wednesday_hour_2:"Onsdag timme 2",wednesday_minute_2:"Onsdag minut 2",wednesday_temp_3:"Onsdag temp 3",wednesday_hour_3:"Onsdag timme 3",wednesday_minute_3:"Onsdag minut 3",wednesday_temp_4:"Onsdag temp 4",wednesday_hour_4:"Onsdag timme 4",wednesday_minute_4:"Onsdag minut 4",wednesday_temp_5:"Onsdag temp 5",wednesday_hour_5:"Onsdag timme 5",wednesday_minute_5:"Onsdag minut 5",wednesday_temp_6:"Onsdag temp 6",wednesday_hour_6:"Onsdag timme 6",wednesday_minute_6:"Onsdag minut 6",wednesday_temp_7:"Onsdag temp 7",wednesday_hour_7:"Onsdag timme 7",wednesday_minute_7:"Onsdag minut 7",wednesday_temp_8:"Onsdag temp 8",wednesday_hour_8:"Onsdag timme 8",wednesday_minute_8:"Onsdag minut 8",wednesday_temp_9:"Onsdag temp 9",wednesday_hour_9:"Onsdag timme 9",wednesday_minute_9:"Onsdag minut 9",thursday:"Torsdag",thursday_temp_1:"Torsdag temp 1",thursday_hour_1:"Torsdag timme 1",thursday_minute_1:"Torsdag minut 1",thursday_temp_2:"Torsdag temp 2",thursday_hour_2:"Torsdag timme 2",thursday_minute_2:"Torsdag minut 2",thursday_temp_3:"Torsdag temp 3",thursday_hour_3:"Torsdag timme 3",thursday_minute_3:"Torsdag minut 3",thursday_temp_4:"Torsdag temp 4",thursday_hour_4:"Torsdag timme 4",thursday_minute_4:"Torsdag minut 4",thursday_temp_5:"Torsdag temp 5",thursday_hour_5:"Torsdag timme 5",thursday_minute_5:"Torsdag minut 5",thursday_temp_6:"Torsdag temp 6",thursday_hour_6:"Torsdag timme 6",thursday_minute_6:"Torsdag minut 6",thursday_temp_7:"Torsdag temp 7",thursday_hour_7:"Torsdag timme 7",thursday_minute_7:"Torsdag minut 7",thursday_temp_8:"Torsdag temp 8",thursday_hour_8:"Torsdag timme 8",thursday_minute_8:"Torsdag minut 8",thursday_temp_9:"Torsdag temp 9",thursday_hour_9:"Torsdag timme 9",thursday_minute_9:"Torsdag minut 9",friday:"Fredag",friday_temp_1:"Fredag temp 1",friday_hour_1:"Fredag timme 1",friday_minute_1:"Fredag minut 1",friday_temp_2:"Fredag temp 2",friday_hour_2:"Fredag timme 2",friday_minute_2:"Fredag minut 2",friday_temp_3:"Fredag temp 3",friday_hour_3:"Fredag timme 3",friday_minute_3:"Fredag minut 3",friday_temp_4:"Fredag temp 4",friday_hour_4:"Fredag timme 4",friday_minute_4:"Fredag minut 4",friday_temp_5:"Fredag temp 5",friday_hour_5:"Fredag timme 5",friday_minute_5:"Fredag minut 5",friday_temp_6:"Fredag temp 6",friday_hour_6:"Fredag timme 6",friday_minute_6:"Fredag minut 6",friday_temp_7:"Fredag temp 7",friday_hour_7:"Fredag timme 7",friday_minute_7:"Fredag minut 7",friday_temp_8:"Fredag temp 8",friday_hour_8:"Fredag timme 8",friday_minute_8:"Fredag minut 8",friday_temp_9:"Fredag temp 9",friday_hour_9:"Fredag timme 9",friday_minute_9:"Fredag minut 9",saturday:"L\xF6rdag",saturday_temp_1:"L\xF6rdag temp 1",saturday_hour_1:"L\xF6rdag timme 1",saturday_minute_1:"L\xF6rdag minut 1",saturday_temp_2:"L\xF6rdag temp 2",saturday_hour_2:"L\xF6rdag timme 2",saturday_minute_2:"L\xF6rdag minut 2",saturday_temp_3:"L\xF6rdag temp 3",saturday_hour_3:"L\xF6rdag timme 3",saturday_minute_3:"L\xF6rdag minut 3",saturday_temp_4:"L\xF6rdag temp 4",saturday_hour_4:"L\xF6rdag timme 4",saturday_minute_4:"L\xF6rdag minut 4",saturday_temp_5:"L\xF6rdag temp 5",saturday_hour_5:"L\xF6rdag timme 5",saturday_minute_5:"L\xF6rdag minut 5",saturday_temp_6:"L\xF6rdag temp 6",saturday_hour_6:"L\xF6rdag timme 6",saturday_minute_6:"L\xF6rdag minut 6",saturday_temp_7:"L\xF6rdag temp 7",saturday_hour_7:"L\xF6rdag timme 7",saturday_minute_7:"L\xF6rdag minut 7",saturday_temp_8:"L\xF6rdag temp 8",saturday_hour_8:"L\xF6rdag timme 8",saturday_minute_8:"L\xF6rdag minut 8",saturday_temp_9:"L\xF6rdag temp 9",saturday_hour_9:"L\xF6rdag timme 9",saturday_minute_9:"L\xF6rdag minut 9",sunday:"S\xF6ndag",sunday_temp_1:"S\xF6ndag temp 1",sunday_hour_1:"S\xF6ndag timme 1",sunday_minute_1:"S\xF6ndag minut 1",sunday_temp_2:"S\xF6ndag temp 2",sunday_hour_2:"S\xF6ndag timme 2",sunday_minute_2:"S\xF6ndag minut 2",sunday_temp_3:"S\xF6ndag temp 3",sunday_hour_3:"S\xF6ndag timme 3",sunday_minute_3:"S\xF6ndag minut 3",sunday_temp_4:"S\xF6ndag temp 4",sunday_hour_4:"S\xF6ndag timme 4",sunday_minute_4:"S\xF6ndag minut 4",sunday_temp_5:"S\xF6ndag temp 5",sunday_hour_5:"S\xF6ndag timme 5",sunday_minute_5:"S\xF6ndag minut 5",sunday_temp_6:"S\xF6ndag temp 6",sunday_hour_6:"S\xF6ndag timme 6",sunday_minute_6:"S\xF6ndag minut 6",sunday_temp_7:"S\xF6ndah temp 7",sunday_hour_7:"S\xF6ndag timme 7",sunday_minute_7:"S\xF6ndag minut 7",sunday_temp_8:"S\xF6ndag temp 8",sunday_hour_8:"S\xF6ndag timme 8",sunday_minute_8:"S\xF6ndag minut 8",sunday_temp_9:"S\xF6ndag temp 9",sunday_hour_9:"S\xF6ndag timme 9",sunday_minute_9:"S\xF6ndag minut 9",led_when_off:"LED n\xE4r den \xE4r avst\xE4ngd",led_when_on:"LED n\xE4r p\xE5",cable_outlet_mode:"kabelutg\xE5ngsl\xE4ge",power_alarm_active:"Str\xF6mlarm aktivt",power_alarm:"Str\xF6mlarm",illuminance_calibration:"Kalibrering av ljusstyrka",led_effect:"LED-effekt",color:"F\xE4rg",individual_led_effect:"Individuell LED-effekt",led:"LED",dimmingSpeedUpRemote:"Fj\xE4rrstyrd dimmeracceleration",dimmingSpeedUpLocal:"Acceleration av lokal dimmer",rampRateOffToOnRemote:"",rampRateOffToOnLocal:"",dimmingSpeedDownRemote:"",dimmingSpeedDownLocal:"",rampRateOnToOffRemote:"",rampRateOnToOffLocal:"",minimumLevel:"",maximumLevel:"",invertSwitch:"",autoTimerOff:"",defaultLevelLocal:"",defaultLevelRemote:"",stateAfterPowerRestored:"",loadLevelIndicatorTimeout:"",activePowerReports:"",periodicPowerAndEnergyReports:"",activeEnergyReports:"Energirapporter \xE4r aktiva",powerType:"Krafttyp",switchType:"V\xE4xlingstyp",physicalOnOffDelay:"Fysisk f\xF6rdr\xF6jning p\xE5/av",smartBulbMode:"Smart gl\xF6dlampsl\xE4ge",ledColorWhenOn:"LED-f\xE4rg n\xE4r p\xE5.",ledColorWhenOff:"LED-f\xE4rg n\xE4r av.",ledIntensityWhenOn:"",ledIntensityWhenOff:"",localProtection:"",remoteProtection:"Fj\xE4rrskydd",outputMode:"",onOffLedMode:"LED-l\xE4ge av/p\xE5",firmwareUpdateInProgressIndicator:"F\xF6rloppsindikator f\xF6r firmwareuppdatering",defaultLed1ColorWhenOn:"Standardf\xE4rg f\xF6r LED1 n\xE4r p\xE5.",defaultLed1ColorWhenOff:"Standardf\xE4rg f\xF6r LED1 n\xE4r av.",defaultLed1IntensityWhenOn:"Intensitet f\xF6r LED 1 n\xE4r p\xE5.",defaultLed1IntensityWhenOff:"Intensitet f\xF6r LED 1 n\xE4r av.",defaultLed2ColorWhenOn:"Standardf\xE4rg f\xF6r LED2 n\xE4r p\xE5.",defaultLed2ColorWhenOff:"Standardf\xE4rg f\xF6r LED2 n\xE4r av.",defaultLed2IntensityWhenOn:"Intensitet f\xF6r LED 2 n\xE4r p\xE5.",defaultLed2IntensityWhenOff:"Intensitet f\xF6r LED 2 n\xE4r av.",defaultLed3ColorWhenOn:"",defaultLed3ColorWhenOff:"",defaultLed3IntensityWhenOn:"",defaultLed3IntensityWhenOff:"",defaultLed4ColorWhenOn:"",defaultLed4ColorWhenOff:"",defaultLed4IntensityWhenOn:"Standardintensitet f\xF6r LED4 n\xE4r p\xE5.",defaultLed4IntensityWhenOff:"Standardintensitet f\xF6r LED4 n\xE4r av.",defaultLed5ColorWhenOn:"F\xF6rinst\xE4lld f\xE4rg f\xF6r LED5 n\xE4r p\xE5.",defaultLed5ColorWhenOff:"F\xF6rinst\xE4lld f\xE4rg f\xF6r LED5 n\xE4r av.",defaultLed5IntensityWhenOn:"F\xF6rinst\xE4lld intensitet f\xF6r LED5 n\xE4r p\xE5.",defaultLed5IntensityWhenOff:"F\xF6rinst\xE4lld intensitet f\xF6r LED5 n\xE4r av.",defaultLed6ColorWhenOn:"Standardf\xE4rg f\xF6r LED6 n\xE4r p\xE5.",defaultLed6ColorWhenOff:"Standardf\xE4rg f\xF6r LED6 n\xE4r av.",defaultLed6IntensityWhenOn:"Standardintensitet f\xF6r LED6 n\xE4r p\xE5.",defaultLed6IntensityWhenOff:"Standardintensitet f\xF6r LED6 n\xE4r av.",defaultLed7ColorWhenOn:"Standardf\xE4rg f\xF6r LED7 n\xE4r p\xE5.",defaultLed7ColorWhenOff:"Standardf\xE4rg f\xF6r LED7 n\xE4r av.",defaultLed7IntensityWhenOn:"Intensitet f\xF6r LED7 n\xE4r p\xE5.",defaultLed7IntensityWhenOff:"Intensitet f\xF6r LED7 n\xE4r av.",doubleTapUpEvent:"",reporting_time:"Rapporteringstid",temperature_calibration:"Temperaturkalibrering",humidity_calibration:"Fuktighetskalibrering",pir_enable:"Aktivera Pir",reporting_enable:"Aktivera rapport",fan_speed:"Fl\xE4kthastighet",air_quality:"Luftkvalitet",replace_filter:"Filterbyte",requested_brightness_level:"Beg\xE4rd ljusstyrka",requested_brightness_percent:"Beg\xE4rd ljusstyrka i procent",illuminance_above_threshold:"Belysningsstyrka \xF6ver tr\xF6skeln",temperature_setpoint_hold:"Bibeh\xE5ll temperaturb\xF6rv\xE4rdet",temperature_setpoint_hold_duration:"H\xE5lltid f\xF6r temperaturb\xF6rv\xE4rdet",battery_state:"Batteristatus",threshold:"Tr\xF6skel",battery2:"Batteri 2",control_mode:"Kontroll\xE4ge",switch_status:"V\xE4xla status",load_detection_mode:"",load_type:"Typ av last",load_dimmable:"",power_supply_mode:"Str\xF6mf\xF6rs\xF6rjningsl\xE4ge",trv_mode:"Ventill\xE4ge",valve_position:"Ventilposition",display_text:"Visa text",load:"Belastning",regulator_mode:"Kontrolll\xE4ge",regulator_time:"Kontrolltid",floor_temp:"Golvtemperatur",max_floor_temp:"Max golvtemperatur",mean_power:"Genomsnittlig prestanda",frost_guard:"Frostskydd",night_switching:"Nattl\xE4ge",sound:"Ljud",time_ring:"Ringtid",time_talk:"Samtalsl\xE4ngd",time_open:"\xD6ppningstid",time_bell:"Ringtid",time_report:"Tidsrapport",led_feedback:"LED-respons",enable_abc:"Aktivera ABC",threshold1:"Tr\xF6skel 1",threshold2:"Tr\xF6skel 2",humidity_offset:"Luftfuktighetsf\xF6rskjutning",pressure_offset:"Tryckf\xF6rskjutning",soil_moisture:"Markfuktighet",radioactive_events_per_minute:"Radioaktiva h\xE4ndelser per minut",radiation_dose_per_hour:"Str\xE5ldos per timme",buzzer_feedback:"Summerrespons",alert_threshold:"Varningstr\xF6skel",sensors_type:"Sensortyp",sensors_count:"Sensorantal",switch_actions:"Reglage\xE5tg\xE4rder",cpu_temperature:"CPU-temperatur",max_duration:"Max varaktighet",pulse_configuration:"Pulskonfiguration",interface_mode:"Gr\xE4nssnittsl\xE4ge",current_summation:"Str\xF6msummering",check_meter:"Kontrollera m\xE4tare",reliability:"p\xE5litlighet",fault:"Fel",card:"Kort",master_pin_mode:"Huvudpinkod",rfid_enable:"Aktivera RFID",relock_enabled:"\xC5terl\xE5sning aktiverad",lock_mode:"L\xE5sets tillst\xE5nd",service_mode:"Servicel\xE4ge",led_state:"LED-status",key_state:"Knappstatus",abs_min_heat_setpoint_limit:"ABS l\xE4gsta gr\xE4nsv\xE4rde f\xF6r v\xE4rme",abs_max_heat_setpoint_limit:"ABS h\xF6gsta gr\xE4nsv\xE4rde f\xF6r v\xE4rme",min_heat_setpoint_limit:"L\xE4gsta gr\xE4nsv\xE4rde f\xF6r v\xE4rme",max_heat_setpoint_limit:"H\xF6gsta gr\xE4nsv\xE4rde f\xF6r v\xE4rme",output_status:"Utg\xE5ngsstatus",room_status_code:"Rumsstatuskod",system_status_code:"Systemstatuskod",system_status_water:"Systemstatus Vatten",multimaster_role:"Multimaster-roll",external_temperature:"Utv\xE4ndig temperatur",hysteresis:"F\xF6rdr\xF6jning",max_temperature_protection:"Skydd mot maximal temperatur",backlight_led:"Bakgrundsljus"},cAt={add_to_group:"L\xE4gg till i grupp",create_group:"Skapa grupp",new_group_id:"Nytt grupp-id",new_group_id_placeholder:"Ange grupp-ID vid behov",new_group_name:"Nytt gruppnamn",new_group_name_placeholder:"exempel: mitt_sovrumsljus",remove_group:"Ta bort grupp",group_id:"Grupp-ID",group_name:"Gruppnamn",group_members:"Gruppmedlemmar",group_scenes:"Gruppscener",rename_group:"Byt namn p\xE5 grupp"},hAt={empty_logs_message:"Det finns inget att visa",filter_by_text:"Filtrera efter text",show_only:"Visa endast"},mAt={help_coordinator_link_description:"Heldragna linjer \xE4r kommunikationen till koordinatorn",help_end_device_description:"Gr\xF6n - Den sista enheten",help_is_coordinator:"\xE4r koordinator",help_lqi_description:'L\xE4nkkvaliteten \xE4r mellan 0-255 (h\xF6gre \xE4r b\xE4ttre), v\xE4rden med "/" representerar flera typer av l\xE4nkar',help_router_description:"Bl\xE5 - Router",help_router_links_description:"Streckade linjer \xE4r l\xE4nken till router",hide:"Klicka f\xF6r att d\xF6lja denna text",load:"Ladda karta",loading:"Beroende p\xE5 storleken p\xE5 ditt n\xE4tverk kan detta ta n\xE5gonstans mellan 10 sekunder och 2 minuter."},fAt={all:"Alla",dashboard:"Instrumentpanel",devices:"Enheter",disable_join:"Inaktivera anslutning",extensions:"Till\xE4gg",groups:"Grupper",logs:"Loggar",map:"Karta",permit_join:"Till\xE5t anslutning",restart:"Starta om",settings:"Inst\xE4llningar",toggle_dropdown:"V\xE4xla rullgardinsmenyn",touchlink:"Pekl\xE4nk"},pAt={check:"S\xF6k efter nya uppdateringar",check_all:"Kontrollera alla",empty_ota_message:"Du har inga enheter som st\xF6der OTA",remaining_time:"{{- remaining}} \xE5terst\xE5r",update:"Uppdatera enhetens firmware"},gAt={about:"Om",advanced:"Avancerat",availability:"Tillg\xE4nglighet",blocklist:"Blockeringslista",coordinator_revision:"Koordinator revision",coordinator_type:"Koordinatortyp",donate:"Donera",donation_text:["Hej, %username%, h\xE4r kan du tacka oss f\xF6r h\xE5rt arbetande","Tveka inte att s\xE4ga n\xE5got trevligt ocks\xE5 ;)"],download_state:"Ladda ner status",experimental:"Experimentell",external_converters:"Externa omvandlare",frontend:"Gr\xE4nssnitt",frontend_version:"Gr\xE4nssnittets version",main:"Huvudmeny",ota:"OTA-uppdateringar",passlist:"Beh\xF6righeter",raw:"R\xE5data",restart_zigbee2mqtt:"Starta om Zigbee2MQTT",serial:"Seriell",settings:"Inst\xE4llningar",tools:"Verktyg",translate:"\xD6vers\xE4tt",stats:"Statistik",coordinator_ieee_address:"Koordinatorns IEEE-adress"},vAt={detected_devices_message:"Uppt\xE4ckte {{count}} pekl\xE4nksenheter.",rescan:"Skanna igen",scan:"Skanna"},yAt={clear:"Rensa",closed:"St\xE4ngd",false:"Falsk",not_supported:"St\xF6ds inte",occupied:"Upptagen",open:"\xD6ppen",supported:"St\xF6ds",true:"Sant",empty_string:'Tom str\xE4ng("")',leaking:"L\xE4ckage",tampered:"Manipulerad",Clear:"Rensa",Closed:"St\xE4ngd",Occupied:"Aktiv",Open:"\xD6ppen"},_At={actions:"\xC5tg\xE4rder",attribute:"Attribut",battery:"Batteri",block_join:"Blockera fr\xE5n att \xE5teransluta",cluster:"Kluster",dc_source:"DC-k\xE4lla",description:"Beskrivning",device_type:"Enhetstyp",endpoint:"Slutpunkt",firmware_build_date:"Byggdatum f\xF6r firmware",force_remove:"Tvinga borttagning",friendly_name:"V\xE4nligt namn",ieee_address:"IEEE-adress",input_clusters:"Ing\xE5ngskluster",interview_completed:"Intervju avklarad",interview_failed:"Intervjun misslyckades",interviewing:"Intervjuar",last_seen:"S\xE5gs senast",mains_single_phase:"Eln\xE4t (enfas)",manufacturer:"Tillverkare",max_rep_interval:"max repintervall",min_rep_change:"Min repf\xF6r\xE4ndring",min_rep_interval:"min repintervall",model:"Modell",network_address:"N\xE4tverksadress",none:"Ingen",output_clusters:"Utg\xE5ngskluster",pic:"Bild",power:"Str\xF6mk\xE4lla",power_level:"Effektniv\xE5",reconfigure:"Konfigurera om",remove_device:"Ta bort enhet",rename_device:"Byt namn p\xE5 enhet",select_attribute:"V\xE4lj attribut",select_cluster:"V\xE4lj kluster",support_status:"Supportstatus",unsupported:"St\xF6ds inte",updating_firmware:"Uppdaterar firmware",update_Home_assistant_entity_id:"Uppdatera enhets-ID f\xF6r Home Assistant",zigbee_manufacturer:"Zigbee-tillverkare",zigbee_model:"Zigbee-modell",device:"Enhet",channel:"Kanal",possible:"M\xF6jlig",available:"Tillg\xE4nglig",execute:"k\xF6r",command:"Kommando",payload:"nyttolast",save_description:"Spara beskrivning"},bAt={scene_id:"Scen-ID",recall:"\xC5terkalla",store:"Lagra",remove:"Ta bort",remove_all:"Ta bort alla",add:"L\xE4gg till",select_scene:"V\xE4lj scen",scene_name:"scenens namn"},wAt={byType:"Efter enhetstyp",byPowerSource:"Efter str\xF6mk\xE4lla",byVendor:"Efter tillverkare",byModel:"Efter modell",total:"Totalt",EndDevice:"Den sista enheten"},SAt={avaliability:"Tillg\xE4nglighet",disabled:"Inaktiverad",enabled:"Aktiverad"},AAt={"Home Assistant integration (MQTT discovery)":"Home Assistant-integration (MQTT-uppt\xE4ckt)","Home Assistant legacy triggers, when enabled Zigbee2mqt will send an empty 'action' or 'click' after one has been send. A 'sensor_action' and 'sensor_click' will be discoverd":"\xC4ldre Home Assistant-utl\xF6sare, n\xE4r aktiverat kommer Zigbee2MQTT att skicka en tom \u201D\xE5tg\xE4rd\u201D eller \u201Dklick\u201D efter att en har skickats. En \u201Dsensor_action\u201D och \u201Dsensor_click\u201D kommer att uppt\xE4ckas","Home Assistant discovery topic":"Uppt\xE4ckts\xE4mne f\xF6r Home Assistant","Home Assistant legacy entity attributes, when enabled Zigbee2MQTT will add state attributes to each entity, additional to the separate entities and devices it already creates":"\xC4ldre entitetsattribut f\xF6r Home Assistant, n\xE4r de \xE4r aktiverade kommer Zigbee2MQTT att l\xE4gga till statusattribut till varje entitet, ut\xF6ver de separata enheter och enheter som den redan skapar","Home Assistant status topic":"Status\xE4mne f\xF6r Home Assistant","Allow new devices to join (re-applied at restart)":"Till\xE5t anslutningar f\xF6r nya enheter (\xE5teraktiveras vid omstart)","Options for active devices (routers/mains powered)":"Alternativ f\xF6r aktiva enheter (routrar/n\xE4tdrivna)","Time after which an active device will be marked as offline in minutes":"Tid efter vilken en aktiv enhet kommer att markeras som offline i minuter","Options for passive devices (mostly battery powered)":"Alternativ f\xF6r passiva enheter (mestadels batteridrivna)","Time after which an passive device will be marked as offline in minutes":"Tid efter vilken en passiv enhet kommer att markeras som offline i minuter","Checks whether devices are online/offline":"Kontrollerar om enheter \xE4r online/offline","You can define external converters to e.g. add support for a DiY device":"Du kan definiera externa omvandlare till t.ex. l\xE4gg till st\xF6d f\xF6r en g\xF6r-det-sj\xE4lv-enhet","MQTT base topic for Zigbee2MQTT MQTT messages":"MQTT-bas\xE4mne f\xF6r Zigbee2MQTT MQTT-meddelanden","MQTT server URL (use mqtts:// for SSL/TLS connection)":"Webbadress f\xF6r MQTT-server (anv\xE4nd mqtts:// f\xF6r SSL/TLS-anslutning)","MQTT keepalive in second":"MQTT-uppeh\xE5ll i sekunder","Absolute path to SSL/TLS certificate of CA used to sign server and client certificates":"S\xF6kv\xE4gen till SSL/TLS-certifikat f\xF6r CA som anv\xE4nds f\xF6r att signera server- och klientcertifikat","Absolute path to SSL/TLS key for client-authentication":"Absolut s\xF6kv\xE4g till SSL/TLS-certifikat f\xF6r klientautentisering","Absolute path to SSL/TLS certificate for client-authentication":"S\xF6kv\xE4gen till SSL/TLS-certifikat f\xF6r klientautentisering","MQTT server authentication user":"MQTT-serverautentiseringsanv\xE4ndare","MQTT server authentication password":"MQTT-serverautentiseringsl\xF6senord","MQTT client ID":"MQTT klient-ID","Disable self-signed SSL certificate":"Inaktivera sj\xE4lvsignerat SSL-certifikat","Include device information to mqtt messages":"Inkludera enhetsinformation i mqtt-meddelanden","MQTT protocol version":"MQTT-protokollversion","Disable retain for all send messages. ONLY enable if you MQTT broker doesn't support retained message (e.g. AWS IoT core, Azure IoT Hub, Google Cloud IoT core, IBM Watson IoT Platform). Enabling will break the Home Assistant integration":"Inaktivera beh\xE5llning f\xF6r alla skickade meddelanden. Aktivera ENDAST om din MQTT-m\xE4klare inte st\xF6der beh\xE5llna meddelanden (t.ex. AWS IoT-k\xE4rna, Azure IoT Hub, Google Cloud IoT-k\xE4rna, IBM Watson IoT-plattform). Aktivering bryter Home Assistant-integrationen","Location of the adapter. To autodetect the port, set null":"Adapterns plats. F\xF6r att automatiskt fastst\xE4lla porten, l\xE4mna f\xE4ltet tomt","Disable LED of the adapter if supported":"St\xE4ng av adapterns LED, om det st\xF6ds","Adapter type, not needed unless you are experiencing problems":"Adaptertyp, kr\xE4vs inte om du inte har n\xE5gra problem","Baud rate speed for serial port, this can be anything firmware support but default is 115200 for Z-Stack and EZSP, 38400 for Deconz, however note that some EZSP firmware need 57600":"Baudhastighet f\xF6r seriell port, detta kan vara allt st\xF6d f\xF6r firmware men standard \xE4r 115200 f\xF6r Z-Stack och EZSP, 38400 f\xF6r Deconz, notera dock att vissa EZSP firmware beh\xF6ver 57600","RTS / CTS Hardware Flow Control for serial port":"RTS / CTS h\xE5rdvarufl\xF6deskontroll f\xF6r seriell port","Block devices from the network (by ieeeAddr)":"Blockera enheter fr\xE5n n\xE4tverket (med IEEE-adress)","Allow only certain devices to join the network (by ieeeAddr). Note that all devices not on the passlist will be removed from the network!":"Till\xE5t endast vissa enheter att g\xE5 med i n\xE4tverket (med IEEE-adress). Observera att alla enheter som inte finns med i listan kommer att tas bort fr\xE5n n\xE4tverket!","Your device may request a check for a new firmware update. This value determines how frequently third party servers may actually be contacted to look for firmware updates. The value is set in minutes, and the default is 1 day.":"Din enhet kan beg\xE4ra en kontroll efter en ny firmwareuppdatering. Detta v\xE4rde avg\xF6r hur ofta tredje parts servrar faktiskt kan kontaktas f\xF6r att leta efter firmwareuppdateringar. V\xE4rdet st\xE4lls in i minuter och standard \xE4r 1 dag.","Zigbee devices may request a firmware update, and do so frequently, causing Zigbee2MQTT to reach out to third party servers. If you disable these device initiated checks, you can still initiate a firmware update check manually.":"Zigbee-enheter kan beg\xE4ra en firmwareuppdatering, och g\xF6r det ofta, vilket g\xF6r att Zigbee2MQTT n\xE5r ut till tredje parts servrar. Om du inaktiverar dessa enhetsinitierade kontroller kan du fortfarande initiera en uppdatering av firmware manuellt.","Use IKEA TRADFRI OTA test server, see OTA updates documentation":"Anv\xE4nd IKEA TR\xC5DFRI OTA-testserver, se OTA-uppdateringsdokumentationen","Location of override OTA index file":"S\xF6kv\xE4g f\xF6r \xE5sidos\xE4ttning av OTA-indexfil","Frontend binding port":"Gr\xE4nssnittets bindande port","Frontend binding host":"Gr\xE4nssnittets bindande v\xE4rd","Enables authentication, disabled by default":"Aktiverar autentisering, inaktiverad som standard","URL on which the frontend can be reached, currently only used for the Home Assistant device configuration page":"Webbadress d\xE4r gr\xE4nssnittet kan n\xE5s, anv\xE4nds f\xF6r n\xE4rvarande endast f\xF6r Home Assistant-enhetens konfigurationssida","Disables the legacy api (false = disable)":'Inaktiverar det \xE4ldre API:et ("False" = inaktivera)',"Payload to be used for device availabilty and bridge/state topics. true = text, false = JSON":"Nyttolast som ska anv\xE4ndas f\xF6r tillg\xE4nglighets\xE4mnen f\xF6r enheter och bryggor/tillst\xE5nd. true = text, false = JSON","Log rotation":"Loggrotation","Create symlink to current logs in the log directory":"Skapa symboll\xE4nk till aktuella loggar i loggkatalogen","Output location of the log, leave empty to suppress logging":"Utdataplats f\xF6r loggen, l\xE4mna tom f\xF6r att undertrycka loggning","Location of log directory":"Plats f\xF6r loggkatalogen","Log file name, can also contain timestamp":"Loggfilens namn, kan ocks\xE5 inneh\xE5lla tidsst\xE4mpel","Logging level":"Loggningsniv\xE5","The host running syslogd, defaults to localhost.":"V\xE4rden som k\xF6r syslogd, \xE4r som standard localhost.","The port on the host that syslog is running on, defaults to syslogd's default port.":"Porten p\xE5 v\xE4rden som systemloggen k\xF6rs p\xE5, \xE4r som standard syslogds standardport.","The network protocol to log over (e.g. tcp4, udp4, tls4, unix, unix-connect, etc).":"N\xE4tverksprotokollet att logga \xF6ver (t.ex. tcp4, udp4, tls4, unix, unix-connect, etc).","The path to the syslog dgram socket (i.e. /dev/log or /var/run/syslog for OS X).":"S\xF6kv\xE4gen till syslog dgram-socket (t.ex. /dev/log eller /var/run/syslog f\xF6r OS X).","PID of the process that log messages are coming from (Default process.pid).":"PID f\xF6r processen som loggmeddelanden kommer fr\xE5n (Standard process.pid).","Host to indicate that log messages are coming from (Default: localhost).":"V\xE4rd f\xF6r att indikera att loggmeddelanden kommer fr\xE5n (Standard: localhost).","The type of the syslog protocol to use (Default: BSD, also valid: 5424).":"Typen av syslog-protokoll som ska anv\xE4ndas (Standard: BSD, \xE4ven giltigt: 5424).","The name of the application (Default: Zigbee2MQTT).":"Namnet p\xE5 programmet (Standard: Zigbee2MQTT).","The end of line character to be added to the end of the message (Default: Message without modifications).":"Radsluttecken som ska l\xE4ggas till i slutet av meddelandet (Standard: Meddelande utan \xE4ndringar).","ZigBee pan ID, changing requires repairing all devices!":"ZigBee pan-ID, alla enheter m\xE5ste paras om vid \xE4ndringar!","Zigbee extended pan ID, changing requires repairing all devices!":"Zigbee ut\xF6kat pan-ID, alla enheter m\xE5ste paras om vid \xE4ndringar!","Zigbee channel, changing requires repairing all devices! (Note: use a ZLL channel: 11, 15, 20, or 25 to avoid Problems)":"Zigbee-kanal, alla enheter m\xE5ste paras om vid f\xF6r\xE4ndringar! (OBS: anv\xE4nd en ZLL-kanal: 11, 15, 20 eller 25 f\xF6r att undvika problem)","Adapter concurrency (e.g. 2 for CC2531 or 16 for CC26X2R1) (default: null, uses recommended value)":"Adaptersamverkan (t.ex. 2 f\xF6r CC2531 eller 16 f\xF6r CC26X2R1) (standard: blankt, anv\xE4nder rekommenderat v\xE4rde)","Adapter delay":"Adapterf\xF6rdr\xF6jning","MQTT message payload will contain all attributes, not only changed ones. Has to be true when integrating via Home Assistant":"MQTT-nyttolasten kommer att inneh\xE5lla alla attribut, inte bara modifierade. M\xE5ste vara korrekt vid integration via Home Assistant","Persist cached state, only used when cache_state: true":'Beh\xE5ll cachad status, anv\xE4nds endast n\xE4r cache_state: "true"',"Send cached state on startup, only used when cache_state: true":'Skicka cachad status vid uppstart, anv\xE4nds endast n\xE4r cache_state: "true"',"Add a last_seen attribute to MQTT messages, contains date/time of last Zigbee message":"L\xE4gg till ett last_seen-attribut till MQTT-meddelanden, inneh\xE5ller datum/tid f\xF6r senaste Zigbee-meddelande","Add an elapsed attribute to MQTT messages, contains milliseconds since the previous msg":"L\xE4gg till ett f\xF6rflutet attribut till MQTT-meddelanden, inneh\xE5ller millisekunder sedan f\xF6reg\xE5ende meddelande","Network encryption key, changing requires repairing all devices!":"N\xE4tverkskrypteringsnyckel, Alla enheter m\xE5ste paras om vid \xE4ndringar!","Log timestamp format":"Tidsst\xE4mpelformat f\xF6r logg","Transmit power of adapter, only available for Z-Stack (CC253*/CC2652/CC1352) adapters, CC2652 = 5dbm, CC1352 max is = 20dbm (5dbm default)":"S\xE4ndningseffekt f\xF6r adapter, endast tillg\xE4nglig f\xF6r Z-Stack (CC253*/CC2652/CC1352) adaptrar, CC2652 = 5dbm, CC1352 max \xE4r = 20dbm (5dbm standard)","Examples when 'state' of a device is published json: topic: 'zigbee2mqtt/my_bulb' payload '{\"state\": \"ON\"}' attribute: topic 'zigbee2mqtt/my_bulb/state' payload 'ON' attribute_and_json: both json and attribute (see above)":`Exempel n\xE4r 'status' f\xF6r en enhet publiceras json: \xE4mne: 'zigbee2mqtt/min_gl\xF6dlampa' nyttolast '{"state": "ON"}' attribut: \xE4mne 'zigbee2mqtt/min_gl\xF6dlampa/state' nyttolast 'P\xC5' attribute_and_json: b\xE5de json och attribut (se ovan)`,"Home Assistant legacy triggers, when enabled Zigbee2mqt will send an empty 'action' or 'click' after one has been send. A 'sensor_action' and 'sensor_click' will be discovered":`Home Assistant legacy triggers, n\xE4r aktiverat kommer Zigbee2MQTT att skicka en tom "\xE5tg\xE4rd" eller "klick" efter att en har skickats. En 'sensor_action' och 'sensor_click' kommer att uppt\xE4ckas`,"Soft reset ZNP after timeout":"Mjuk \xE5terst\xE4llning av ZNP efter timeout","Enables report feature (deprecated)":"Aktiverar rapportfunktionen (st\xF6ds inte)","Used in the MQTT topic of a device. By default this is the device ID":"Anv\xE4nds i MQTT-\xE4mnet f\xF6r en enhet. Som standard \xE4r detta enhets-ID","Retain MQTT messages of this device":"Beh\xE5ll MQTT-meddelanden fr\xE5n denna enhet","Sets the MQTT Message Expiry in seconds, Make sure to set mqtt.version to 5":"St\xE4ller in MQTT-meddelandets utg\xE5ng i sekunder. Se till att st\xE4lla in MQTT till version 5","QoS level for MQTT messages of this device":"QoS-niv\xE5 f\xF6r MQTT-meddelanden f\xF6r denna enhet","Debounces messages of this device":"Avstudsar meddelanden fr\xE5n den h\xE4r enheten","Protects unique payload values of specified payload properties from overriding within debounce time":"Skyddar unika nyttolastv\xE4rden f\xF6r specificerade nyttolastegenskaper fr\xE5n att \xE5sidos\xE4ttas inom avstudstiden","Publish optimistic state after set":"Publicera optimistiskt tillst\xE5nd efter inst\xE4llning","Filter attributes from optimistic publish payload when calling /set. (This has no effect if optimistic is set to false).":"Filtrera attribut fr\xE5n optimistisk publiceringsnyttolast n\xE4r du anropar /set. (Detta har ingen effekt om optimistisk \xE4r inst\xE4lld p\xE5 falsk).","Filter attributes from publish payload.":"Filtrera attribut fr\xE5n att publicera nyttolast.","The user-defined device icon for the frontend. It can be a link to an image (not a path to a file) or base64 encoded data URL like: image/svg+xml;base64,PHN2ZyB3aW....R0aD":"Den anv\xE4ndardefinierade enhetsikonen f\xF6r gr\xE4nssnittet. Det kan vara en l\xE4nk till en bild (inte en s\xF6kv\xE4g till en fil) eller base64-kodad data-webbadress som: image/svg+xml;base64,PHN2ZyB3aW....R0aD","Name of the device in Home Assistant":"Enhetens namn i Home Assistant"},TAt={"Home Assistant integration":"Home Assistant-integration","Home Assistant (simple)":"Home Assistant (enkel)","Home Assistant (advanced)":"Home Assistant (avancerat)","Home Assistant legacy triggers":"Home Assistant \xE4ldre utl\xF6sare","Homeassistant discovery topic":"Uppt\xE4ckts\xE4mne f\xF6r Home Assistant","Home Assistant legacy entity attributes":"\xC4ldre enhetsattribut f\xF6r Home Assistant","Home Assistant status topic":"Status\xE4mne f\xF6r Home Assistant","Permit join":"Till\xE5t anslutning","Availability (simple)":"Tillg\xE4nglighet (enkel)","Availability (advanced)":"Tillg\xE4nglighet (avancerat)",Active:"Aktiv",Passive:"Passiv",Availability:"Tillg\xE4nglighet","External converters":"Externa omvandlare","Base topic":"Bas\xE4mne","MQTT server":"MQTT-server",Keepalive:"H\xE5ll vid liv","Certificate authority":"Certifikatutf\xE4rdare","SSL/TLS key":"SSL/TLS-nyckel","SSL/TLS certificate":"SSL/TLS-certifikat",User:"Anv\xE4ndare",Password:"L\xF6senord","Client ID":"Klient-ID","Reject unauthorized":"Avvisa obeh\xF6riga","Include device information":"Inkludera enhetsinformation","Force disable retain":"Tvinga inaktivera beh\xE5lla",Serial:"seriell","Disable led":"Inaktivera LED",Baudrate:"Baudhastighet",Blocklist:"Blockeringslista",Passlist:"Inst\xE4llningar f\xF6r beh\xF6righeter",Networkmap:"N\xE4tverkskarta","OTA updates":"OTA-uppdateringar","Update check interval":"Uppdateringskontrollintervall","Disable automatic update check":"Inaktivera automatisk uppdateringskontroll","IKEA TRADFRI OTA use test url":"IKEA TR\xC5DFRI OTA anv\xE4nd test-webbadress","OTA index override file name":"OTA index \xE5sidos\xE4tt filnamn","Frontend (simple)":"Frontend (enkel)","Frontend (advanced)":"Frontend (avancerat)","Bind host":"Bind v\xE4rd","Auth token":"Autentiseringstoken",URL:"Webbadress",Frontend:"Gr\xE4nssnitt","Options that are applied to all devices":"Alternativ som till\xE4mpas p\xE5 alla enheter",Advanced:"Avancerat","Legacy API":"\xC4ldre API","Legacy availability payload":"Tillg\xE4nglighetens nyttolast \xE4r inaktuell","Log rotation":"Loggrotation","Log symlink current":"Logga symboll\xE4nk str\xF6m","Log output":"Utdatalogg","Log directory":"Loggkatalog","Log file":"Loggfil","Log level":"Loggningsniv\xE5",syslog:"Systemlogg",Host:"V\xE4rd",Protocol:"Protokoll",Path:"S\xF6kv\xE4g",Localhost:"Lokal v\xE4rd",Type:"Typ",eol:"EOL","Pan ID (string)":"Pan-ID (str\xE4ng)","Pan ID (number)":"Pan-ID (nummer)","Pan ID":"Pan-ID","Ext Pan ID":"Extern Pan-ID","ZigBee channel":"Zigbee-kanal","Adapter concurrency":"Adaptersamverkan","Adapter delay":"Adapterf\xF6rdr\xF6jning","Cache state":"Cachestatus","Persist cache state":"Beh\xE5ller cachestatus","Send cached state on startup":"Skicka cachad status vid start","Last seen":"S\xE5gs senast",Elapsed:"F\xF6rflutit","Network key(string)":"N\xE4tverksnyckel (str\xE4ng)","Network key(array)":"N\xE4tverksnyckel (rad)","Network key":"N\xE4tverksnyckel","Timestamp format":"Tidsst\xE4mpelformat","Transmit power":"S\xE4ndningseffekt","MQTT output type":"MQTT-utg\xE5ngstyp","Soft reset timeout (deprecated)":"Timeout f\xF6r mjuk \xE5terst\xE4llning (utfasad)",Reporting:"Rapportering","Baudrate (deprecated)":"Baudrate (utfasad)","RTS / CTS (deprecated)":"RTS/CTS (utfasad)","IKEA TRADFRI OTA use test url (deprecated)":"Anv\xE4nd IKEA TR\xC5DFRI OTA-testadress (utfasad)","Experimental (deprecated)":"Experimentell (utfasad)","Whitelist (deprecated, use passlist)":"Vitlista (st\xF6ds inte, anv\xE4nd beh\xF6righetslista)","Ban (deprecated, use blocklist)":"F\xF6rbjuda (st\xF6ds inte, anv\xE4nd blockeringslista)","Friendly name":"V\xE4nligt namn",Retain:"Beh\xE5ll",Retention:"Bibeh\xE5lla",Debounce:"Avstudsa","Ignore debounce":"Ignorera avbrottet",Optimistic:"Optimistisk","Filtered optimistic attributes":"Filtrerade optimistiska attribut","Filtered publish attributes":"Filtrerade publiceringsattribut",Icon:"Ikon","Home Assistant name":"Namn f\xF6r Home Assistant"};var kAt={common:iAt,devicePage:oAt,exposes:sAt,extensions:lAt,featureDescriptions:uAt,featureNames:dAt,groups:cAt,logs:hAt,map:mAt,navbar:fAt,ota:pAt,settings:gAt,touchlink:vAt,values:yAt,zigbee:_At,scene:bAt,stats:wAt,avaliability:SAt,settingsSchemaDescriptions:AAt,settingsSchemaTitles:TAt};const CAt={action:"Aksiyon",actions:"Eylemler",apply:"Uygula",attribute:"\xD6znitelik",bind:"Ba\u011Fla",check_all:"Hepsini se\xE7",clear:"Temizle",close:"Kapat",cluster:"K\xFCme",clusters:"K\xFCmeler",confirmation:"Onay istemi",delete:"Sil",destination:"Hedef",devices:"Cihazlar",dialog_confirmation_prompt:"Emin misin?",disable:"Devre d\u0131\u015F\u0131 b\u0131rak",enter_search_criteria:"Arama Kriterleri girin",groups:"Gruplar",loading:"Y\xFCkleniyor...",none:"Hi\xE7biri",ok:"Tamam",read:"Oku",save:"Kaydet",select_device:"Cihaz se\xE7",select_endpoint:"U\xE7 noktas\u0131n\u0131 se\xE7in",source_endpoint:"Kaynak u\xE7 noktas\u0131",the_only_endpoint:"Sadece u\xE7 noktas\u0131",unbind:"Ba\u011F\u0131 \xC7\xF6z",write:"Yaz"},EAt={about:"Hakk\u0131nda",bind:"Ba\u011Fla",clusters:"K\xFCmeler",dev_console:"Y\xF6netim Konsolu",reporting:"Raporlama",settings:"Ayarlar",settings_specific:"Ayarlar (Spesifik)",state:"Durum",scene:"Sahne",unknown_device:"Bilinmeyen cihaz"},IAt={empty_exposes_definition:"Bo\u015F uzant\u0131 tan\u0131mlamas\u0131"},DAt={create_new_extension:"Yeni Uzant\u0131 Olu\u015Ftur",extension_name_propmt:"Yeni Uzant\u0131 Ad\u0131n\u0131 Girin",select_extension_to_edit:"D\xFCzenlemek i\xE7in Uzant\u0131 Se\xE7in"},xAt={"Brightness of this light":"Bu \u0131\u015F\u0131\u011F\u0131n parlakl\u0131\u011F\u0131","Color temperature of this light":"Bu \u0131\u015F\u0131\u011F\u0131n renk s\u0131cakl\u0131\u011F\u0131","Color temperature after cold power on of this light":"Bu \u0131\u015F\u0131kta so\u011Fuk g\xFC\xE7ten sonra renk s\u0131cakl\u0131\u011F\u0131","Color of this light in the CIE 1931 color space (x/y)":"CIE 1931 Renk Alan\u0131nda (XY) bu \u0131\u015F\u0131\u011F\u0131n rengi","Motor speed":"Motor h\u0131z\u0131","Color of this light expressed as hue/saturation":"Colour of this light expressed as hue/saturation","Actual state of the lock":"Kilitin ger\xE7ek durumu","Type of user, unrestricted: owner (default), (year|week)_day_schedule: user has ability to open lock based on specific time period, master: user has ability to both program and operate the door lock, non_access: user is recognized by the lock but does not have the ability to open the lock":"","Triggered action on the lock":"","Source of the triggered action on the lock":"","ID of user that triggered the action on the lock":"","Button mode":"D\xFC\u011Fme Modu","After turn on, the indicator light turns on while switch is off, and vice versa":"","Anti flicker mode can be used to solve blinking issues of some lights.Quick mode makes the device respond faster.":"Titre\u015Fim \xF6nleme modu, baz\u0131 \u0131\u015F\u0131klar\u0131n yan\u0131p s\xF6nme sorunlar\u0131n\u0131 \xE7\xF6zmek i\xE7in kullan\u0131labilir.Quick modu, cihaz\u0131n daha h\u0131zl\u0131 yan\u0131t vermesini sa\u011Flar.","Beep volume":"Bip sesi","Enable LCD auto brightness":"LCD Otomatik Parlakl\u0131\u011F\u0131 Etkinle\u015Ftir",Icon:"Simge",Text:"Metin","Temperature of the device":"Cihaz\u0131n s\u0131cakl\u0131\u011F\u0131","Number of power outages (since last pairing)":"","Number of power outages":"","The current charging status.":"","The current state of the motor.":"","Whether the motor is moving or not":"","Motor state":"","Value of smoke concentration":"","Value of smoke concentration in dB/m":"","Starts the self-test process (checking the indicator light and buzzer work properly)":"","Self-test in progress":"","Mute the buzzer for 80 seconds (buzzer cannot be pre-muted, because this function only works when the alarm is triggered)":"","Buzzer muted":"","When this option is enabled then in the normal monitoring state, the green indicator light flashes every 60 seconds":"","When this option is enabled and a smoke is detected, other detectors with this option enabled will also sound the alarm buzzer":"","Value of gas concentration":"",'Gas concentration value at which an alarm is triggered ("10%LEL" is more sensitive than "15%LEL")':"","Mute the buzzer for 10 minutes (buzzer cannot be pre-muted, because this function only works when the alarm is triggered)":"","When this option is enabled and a gas leak is detected, other detectors with this option enabled will also sound the alarm buzzer":"",'"Preparation" or "work" (measurement of the gas concentration value and triggering of an alarm are only performed in the "work" state)':"",'Presence events: "enter", "leave", "left_enter", "right_leave", "right_enter", "left_leave", "approach", "away"':"","Monitoring mode with or without considering right and left sides":"","The distance at which the sensor detects approaching":"","Different sensitivities means different static human body recognition rate and response speed of occupied":"","Reset the status of no presence":"","Time interval for detecting actions":"","Decoupled mode for center button":"Decoupled mode for centre button","Switch between rgbw mode or dual color temperature mode":"","Sound level":"Ses seviyesi","Is the device plugged in":"","Smoke alarm status":"","Test alarm":"","Test alarm result":"","Battery level state":"","Alarm enable":"","Fault alarm status":"","Silence siren":"","Alarm zone. Default value 0":"Alarm b\xF6lgesi. Varsay\u0131lan de\u011Fer 0","Tilt of this cover":"Bu kapa\u011F\u0131n e\u011Fimi","The dimmer is capable of measuring the reactanceto distinguish inductive and capacitive loads.":"The dimmer is capable of measuring the reactance to distinguish inductive and capacitive loads.","Controls the behavior when the device is powered on":"Cihaz a\xE7\u0131ld\u0131\u011F\u0131ndaki davran\u0131\u015F\u0131 kontrol eder","PIR sensor sensitivity (refresh and update only while active)":"","PIR keep time in seconds (refresh and update only while active)":"","Report interval":"","Current display unit":"","Temperature alarm status":"S\u0131cakl\u0131k alarm durumu","Alarm temperature max":"Alarm S\u0131cakl\u0131\u011F\u0131 Maksimum","Alarm temperature min":"Alarm S\u0131cakl\u0131\u011F\u0131 Minimum","Humidity alarm status":"","Alarm humidity max":"Alarm nem maksimum","Alarm humidity min":"Alarm nem minimum","Distance to target":"","Minimum range":"","Maximum range":"","Detection delay":"","Fading time":"","Self_test, possible resuts: checking, check_success, check_failure, others, comm_fault, radar_fault.":"","Brightness state":"Parlakl\u0131k Durumu","Speed of movement":"Hareket h\u0131z\u0131","presets for sensitivity for presence and movement":"","Tumble status switch":"","fall sensitivity of the radar":"","tumble alarm time":"","fall down status":"","static dwell alarm":"","O-Sensitivity mode":"O-Duyarl\u0131l\u0131k modu","Led status switch":"LED status switch","Working mode":"\xC7al\u0131\u015Fma modu","Luminance level":"Parlakl\u0131k seviyesi","Alarm humidity status":"Alarm nem durumu","Alarm temperature status":"Alarm S\u0131cakl\u0131\u011F\u0131 Durumu","Trigger the door movement":"","Indicates if the garage door contact is closed (= true) or open (= false)":"","Relay LED indicator mode":"","Plug LED indicator mode":"",Position:"Pozisyon","Away mode":"D\u0131\u015Far\u0131da modu","Comfort temperature":"Konfor s\u0131cakl\u0131\u011F\u0131","Eco temperature":"Eko s\u0131cakl\u0131\u011F\u0131",'When Anti-Freezing function is activated, the temperature in the house is kept at 8 \xB0C, the device display "AF".press the pair button to cancel.':"",'Battery life can be prolonged by switching the heating off. To achieve this, the valve is closed fully. To activate the heating stop, the device display "HS", press the pair button to cancel.':"","Holiday temperature":"Tatil s\u0131cakl\u0131\u011F\u0131","Error status":"Hata durumu","Window open?":"","Mode of this device, in the `heat` mode the TS0601 will remain continuously heating, i.e. it does not regulate to the desired temperature. If you want TRV to properly regulate the temperature you need to use mode `auto` instead setting the desired temperature.":"","Away preset days":"D\u0131\u015Far\u0131da ayarlanm\u0131\u015F g\xFCnler","Boost time":"Zaman\u0131 artt\u0131r","Away preset temperature":"D\u0131\u015Far\u0131da ayarlanm\u0131\u015F s\u0131cakl\u0131k","Calibration time":"Kalibrasyon s\xFCresi","Maximum light brightness":"","The measured CO (carbon monoxide) value":"","The measured formaldehyd value":"The measured formaldehyde value","Measured PM2.5 (particulate matter) concentration":"Measured PM\u2082.\u2085 (particulate matter) concentration","Group where the action was triggered on":"","The measured occupancy value":"","The measured noise value":"","Indicates whether the device detected noise":"","Time in seconds after which noise is cleared after detecting it (default: 60)":"","Time in seconds after which occupancy is cleared after detecting it (default: 60)":"","Self-heating compensation. The compensation value is subtracted from the measured temperature":"","If the sensor is triggered by the slightest movement, reduce the sensitivity, otherwise increase it (default: 50)":"","The minimum noise level at which the detector will work (default: 50)":"","Automatic calibration of the CO2 sensor. If ON, the CO2 sensor will automatically calibrate every 7 days.":"","Ventilate the room for 20 minutes, turn on manual calibration, and turn it off after one second. After about 5 minutes the CO2 sensor will show 400ppm. Calibration completed":"","Turn on when working in conditions of high humidity (more than 70 %, RH) or condensation, if the sensor shows 0 or 100 %.":"","Accelerometer X value":"\u0130vme\xF6l\xE7er x de\u011Feri","Accelerometer Y value":"\u0130vme\xF6l\xE7er y de\u011Feri","Accelerometer Z value":"\u0130vme\xF6l\xE7er z de\u011Feri","White brightness of this light":"","Valve state if open or closed":"","Position of the valve":"","Control backlight dimming behavior":"Control backlight dimming behaviour","Door status":"Kap\u0131 durumu","User ID can only number 1":"","Pincode to set, set pincode(4 digit) to null to clear":"","temperature of device internal mcu":"","Measured electrical power factor":"","Measured electrical ac frequency":"","Currently status":"","Instantaneous measured apparent power":"","Instantaneous measured power on phase A":"","Instantaneous measured power on phase B":"","Instantaneous measured power on phase C":"","Instantaneous measured power factor":"","Sum of consumed energy on phase A":"","Sum of consumed energy on phase B":"","Sum of consumed energy on phase C":"","Measured electrical AC frequency":"","Measured electrical potential value on phase A":"","Measured electrical potential value between phase A and B":"","Measured electrical potential value between phase B and C":"","Measured electrical potential value between phase C and A":"","Instantaneous measured electrical current on phase A":"","Time in seconds after which occupancy is cleared after detecting it":"","Controls the behaviour when the device is powered on":"Cihaz a\xE7\u0131ld\u0131\u011F\u0131ndaki davran\u0131\u015F\u0131 kontrol eder","Sets dimming mode to autodetect or fixed RC/RL/RL_LED mode (max load is reduced in RL_LED)":"","Duration of lift":"","Auto off after specific time":"Belirli bir s\xFCreden sonra otomatik olarak kapal\u0131","Controls how programming affects the thermostat. Possible values: setpoint (only use specified setpoint), schedule (follow programmed setpoint schedule). Changing this value does not clear programmed schedules.":"","Not clear how this affects operation. However, it would appear that the device does not execute any motor functions if this is set to false. This may be a means to conserve battery during periods that the heating system is not energized (e.g. during summer). `false` No Heat Available or `true` Heat Available":"","If `radiator_covered` is `true`: Set at maximum 30 minutes interval but not more often than every 5 minutes and 0.1 degrees difference. Resets every 35 minutes to standard. If `radiator_covered` is `false`: Set at maximum 3 hours interval but not more often than every 30 minutes and 0.1 degrees difference. Resets every 3 hours to standard. Value 21C = 2100 (-8000=undefined).":"","Set if the TRV should solely rely on external_measured_room_sensor or operate in offset mode. `false` = Auto Offset Mode or `true` = Room Sensor Mode":"","Whether or not the window open feature is enabled":"","Mean radiator load for room calculated by gateway for load balancing purposes (-8000=undefined)":"","Specific for pre-heat running in Zigbee Weekly Schedule mode":"","Status of adaptation run: None (before first run), In Progress, Valve Characteristic Found, Valve Characteristic Lost":"","Automatic adaptation run enabled (the one during the night)":"","Adaptation run control: Initiate Adaptation Run or Cancel Adaptation Run":"","Regulation SetPoint Offset in range -2.5\xB0C to 2.5\xB0C in steps of 0.1\xB0C. Value 2.5\xB0C = 25.":"","Blink green LED on motion detection":"Hareket alg\u0131lamada yan\u0131p s\xF6nen ye\u015Fil LED","Ac louver position of this device":"Bu cihaz\u0131n AC panjur konumu","Auto relock after 7 seconds.":"7 saniye sonra otomatik tekrar kilitle.","Temperature sensitivity":"S\u0131cakl\u0131k duyarl\u0131l\u0131\u011F\u0131","Enable LED":"","Temperature/humidity alarm status":"","Temperature scale (\xB0F/\xB0C)":"","OLED brightness when operating the buttons. Default: Medium.":"","Key beep volume and vibration level. Default: Low.":"","Type of the external floor sensor. Default: NTC 10K/25.":"","The sensor used for heat control. Default: Room Sensor.":"","The mode after a power reset. Default: Previous Mode.":"","The tempearatue calibration for the exernal floor sensor, between -3 and 3 in 0.1\xB0C. Default: 0.":"","The duration of Dry Mode, between 5 and 100 minutes. Default: 5.":"","The mode after Dry Mode. Default: Auto.":"","The temperature on the display. Default: Room Temperature.":"","The threshold to detect window open, between 1.5 and 4 in 0.5 \xB0C. Default: 0 (disabled).":"","Hysteresis setting, between 0.5 and 2 in 0.1 \xB0C. Default: 0.5.":"","Room temperature alarm threshold, between 20 and 60 in \xB0C. 0 means disabled. Default: 45.":"","Do not disturb mode":"Rahats\u0131z Etmeyin modu","Power on behavior state":"Power on behaviour state","Indicator light status":"","The delta between local_temperature and current_heating_setpoint to trigger Heat":"","Serial Number":"Seri Numaras\u0131","Base index":"","Tarif option":"","Subscribed intensity level":"","HCHC index":"","HCHP index":"","BBRHCJW index":"","BBRHPJW index":"","BBRHCJR index":"","BBRHPJR index":"","RMS current":"","RMS current (phase 2)":"","RMS current (phase 3)":"","RMS current peak":"","RMS current peak (phase 2)":"","RMS current peak (phase 3)":"","Three-phase power peak":"","Apparent power":"","Current pricing period":"","Tomorrow color":"","Schedule HPHC":"","Presence of potentials":"","EJP start notice (30min)":"","Subscribed Power Exceeded Warning":"","Over Current Warning (phase 1)":"","Over Current Warning (phase 2)":"","Over Current Warning (phase 3)":"","Current supplier price label":"","Current tariff index number":"","Customer tele-information protocol version":"","Current date and time":"","Total provider active power delivered (index 07)":"","Total provider active power delivered (index 08)":"","Total provider active power delivered (index 09)":"","Total provider active power delivered (index 10)":"","Active energy withdrawn Distributor (index 01)":"","Active energy withdrawn Distributor (index 02)":"","Active energy withdrawn Distributor (index 03)":"","Active energy withdrawn Distributor (index 04)":"","Total active power injected":"","Total reactive power (Q1)":"Toplam reaktif g\xFC\xE7 (Q1)","Total reactive power (Q2)":"Toplam reaktif g\xFC\xE7 (Q2)","Total reactive power (Q3)":"Toplam reaktif g\xFC\xE7 (Q3)","Total reactive power (Q4)":"Toplam reaktif g\xFC\xE7 (Q4)","RMS voltage":"RMS gerilimi","RMS voltage (phase 2)":"","RMS voltage (phase 3)":"","Register of Statutes":"","Apparent power threshold":"","Instantaneous apparent power injected":"","Apparent power max. injected n":"","Apparent power max. injected n-1":"","Current point of the active load curve drawn":"","Previous point of the active load curve drawn":"","Point n of the withdrawn active load curve":"","Point n-1 of the withdrawn active load curve":"","Average RMS voltage (phase 1)":"","Average RMS voltage (phase 2)":"","Average RMS voltage (phase 3)":"","Immediate apparent power delivered (phase 2)":"","Immediate apparent power delivered (phase 3)":"","Apparent power delivered peak (phase 2)":"","Apparent power delivered peak (phase 3)":"","Apparent power max. draw-off n-1":"","Apparent power max. draw-off n-1 (phase 2)":"","Apparent power max. draw-off n-1 (phase 3)":"","Message short":"K\u0131sa mesaj","Message ultra-short":"\xC7ok k\u0131sa mesaj","PRM number":"PRM numaras\u0131","Start mobile point 1":"","Stop mobile point 1":"","Start mobile point 2":"","Stop mobile point 2":"","Start mobile point 3":"","Stop mobile point 3":"","Current day number supplier calendar":"","Next day number supplier calendar":"","Profile of the next supplier calendar day":"","Profile of the next check-in day":"","Motor direction":"Motor y\xF6n\xFC","Controls behaviour of led/siren on alarm":"Controls behaviour of LED/siren on alarm","Alarm zone. Default value 23":"Alarm b\xF6lgesi. Varsay\u0131lan de\u011Fer 23","Measured eCO2 value":"Measured CO2 value","Temperature 1":"S\u0131cakl\u0131k 1","Temperature 2":"S\u0131cakl\u0131k 2","Temperature 3":"S\u0131cakl\u0131k 3","Temperature 4":"S\u0131cakl\u0131k 4","Temperature 5":"S\u0131cakl\u0131k 5","Temperature 6":"S\u0131cakl\u0131k 6","Temperature 7":"S\u0131cakl\u0131k 7","Temperature 8":"S\u0131cakl\u0131k 8","Temperature 9":"S\u0131cakl\u0131k 9","Auto off after specific time.":"Belirli bir s\xFCreden sonra otomatik olarak kapal\u0131.","Enable the LED when the light is off":"","Works only when the pilot wire is deactivated":"","Allow the device to change brightness":"Cihaz\u0131n parlakl\u0131\u011F\u0131 de\u011Fi\u015Ftirmesine izin verin","Animation Effect to use for the LEDs":"","Calculated by using a hue color circle(value/255*360) If color = 255 display white":"","Brightness of the LEDs":"","1-60 is in seconds calculated 61-120 is in minutes calculated by(value-60) Example a value of 65 would be 65-60 = 5 minutes - 120-254 Is in hours calculated by(value-120) Example a value of 132 would be 132-120 would be 12 hours. - 255 Indefinitely":"","Individual LED to target.":"","Animation Effect to use for the LED":"","Brightness of the LED":"","1-60 is in seconds calculated 61-120 is in minutes calculated by(value-60) Example a value of 65 would be 65-60 = 5 minutes - 120-254 Is in hours calculated by(value-120) Example a value of 132 would be 132-120 would be 12 hours. - 255 Indefinitely":"","This changes the speed that the light dims up when controlled from the hub. A setting of 0 turns the light immediately on. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 25 (2.5s)":"","This changes the speed that the light dims up when controlled at the switch. A setting of 0 turns the light immediately on. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpRemote setting.":"","This changes the speed that the light turns on when controlled from the hub. A setting of 0 turns the light immediately on. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpRemote setting.":"","This changes the speed that the light turns on when controlled at the switch. A setting of 0 turns the light immediately on. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpRemote setting.":"","This changes the speed that the light dims down when controlled from the hub. A setting of 0 turns the light immediately off. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpRemote setting.":"","This changes the speed that the light dims down when controlled at the switch. A setting of 0 turns the light immediately off. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpLocal setting.":"","This changes the speed that the light turns off when controlled from the hub. A setting of 'instant' turns the light immediately off. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with rampRateOffToOnRemote setting.":"","This changes the speed that the light turns off when controlled at the switch. A setting of 'instant' turns the light immediately off. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with rampRateOffToOnLocal setting.":"","The minimum level that the dimmer allows the bulb to be dimmed to. Useful when the user has an LED bulb that does not turn on or flickers at a lower level.":"","The maximum level that the dimmer allows the bulb to be dimmed to.Useful when the user has an LED bulb that reaches its maximum level before the dimmer value of 99 or when the user wants to limit the maximum brightness.":"","Inverts the orientation of the switch. Useful when the switch is installed upside down. Essentially up becomes down and down becomes up.":"","Automatically turns the switch off after this many seconds. When the switch is turned on a timer is started. When the timer expires, the switch is turned off. 0 = Auto off is disabled.":"","Default level for the dimmer when it is turned on at the switch. A setting of 0 means that the switch will return to the level that it was on before it was turned off.":"","Default level for the dimmer when it is turned on from the hub. A setting of 0 means that the switch will return to the level that it was on before it was turned off.":"","The state the switch should return to when power is restored after power failure. 0 = off, 1-100 = level, 101 = previous.":"","Shows the level that the load is at for x number of seconds after the load is adjusted and then returns to the Default LED state. 0 = Stay Off, 1-10 = seconds, 11 = Stay On.":"","Power level change that will result in a new power report being sent. The value is a percentage of the previous report.0 = disabled, 1-32767 = 0.1W-3276.7W.":"","Time period between consecutive power & energy reports being sent (in seconds). The timer is reset after each report is sent.":"","Energy reports Energy level change which will result in sending a new energy report.0 = disabled, 1-32767 = 0.01kWh-327.67kWh. Default setting: 10 (0.1 kWh)":"","Set the power type for the device.":"","Set the switch configuration.":"","This will set the button press delay. 0 = no delay (Disables Button Press Events), 1 = 100ms, 2 = 200ms, 3 = 300ms, etc. up to 900ms. Default = 500ms.":"","For use with Smart Bulbs that need constant power and are controlled via commands rather than power.":"","Set the color of the LED Indicator when the load is on.":"","Set the color of the LED Indicator when the load is off.":"","Set the intensity of the LED Indicator when the load is on.":"","Set the intensity of the LED Indicator when the load is off.":"","Ability to control switch from the wall.":"","Ability to control switch from the hub.":"","Use device as a Dimmer or an On/Off switch.":"","When the device is in On/Off mode, use full LED bar or just one LED.":"","Display progress on LED bar during firmware update.":"","0-254:This is the color of the LED strip in a hex representation. 255:Synchronization with default all LED strip color parameter.":"","Intesity of LED strip when on. 101 = Syncronized with default all LED strip intensity parameter.":"","Intesity of LED strip when off. 101 = Syncronized with default all LED strip intensity parameter.":"","Result of a double tap on the up button.":"","Temperature calibration":"S\u0131cakl\u0131k Kalibrasyonu","Humidity calibration":"Nem kalibrasyonu","Current fan speed":"Mevcut fan h\u0131z\u0131","Measured Hcho value":"Measured HCHO value","Air quality index":"Hava Kalitesi Endeksi","Measured PM10 (particulate matter) concentration":"Measured PM\u2081\u2080 (particulate matter) concentration","SOS alarm":"SOS alarm\u0131","Remaining battery 2 in %":"","Illuminance calibration in lux":"","Temperature calibration (-2.0...2.0)":"","Enable reporting":"","Control mode":"","External switch type":"","External switch status":"","Load detection mode":"","Load type":"","Load dimmable":"","Power supply mode":"","Current state":"Mevcut durum","Enable or disable sound":"Sesi etkinle\u015Ftirin veya devre d\u0131\u015F\u0131 b\u0131rak\u0131n","Enable LEDs feedback":"LED'lerin geri bildirimini etkinle\u015Ftirin","Critical (LED3) CO2 level":"Kritik (LED3) CO2 seviyesi","Adjust temperature":"S\u0131cakl\u0131\u011F\u0131 ayarlay\u0131n","Adjust humidity":"Nemi ayarlay\u0131n","Adjust pressure":"Bas\u0131nc\u0131 ayarlay\u0131n","Current radiation level":"Mevcut radyasyon seviyesi","Enable LED feedback":"LED geri bildirimini etkinle\u015Ftirin","Enable buzzer feedback":"Buzzer geri bildirimini etkinle\u015Ftirin","Critical radiation level":"Kritik radyasyon seviyesi","Temperature of the CPU":"CPU s\u0131cakl\u0131\u011F\u0131","Pulses per kwh. Default 1000 imp/kWh. Range 0 to 65535":"Pulses per kWh. Default 1000 imp/kWh. Range 0 to 65535","Duration of Siren":"Siren s\xFCresi","Indicates if the card is inserted (= true) or not (= false)":"","Allow Master PIN Unlock":"Master PIN Kilit a\xE7mas\u0131na izin ver","Allow RFID to Unlock":"RFID'nin kilidini a\xE7mas\u0131na izin verin","Allow Auto Re-Lock":"Otomatik yeniden kilitlemeye izin ver","Current temperature measured on the external sensor (floor)":"","The difference between the temperature at which the thermostat switches off, and the temperature at which it switches on again.":"","Max guarding temperature":"","Prevent changes. `false` = run normally. `true` = prevent from making changes.":"","Enables the LED when the light is off":"","Brightness of this backlight LED":"","Enable or disable the blue backlight LED":""},OAt={undefined:"tan\u0131ms\u0131z",state:"Durum",brightness:"Parlakl\u0131k",color_temp:"Renk S\u0131cakl\u0131\u011F\u0131",color_temp_startup:"Colour Temp Startup",color_xy:"Renk xy",effect:"Etki",linkquality:"Ba\u011Flant\u0131 kalitesi",system_mode:"Sistem Modu",position:"Pozisyon",options:"Se\xE7enekler",motor_speed:"Motor H\u0131z\u0131",motor_working_mode:"",percent_state:"",mode:"Mod",motor_direction:"Motor Y\xF6n\xFC",border:"",battery:"Pil",action:"Aksiyon",power_on_behavior:"Power On Behaviour",battery_low:"D\xFC\u015F\xFCk Pil",color_hs:"Colour Hue/Saturation",lock_state:"Kilit Durumu",pin_code:"Pin kodu",user_type:"Kullan\u0131c\u0131 Tipi",action_source_name:"",action_source_user:"",voltage:"Gerilim",click_mode:"T\u0131klama Modu",action_rotation_angle:"Aksiyon D\xF6n\xFC\u015F A\xE7\u0131s\u0131",action_rotation_angle_speed:"Aksiyon D\xF6n\xFC\u015F A\xE7\u0131s\u0131 H\u0131z\u0131",action_rotation_percent:"Aksiyon Rotasyonu Y\xFCzde",action_rotation_percent_speed:"Aksiyon D\xF6nd\xFCrme Y\xFCzde H\u0131z\u0131",action_rotation_time:"Aksiyon D\xF6n\xFC\u015F S\xFCresi",power:"G\xFC\xE7",energy:"Enerji",temperature:"S\u0131cakl\u0131k",current:"Ak\u0131m",led_disabled_night:"LED Disabled Night",button_lock:"D\xFC\u011Fme Kilidi",contact:"\u0130leti\u015Fim",button_switch_mode:"D\xFC\u011Fme Anahtar\u0131 Modu",illuminance:"Ayd\u0131nl\u0131k",flip_indicator_light:"",humidity:"Nem",theme:"Tema",beep_volume:"Bip Sesi",lcd_brightness:"LCD Parlakl\u0131\u011F\u0131",font_size:"Yaz\u0131 Boyutu",lcd_auto_brightness_enabled:"LCD Auto Brightness Enabled",homepage:"Ana sayfa",standby_lcd_brightness:"Standby LCD Brightness",available_switches:"Mevcut Anahtarlar",switch_type:"Anahtar T\xFCr\xFC",device_temperature:"Cihaz S\u0131cakl\u0131\u011F\u0131",power_outage_count:"",charging_status:"",motor_state:"",running:"",strength:"Kuvvet",sensitivity:"Duyarl\u0131l\u0131k",angle_x:"X A\xE7\u0131s\u0131",angle_y:"Y A\xE7\u0131s\u0131",angle_z:"Z A\xE7\u0131s\u0131",smoke:"Duman",smoke_density_dbm:"",selftest:"Kendi kendini test",mute_buzzer:"",mute:"sessiz",heartbeat_indicator:"",linkage_alarm:"",gas:"Gaz",gas_density:"Gaz Yo\u011Funlu\u011Fu",gas_sensitivity:"",tamper:"Kurcalanm\u0131\u015F",auto_off:"Otomatik Kapal\u0131",action_angle:"Aksiyon A\xE7\u0131s\u0131",action_from_side:"Yandan Aksiyon",action_side:"Aksiyon Taraf\u0131",water_leak:"Su S\u0131z\u0131nt\u0131s\u0131",presence_event:"",monitoring_mode:"",approach_distance:"",motion_sensitivity:"Hareket Hassasiyeti",reset_nopresence_status:"",occupancy:"Dolgunluk",detection_interval:"",pressure:"Bas\u0131n\xE7",dimmer_mode:"Dimmer Modu",warning:"Uyar\u0131",duration:"S\xFCre",ac_connected:"",volume:"Ses",test_alarm:"",test_alarm_result:"",battery_level:"",fault_alarm:"",silence_siren:"",action_code:"Aksiyon Kodu",action_transaction:"Aksiyon \u0130\u015Flemi",action_zone:"Aksiyon B\xF6lgesi",tilt:"E\u011Fim",current_level_startup:"Mevcut Seviye Ba\u015Flang\u0131\xE7",ballast_physical_minimum_level:"Balast fiziksel minimum seviye",ballast_physical_maximum_level:"Balast fiziksel maksimum seviye",ballast_minimum_level:"Balast minimum seviye",ballast_maximum_level:"Balast maksimum seviyesi",report_interval:"",temperature_unit_convert:"",temperature_alarm:"S\u0131cakl\u0131k Alarm\u0131",humidity_alarm:"Nem Alarm\u0131",max_humidity:"",min_humidity:"",target_distance:"",minimum_range:"",maximum_range:"",detection_delay:"",fading_time:"",self_test:"",brightness_state:"",action_step_size:"",action_transition_time:"",action_rate:"",child_lock:"\xC7o\xE7uk Kilidi",current_average:"Mevcut ortalama",energy_consumed:"Enerji T\xFCketilen",clear_device_data:"Cihaz Verilerini Temizle",motion_speed:"Hareket H\u0131z\u0131",motion_direction:"Hareket Y\xF6n\xFC",tumble_switch:"",fall_sensitivity:"",tumble_alarm_time:"",fall_down_status:"",static_dwell_alarm:"",led_status:"LED Status",luminance_level:"Parlakl\u0131k Seviyesi",alarm_temperature_max:"Alarm S\u0131cakl\u0131\u011F\u0131 Maksimum",alarm_temperature_min:"Alarm S\u0131cakl\u0131\u011F\u0131 Minimum",alarm_humidity_max:"Alarm Nem Maksimum",alarm_humidity_min:"Alarm Nem Minimum",alarm_humidity:"Alarm Nemi",alarm_temperature:"Alarm S\u0131cakl\u0131\u011F\u0131",trigger:"",garage_door_contact:"",indicator_mode:"",current_heating_setpoint:"Mevcut Is\u0131tma Ayar Noktas\u0131",heating:"Is\u0131tma",programming_mode:"Programlama Modu",monday_schedule:"Pazartesi Program\u0131",tuesday_schedule:"Sal\u0131 Program\u0131",wednesday_schedule:"\xC7ar\u015Famba Program\u0131",thursday_schedule:"Per\u015Fembe Program\u0131",friday_schedule:"Cuma Program\u0131",saturday_schedule:"Cumartesi Program\u0131",sunday_schedule:"Pazar Program\u0131",boost_heating:"Is\u0131tmay\u0131 Artt\u0131r",boost_heating_countdown:"Is\u0131tma Geri Say\u0131m\u0131n\u0131 Artt\u0131r",away_mode:"D\u0131\u015Far\u0131da Modu",comfort_temperature:"Konfor S\u0131cakl\u0131\u011F\u0131",eco_temperature:"Eko S\u0131cakl\u0131\u011F\u0131",holiday_temperature:"Tatil S\u0131cakl\u0131\u011F\u0131",holiday_start_stop:"",schedule:"",schedule_monday:"Pazartesi Program\u0131",schedule_tuesday:"Sal\u0131 Program\u0131",schedule_wednesday:"\xC7ar\u015Famba program\u0131",schedule_thursday:"Per\u015Fembe Program\u0131",schedule_friday:"Cuma Program\u0131",schedule_saturday:"Cumartesi Program\u0131",schedule_sunday:"Pazarg\xFCn\xFC Program\u0131",online:"\xC7evrimi\xE7i",error_status:"Hata Durumu",away_preset_days:"D\u0131\u015Far\u0131da Ayarlanm\u0131\u015F G\xFCnler",boost_time:"Zaman\u0131 Artt\u0131r",force:"Kuvvet",away_preset_temperature:"D\u0131\u015Far\u0131da Ayarlanm\u0131\u015F S\u0131cakl\u0131k",week:"Hafta",workdays_schedule:"\u0130\u015F G\xFCnleri Program\u0131",holidays_schedule:"Tatil Program\u0131",backlight_mode:"Arka I\u015F\u0131k Modu",calibration:"Kalibrasyon",calibration_time:"Kalibrasyon T\xFCresi",max_brightness:"",carbon_monoxide:"Karbonmonoksit",co:"",co2:"CO2",formaldehyd:"Formaldehit",pm25:"PM\u2082.\u2085",action_group:"",direction:"Y\xF6n",occupancy_level:"",noise:"g\xFCr\xFClt\xFC",noise_detected:"",noise_timeout:"",temperature_offset:"S\u0131cakl\u0131k Ofseti",occupancy_sensitivity:"",noise_detect_level:"",co2_autocalibration:"",co2_manual_calibration:"",th_heater:"",x_axis:"X Ekseni",y_axis:"Y Ekseni",z_axis:"Z Ekseni",beep:"Bip",white_brightness:"",led_intensity_on:"LED Intensity On",led_intensity_off:"LED Intensity Off",backlight_auto_dim:"Arka I\u015F\u0131k Otomatik Dim",door_state:"",power_factor:"",ac_frequency:"",status:"durum",people:"\u0130nsanlar",power_apparent:"",power_phase_a:"",power_phase_b:"",power_phase_c:"",energy_phase_a:"",energy_phase_b:"",energy_phase_c:"",voltage_phase_a:"",voltage_phase_ab:"",voltage_phase_bc:"",voltage_phase_ca:"",current_phase_a:"",current_phase_b:"Mevcut Faz B",current_phase_c:"Mevcut Faz C",zone_mode:"B\xF6lge Modu",calibrate_valve:"Kalibre Valfi",lift_duration:"",timer:"Zamanlay\u0131c\u0131",programming_operation_mode:"",radiator_covered:"",window_open_feature:"",day_of_week:"Haftan\u0131n G\xFCn\xFC",trigger_time:"Tetikleme S\xFCresi",algorithm_scale_factor:"Algoritma \xD6l\xE7ek Fakt\xF6r\xFC",preheat_status:"",adaptation_run_status:"",adaptation_run_settings:"",adaptation_run_control:"",regulation_setpoint_offset:"",led_indication:"LED Indication",action_duration:"",device_mode:"Cihaz Modu",ac_louver_position:"AC Panjur Pozisyonu",sound_volume:"Ses Seviyesi",temperature_sensitivity:"",led_enable:"LED Enable",power_type:"G\xFC\xE7 T\xFCr\xFC",temperature_min:"S\u0131cakl\u0131k Minimum",temperature_max:"S\u0131cakl\u0131k Maksimum",temperature_scale:"",melody:"Melodi",battpercentage:"",outdoor_temperature:"",button_vibration_level:"",floor_sensor_type:"",sensor:"Sens\xF6r",powerup_status:"",floor_sensor_calibration:"",dry_time:"",mode_after_dry:"",temperature_display:"",window_open_check:"",hysterersis:"",display_auto_off_enabled:"",alarm_airtemp_overvalue:"",backlight:"",do_not_disturb:"Rahats\u0131z Etmeyin",color_power_on_behavior:"Colour Power On Behaviour",eco_mode:"Eko modu",valve_state:"",boost_heating_countdown_time_set:"Is\u0131tma Geri Say\u0131m\u0131n\u0131 Artt\u0131rmay\u0131 Ayarla",indicate_light:"",fan_mode:"Fan modu",ADCO:"ADCO",BASE:"BASE",OPTARIF:"OPTARIF",ISOUSC:"ISOUSC",HCHC:"HCHC",HCHP:"HCHP",BBRHCJW:"BBRHCJW",BBRHPJW:"BBRHPJW",BBRHCJR:"BBRHCJR",BBRHPJR:"BBRHPJR",IINST:"IINST",IINST2:"IINST2",IINST3:"IINST3",IMAX:"IMAX",IMAX2:"IMAX2",IMAX3:"IMAX3",PMAX:"PMAX",PAPP:"PAPP",PTEC:"PTEC",DEMAIN:"DEMAIN",HHPHC:"HHPHC",PPOT:"PPOT",PEJP:"PEJP",ADPS:"ADPS",ADIR1:"ADIR1",ADIR2:"ADIR2",ADIR3:"ADIR3",LTARF:"LTARF",NTARF:"NTARF",VTIC:"VTIC",DATE:"G\xDCN",EASF07:"EASF07",EASF08:"EASF08",EASF09:"EASF09",EASF10:"EASF10",EASD01:"EASD01",EASD02:"EASD02",EASD03:"EASD03",EASD04:"EASD04",EAIT:"EAIT",ERQ1:"ERQ1",ERQ2:"ERQ2",ERQ3:"ERQ3",ERQ4:"ERQ4",URMS1:"URMS1",URMS2:"URMS2",URMS3:"URMS3",STGE:"STGE",PCOUP:"PCOUP",SINSTI:"SINSTI",SMAXIN:"SMAXIN","SMAXIN-1":"SMAXIN-1",CCASN:"CCASN","CCASN-1":"CCASN-1",CCAIN:"CCAIN","CCAIN-1":"CCAIN-1",UMOY1:"UMOY1",UMOY2:"UMOY2",UMOY3:"UMOY3",SINSTS2:"SINSTS2",SINSTS3:"SINSTS3",SMAXN2:"SMAXN2",SMAXN3:"SMAXN3","SMAXN-1":"SMAXN-1","SMAXN2-1":"SMAXN2-1","SMAXN3-1":"SMAXN3-1",MSG1:"MSG1",MSG2:"MSG2",PRM:"PRM",DPM1:"DPM1",FPM1:"FPM1",DPM2:"DPM2",FPM2:"FPM2",DPM3:"DPM3",FPM3:"FPM3",RELAIS:"RELAIS",NJOURF:"NJOURF","NJOURF+1":"NJOURF+1","PJOURF+1":"PJOURF+1",PPOINTE1:"PPOINTE1",eco2:"Eko 2",current_heating_setpoint_auto:"Mevcut Is\u0131tma Ayar Noktas\u0131 Otomatik",away_setting:"D\u0131\u015Far\u0131da Ayarlar\u0131",away_preset_year:"D\u0131\u015Far\u0131da Ayarlanm\u0131\u015F Y\u0131l",away_preset_month:"D\u0131\u015Far\u0131da Ayarlanm\u0131\u015F Ay",away_preset_day:"D\u0131\u015Far\u0131da Ayarlanm\u0131\u015F G\xFCn",away_preset_hour:"D\u0131\u015Far\u0131da Ayarlanm\u0131\u015F Saat",away_preset_minute:"D\u0131\u015Far\u0131da Ayarlanm\u0131\u015F Dakika",monday:"Pazartesi",monday_temp_1:"Pazartesi S\u0131cakl\u0131k 1",monday_hour_1:"Pazartesi Saat 1",monday_minute_1:"Pazartesi Dakika 1",monday_temp_2:"Pazartesi S\u0131cakl\u0131k 2",monday_hour_2:"Pazartesi Saat 2",monday_minute_2:"Pazartesi Dakika 2",monday_temp_3:"Pazartesi S\u0131cakl\u0131k 3",monday_hour_3:"Pazartesi Saat 3",monday_minute_3:"Pazartesi Dakika 3",monday_temp_4:"Pazartesi S\u0131cakl\u0131k 4",monday_hour_4:"Pazartesi Saat 4",monday_minute_4:"Pazartesi Dakika 4",monday_temp_5:"Pazartesi S\u0131cakl\u0131k 5",monday_hour_5:"Pazartesi Saat 5",monday_minute_5:"Pazartesi Dakika 5",monday_temp_6:"Pazartesi S\u0131cakl\u0131k 6",monday_hour_6:"Pazartesi Saat 6",monday_minute_6:"Pazartesi Dakika 6",monday_temp_7:"Pazartesi S\u0131cakl\u0131k 7",monday_hour_7:"Pazartesi Saat 7",monday_minute_7:"Pazartesi Dakika 7",monday_temp_8:"Pazartesi S\u0131cakl\u0131k 8",monday_hour_8:"Pazartesi Saat 8",monday_minute_8:"Pazartesi Dakika 8",monday_temp_9:"Pazartesi S\u0131cakl\u0131k 9",monday_hour_9:"Pazartesi Saat 9",monday_minute_9:"Pazartesi Dakika 9",tuesday:"Sal\u0131",tuesday_temp_1:"Sal\u0131 S\u0131cakl\u0131k 1",tuesday_hour_1:"Sal\u0131 Saat 1",tuesday_minute_1:"Sal\u0131 Dakika 1",tuesday_temp_2:"Sal\u0131 S\u0131cakl\u0131k 2",tuesday_hour_2:"Sal\u0131 Saat 2",tuesday_minute_2:"Sal\u0131 Dakika 2",tuesday_temp_3:"Sal\u0131 S\u0131cakl\u0131k 3",tuesday_hour_3:"Sal\u0131 Saat 3",tuesday_minute_3:"Sal\u0131 Dakika 3",tuesday_temp_4:"Sal\u0131 S\u0131cakl\u0131k 4",tuesday_hour_4:"Sal\u0131 Saat 4",tuesday_minute_4:"Sal\u0131 Dakika 4",tuesday_temp_5:"Sal\u0131 S\u0131cakl\u0131k 5",tuesday_hour_5:"Sal\u0131 Saat 5",tuesday_minute_5:"Sal\u0131 Dakika 5",tuesday_temp_6:"Sal\u0131 S\u0131cakl\u0131k 6",tuesday_hour_6:"Sal\u0131 Saat 6",tuesday_minute_6:"Sal\u0131 Dakika 6",tuesday_temp_7:"Sal\u0131 S\u0131cakl\u0131k 7",tuesday_hour_7:"Sal\u0131 Saat 7",tuesday_minute_7:"Sal\u0131 Dakika 7",tuesday_temp_8:"Sal\u0131 S\u0131cakl\u0131k 8",tuesday_hour_8:"Sal\u0131 Saat 8",tuesday_minute_8:"Sal\u0131 Dakika 8",tuesday_temp_9:"Sal\u0131 S\u0131cakl\u0131k 9",tuesday_hour_9:"Sal\u0131 Saat 9",tuesday_minute_9:"Sal\u0131 Dakika 9",wednesday:"\xC7ar\u015Famba",wednesday_temp_1:"\xC7ar\u015Famba S\u0131cakl\u0131k 1",wednesday_hour_1:"\xC7ar\u015Famba Saat 1",wednesday_minute_1:"\xC7ar\u015Famba Dakika 1",wednesday_temp_2:"\xC7ar\u015Famba S\u0131cakl\u0131k 2",wednesday_hour_2:"\xC7ar\u015Famba Saat 2",wednesday_minute_2:"\xC7ar\u015Famba Dakika 2",wednesday_temp_3:"\xC7ar\u015Famba S\u0131cakl\u0131k 3",wednesday_hour_3:"\xC7ar\u015Famba Saat 3",wednesday_minute_3:"\xC7ar\u015Famba Dakika 3",wednesday_temp_4:"\xC7ar\u015Famba S\u0131cakl\u0131k 4",wednesday_hour_4:"\xC7ar\u015Famba Saat 4",wednesday_minute_4:"\xC7ar\u015Famba Dakika 4",wednesday_temp_5:"\xC7ar\u015Famba S\u0131cakl\u0131k 5",wednesday_hour_5:"\xC7ar\u015Famba Saat 5",wednesday_minute_5:"\xC7ar\u015Famba Dakika 5",wednesday_temp_6:"\xC7ar\u015Famba S\u0131cakl\u0131k 6",wednesday_hour_6:"\xC7ar\u015Famba Saat 6",wednesday_minute_6:"\xC7ar\u015Famba Dakika 6",wednesday_temp_7:"\xC7ar\u015Famba S\u0131cakl\u0131k 7",wednesday_hour_7:"\xC7ar\u015Famba Saat 7",wednesday_minute_7:"\xC7ar\u015Famba Dakika 7",wednesday_temp_8:"\xC7ar\u015Famba S\u0131cakl\u0131k 8",wednesday_hour_8:"\xC7ar\u015Famba Saat 8",wednesday_minute_8:"\xC7ar\u015Famba Dakika 8",wednesday_temp_9:"\xC7ar\u015Famba S\u0131cakl\u0131k 9",wednesday_hour_9:"\xC7ar\u015Famba Saat 9",wednesday_minute_9:"\xC7ar\u015Famba Dakika 9",thursday:"Per\u015Fembe",thursday_temp_1:"Per\u015Fembe S\u0131cakl\u0131k 1",thursday_hour_1:"Per\u015Fembe Saat 1",thursday_minute_1:"Per\u015Fembe Dakika 1",thursday_temp_2:"Per\u015Fembe S\u0131cakl\u0131k 2",thursday_hour_2:"Per\u015Fembe Saat 2",thursday_minute_2:"Per\u015Fembe Dakika 2",thursday_temp_3:"Per\u015Fembe S\u0131cakl\u0131k 3",thursday_hour_3:"Per\u015Fembe Saat 3",thursday_minute_3:"Per\u015Fembe Dakika 3",thursday_temp_4:"Per\u015Fembe S\u0131cakl\u0131k 4",thursday_hour_4:"Per\u015Fembe Saat 4",thursday_minute_4:"Per\u015Fembe Dakika 4",thursday_temp_5:"Per\u015Fembe S\u0131cakl\u0131k 5",thursday_hour_5:"Per\u015Fembe Saat 5",thursday_minute_5:"Per\u015Fembe Dakika 5",thursday_temp_6:"Per\u015Fembe S\u0131cakl\u0131k 6",thursday_hour_6:"Per\u015Fembe Saat 6",thursday_minute_6:"Per\u015Fembe Dakika 6",thursday_temp_7:"Per\u015Fembe S\u0131cakl\u0131k 7",thursday_hour_7:"Per\u015Fembe Saat 7",thursday_minute_7:"Per\u015Fembe Dakika 7",thursday_temp_8:"Per\u015Fembe S\u0131cakl\u0131k 8",thursday_hour_8:"Per\u015Fembe Saat 8",thursday_minute_8:"Per\u015Fembe Dakika 8",thursday_temp_9:"Per\u015Fembe S\u0131cakl\u0131k 9",thursday_hour_9:"Per\u015Fembe Saat 9",thursday_minute_9:"Per\u015Fembe Dakika 9",friday:"Cuma",friday_temp_1:"Cuma S\u0131cakl\u0131k 1",friday_hour_1:"Cuma Saat 1",friday_minute_1:"Cuma Dakika 1",friday_temp_2:"Cuma S\u0131cakl\u0131k 2",friday_hour_2:"Cuma Saat 2",friday_minute_2:"Cuma Dakika 2",friday_temp_3:"Cuma S\u0131cakl\u0131k 3",friday_hour_3:"Cuma Saat 3",friday_minute_3:"Cuma Dakika 3",friday_temp_4:"Cuma S\u0131cakl\u0131k 4",friday_hour_4:"Cuma Saat 4",friday_minute_4:"Cuma Dakika 4",friday_temp_5:"Cuma S\u0131cakl\u0131k 5",friday_hour_5:"Cuma Saat 5",friday_minute_5:"Cuma Dakika 5",friday_temp_6:"Cuma S\u0131cakl\u0131k 6",friday_hour_6:"Cuma Saat 6",friday_minute_6:"Cuma Dakika 6",friday_temp_7:"Cuma S\u0131cakl\u0131k 7",friday_hour_7:"Cuma Saat 7",friday_minute_7:"Cuma Dakika 7",friday_temp_8:"Cuma S\u0131cakl\u0131k 8",friday_hour_8:"Cuma Saat 8",friday_minute_8:"Cuma Dakika 8",friday_temp_9:"Cuma S\u0131cakl\u0131k 9",friday_hour_9:"Cuma Saat 9",friday_minute_9:"Cuma Dakika 9",saturday:"Cumartesi",saturday_temp_1:"Cumartesi S\u0131cakl\u0131k 1",saturday_hour_1:"Cumartesi Saat 1",saturday_minute_1:"Cumartesi Dakika 1",saturday_temp_2:"Cumartesi S\u0131cakl\u0131k 2",saturday_hour_2:"Cumartesi Saat 2",saturday_minute_2:"Cumartesi Dakika 2",saturday_temp_3:"Cumartesi S\u0131cakl\u0131k 3",saturday_hour_3:"Cumartesi Saat 3",saturday_minute_3:"Cumartesi Dakika 3",saturday_temp_4:"Cumartesi S\u0131cakl\u0131k 4",saturday_hour_4:"Cumartesi Saat 4",saturday_minute_4:"Cumartesi Dakika 4",saturday_temp_5:"Cumartesi S\u0131cakl\u0131k 5",saturday_hour_5:"Cumartesi Saat 5",saturday_minute_5:"Cumartesi Dakika 5",saturday_temp_6:"Cumartesi S\u0131cakl\u0131k 6",saturday_hour_6:"Cumartesi Saat 6",saturday_minute_6:"Cumartesi Dakika 6",saturday_temp_7:"Cumartesi S\u0131cakl\u0131k 7",saturday_hour_7:"Cumartesi Saat 7",saturday_minute_7:"Cumartesi Dakika 7",saturday_temp_8:"Cumartesi S\u0131cakl\u0131k 8",saturday_hour_8:"Cumartesi Saat 8",saturday_minute_8:"Cumartesi Dakika 8",saturday_temp_9:"Cumartesi S\u0131cakl\u0131k 9",saturday_hour_9:"Cumartesi Saat 9",saturday_minute_9:"Cumartesi Dakika 9",sunday:"Pazar",sunday_temp_1:"Pazar S\u0131cakl\u0131k 1",sunday_hour_1:"Pazar Saati 1",sunday_minute_1:"Pazar Dakika 1",sunday_temp_2:"Pazar S\u0131cakl\u0131k 2",sunday_hour_2:"Pazar Saat 2",sunday_minute_2:"Pazar Dakika 2",sunday_temp_3:"Pazar S\u0131cakl\u0131k 3",sunday_hour_3:"Pazar Saati 3",sunday_minute_3:"Pazar Dakika 3",sunday_temp_4:"Pazar S\u0131cakl\u0131k 4",sunday_hour_4:"Pazar Saat 4",sunday_minute_4:"Pazar Dakika 4",sunday_temp_5:"Pazar S\u0131cakl\u0131k 5",sunday_hour_5:"Pazar Saati 5",sunday_minute_5:"Pazar Dakika 5",sunday_temp_6:"Pazar S\u0131cakl\u0131k 6",sunday_hour_6:"Pazar Saati 6",sunday_minute_6:"Pazar Dakika 6",sunday_temp_7:"Pazar S\u0131cakl\u0131k 7",sunday_hour_7:"Pazar Saat 7",sunday_minute_7:"Pazar Dakika 7",sunday_temp_8:"Pazar S\u0131cakl\u0131k 8",sunday_hour_8:"Pazar Saat 8",sunday_minute_8:"Pazar Dakika 8",sunday_temp_9:"Pazar S\u0131cakl\u0131k 9",sunday_hour_9:"Pazar Saati 9",sunday_minute_9:"Pazar Dakika 9",led_when_off:"",led_when_on:"LED When On",cable_outlet_mode:"",led_effect:"",color:"",individual_led_effect:"",led:"LED",dimmingSpeedUpRemote:"",dimmingSpeedUpLocal:"",rampRateOffToOnRemote:"",rampRateOffToOnLocal:"",dimmingSpeedDownRemote:"",dimmingSpeedDownLocal:"",rampRateOnToOffRemote:"",rampRateOnToOffLocal:"",minimumLevel:"",maximumLevel:"",invertSwitch:"",autoTimerOff:"",defaultLevelLocal:"",defaultLevelRemote:"",stateAfterPowerRestored:"",loadLevelIndicatorTimeout:"",activePowerReports:"",periodicPowerAndEnergyReports:"",activeEnergyReports:"",powerType:"",switchType:"",physicalOnOffDelay:"",smartBulbMode:"",ledColorWhenOn:"",ledColorWhenOff:"",ledIntensityWhenOn:"",ledIntensityWhenOff:"",localProtection:"",remoteProtection:"",outputMode:"",onOffLedMode:"",firmwareUpdateInProgressIndicator:"",defaultLed1ColorWhenOn:"",defaultLed1ColorWhenOff:"",defaultLed1IntensityWhenOn:"",defaultLed1IntensityWhenOff:"",defaultLed2ColorWhenOn:"",defaultLed2ColorWhenOff:"",defaultLed2IntensityWhenOn:"",defaultLed2IntensityWhenOff:"",defaultLed3ColorWhenOn:"",defaultLed3ColorWhenOff:"",defaultLed3IntensityWhenOn:"",defaultLed3IntensityWhenOff:"",defaultLed4ColorWhenOn:"",defaultLed4ColorWhenOff:"",defaultLed4IntensityWhenOn:"",defaultLed4IntensityWhenOff:"",defaultLed5ColorWhenOn:"",defaultLed5ColorWhenOff:"",defaultLed5IntensityWhenOn:"",defaultLed5IntensityWhenOff:"",defaultLed6ColorWhenOn:"",defaultLed6ColorWhenOff:"",defaultLed6IntensityWhenOn:"",defaultLed6IntensityWhenOff:"",defaultLed7ColorWhenOn:"",defaultLed7ColorWhenOff:"",defaultLed7IntensityWhenOn:"",defaultLed7IntensityWhenOff:"",doubleTapUpEvent:"",reporting_time:"Raporlama S\xFCresi",temperature_calibration:"S\u0131cakl\u0131k Kalibrasyonu",humidity_calibration:"Nem Kalibrasyonu",reporting_enable:"Raporlama Etkin",fan_speed:"Fan H\u0131z\u0131",air_quality:"Hava kalitesi",replace_filter:"Filtreyi De\u011Fi\u015Ftir",hcho:"HCHO",aqi:"AQI",pm10:"PM\u2081\u2080",battery_state:"Pil Durumu",threshold:"E\u015Fik",battery2:"",control_mode:"",switch_status:"",load_detection_mode:"",load_type:"",load_dimmable:"",power_supply_mode:"",trv_mode:"TRV modu",load:"Y\xFCk",regulator_mode:"Reg\xFClat\xF6r Modu",regulator_time:"Reg\xFClat\xF6r Zaman\u0131",floor_temp:"Zemin S\u0131cakl\u0131\u011F\u0131",sound:"Ses",led_feedback:"LED Feedback",threshold1:"E\u015Fik 1",threshold2:"E\u015Fik 2",pressure_offset:"Bas\u0131n\xE7 Ofseti",soil_moisture:"Toprak nemi",buzzer_feedback:"Buzzer Geri Bildirimi",alert_threshold:"Uyar\u0131 E\u015Fi\u011Fi",sensors_type:"Sens\xF6rlerin T\xFCr\xFC",sensors_count:"Sens\xF6rlerin Say\u0131s\u0131",switch_actions:"Aksiyonlar\u0131 De\u011Fi\u015Ftir",cpu_temperature:"CPU S\u0131cakl\u0131\u011F\u0131",current_summation:"Mevcut \xF6zet",reliability:"G\xFCvenilirlik",fault:"Ar\u0131za",card:"",lock_mode:"Kilit Modu",service_mode:"Servis Modu",led_state:"LED State",external_temperature:"",hysteresis:"",max_temperature_protection:"",backlight_led:""},MAt={add_to_group:"Gruba ekle",create_group:"Grup Yarat",new_group_id:"Yeni grup id",new_group_id_placeholder:"Gerekirse grup ID belirtin",new_group_name:"Yeni grup ad\u0131",new_group_name_placeholder:"\xF6rnek: benim_odam_lamba",remove_group:"Grubu kald\u0131r",group_id:"Grup ID",group_name:"Grup Ad\u0131",group_members:"Grup \xFCyeleri",group_scenes:"Grup sahneleri",rename_group:"Grubu yeniden adland\u0131r"},RAt={empty_logs_message:"G\xF6r\xFCnt\xFClenecek bir \u015Fey yok",filter_by_text:"Metne g\xF6re filtrele",show_only:"Sadece g\xF6ster"},LAt={help_router_description:"Mavi Router demektir",load:"Haritay\u0131 y\xFCkle"},PAt={all:"Hepsi",dashboard:"G\xF6sterge Paneli",devices:"Cihazlar",extensions:"Uzant\u0131lar",groups:"Gruplar",logs:"Kay\u0131tlar",map:"Harita",permit_join:"Kat\u0131l\u0131m \u0130zni",restart:"Tekrar ba\u015Flat",settings:"Ayarlar",touchlink:"Dokunmatik ba\u011Flant\u0131"},$At={check:"Yeni g\xFCncellemeleri kontrol edin",check_all:"Hepsini se\xE7",update:"Cihaz \xFCr\xFCn yaz\u0131l\u0131m\u0131n\u0131 g\xFCncelleyin"},zAt={about:"Hakk\u0131nda",advanced:"Geli\u015Fmi\u015F Ayarlar",availability:"Kullan\u0131labilirlik",blocklist:"Blok listesi",coordinator_revision:"Koordinat\xF6r revizyonu",coordinator_type:"Koordinat\xF6r t\xFCr\xFC",donate:"Ba\u011F\u0131\u015F",download_state:"\u0130ndirme Durumu",experimental:"Deneysel",external_converters:"Harici d\xF6n\xFC\u015Ft\xFCr\xFCc\xFCler",frontend:"\xD6ny\xFCz",frontend_version:"\xD6ny\xFCz versiyonu",main:"Ana Ayarlar",ota:"OTA g\xFCncellemeleri",raw:"Ham",restart_zigbee2mqtt:"Zigbee2MQTT'yi yeniden ba\u015Flat\u0131n",serial:"Seri",settings:"Ayarlar",tools:"Ara\xE7lar",zigbee2mqtt_version:"Zigbee2mqtt versiyonu",translate:"\xC7eviri",stats:"\u0130statistikler",coordinator_ieee_address:"Koordinat\xF6r IEEE Adresi"},NAt={rescan:"Tekrar tara",scan:"Tara"},FAt={clear:"Temiz",closed:"Kapand\u0131",false:"Yanl\u0131\u015F",not_supported:"Desteklenmiyor",occupied:"Me\u015Fgul",open:"A\xE7\u0131k",supported:"Destekleniyor",true:"Do\u011Fru",empty_string:'Bo\u015F dize ("")',leaking:"S\u0131z\u0131nt\u0131",null:"Bo\u015F",Clear:"Temiz",Closed:"Kapal\u0131",Occupied:"Me\u015Fgul",Open:"A\xE7\u0131k"},BAt={actions:"Aksiyonlar",attribute:"\xD6znitelik",battery:"Pil",cluster:"K\xFCme",dc_source:"DC kayna\u011F\u0131",description:"Tan\u0131m",device_type:"Cihaz tipi",force_remove:"Zorla ay\u0131rma",friendly_name:"Kolay ad",ieee_address:"IEEE Adresi",last_seen:"Son G\xF6r\xFClme",manufacturer:"\xDCretici firma",network_address:"A\u011F adresi",none:"Hi\xE7biri",pic:"Resim",power:"G\xFC\xE7",power_level:"g\xFC\xE7 seviyesi",remove_device:"Cihaz\u0131 Kald\u0131r",rename_device:"Cihaz\u0131 yeniden adland\u0131r",select_attribute:"\xD6zellik se\xE7in",select_cluster:"K\xFCme se\xE7in",support_status:"Destek Durumu",unsupported:"Desteklenmeyen",updating_firmware:"\xDCr\xFCn yaz\u0131l\u0131m\u0131n\u0131 g\xFCncelleme",zigbee_manufacturer:"Zigbee \xDCreticisi",zigbee_model:"Zigbee Modeli",device:"Cihaz",channel:"Kanal",possible:"M\xFCmk\xFCn",available:"Mevcut"},WAt={store:"Ma\u011Faza",remove:"Kald\u0131r",remove_all:"Hepsini Kald\u0131r",add:"Ekle",select_scene:"Sahneyi Se\xE7in"},HAt={byType:"Cihaz tipine g\xF6re",byPowerSource:"G\xFC\xE7 kayna\u011F\u0131na g\xF6re",byVendor:"\xDCreticiye g\xF6re",byModel:"Modeline g\xF6re",total:"Toplam",Router:"Y\xF6nlendirici"},jAt={avaliability:"Kullan\u0131labilirlik",offline:"\xC7evrimd\u0131\u015F\u0131",online:"\xC7evrimi\xE7i"},UAt={"Allow new devices to join (re-applied at restart)":"Yeni cihazlar\u0131n kat\u0131lmas\u0131na izin verin (yeniden ba\u015Flatma s\u0131ras\u0131nda yeniden uyguland\u0131)","Adapter type, not needed unless you are experiencing problems":"Adapt\xF6r t\xFCr\xFC, sorun ya\u015Famad\u0131\u011F\u0131n\u0131z s\xFCrece gerekli de\u011Fildir","Baud rate speed for serial port, this can be anything firmware support but default is 115200 for Z-Stack and EZSP, 38400 for Deconz, however note that some EZSP firmware need 57600":"Seri ba\u011Flant\u0131 noktas\u0131 i\xE7in baud h\u0131z\u0131 h\u0131z\u0131, bu herhangi bir \xFCr\xFCn yaz\u0131l\u0131m\u0131 deste\u011Fi olabilir, ancak Z-Stack ve EZSP i\xE7in varsay\u0131lan 115200, Deconz i\xE7in 38400'd\xFCr, ancak baz\u0131 EZSP \xFCr\xFCn yaz\u0131l\u0131m\u0131n\u0131n 57600'e ihtiya\xE7 duydu\u011Funu unutmay\u0131n","Block devices from the network (by ieeeAddr)":"A\u011Fdaki cihazlar\u0131 bloke edin (IEEADRDR taraf\u0131ndan)","Allow only certain devices to join the network (by ieeeAddr). Note that all devices not on the passlist will be removed from the network!":"Sadece belirli cihazlar\u0131n a\u011Fa kat\u0131lmas\u0131na izin verin (IEEADRDR taraf\u0131ndan). Ge\xE7i\u015F Listesinde olmayan t\xFCm cihazlar\u0131n a\u011Fdan kald\u0131r\u0131laca\u011F\u0131n\u0131 unutmay\u0131n!","Location of override OTA index file":" Location of override OTA index file ","Payload to be used for device availabilty and bridge/state topics. true = text, false = JSON":"","Adapter concurrency (e.g. 2 for CC2531 or 16 for CC26X2R1) (default: null, uses recommended value)":"Adapt\xF6r e\u015Fzamanl\u0131l\u0131\u011F\u0131 (\xF6rn. CC2531 i\xE7in 2 veya CC26X2R1 i\xE7in 16) (varsay\u0131lan: null, \xF6nerilen de\u011Feri kullan\u0131r)","Adapter delay":"Adapt\xF6r gecikmesi","Add a last_seen attribute to MQTT messages, contains date/time of last Zigbee message":"MQTT mesajlar\u0131na Last_Seen \xF6zniteli\u011Fi ekleyin, son zigbee mesaj\u0131n\u0131n tarih/saatini i\xE7erir","Add an elapsed attribute to MQTT messages, contains milliseconds since the previous msg":"MQTT mesajlar\u0131na ge\xE7en bir \xF6znitelik ekleyin, \xF6nceki MSG'den bu yana milisaniye i\xE7erir","Name of the device in Home Assistant":""},VAt={"Home Assistant (simple)":"Home Assistant (basit)","Home Assistant (advanced)":"Home Assistant (geli\u015Fmi\u015F)","Availability (simple)":"","Availability (advanced)":"Kullan\u0131labilirlik (Geli\u015Fmi\u015F)",Active:"Aktif",Timeout:"Zaman a\u015F\u0131m\u0131",Passive:"Pasif",Availability:"Kullan\u0131labilirlik","Base topic":"Temel Konu","MQTT server":"MQTT sunucusu","Certificate authority":"Sertifika yetkilisi","SSL/TLS key":"SSL/TLS anahtar\u0131","SSL/TLS certificate":"SSL/TLS Sertifikas\u0131",Password:"Parola",Serial:"Seri","Disable led":"LED'i devre d\u0131\u015F\u0131 b\u0131rak",Adapter:"Adapt\xF6r",Baudrate:"Bandh\u0131z\u0131",Blocklist:"Blok listesi",Networkmap:"A\u011F Haritas\u0131","OTA updates":"OTA g\xFCncellemeleri","OTA index override file name":"","Frontend (simple)":"\xD6ny\xFCz (basit)","Frontend (advanced)":"\xD6ny\xFCz (geli\u015Fmi\u015F)","Bind host":"Ba\u011Fl\u0131 ana bilgisayar","Auth token":"Kimlik Do\u011Frulamas\u0131 Anahtar\u0131",Frontend:"\xD6ny\xFCz","Options that are applied to all devices":"",Advanced:"Geli\u015Fmi\u015F Ayarlar","Legacy availability payload":"",Protocol:"Protokol",Path:"Yol",Type:"Tip","ZigBee channel":"Zigbee kanal\u0131","Adapter concurrency":"Adapt\xF6r e\u015Fzamanl\u0131l\u0131\u011F\u0131","Adapter delay":"Adapt\xF6r gecikmesi","Cache state":"\xD6nbellek Durumu","Last seen":"Son G\xF6r\xFClme",Elapsed:"Ge\xE7mi\u015F","Network key(string)":"A\u011F Anahtar\u0131 (Dize)","Network key(array)":"A\u011F Anahtar\u0131 (Dizi)","Network key":"A\u011F anahtar\u0131","Transmit power":"\u0130letim g\xFCc\xFC",Reporting:"Raporlama","Baudrate (deprecated)":"","RTS / CTS (deprecated)":"","IKEA TRADFRI OTA use test url (deprecated)":"","Experimental (deprecated)":"Deneysel (kullan\u0131mdan de\u011Fil)","Ban (deprecated, use blocklist)":"Yasak (kullan\u0131mdan kald\u0131r\u0131lm\u0131\u015F, blok listesini kullan\u0131n)","Friendly name":"Kolay ad",Optimistic:"\u0130yimser",Icon:"Simge","Home Assistant":"","Home Assistant name":""};var GAt={common:CAt,devicePage:EAt,exposes:IAt,extensions:DAt,featureDescriptions:xAt,featureNames:OAt,groups:MAt,logs:RAt,map:LAt,navbar:PAt,ota:$At,settings:zAt,touchlink:NAt,values:FAt,zigbee:BAt,scene:WAt,stats:HAt,avaliability:jAt,settingsSchemaDescriptions:UAt,settingsSchemaTitles:VAt},aY={};Object.defineProperty(aY,"__esModule",{value:!0});function qAt(e,t){return[["fa un moment","d'aqu\xED un moment"],["fa %s segons","d'aqu\xED %s segons"],["fa 1 minut","d'aqu\xED 1 minut"],["fa %s minuts","d'aqu\xED %s minuts"],["fa 1 hora","d'aqu\xED 1 hora"],["fa %s hores","d'aqu\xED %s hores"],["fa 1 dia","d'aqu\xED 1 dia"],["fa %s dies","d'aqu\xED %s dies"],["fa 1 setmana","d'aqu\xED 1 setmana"],["fa %s setmanes","d'aqu\xED %s setmanes"],["fa 1 mes","d'aqu\xED 1 mes"],["fa %s mesos","d'aqu\xED %s mesos"],["fa 1 any","d'aqu\xED 1 any"],["fa %s anys","d'aqu\xED %s anys"]][t]}var KAt=aY.default=qAt,iY={};Object.defineProperty(iY,"__esModule",{value:!0});var QAt=[["w tej chwili","za chwil\u0119"],["%s sekund temu","za %s sekund"],["1 minut\u0119 temu","za 1 minut\u0119"],["%s minut temu","za %s minut"],["1 godzin\u0119 temu","za 1 godzin\u0119"],["%s godzin temu","za %s godzin"],["1 dzie\u0144 temu","za 1 dzie\u0144"],["%s dni temu","za %s dni"],["1 tydzie\u0144 temu","za 1 tydzie\u0144"],["%s tygodni temu","za %s tygodni"],["1 miesi\u0105c temu","za 1 miesi\u0105c"],["%s miesi\u0119cy temu","za %s miesi\u0119cy"],["1 rok temu","za 1 rok"],["%s lat temu","za %s lat"],["%s sekundy temu","za %s sekundy"],["%s minuty temu","za %s minuty"],["%s godziny temu","za %s godziny"],["%s dni temu","za %s dni"],["%s tygodnie temu","za %s tygodnie"],["%s miesi\u0105ce temu","za %s miesi\u0105ce"],["%s lata temu","za %s lata"]];function ZAt(e,t){return QAt[t&1?e%10>4||e%10<2||~~(e/10)%10===1?t:++t/2+13:t]}var YAt=iY.default=ZAt,oY={};Object.defineProperty(oY,"__esModule",{value:!0});function XAt(e,t){return[["\xE0 l'instant","dans un instant"],["il y a %s secondes","dans %s secondes"],["il y a 1 minute","dans 1 minute"],["il y a %s minutes","dans %s minutes"],["il y a 1 heure","dans 1 heure"],["il y a %s heures","dans %s heures"],["il y a 1 jour","dans 1 jour"],["il y a %s jours","dans %s jours"],["il y a 1 semaine","dans 1 semaine"],["il y a %s semaines","dans %s semaines"],["il y a 1 mois","dans 1 mois"],["il y a %s mois","dans %s mois"],["il y a 1 an","dans 1 an"],["il y a %s ans","dans %s ans"]][t]}var JAt=oY.default=XAt,sY={};Object.defineProperty(sY,"__esModule",{value:!0});function eTt(e,t){return[["gerade eben","vor einer Weile"],["vor %s Sekunden","in %s Sekunden"],["vor 1 Minute","in 1 Minute"],["vor %s Minuten","in %s Minuten"],["vor 1 Stunde","in 1 Stunde"],["vor %s Stunden","in %s Stunden"],["vor 1 Tag","in 1 Tag"],["vor %s Tagen","in %s Tagen"],["vor 1 Woche","in 1 Woche"],["vor %s Wochen","in %s Wochen"],["vor 1 Monat","in 1 Monat"],["vor %s Monaten","in %s Monaten"],["vor 1 Jahr","in 1 Jahr"],["vor %s Jahren","in %s Jahren"]][t]}var tTt=sY.default=eTt,lY={};Object.defineProperty(lY,"__esModule",{value:!0});function ku(e,t,r,n,a){var i=a%10,o=n;return a===1?o=e:i===1&&a>20?o=t:i>1&&i<5&&(a>20||a<10)&&(o=r),o}var aW=ku.bind(null,"\u0441\u0435\u043A\u0443\u043D\u0434\u0443","%s \u0441\u0435\u043A\u0443\u043D\u0434\u0443","%s \u0441\u0435\u043A\u0443\u043D\u0434\u044B","%s \u0441\u0435\u043A\u0443\u043D\u0434"),iW=ku.bind(null,"\u043C\u0438\u043D\u0443\u0442\u0443","%s \u043C\u0438\u043D\u0443\u0442\u0443","%s \u043C\u0438\u043D\u0443\u0442\u044B","%s \u043C\u0438\u043D\u0443\u0442"),oW=ku.bind(null,"\u0447\u0430\u0441","%s \u0447\u0430\u0441","%s \u0447\u0430\u0441\u0430","%s \u0447\u0430\u0441\u043E\u0432"),sW=ku.bind(null,"\u0434\u0435\u043D\u044C","%s \u0434\u0435\u043D\u044C","%s \u0434\u043D\u044F","%s \u0434\u043D\u0435\u0439"),lW=ku.bind(null,"\u043D\u0435\u0434\u0435\u043B\u044E","%s \u043D\u0435\u0434\u0435\u043B\u044E","%s \u043D\u0435\u0434\u0435\u043B\u0438","%s \u043D\u0435\u0434\u0435\u043B\u044C"),uW=ku.bind(null,"\u043C\u0435\u0441\u044F\u0446","%s \u043C\u0435\u0441\u044F\u0446","%s \u043C\u0435\u0441\u044F\u0446\u0430","%s \u043C\u0435\u0441\u044F\u0446\u0435\u0432"),dW=ku.bind(null,"\u0433\u043E\u0434","%s \u0433\u043E\u0434","%s \u0433\u043E\u0434\u0430","%s \u043B\u0435\u0442");function rTt(e,t){switch(t){case 0:return["\u0442\u043E\u043B\u044C\u043A\u043E \u0447\u0442\u043E","\u0447\u0435\u0440\u0435\u0437 \u043D\u0435\u0441\u043A\u043E\u043B\u044C\u043A\u043E \u0441\u0435\u043A\u0443\u043D\u0434"];case 1:return[aW(e)+" \u043D\u0430\u0437\u0430\u0434","\u0447\u0435\u0440\u0435\u0437 "+aW(e)];case 2:case 3:return[iW(e)+" \u043D\u0430\u0437\u0430\u0434","\u0447\u0435\u0440\u0435\u0437 "+iW(e)];case 4:case 5:return[oW(e)+" \u043D\u0430\u0437\u0430\u0434","\u0447\u0435\u0440\u0435\u0437 "+oW(e)];case 6:return["\u0432\u0447\u0435\u0440\u0430","\u0437\u0430\u0432\u0442\u0440\u0430"];case 7:return[sW(e)+" \u043D\u0430\u0437\u0430\u0434","\u0447\u0435\u0440\u0435\u0437 "+sW(e)];case 8:case 9:return[lW(e)+" \u043D\u0430\u0437\u0430\u0434","\u0447\u0435\u0440\u0435\u0437 "+lW(e)];case 10:case 11:return[uW(e)+" \u043D\u0430\u0437\u0430\u0434","\u0447\u0435\u0440\u0435\u0437 "+uW(e)];case 12:case 13:return[dW(e)+" \u043D\u0430\u0437\u0430\u0434","\u0447\u0435\u0440\u0435\u0437 "+dW(e)];default:return["",""]}}var nTt=lY.default=rTt,uY={};Object.defineProperty(uY,"__esModule",{value:!0});function aTt(e,t){return[["agora mesmo","agora"],["h\xE1 %s segundos","em %s segundos"],["h\xE1 um minuto","em um minuto"],["h\xE1 %s minutos","em %s minutos"],["h\xE1 uma hora","em uma hora"],["h\xE1 %s horas","em %s horas"],["h\xE1 um dia","em um dia"],["h\xE1 %s dias","em %s dias"],["h\xE1 uma semana","em uma semana"],["h\xE1 %s semanas","em %s semanas"],["h\xE1 um m\xEAs","em um m\xEAs"],["h\xE1 %s meses","em %s meses"],["h\xE1 um ano","em um ano"],["h\xE1 %s anos","em %s anos"]][t]}var iTt=uY.default=aTt,dY={};Object.defineProperty(dY,"__esModule",{value:!0});function oTt(e,t){return[["justo ahora","en un rato"],["hace %s segundos","en %s segundos"],["hace 1 minuto","en 1 minuto"],["hace %s minutos","en %s minutos"],["hace 1 hora","en 1 hora"],["hace %s horas","en %s horas"],["hace 1 d\xEDa","en 1 d\xEDa"],["hace %s d\xEDas","en %s d\xEDas"],["hace 1 semana","en 1 semana"],["hace %s semanas","en %s semanas"],["hace 1 mes","en 1 mes"],["hace %s meses","en %s meses"],["hace 1 a\xF1o","en 1 a\xF1o"],["hace %s a\xF1os","en %s a\xF1os"]][t]}var sTt=dY.default=oTt,cY={};Object.defineProperty(cY,"__esModule",{value:!0});function Cu(e,t,r,n,a){var i=a%10,o=n;return a===1?o=e:i===1&&a>20?o=t:i>1&&i<5&&(a>20||a<10)&&(o=r),o}var cW=Cu.bind(null,"\u0441\u0435\u043A\u0443\u043D\u0434\u0443","%s \u0441\u0435\u043A\u0443\u043D\u0434\u0443","%s \u0441\u0435\u043A\u0443\u043D\u0434\u0438","%s \u0441\u0435\u043A\u0443\u043D\u0434"),hW=Cu.bind(null,"\u0445\u0432\u0438\u043B\u0438\u043D\u0443","%s \u0445\u0432\u0438\u043B\u0438\u043D\u0443","%s \u0445\u0432\u0438\u043B\u0438\u043D\u0438","%s \u0445\u0432\u0438\u043B\u0438\u043D"),mW=Cu.bind(null,"\u0433\u043E\u0434\u0438\u043D\u0443","%s \u0433\u043E\u0434\u0438\u043D\u0443","%s \u0433\u043E\u0434\u0438\u043D\u0438","%s \u0433\u043E\u0434\u0438\u043D"),fW=Cu.bind(null,"\u0434\u0435\u043D\u044C","%s \u0434\u0435\u043D\u044C","%s \u0434\u043D\u0456","%s \u0434\u043D\u0456\u0432"),pW=Cu.bind(null,"\u0442\u0438\u0436\u0434\u0435\u043D\u044C","%s \u0442\u0438\u0436\u0434\u0435\u043D\u044C","%s \u0442\u0438\u0436\u0434\u043D\u0456","%s \u0442\u0438\u0436\u0434\u043D\u0456\u0432"),gW=Cu.bind(null,"\u043C\u0456\u0441\u044F\u0446\u044C","%s \u043C\u0456\u0441\u044F\u0446\u044C","%s \u043C\u0456\u0441\u044F\u0446\u0456","%s \u043C\u0456\u0441\u044F\u0446\u0456\u0432"),vW=Cu.bind(null,"\u0440\u0456\u043A","%s \u0440\u0456\u043A","%s \u0440\u043E\u043A\u0438","%s \u0440\u043E\u043A\u0456\u0432");function lTt(e,t){switch(t){case 0:return["\u0449\u043E\u0439\u043D\u043E","\u0447\u0435\u0440\u0435\u0437 \u0434\u0435\u043A\u0456\u043B\u044C\u043A\u0430 \u0441\u0435\u043A\u0443\u043D\u0434"];case 1:return[cW(e)+" \u0442\u043E\u043C\u0443","\u0447\u0435\u0440\u0435\u0437 "+cW(e)];case 2:case 3:return[hW(e)+" \u0442\u043E\u043C\u0443","\u0447\u0435\u0440\u0435\u0437 "+hW(e)];case 4:case 5:return[mW(e)+" \u0442\u043E\u043C\u0443","\u0447\u0435\u0440\u0435\u0437 "+mW(e)];case 6:case 7:return[fW(e)+" \u0442\u043E\u043C\u0443","\u0447\u0435\u0440\u0435\u0437 "+fW(e)];case 8:case 9:return[pW(e)+" \u0442\u043E\u043C\u0443","\u0447\u0435\u0440\u0435\u0437 "+pW(e)];case 10:case 11:return[gW(e)+" \u0442\u043E\u043C\u0443","\u0447\u0435\u0440\u0435\u0437 "+gW(e)];case 12:case 13:return[vW(e)+" \u0442\u043E\u043C\u0443","\u0447\u0435\u0440\u0435\u0437 "+vW(e)];default:return["",""]}}var uTt=cY.default=lTt,hY={};Object.defineProperty(hY,"__esModule",{value:!0});var dTt=["\u79D2","\u5206\u949F","\u5C0F\u65F6","\u5929","\u5468","\u4E2A\u6708","\u5E74"];function cTt(e,t){if(t===0)return["\u521A\u521A","\u7247\u523B\u540E"];var r=dTt[~~(t/2)];return[e+" "+r+"\u524D",e+" "+r+"\u540E"]}var hTt=hY.default=cTt,mY={};Object.defineProperty(mY,"__esModule",{value:!0});function mTt(e,t){return[["recent","binnenkort"],["%s seconden geleden","binnen %s seconden"],["1 minuut geleden","binnen 1 minuut"],["%s minuten geleden","binnen %s minuten"],["1 uur geleden","binnen 1 uur"],["%s uur geleden","binnen %s uur"],["1 dag geleden","binnen 1 dag"],["%s dagen geleden","binnen %s dagen"],["1 week geleden","binnen 1 week"],["%s weken geleden","binnen %s weken"],["1 maand geleden","binnen 1 maand"],["%s maanden geleden","binnen %s maanden"],["1 jaar geleden","binnen 1 jaar"],["%s jaar geleden","binnen %s jaar"]][t]}var fTt=mY.default=mTt,fY={};Object.defineProperty(fY,"__esModule",{value:!0});function pTt(e,t){return[["poco fa","fra poco"],["%s secondi fa","fra %s secondi"],["un minuto fa","fra un minuto"],["%s minuti fa","fra %s minuti"],["un'ora fa","fra un'ora"],["%s ore fa","fra %s ore"],["un giorno fa","fra un giorno"],["%s giorni fa","fra %s giorni"],["una settimana fa","fra una settimana"],["%s settimane fa","fra %s settimane"],["un mese fa","fra un mese"],["%s mesi fa","fra %s mesi"],["un anno fa","fra un anno"],["%s anni fa","fra %s anni"]][t]}var gTt=fY.default=pTt,pY={};Object.defineProperty(pY,"__esModule",{value:!0});function vTt(e,t){return[["\u525B\u525B","\u7247\u523B\u5F8C"],["%s \u79D2\u524D","%s \u79D2\u5F8C"],["1 \u5206\u9418\u524D","1 \u5206\u9418\u5F8C"],["%s \u5206\u9418\u524D","%s \u5206\u9418\u5F8C"],["1 \u5C0F\u6642\u524D","1 \u5C0F\u6642\u5F8C"],["%s \u5C0F\u6642\u524D","%s \u5C0F\u6642\u5F8C"],["1 \u5929\u524D","1 \u5929\u5F8C"],["%s \u5929\u524D","%s \u5929\u5F8C"],["1 \u9031\u524D","1 \u9031\u5F8C"],["%s \u9031\u524D","%s \u9031\u5F8C"],["1 \u500B\u6708\u524D","1 \u500B\u6708\u5F8C"],["%s \u500B\u6708\u524D","%s \u500B\u6708\u5F8C"],["1 \u5E74\u524D","1 \u5E74\u5F8C"],["%s \u5E74\u524D","%s \u5E74\u5F8C"]][t]}var yTt=pY.default=vTt,gY={};Object.defineProperty(gY,"__esModule",{value:!0});function _Tt(e,t){return[["\uBC29\uAE08","\uACE7"],["%s\uCD08 \uC804","%s\uCD08 \uD6C4"],["1\uBD84 \uC804","1\uBD84 \uD6C4"],["%s\uBD84 \uC804","%s\uBD84 \uD6C4"],["1\uC2DC\uAC04 \uC804","1\uC2DC\uAC04 \uD6C4"],["%s\uC2DC\uAC04 \uC804","%s\uC2DC\uAC04 \uD6C4"],["1\uC77C \uC804","1\uC77C \uD6C4"],["%s\uC77C \uC804","%s\uC77C \uD6C4"],["1\uC8FC\uC77C \uC804","1\uC8FC\uC77C \uD6C4"],["%s\uC8FC\uC77C \uC804","%s\uC8FC\uC77C \uD6C4"],["1\uAC1C\uC6D4 \uC804","1\uAC1C\uC6D4 \uD6C4"],["%s\uAC1C\uC6D4 \uC804","%s\uAC1C\uC6D4 \uD6C4"],["1\uB144 \uC804","1\uB144 \uD6C4"],["%s\uB144 \uC804","%s\uB144 \uD6C4"]][t]}var bTt=gY.default=_Tt,vY={};Object.defineProperty(vY,"__esModule",{value:!0});function wTt(e,t){var r=0,n=t==1||t==3||t==5||t==7||t==9||t==11||t==13;return n&&e>=5&&(r=1),[[["pr\xE1v\u011B te\u010F","pr\xE1v\u011B te\u010F"]],[["p\u0159ed %s vte\u0159inami","za %s vte\u0159iny"],["p\u0159ed %s vte\u0159inami","za %s vte\u0159in"]],[["p\u0159ed minutou","za minutu"]],[["p\u0159ed %s minutami","za %s minuty"],["p\u0159ed %s minutami","za %s minut"]],[["p\u0159ed hodinou","za hodinu"]],[["p\u0159ed %s hodinami","za %s hodiny"],["p\u0159ed %s hodinami","za %s hodin"]],[["v\u010Dera","z\xEDtra"]],[["p\u0159ed %s dny","za %s dny"],["p\u0159ed %s dny","za %s dn\u016F"]],[["minul\xFD t\xFDden","p\u0159\xED\u0161t\xED t\xFDden"]],[["p\u0159ed %s t\xFDdny","za %s t\xFDdny"],["p\u0159ed %s t\xFDdny","za %s t\xFDdn\u016F"]],[["minul\xFD m\u011Bs\xEDc","p\u0159\xEDst\xED m\u011Bs\xEDc"]],[["p\u0159ed %s m\u011Bs\xEDci","za %s m\u011Bs\xEDce"],["p\u0159ed %s m\u011Bs\xEDci","za %s m\u011Bs\xEDc\u016F"]],[["p\u0159ed rokem","p\u0159\xEDst\xED rok"]],[["p\u0159ed %s lety","za %s roky"],["p\u0159ed %s lety","za %s let"]]][t][r]}var STt=vY.default=wTt,yY={};Object.defineProperty(yY,"__esModule",{value:!0});function ATt(e,t){return[["juuri \xE4sken","juuri nyt"],["%s sekuntia sitten","%s sekunnin p\xE4\xE4st\xE4"],["minuutti sitten","minuutin p\xE4\xE4st\xE4"],["%s minuuttia sitten","%s minuutin p\xE4\xE4st\xE4"],["tunti sitten","tunnin p\xE4\xE4st\xE4"],["%s tuntia sitten","%s tunnin p\xE4\xE4st\xE4"],["p\xE4iv\xE4 sitten","p\xE4iv\xE4n p\xE4\xE4st\xE4"],["%s p\xE4iv\xE4\xE4 sitten","%s p\xE4iv\xE4n p\xE4\xE4st\xE4"],["viikko sitten","viikon p\xE4\xE4st\xE4"],["%s viikkoa sitten","%s viikon p\xE4\xE4st\xE4"],["kuukausi sitten","kuukauden p\xE4\xE4st\xE4"],["%s kuukautta sitten","%s kuukauden p\xE4\xE4st\xE4"],["vuosi sitten","vuoden p\xE4\xE4st\xE4"],["%s vuotta sitten","%s vuoden p\xE4\xE4st\xE4"]][t]}var TTt=yY.default=ATt,_Y={};Object.defineProperty(_Y,"__esModule",{value:!0});function kTt(e,t){return[["just nu","om en stund"],["%s sekunder sedan","om %s sekunder"],["1 minut sedan","om 1 minut"],["%s minuter sedan","om %s minuter"],["1 timme sedan","om 1 timme"],["%s timmar sedan","om %s timmar"],["1 dag sedan","om 1 dag"],["%s dagar sedan","om %s dagar"],["1 vecka sedan","om 1 vecka"],["%s veckor sedan","om %s veckor"],["1 m\xE5nad sedan","om 1 m\xE5nad"],["%s m\xE5nader sedan","om %s m\xE5nader"],["1 \xE5r sedan","om 1 \xE5r"],["%s \xE5r sedan","om %s \xE5r"]][t]}var CTt=_Y.default=kTt,bY={};Object.defineProperty(bY,"__esModule",{value:!0});function ETt(e,t){return[["az \xF6nce","\u015Fimdi"],["%s saniye \xF6nce","%s saniye i\xE7inde"],["1 dakika \xF6nce","1 dakika i\xE7inde"],["%s dakika \xF6nce","%s dakika i\xE7inde"],["1 saat \xF6nce","1 saat i\xE7inde"],["%s saat \xF6nce","%s saat i\xE7inde"],["1 g\xFCn \xF6nce","1 g\xFCn i\xE7inde"],["%s g\xFCn \xF6nce","%s g\xFCn i\xE7inde"],["1 hafta \xF6nce","1 hafta i\xE7inde"],["%s hafta \xF6nce","%s hafta i\xE7inde"],["1 ay \xF6nce","1 ay i\xE7inde"],["%s ay \xF6nce","%s ay i\xE7inde"],["1 y\u0131l \xF6nce","1 y\u0131l i\xE7inde"],["%s y\u0131l \xF6nce","%s y\u0131l i\xE7inde"]][t]}var ITt=bY.default=ETt;Wr("ca",KAt);Wr("pl",YAt);Wr("fr",JAt);Wr("de",tTt);Wr("ru",nTt);Wr("ptbr",iTt);Wr("es",sTt);Wr("ua",uTt);Wr("chs",hTt);Wr("nl",fTt);Wr("it",gTt);Wr("ko",bTt);Wr("zh",yTt);Wr("cs",STt);Wr("fi",TTt);Wr("sv",CTt);Wr("tr",ITt);const wY={ca:g_t,en:nY,fr:nbt,pl:Tbt,de:Vbt,ru:hwt,ptbr:Rwt,es:e0t,ua:w0t,chs:H0t,nl:u1t,it:x1t,zh:Y1t,ko:vSt,cs:NSt,fi:aAt,sv:kAt,tr:GAt},DTt=!1;Hr.on("languageChanged",e=>{document.documentElement.lang=e});Hr.use(rY).use(Kze).init({fallbackLng:"en",debug:DTt,resources:wY,ns:Object.keys(nY)});const xTt=Hr.language.split("-")[0].toLocaleLowerCase();wY[xTt]||Hr.changeLanguage("en");var OTt="assets/light.f78b4fbd.css?used",MTt="assets/dark.0931d1c8.css?used";const RTt={light:OTt,dark:MTt};zt.connect();const LTt=()=>{const{theme:e}=ir.getState();return de(St,{children:[x(ac.NotificationContainer,{}),x(tNe,{i18n:Hr,children:x(hi.Provider,{children:x(G9,{store:ir,children:x(opt,{themeMap:RTt,defaultTheme:e,children:x(s9e,{children:de("div",{className:"main",children:[x(Zpt,{}),x("main",{className:"content p-0 p-sm-3",children:x("div",{className:"container-fluid p-0 h-100",children:de(o9e,{children:[x(Qa,{path:"/ota",render:t=>x(Xa,He(Se({},t),{children:x(hgt,{})}))}),x(Qa,{path:"/map",render:t=>x(Xa,He(Se({},t),{children:x(s7e,{})}))}),x(Qa,{path:"/device/:dev/:tab?",render:t=>x(Xa,He(Se({},t),{children:x(pft,{})}))}),x(Qa,{path:"/settings/:tab?",render:t=>x(Xa,He(Se({},t),{children:x(Jft,{})}))}),x(Qa,{path:"/groups",render:t=>x(Xa,He(Se({},t),{children:x(rgt,{})}))}),x(Qa,{path:"/group/:groupId?",render:t=>x(Xa,He(Se({},t),{children:x(iyt,{})}))}),x(Qa,{path:"/logs",render:t=>x(Xa,He(Se({},t),{children:x(tft,{})}))}),x(Qa,{path:"/touchlink",render:t=>x(Xa,He(Se({},t),{children:x(Sft,{})}))}),x(Qa,{path:"/dashboard",render:t=>x(Xa,He(Se({},t),{children:x(Tgt,{})}))}),x(Qa,{path:"/extensions",render:t=>x(Xa,He(Se({},t),{children:x(Jvt,{})}))}),x(Qa,{path:"/",render:t=>x(Xa,He(Se({},t),{children:x(sgt,{})}))})]})})})]})})})})})})]})};Hd.render(x(LTt,{}),document.getElementById("root"));
257
+ Odd\u011Blen\xFD re\u017Eim`,"Decoupled mode for left button":"Odd\u011Blen\xFD re\u017Eim pro lev\xE9 tla\u010D\xEDtko","Decoupled mode for right button":"Odd\u011Blen\xFD re\u017Eim pro prav\xE9 tla\u010D\xEDtko","Measured relative humidity":"Nam\u011B\u0159en\xE1 relativn\xED vlhkost","Measured VOC value":"Nam\u011B\u0159en\xE1 hodnota VOC","Decoupled mode for button":"Odd\u011Blen\xFD re\u017Eim pro tla\u010D\xEDtko","Enable standby":"Povolit pohotovostn\xED re\u017Eim","Display theme":"T\xE9ma displeje","Beep volume":"Hlasitost p\xEDpnut\xED","LCD brightness (will not persist if auto-brightness is enabled)":"Jas LCD (nez\u016Fstane zachov\xE1n, pokud nen\xED zapnut automatick\xFD jas)","Interface language":"Jazyk rozhran\xED","Screen saver style":"Styl spo\u0159i\u010De obrazovky","Display standby time":"\u010Cas zhasnut\xED displeje","Display font size":"Velikost fontu displeje","Enable LCD auto brightness":"Povolit automatick\xFD jas LCD","Default display homepage":"Hlavn\xED str\xE1nka displeje","Enable screen saver":"Povolit spo\u0159i\u010D obrazovky","Standby LCD brightness":"Jas LCD v pohotovostn\xEDm re\u017Eimu","Switch 1 text and icon":"vyp\xEDna\u010D 1 text a icona",Icon:"Ikona","Switch 2 text and icon":"vyp\xEDna\u010D 2 text a icona","Switch 3 text and icon":"vyp\xEDna\u010D 3 text a ikona","Wall switch type":"Typ n\xE1st\u011Bnn\xFD vypinac","Temperature of the device":"Teplota za\u0159\xEDzen\xED","Number of power outages (since last pairing)":"","Number of power outages":"","Enabling prevents both relais being on at the same time":"Povolen\xED zabr\xE1n\xED zapnut\xED obou rel\xE9 sou\u010Dasn\u011B","The current charging status.":"","The current state of the motor.":"","Whether the motor is moving or not":"","Motor state":"","Indicates whether the device detected vibration":"Indikuje kdy za\u0159\xEDzen\xED detekovalo vibrace","Indicates whether the device detected smoke":"Ukazuje, zda za\u0159\xEDzen\xED detekovalo kou\u0159","Value of smoke concentration":"","Value of smoke concentration in dB/m":"","Starts the self-test process (checking the indicator light and buzzer work properly)":"","Self-test in progress":"","Mute the buzzer for 80 seconds (buzzer cannot be pre-muted, because this function only works when the alarm is triggered)":"","Buzzer muted":"","When this option is enabled then in the normal monitoring state, the green indicator light flashes every 60 seconds":"","When this option is enabled and a smoke is detected, other detectors with this option enabled will also sound the alarm buzzer":"","Indicates whether the device detected gas":"Ozna\u010Duje, zda za\u0159\xEDzen\xED detekovalo plyn","Value of gas concentration":"",'Gas concentration value at which an alarm is triggered ("10%LEL" is more sensitive than "15%LEL")':"","Mute the buzzer for 10 minutes (buzzer cannot be pre-muted, because this function only works when the alarm is triggered)":"","When this option is enabled and a gas leak is detected, other detectors with this option enabled will also sound the alarm buzzer":"",'"Preparation" or "work" (measurement of the gas concentration value and triggering of an alarm are only performed in the "work" state)':"","Indicates whether the device is tampered":"Ukazuje, zda je se za\u0159\xEDzen\xEDm neopr\xE1vn\u011Bn\u011B manipulov\xE1no","Test mode activated":"Testovac\xED m\xF3d aktivov\xE1n","Device temperature (polled every 30 min)":"Teplota za\u0159\xEDzen\xE9 (detekov\xE1no ka\u017Ed\xFDch 30 minut)","Turn the device automatically off when attached device consumes less than 2W for 20 minutes":"Vypnout za\u0159\xEDzen\xED automaticky pokud m\xE1 p\u0159ipojen\xE9 za\u0159\xEDzen\xED spot\u0159ebu m\xE9n\u011B, ne\u017E 2W po dobu 20 minut","Side of the cube":"Strana krychle","Indicates whether the device detected a water leak":"Ukazuje, zda za\u0159\xEDzen\xED detekovalo \xFAnik vody","Indicates whether the device detected presence":"Indikuje kdy za\u0159\xEDzen\xED detekovalo n\u011B\u010D\xED p\u0159\xEDtomnost",'Presence events: "enter", "leave", "left_enter", "right_leave", "right_enter", "left_leave", "approach", "away"':"","Monitoring mode with or without considering right and left sides":"","The distance at which the sensor detects approaching":"","Different sensitivities means different static human body recognition rate and response speed of occupied":"","Reset the status of no presence":"","Indicates whether the device detected occupancy":"Ukazuje, zda za\u0159\xEDzen\xED detekovalo obsazenost","Time interval for detecting actions":"","The measured atmospheric pressure":"Nam\u011B\u0159en\xFD atmosf\xE9rick\xFD tlak","Decoupled mode for center button":"Odd\u011Blen\xFD re\u017Eim pro st\u0159edn\xED tla\u010D\xEDtko","Operation mode for left button":"Provozn\xED re\u017Eim pro lev\xE9 tla\u010D\xEDtko","Operation mode for right button":"Provozn\xED re\u017Eim pro prav\xE9 tla\u010D\xEDtko","Switch between rgbw mode or dual color temperature mode":"","Sound level":"\xDArove\u0148 hlasitosti","Intensity of the strobe":"Intenzita stroboskopu","Turn on/off the strobe (light) during warning":"Zapnut/vypnut stroboskop b\u011Bhem varov\xE1n\xED","Duration in seconds of the alarm":"D\xE9lka alarmu ve vte\u0159in\xE1ch","Is the device plugged in":"","Volume of siren":"Hlasitost sir\xE9ny","Smoke alarm status":"","Test alarm":"","Test alarm result":"","Battery level state":"","Alarm enable":"","Fault alarm status":"","Silence siren":"","Manually set window_open, ~1 minute to take affect.":"Ru\u010Dn\u011B nastavit okno_otevreno, ~1 minuta do efektu","Enables/disables physical input on the device":"Povol\xED/zak\xE1\u017Ee fyzick\xFD vstup do za\u0159\xEDzen\xED","Last action transaction number.":"\u010C\xEDslo transakce posledn\xED akce.","Alarm zone. Default value 0":"Alarm z\xF3na. Zakladni hodnota je 0","Configure genLevelCtrl":"Konfigurace genLevelCtrl","The dimmer is capable of measuring the reactanceto distinguish inductive and capacitive loads.":"The dimmer is capable of measuring the reactance to distinguish inductive and capacitive loads.","Configures the dimming technique.":"Konfigurace zp\u016Fsobu ztm\xEDv\xE1n\xED.","Controls the behavior when the device is powered on":"Ovl\xE1d\xE1 chov\xE1n\xED, kdy\u017E je za\u0159\xEDzen\xED zapnut\xE9","PIR sensor sensitivity (refresh and update only while active)":"","PIR keep time in seconds (refresh and update only while active)":"","Report interval":"","Current display unit":"","Temperature alarm status":"","Alarm temperature max":"Max teplota pro alarm","Alarm temperature min":"Min teplota pro alarm","Humidity alarm status":"","Alarm humidity max":"","Alarm humidity min":"","Distance to target":"","sensitivity of the radar":"senzitivita radaru","Minimum range":"","Maximum range":"","Detection delay":"","Fading time":"","Self_test, possible resuts: checking, check_success, check_failure, others, comm_fault, radar_fault.":"","Brightness state":"","Speed of movement":"Rychlost pohybu","direction of movement from the point of view of the radar":"sm\u011Br pohybu z pohledu radaru","presets for sensitivity for presence and movement":"","Tumble status switch":"","fall sensitivity of the radar":"","tumble alarm time":"","fall down status":"","static dwell alarm":"","O-Sensitivity mode":"O-senzitivita m\xF3d","V-Sensitivity mode":"V-senzitivita m\xF3d","Led status switch":"vyp\xEDna\u010D statusu LEDky","Working mode":"Pracovn\xED m\xF3d","Luminance level":"\xDArove\u0148 jasu","Alarm humidity status":"Stav vlhkosti pro alarm","Alarm temperature status":"Stav teploty pro alarm","Trigger the door movement":"","Indicates if the garage door contact is closed (= true) or open (= false)":"","Relay LED indicator mode":"","Minimum light brightness":"Minim\xE1ln\xED jas sv\u011Btla","Plug LED indicator mode":"","Maximum temperature":"Maxim\xE1ln\xED teplota","Minimum temperature":"Minim\xE1ln\xED teplota",Position:"Pozice","Enables/disables window detection on the device":"Povol\xED/zak\xE1\u017Ee detekci oken na za\u0159\xEDzen\xED","Window status closed or open ":"Stav okna zav\u0159eno nebo otev\u0159eno ",'Boost Heating: press and hold "+" for 3 seconds, the device will enter the boost heating mode, and the \u25B7\u2575\u25C1 will flash. The countdown will be displayed in the APP':'Zes\xEDlen\xED oh\u0159evu: stiskn\u011Bte a podr\u017Ete tla\u010D\xEDtko "+" po dobu 3 sekund, za\u0159\xEDzen\xED p\u0159ejde do re\u017Eimu zes\xEDlen\xE9ho oh\u0159evu a za\u010Dne blikat symbol \u25B7\u2575\u25C1. V aplikaci se zobraz\xED odpo\u010D\xEDt\xE1v\xE1n\xED.',"Countdown in minutes":"Odpo\u010Det v minut\xE1ch","Away mode":"Re\u017Eim pry\u010D","Enables/disables the status on the device":"Povolit/zak\xE1zat stav za\u0159\xEDzen\xED","Comfort temperature":"Komfortn\xED teplota","Eco temperature":"Eko teplota","Mode of this device (similar to system_mode)":"Re\u017Eim tohoto za\u0159\xEDzen\xED (podobn\xFD system_mode)",'When Anti-Freezing function is activated, the temperature in the house is kept at 8 \xB0C, the device display "AF".press the pair button to cancel.':"",'Battery life can be prolonged by switching the heating off. To achieve this, the valve is closed fully. To activate the heating stop, the device display "HS", press the pair button to cancel.':"","Is the device online":"Je za\u0159\xEDzen\xED online","Error status":"Status chyby","Window open?":"","Mode of this device, in the `heat` mode the TS0601 will remain continuously heating, i.e. it does not regulate to the desired temperature. If you want TRV to properly regulate the temperature you need to use mode `auto` instead setting the desired temperature.":"","Enable/disable auto lock":"Povolit/zak\xE1zat automatick\xFD z\xE1mek","Enable/disable away mode":"Povolit/zak\xE1zat re\u017Eim nep\u0159\xEDtomnosti","Away preset days":"P\u0159ednastaven\xE9 dny pro pry\u010D","Boost time":"Doba zv\xFD\u0161en\xED","Force the valve position":"Vynutit polohu ventilu","Away preset temperature":"P\u0159ednastaven\xE1 teplota pro pry\u010D","Schedule MODE \u23F1 - In this mode, the device executes a preset week programming temperature time and temperature.":"Re\u017Eim pl\xE1nu \u23F1 - V tomto re\u017Eimu za\u0159\xEDzen\xED prov\xE1d\xED p\u0159ednastaven\xE9 t\xFDdenn\xED vyt\xE1p\u011Bn\xED dle nastaven\xE9ho \u010Dasu vyt\xE1p\u011Bn\xED a teploty.","Week format user for schedule":"Form\xE1t kalend\xE1\u0159n\xEDho t\xFDdne","Calibration time":"\u010Cas kalibrace","Maximum light brightness":"","PIR sensor sensitivity":"Citlivost PIR senzoru","Indicates if CO (carbon monoxide) is detected":"Ukazuje, zda je detekov\xE1n CO (oxid uhelnat\xFD)","The measured CO (carbon monoxide) value":"","The measured formaldehyd value":"Nam\u011B\u0159en\xE1 hodnota formaldehydu","Measured PM2.5 (particulate matter) concentration":"Measured PM\u2082.\u2085 (particulate matter) concentration","Group where the action was triggered on":"","The measured occupancy value":"","The measured noise value":"","Indicates whether the device detected noise":"","Time in seconds after which noise is cleared after detecting it (default: 60)":"","Time in seconds after which occupancy is cleared after detecting it (default: 60)":"","Self-heating compensation. The compensation value is subtracted from the measured temperature":"","If the sensor is triggered by the slightest movement, reduce the sensitivity, otherwise increase it (default: 50)":"","The minimum noise level at which the detector will work (default: 50)":"","Automatic calibration of the CO2 sensor. If ON, the CO2 sensor will automatically calibrate every 7 days.":"","Ventilate the room for 20 minutes, turn on manual calibration, and turn it off after one second. After about 5 minutes the CO2 sensor will show 400ppm. Calibration completed":"","Turn on when working in conditions of high humidity (more than 70 %, RH) or condensation, if the sensor shows 0 or 100 %.":"","White brightness of this light":"","Valve state if open or closed":"","Position of the valve":"","Control backlight dimming behavior":"Control backlight dimming behaviour","Door status":"","User ID can only number 1":"","Pincode to set, set pincode(4 digit) to null to clear":"","temperature of device internal mcu":"","Measured electrical power factor":"","Measured electrical ac frequency":"","Currently status":"","People count":"Po\u010Det osob","Instantaneous measured apparent power":"","Instantaneous measured power on phase A":"","Instantaneous measured power on phase B":"","Instantaneous measured power on phase C":"","Instantaneous measured power factor":"","Sum of consumed energy on phase A":"","Sum of consumed energy on phase B":"","Sum of consumed energy on phase C":"","Measured electrical AC frequency":"","Measured electrical potential value on phase A":"","Measured electrical potential value on phase B":"Nam\u011B\u0159en\xE1 hodnota elektrick\xE9ho proudu na f\xE1zi B","Measured electrical potential value on phase C":"Nam\u011B\u0159en\xE1 hodnota elektrick\xE9ho proudu na f\xE1zi C","Measured electrical potential value between phase A and B":"","Measured electrical potential value between phase B and C":"","Measured electrical potential value between phase C and A":"","Instantaneous measured electrical current on phase A":"","Instantaneous measured electrical current on phase B":"Okam\u017Eit\xE1 nam\u011B\u0159en\xE1 hodnota elektrick\xE9ho proudu na f\xE1zi B","Instantaneous measured electrical current on phase C":"Okam\u017Eit\xE1 nam\u011B\u0159en\xE1 hodnota elektrick\xE9ho proudu na f\xE1zi C","Time in seconds after which occupancy is cleared after detecting it":"","Controls the behaviour when the device is powered on":"Ovl\xE1d\xE1 chov\xE1n\xED, kdy\u017E je za\u0159\xEDzen\xED zapnut\xE9","Icon shown on device displays":"Ikona zobrazen\xE1 na displeji","Calibrates valve on next wakeup":"Kalibrovat ventil p\u0159i dal\u0161\xEDm probuzen\xED","Sets dimming mode to autodetect or fixed RC/RL/RL_LED mode (max load is reduced in RL_LED)":"","Duration of lift":"","Auto off after specific time":"Automatick\xE9 vypnut\xED po nastaven\xE9m \u010Dase","Auto off timer time left":"Zb\xFDv\xE1 do automatick\xE9ho vypnut\xED","Liters of water consumed":"Spot\u0159ebov\xE1no litr\u016F vody","Controls how programming affects the thermostat. Possible values: setpoint (only use specified setpoint), schedule (follow programmed setpoint schedule). Changing this value does not clear programmed schedules.":"","Not clear how this affects operation. However, it would appear that the device does not execute any motor functions if this is set to false. This may be a means to conserve battery during periods that the heating system is not energized (e.g. during summer). `false` No Heat Available or `true` Heat Available":"","If `radiator_covered` is `true`: Set at maximum 30 minutes interval but not more often than every 5 minutes and 0.1 degrees difference. Resets every 35 minutes to standard. If `radiator_covered` is `false`: Set at maximum 3 hours interval but not more often than every 30 minutes and 0.1 degrees difference. Resets every 3 hours to standard. Value 21C = 2100 (-8000=undefined).":"","Set if the TRV should solely rely on external_measured_room_sensor or operate in offset mode. `false` = Auto Offset Mode or `true` = Room Sensor Mode":"","Whether or not the window open feature is enabled":"","Mean radiator load for room calculated by gateway for load balancing purposes (-8000=undefined)":"","Specific for pre-heat running in Zigbee Weekly Schedule mode":"","Status of adaptation run: None (before first run), In Progress, Valve Characteristic Found, Valve Characteristic Lost":"","Automatic adaptation run enabled (the one during the night)":"","Adaptation run control: Initiate Adaptation Run or Cancel Adaptation Run":"","Regulation SetPoint Offset in range -2.5\xB0C to 2.5\xB0C in steps of 0.1\xB0C. Value 2.5\xB0C = 25.":"","Blink green LED on motion detection":"Zablikat zelenou LED p\u0159i detekci pohybu","Mode of this fan":"M\xF3d tohoto v\u011Btr\xE1ku","Sound volume of the lock":"Hlasitost zvuku z\xE1mku","Auto relock after 7 seconds.":"Automaticky odemknout po 7 sekund\xE1ch","Temperature sensitivity":"","Enable LED":"","Temperature/humidity alarm status":"","Temperature scale (\xB0F/\xB0C)":"","Current temperature measured from the floor sensor":"Aktu\xE1ln\xED teplota m\u011B\u0159en\xE1 z podlahov\xE9ho \u010Didla","OLED brightness when operating the buttons. Default: Medium.":"","Key beep volume and vibration level. Default: Low.":"","Type of the external floor sensor. Default: NTC 10K/25.":"","The sensor used for heat control. Default: Room Sensor.":"","The mode after a power reset. Default: Previous Mode.":"","The tempearatue calibration for the exernal floor sensor, between -3 and 3 in 0.1\xB0C. Default: 0.":"","The duration of Dry Mode, between 5 and 100 minutes. Default: 5.":"","The mode after Dry Mode. Default: Auto.":"","The temperature on the display. Default: Room Temperature.":"","The threshold to detect window open, between 1.5 and 4 in 0.5 \xB0C. Default: 0 (disabled).":"","Hysteresis setting, between 0.5 and 2 in 0.1 \xB0C. Default: 0.5.":"","Room temperature alarm threshold, between 20 and 60 in \xB0C. 0 means disabled. Default: 45.":"","Do not disturb mode":"M\xF3d Neru\u0161it","Power on behavior state":"Power on behaviour state","ECO mode (energy saving mode)":"ECO m\xF3d (\xFAsporn\xFD re\u017Eim)","Boost Time Setting 100 sec - 900 sec, (default = 300 sec)":"Nastaven\xED doby zes\xEDlen\xED od 100s do 900s (defaultn\u011B 300s)","Indicator light status":"","The delta between local_temperature and current_heating_setpoint to trigger Heat":"","Mode of the fan":"M\xF3d v\u011Btr\xE1ku","Serial Number":"","Base index":"","Tarif option":"","Subscribed intensity level":"","HCHC index":"","HCHP index":"","BBRHPJW index":"","BBRHCJR index":"","BBRHPJR index":"","RMS current":"","RMS current (phase 2)":"","RMS current (phase 3)":"","RMS current peak":"","RMS current peak (phase 2)":"","RMS current peak (phase 3)":"","Three-phase power peak":"","Apparent power":"","Current pricing period":"","Tomorrow color":"","Schedule HPHC":"","Presence of potentials":"","EJP start notice (30min)":"","Subscribed Power Exceeded Warning":"","Over Current Warning (phase 1)":"","Over Current Warning (phase 2)":"","Over Current Warning (phase 3)":"","Current supplier price label":"","Current tariff index number":"","Customer tele-information protocol version":"","Current date and time":"","Total provider active power delivered (index 07)":"","Total provider active power delivered (index 08)":"","Total provider active power delivered (index 09)":"","Total provider active power delivered (index 10)":"","Active energy withdrawn Distributor (index 01)":"","Active energy withdrawn Distributor (index 02)":"","Active energy withdrawn Distributor (index 03)":"","Active energy withdrawn Distributor (index 04)":"","Total active power injected":"","Total reactive power (Q1)":"","Total reactive power (Q2)":"","Total reactive power (Q3)":"","Total reactive power (Q4)":"","RMS voltage":"","RMS voltage (phase 2)":"","RMS voltage (phase 3)":"","Register of Statutes":"","Apparent power threshold":"","Instantaneous apparent power injected":"","Apparent power max. injected n":"","Apparent power max. injected n-1":"","Current point of the active load curve drawn":"","Previous point of the active load curve drawn":"","Point n of the withdrawn active load curve":"","Point n-1 of the withdrawn active load curve":"","Average RMS voltage (phase 1)":"","Average RMS voltage (phase 2)":"","Average RMS voltage (phase 3)":"","Immediate apparent power delivered (phase 2)":"","Immediate apparent power delivered (phase 3)":"","Apparent power delivered peak (phase 2)":"","Apparent power delivered peak (phase 3)":"","Apparent power max. draw-off n-1":"","Apparent power max. draw-off n-1 (phase 2)":"","Apparent power max. draw-off n-1 (phase 3)":"","Message short":"","Message ultra-short":"","PRM number":"","Start mobile point 1":"","Stop mobile point 1":"","Start mobile point 2":"","Stop mobile point 2":"","Start mobile point 3":"","Stop mobile point 3":"","Current day number supplier calendar":"","Next day number supplier calendar":"","Profile of the next supplier calendar day":"","Profile of the next check-in day":"","Motor options":"Nastaven\xED motoru","Motor is moving":"Motor jede","Controls behaviour of led/siren on alarm":"Controls behaviour of LED/siren on alarm","Measured eCO2 value":"Measured CO2 value","Temperature 1":"Teplota 1","Temperature 2":"Teplota 2","Temperature 3":"Teplota 3","Temperature 4":"Teplota 4","Temperature 5":"Teplota 5","Temperature 6":"Teplota 6","Temperature 7":"Teplota 7","Temperature 8":"Teplota 8","Temperature 9":"Teplota 9","Auto off after specific time.":"Automatick\xE9 vypnut\xED po dan\xE9 dob\u011B.","Enable the LED when the light is off":"","Enables the LED when the light is on":"Povolit LED pokud je sv\u011Btlo zapnuto","Works only when the pilot wire is deactivated":"","Allow the device to change brightness":"Povolit za\u0159\xEDzen\xED zm\u011Bnit jas","Enabled LED":"LED povoleno","Illuminance calibration":"Kalibrace osv\u011Btlen\xED","Animation Effect to use for the LEDs":"","Calculated by using a hue color circle(value/255*360) If color = 255 display white":"","Brightness of the LEDs":"","1-60 is in seconds calculated 61-120 is in minutes calculated by(value-60) Example a value of 65 would be 65-60 = 5 minutes - 120-254 Is in hours calculated by(value-120) Example a value of 132 would be 132-120 would be 12 hours. - 255 Indefinitely":"","Individual LED to target.":"","Animation Effect to use for the LED":"","Brightness of the LED":"","1-60 is in seconds calculated 61-120 is in minutes calculated by(value-60) Example a value of 65 would be 65-60 = 5 minutes - 120-254 Is in hours calculated by(value-120) Example a value of 132 would be 132-120 would be 12 hours. - 255 Indefinitely":"","This changes the speed that the light dims up when controlled from the hub. A setting of 0 turns the light immediately on. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 25 (2.5s)":"","This changes the speed that the light dims up when controlled at the switch. A setting of 0 turns the light immediately on. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpRemote setting.":"","This changes the speed that the light turns on when controlled from the hub. A setting of 0 turns the light immediately on. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpRemote setting.":"","This changes the speed that the light turns on when controlled at the switch. A setting of 0 turns the light immediately on. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpRemote setting.":"","This changes the speed that the light dims down when controlled from the hub. A setting of 0 turns the light immediately off. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpRemote setting.":"","This changes the speed that the light dims down when controlled at the switch. A setting of 0 turns the light immediately off. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpLocal setting.":"","This changes the speed that the light turns off when controlled from the hub. A setting of 'instant' turns the light immediately off. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with rampRateOffToOnRemote setting.":"","This changes the speed that the light turns off when controlled at the switch. A setting of 'instant' turns the light immediately off. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with rampRateOffToOnLocal setting.":"","The minimum level that the dimmer allows the bulb to be dimmed to. Useful when the user has an LED bulb that does not turn on or flickers at a lower level.":"","The maximum level that the dimmer allows the bulb to be dimmed to.Useful when the user has an LED bulb that reaches its maximum level before the dimmer value of 99 or when the user wants to limit the maximum brightness.":"","Inverts the orientation of the switch. Useful when the switch is installed upside down. Essentially up becomes down and down becomes up.":"","Automatically turns the switch off after this many seconds. When the switch is turned on a timer is started. When the timer expires, the switch is turned off. 0 = Auto off is disabled.":"","Default level for the dimmer when it is turned on at the switch. A setting of 0 means that the switch will return to the level that it was on before it was turned off.":"","Default level for the dimmer when it is turned on from the hub. A setting of 0 means that the switch will return to the level that it was on before it was turned off.":"","The state the switch should return to when power is restored after power failure. 0 = off, 1-100 = level, 101 = previous.":"","Shows the level that the load is at for x number of seconds after the load is adjusted and then returns to the Default LED state. 0 = Stay Off, 1-10 = seconds, 11 = Stay On.":"","Power level change that will result in a new power report being sent. The value is a percentage of the previous report.0 = disabled, 1-32767 = 0.1W-3276.7W.":"","Time period between consecutive power & energy reports being sent (in seconds). The timer is reset after each report is sent.":"","Energy reports Energy level change which will result in sending a new energy report.0 = disabled, 1-32767 = 0.01kWh-327.67kWh. Default setting: 10 (0.1 kWh)":"","Set the power type for the device.":"","Set the switch configuration.":"","This will set the button press delay. 0 = no delay (Disables Button Press Events), 1 = 100ms, 2 = 200ms, 3 = 300ms, etc. up to 900ms. Default = 500ms.":"","For use with Smart Bulbs that need constant power and are controlled via commands rather than power.":"","Set the color of the LED Indicator when the load is on.":"","Set the color of the LED Indicator when the load is off.":"","Set the intensity of the LED Indicator when the load is on.":"","Set the intensity of the LED Indicator when the load is off.":"","Ability to control switch from the wall.":"","Ability to control switch from the hub.":"","Use device as a Dimmer or an On/Off switch.":"","When the device is in On/Off mode, use full LED bar or just one LED.":"","Display progress on LED bar during firmware update.":"","0-254:This is the color of the LED strip in a hex representation. 255:Synchronization with default all LED strip color parameter.":"","Intesity of LED strip when on. 101 = Syncronized with default all LED strip intensity parameter.":"","Intesity of LED strip when off. 101 = Syncronized with default all LED strip intensity parameter.":"","Result of a double tap on the up button.":"","Reporting interval in minutes":"Interval hl\xE1\u0161en\xED v minut\xE1ch","Temperature calibration":"Kalibrace teploty","Humidity calibration":"Kalibrace vlhkosti","Enable PIR sensor":"Povolit PIR seznzor","Enabled reporting":"Reporting povolen","Current fan speed":"Aktu\xE1ln\xED rychlost v\u011Btr\xE1ku","Measured air quality":"Nam\u011B\u0159en\xE1 kvalita vzduchu","Measured Hcho value":"Measured HCHO value","Air quality index":"Index kvality vzduchu","Measured PM10 (particulate matter) concentration":"Measured PM\u2081\u2080 (particulate matter) concentration","Countdown timer in minutes":"Odpo\u010Det v minut\xE1ch","Remaining battery 2 in %":"","Illuminance calibration in lux":"","Temperature calibration (-2.0...2.0)":"","Enable reporting":"","Control mode":"","External switch type":"","External switch status":"","Load detection mode":"","Load type":"","Load dimmable":"","Power supply mode":"","Displayed text on thermostat display (zone). Max 14 characters":"Zobrazen\xFD text na displeji termostatu (z\xF3na). Maxim\xE1ln\u011B 14 znak\u016F","Turn on or off night setting.":"Zapnout nebo vypnout no\u010Dn\xED nastaven\xED","Current state":"Aktu\xE1ln\xED stav","Enable or disable sound":"Zak\xE1zat nebo povolit zvuk","Time to ring before answer":"\u010Cas vyzv\xE1n\u011Bn\xED p\u0159ed odpov\u011Bd\xED","Enable LEDs feedback":"Povolen\xED zp\u011Btn\xE9 vazby LED","Enable ABC (Automatic Baseline Correction)":"Povolit ABC (Automatic Baseline Correction)","Critical (LED3) CO2 level":"Kritick\xE1 \xFArove\u0148 CO2 (LED3)","Adjust temperature":"Upravit teplotu","Adjust humidity":"Upravit vlhkost","Adjust pressure":"Upravit tlak","Measured soil moisture value":"Nam\u011B\u0159en\xE1 hodnota vlhkosti p\u016Fdy","Current count radioactive pulses per minute":"Aktu\xE1ln\xED po\u010Det radioaktivn\xEDch pulz\u016F za minutu","Current radiation level":"Aktu\xE1ln\xED \xFArove\u0148 radiace","Enable LED feedback":"Povolen\xED zp\u011Btn\xE9 vazby LED","Enable buzzer feedback":"Povolit zp\u011Btnou vazbu bzu\u010D\xE1kem","Critical radiation level":"Kritick\xE1 \xFArove\u0148 radiace","Type of installed tubes":"Typ instalovan\xFDch trubek","Count of installed tubes":"Po\u010Det instalovan\xFDch trubek","Temperature of the CPU":"Teplota CPU","Max duration of the siren":"Max dob\xE1 trv\xE1n\xED sir\xE9ny","Manual start of the siren":"Manu\xE1ln\xED start sir\xE9ny","Pulses per kwh. Default 1000 imp/kWh. Range 0 to 65535":"Pulses per kWh. Default 1000 imp/kWh. Range 0 to 65535","Current summation value sent to the display. e.g. 570 = 0,570 kWh":"Aktu\xE1ln\xED hodnota sou\u010Dtu odeslan\xE1 na displej. nap\u0159. 570 = 0,570 kWh","Is true if communication problem with meter is experienced":"Plat\xED, pokud dojde k probl\xE9mu s komunikac\xED s m\u011B\u0159i\u010Dem","Duration of Siren":"Doba trv\xE1n\xED sir\xE9ny","Manual Start of Siren":"Manu\xE1ln\xED start sir\xE9ny","Indicates if the card is inserted (= true) or not (= false)":"","Allow Master PIN Unlock":"Povolit odemknut\xED Master PINu","Allow RFID to Unlock":"Povolit RFID k odemknut\xED","Absolute min temperature allowed on the device":"Absolutn\xED minim\xE1ln\xED povolen\xE1 teplota na za\u0159\xEDzen\xED","Absolute max temperature allowed on the device":"Absolutn\xED maxim\xE1ln\xED povolen\xE1 teplota na za\u0159\xEDzen\xED","Min temperature limit set on the device":"Minim\xE1ln\xED teplotn\xED limit nastaven\xFD na za\u0159\xEDzen\xED","Max temperature limit set on the device":"Maxim\xE1ln\xED teplotn\xED limit nastaven\xFD na za\u0159\xEDzen\xED","Danfoss Output Status [Active vs Inactive])":"Danfoss status [aktivn\xED nebo neaktivn\xED])","Thermostat status":"Stav termostatu","Current temperature measured on the external sensor (floor)":"","The difference between the temperature at which the thermostat switches off, and the temperature at which it switches on again.":"","Max guarding temperature":"","Prevent changes. `false` = run normally. `true` = prevent from making changes.":"","Enables the LED when the light is off":"","Brightness of this backlight LED":"","Enable or disable the blue backlight LED":""},ASt={undefined:"nedefinvan\xE9",state:"Stav",brightness:"Jas",color_temp:"Teplota barev",color_temp_startup:"Teplota barev p\u0159i spu\u0161t\u011Bn\xED",color_xy:"Barva Xy",effect:"Efekt",linkquality:"Kvalita sign\xE1lu",local_temperature:"M\xEDstn\xED teplota",system_mode:"Syst\xE9mov\xFD re\u017Eim",local_temperature_calibration:"Kalibrace m\xEDstn\xED teploty",pi_heating_demand:"Popt\xE1vka po vyt\xE1p\u011Bn\xED p\xED",position:"Pozice",options:"Mo\u017Enosti",motor_speed:"Rychlost motoru",motor_working_mode:"",percent_state:"",mode:"M\xF3d",border:"",power_outage_memory:"Pam\u011B\u0165 p\u0159i v\xFDpadku nap\xE1jen\xED",battery:"Baterie",action:"Akce",power_on_behavior:"Chov\xE1n\xED p\u0159i zapnut\xED",battery_low:"Vybit\xE1 baterie",color_hs:"Barva (HS)",saturation:"Saturace",pin_code:"PIN k\xF3d",user:"U\u017Eivatel",user_type:"Typ u\u017Eivatele",user_enabled:"U\u017Eivatel povolen",action_source_name:"",action_source_user:"",voltage:"Nap\u011Bt\xED",operation_mode:"Provozn\xED re\u017Eim",power:"Nap\xE1jen\xED",energy:"Energie",temperature:"Teplota",current:"Proud",led_disabled_night:"Led v noci vypl\xE1",contact:"Kontakt",illuminance:"Osv\u011Btlen\xED",illuminance_lux:"Osv\u011Btlen\xED",detection_period:"Perioda detekce",flip_indicator_light:"",consumer_connected:"Konzument p\u0159ipojen",humidity:"Vlhkost",theme:"T\xE9ma",beep_volume:"Hlasitost p\xEDpnut\xED",lcd_brightness:"Jas LCD",language:"Jazyk",screen_saver_style:"Styl spo\u0159i\u010De obrazovky",standby_time:"Pohotovostn\xED doba",font_size:"Velikost fontu",lcd_auto_brightness_enabled:"Automatick\xFD jas LCD povolen",homepage:"Dom\xE1c\xED str\xE1nka",screen_saver_enabled:"Spo\u0159i\u010D obrazovky povolen",standby_lcd_brightness:"Standby LCD Brightness",available_switches:"Dostupn\xE9 p\u0159ep\xEDna\u010De",switch_type:"Typ p\u0159ep\xEDna\u010De",device_temperature:"Teplota za\u0159\xEDzen\xED",power_outage_count:"",charging_status:"",motor_state:"",running:"",vibration:"Vibrace",strength:"S\xEDla",sensitivity:"Citlivost",angle_x:"\xDAhel X",angle_y:"\xDAhel Y",angle_z:"\xDAhel Z",inserted:"Vlo\u017Eeno",smoke:"Kou\u0159",smoke_density:"Hustota kou\u0159e",smoke_density_dbm:"",selftest:"Autotest",mute_buzzer:"",mute:"",heartbeat_indicator:"",linkage_alarm:"",gas:"Plyn",gas_density:"Hustota plynu",gas_sensitivity:"",tamper:"Manipulovat",auto_off:"Automatick\xE9 vypnut\xED",action_angle:"Ak\u010Dn\xED \xFAhel",action_from_side:"Akce ze strany",action_side:"Ak\u010Dn\xED strana",action_to_side:"Akce na stranu",water_leak:"\xDAnik vody",presence:"P\u0159\xEDtomnost",presence_event:"",monitoring_mode:"",approach_distance:"",reset_nopresence_status:"",occupancy:"Obsazenost",detection_interval:"",pressure:"Tlak",warning:"Varov\xE1n\xED",level:"\xDArove\u0148",duration:"Trv\xE1n\xED",ac_connected:"",volume:"Hlasitost",test_alarm:"",test_alarm_result:"",battery_level:"",fault_alarm:"",silence_siren:"",level_config:"Konfigurace \xFArovn\u011B",on_off_transition_time:"D\xE9lka p\u0159echodu zapnut\xED/vypnut\xED",current_level_startup:"Aktu\xE1ln\xED \xFArove\u0148 spu\u0161t\u011Bn\xED",report_interval:"",temperature_unit_convert:"",temperature_alarm:"Teplotn\xED alarm",max_temperature:"Maxim\xE1ln\xED teplota",min_temperature:"Minim\xE1ln\xED teplota",humidity_alarm:"Alarm vlhkosti",max_humidity:"",min_humidity:"",target_distance:"",minimum_range:"",maximum_range:"",detection_delay:"",fading_time:"",self_test:"",brightness_state:"",action_step_size:"",action_transition_time:"",action_rate:"",child_lock:"D\u011Btsk\xFD z\xE1mek",countdown_timer:"\u010Cas odpo\u010Dtu",current_average:"Aktu\xE1ln\xED pr\u016Fm\u011Br",energy_consumed:"Spot\u0159ebov\xE1no energie",clear_device_data:"Vymazat data za\u0159\xEDzen\xED",motion_speed:"Rychlost pohybu",motion_direction:"Sm\u011Br pohybu",tumble_switch:"",fall_sensitivity:"",tumble_alarm_time:"",fall_down_status:"",static_dwell_alarm:"",led_status:"Status LED",trigger:"",garage_door_contact:"",indicator_mode:"",current_heating_setpoint:"Aktu\xE1ln\u011B nastaven\xE1 hodnota vyt\xE1p\u011Bn\xED",min_brightness:"Minim\xE1ln\xED jas",window:"Okno",heating:"Topen\xED",preset:"P\u0159ednastaven\xED",programming_mode:"Programovac\xED re\u017Eim",monday_schedule:"Pond\u011Bln\xED rozvrh",tuesday_schedule:"\xDAtern\xED pl\xE1n",thursday_schedule:"\u010Ctvrte\u010Dn\xED pl\xE1n",friday_schedule:"P\xE1te\u010Dn\xED rozvrh",saturday_schedule:"Sobotn\xED pl\xE1n",sunday_schedule:"Ned\u011Bln\xED pl\xE1n",away_mode:"Re\u017Eim pry\u010D",open_window:"Otev\u0159\xEDt okno",comfort_temperature:"Komfortn\xED teplota",eco_temperature:"Eko teplota",holiday_start_stop:"",schedule:"",schedule_monday:"Pl\xE1n pond\u011Bl\xED",schedule_tuesday:"Pl\xE1n \xFAter\xFD",schedule_wednesday:"Pl\xE1n st\u0159eda",schedule_thursday:"Pl\xE1n \u010Dtvrtek",schedule_friday:"Pl\xE1n p\xE1tek",schedule_saturday:"Pl\xE1n sobota",schedule_sunday:"Pl\xE1n ned\u011Ble",error_status:"Status chyby",away_preset_days:"P\u0159ednastaven\xE9 dny pro nep\u0159\xEDtomnost",boost_time:"Doba pro nav\xFD\u0161en\xED teploty",force:"S\xEDla",away_preset_temperature:"P\u0159ednastaven\xE1 teplota pro nep\u0159\xEDtomnost",week:"T\xFDden",workdays_schedule:"T\xFDdenn\xED kalend\xE1\u0159",holidays_schedule:"Pr\xE1zdninov\xFD kalend\xE1\u0159",backlight_mode:"Re\u017Eim podsv\xEDcen\xED",moving:"V pohybu",calibration:"Kalibrace",motor_reversal:"Zp\u011Btn\xFD chod motoru",calibration_time:"\u010Cas kalibrace",max_brightness:"",carbon_monoxide:"Oxid uhelnat\xFD",co:"",co2:"CO2",pm25:"Odpoledne",action_group:"",direction:"Sm\u011Br",occupancy_level:"",noise:"",noise_detected:"",noise_timeout:"",occupancy_timeout:"\u010Casov\xFD limit obsazen\xFD",occupancy_sensitivity:"",noise_detect_level:"",co2_autocalibration:"",co2_manual_calibration:"",th_heater:"",x_axis:"Osa X",y_axis:"Osa Y",z_axis:"Osa Z",beep:"P\xEDpnut\xED",white_brightness:"",led_intensity_on:"LED Intensity On",led_intensity_off:"LED Intensity Off",door_state:"",power_factor:"",ac_frequency:"",status:"",people:"Lid\xE9",power_apparent:"",power_phase_a:"",power_phase_b:"",power_phase_c:"",energy_phase_a:"",energy_phase_b:"",energy_phase_c:"",voltage_phase_a:"",voltage_phase_ab:"",voltage_phase_bc:"",voltage_phase_ca:"",current_phase_a:"",calibrate_valve:"Kalibrace ventilu",valve_calibration_status:"Stav kalibrace ventilu",lift_duration:"",timer:"Odpo\u010D\xEDt\xE1va\u010D",timer_time_left:"Zb\xFDv\xE1 \u010Das odpo\u010Dtu",water_consumed:"Spot\u0159ebov\xE1no vody",programming_operation_mode:"",radiator_covered:"",window_open_feature:"",day_of_week:"Den v t\xFDdnu",preheat_status:"",adaptation_run_status:"",adaptation_run_settings:"",adaptation_run_control:"",regulation_setpoint_offset:"",led_indication:"Indikace LED",action_duration:"akce_trvani",device_mode:"M\xF3d za\u0159\xEDzen\xED",sound_volume:"\xDArove\u0148 hlasitosti",temperature_sensitivity:"",led_enable:"Povolit LED",power_type:"Typ nap\xE1jen\xED",temperature_min:"Minim\xE1ln\xED teplota",temperature_max:"Maxim\xE1ln\xED teplota",temperature_scale:"",humidity_min:"Minim\xE1ln\xED vlhkost",humidity_max:"Maxim\xE1ln\xED vlhkost",melody:"Melodie",battpercentage:"procento baterie",outdoor_temperature:"",button_vibration_level:"",floor_sensor_type:"",sensor:"Senzor",powerup_status:"",floor_sensor_calibration:"",dry_time:"",mode_after_dry:"",temperature_display:"",window_open_check:"",hysterersis:"",display_auto_off_enabled:"",alarm_airtemp_overvalue:"",backlight:"",do_not_disturb:"Neru\u0161it",color_power_on_behavior:"Chov\xE1n\xED p\u0159i zapnut\xED - barva",eco_mode:"Eko m\xF3d",valve_state:"",indicate_light:"",deadzone_temperature:"Teplota mrtv\xE9 z\xF3ny",max_temperature_limit:"Limit maxim\xE1ln\xED teploty",fan_mode:"M\xF3d v\u011Btr\xE1ku",ADCO:"",BASE:"",OPTARIF:"",ISOUSC:"",HCHC:"",HCHP:"",BBRHCJW:"",BBRHPJW:"",BBRHCJR:"",BBRHPJR:"",IINST:"",IINST2:"",IINST3:"",IMAX:"",IMAX2:"",IMAX3:"",PMAX:"",PAPP:"",PTEC:"",DEMAIN:"",HHPHC:"",PPOT:"",PEJP:"",ADPS:"",ADIR1:"",ADIR2:"",ADIR3:"",LTARF:"",NTARF:"",VTIC:"",DATE:"",EASF07:"EASF07",EASF08:"",EASF09:"",EASF10:"",EASD01:"",EASD02:"",EASD03:"",EASD04:"",EAIT:"",ERQ1:"",ERQ2:"",ERQ3:"",ERQ4:"",URMS1:"",URMS2:"",URMS3:"",STGE:"",PCOUP:"",SINSTI:"",SMAXIN:"","SMAXIN-1":"",CCASN:"","CCASN-1":"",CCAIN:"","CCAIN-1":"",UMOY1:"",UMOY2:"",UMOY3:"",SINSTS2:"",SINSTS3:"",SMAXN2:"",SMAXN3:"","SMAXN-1":"","SMAXN2-1":"","SMAXN3-1":"",MSG1:"",MSG2:"",PRM:"",DPM1:"",FPM1:"",DPM2:"",FPM2:"",DPM3:"",FPM3:"",RELAIS:"",NJOURF:"","NJOURF+1":"","PJOURF+1":"",PPOINTE1:"",monday:"Pond\u011Bl\xED",tuesday:"\xDAter\xFD",wednesday:"St\u0159eda",thursday:"\u010Ctvrtek",friday:"P\xE1tek",saturday:"Sobota",sunday:"Ned\u011Ble",led_when_off:"",led_when_on:"LED When On",cable_outlet_mode:"",led_effect:"",color:"",individual_led_effect:"",led:"LED",dimmingSpeedUpRemote:"",dimmingSpeedUpLocal:"",rampRateOffToOnRemote:"",rampRateOffToOnLocal:"",dimmingSpeedDownRemote:"",dimmingSpeedDownLocal:"",rampRateOnToOffRemote:"",rampRateOnToOffLocal:"",minimumLevel:"",maximumLevel:"",invertSwitch:"",autoTimerOff:"",defaultLevelLocal:"",defaultLevelRemote:"",stateAfterPowerRestored:"",loadLevelIndicatorTimeout:"",activePowerReports:"",periodicPowerAndEnergyReports:"",activeEnergyReports:"",powerType:"",switchType:"",physicalOnOffDelay:"",smartBulbMode:"",ledColorWhenOn:"",ledColorWhenOff:"",ledIntensityWhenOn:"",ledIntensityWhenOff:"",localProtection:"",remoteProtection:"",outputMode:"",onOffLedMode:"",firmwareUpdateInProgressIndicator:"",defaultLed1ColorWhenOn:"",defaultLed1ColorWhenOff:"",defaultLed1IntensityWhenOn:"",defaultLed1IntensityWhenOff:"",defaultLed2ColorWhenOn:"",defaultLed2ColorWhenOff:"",defaultLed2IntensityWhenOn:"",defaultLed2IntensityWhenOff:"",defaultLed3ColorWhenOn:"",defaultLed3ColorWhenOff:"",defaultLed3IntensityWhenOn:"",defaultLed3IntensityWhenOff:"",defaultLed4ColorWhenOn:"",defaultLed4ColorWhenOff:"",defaultLed4IntensityWhenOn:"",defaultLed4IntensityWhenOff:"",defaultLed5ColorWhenOn:"",defaultLed5ColorWhenOff:"",defaultLed5IntensityWhenOn:"",defaultLed5IntensityWhenOff:"",defaultLed6ColorWhenOn:"",defaultLed6ColorWhenOff:"",defaultLed6IntensityWhenOn:"",defaultLed6IntensityWhenOff:"",defaultLed7ColorWhenOn:"",defaultLed7ColorWhenOff:"",defaultLed7IntensityWhenOn:"",defaultLed7IntensityWhenOff:"",doubleTapUpEvent:"",fan_speed:"Rychlost v\u011Btr\xE1ku",air_quality:"Kvalita vzduchu",replace_filter:"Vym\u011Bnit filtr",hcho:"HCHO",aqi:"Index kvality ovzdu\u0161\xED",pm10:"PM\u2081\u2080",battery_state:"Stav baterie",battery2:"",control_mode:"",switch_status:"",load_detection_mode:"",load_type:"",load_dimmable:"",power_supply_mode:"",valve_position:"Pozice ventilu",display_text:"Zobrazen\xFD text",sound:"Zvuk",led_feedback:"LED Feedback",soil_moisture:"Vlhkost p\u016Fdy",sensors_type:"Typ senzoru",sensors_count:"\u010C\xEDta\u010D senzoru",cpu_temperature:"Teplota CPU",interface_mode:"M\xF3d rozhran\xED",current_summation:"Aktu\xE1ln\xED shrnut\xED",reliability:"Spolehlivost",card:"",service_mode:"Servisn\xED m\xF3d",led_state:"Stav LED",external_temperature:"",hysteresis:"",max_temperature_protection:"",backlight_led:""},TSt={add_to_group:"P\u0159idat do skupiny",create_group:"Vytvo\u0159it skupinu",new_group_id:"ID nov\xE9 skupiny",new_group_id_placeholder:"V p\u0159\xEDpad\u011B pot\u0159eby zadejte ID skupiny",new_group_name:"Nov\xFD n\xE1zev skupiny",new_group_name_placeholder:"p\u0159\xEDklad: my_bedroom_lights",remove_group:"Odebrat skupinu",group_id:"ID skupiny",group_name:"N\xE1zev skupiny",group_members:"\u010Clenov\xE9 skupiny",group_scenes:"Skupinov\xE9 sc\xE9ny",rename_group:"P\u0159ejmenovat skupinu"},kSt={empty_logs_message:"Nic k zobrazen\xED",filter_by_text:"Filtrovat podle textu",show_only:"Filtrovat podle typu"},CSt={help_coordinator_link_description:"Pln\xE9 \u010D\xE1ry jsou spojen\xEDm s koordin\xE1torem",help_end_device_description:"Zelen\xE1 znamen\xE1 koncov\xE9 za\u0159\xEDzen\xED",help_is_coordinator:"je koordin\xE1tor",help_lqi_description:"Kvalita spojen\xED je mezi 0 - 255 (vy\u0161\u0161\xED je lep\u0161\xED), hodnota s / p\u0159edstavuje v\xEDce typ\u016F spojen\xED",help_router_description:"Modr\xE1 znamen\xE1 sm\u011Brova\u010D",help_router_links_description:"P\u0159eru\u0161ovan\xE9 \u010D\xE1ry jsou spojen\xEDm se sm\u011Brova\u010Dem",hide:"Kliknut\xEDm na m\u011B skryje\u0161",load:"Na\u010D\xEDst mapu",loading:"V z\xE1vislosti na velikosti va\u0161\xED s\xEDt\u011B m\u016F\u017Ee na\u010Dten\xED trvat 10 sekund a\u017E 2 minuty."},ESt={all:"V\u0161e",dashboard:"P\u0159ehled",devices:"Za\u0159\xEDzen\xED",disable_join:"Zak\xE1zat p\u0159ipojen\xED",extensions:"Roz\u0161\xED\u0159en\xED",groups:"Skupiny",logs:"Logy",map:"Mapa",permit_join:"Povolit p\u0159ipojen\xED",restart:"Restartovat",settings:"Nastaven\xED",toggle_dropdown:"P\u0159epnout rozbalovac\xED nab\xEDdku"},ISt={check:"Kontrola nov\xFDch aktualizac\xED",check_all:"Zkontrolovat v\u0161e",empty_ota_message:"Nem\xE1te \u017E\xE1dn\xE1 za\u0159\xEDzen\xED, kter\xE1 podporuj\xED OTA",remaining_time:"Zb\xFDvaj\xEDc\xED \u010Das {{- remaining}}",update:"Aktualizovat firmware za\u0159\xEDzen\xED"},DSt={about:"O m\u011B",advanced:"Pokro\u010Dil\xE9",availability:"Dostupnost",blocklist:"Seznam blokovan\xFDch",coordinator_revision:"Revize koordin\xE1tora",coordinator_type:"Typ koordin\xE1tora",donate:"P\u0159\xEDsp\u011Bvek",donation_text:["Dobr\xFD den, %username%, zde n\xE1m m\u016F\u017Eete pod\u011Bkovat za tvrdou pr\xE1ci","Nev\xE1hej a \u0159ekni taky n\u011Bco hezk\xE9ho ;)"],download_state:"St\xE1hnout konfiguraci",experimental:"Experiment\xE1ln\xED",external_converters:"Extern\xED p\u0159evodn\xEDky",frontend:"Rozhran\xED",frontend_version:"Verze frontendu",main:"Hlavn\xED",ota:"Aktualizace OTA",passlist:"P\u0159\xEDstupov\xE1 pr\xE1va",raw:"Surov\xE1",restart_zigbee2mqtt:"Restartovat Zigbee2MQTT",serial:"S\xE9riov\xFD",settings:"Nastaven\xED",tools:"N\xE1stroje",zigbee2mqtt_version:"Verze Zigbee2MQTT",translate:"P\u0159elo\u017Eit",stats:"statistiky",coordinator_ieee_address:"IEEE adresa koordin\xE1toru"},xSt={detected_devices_message:"Zji\u0161t\u011Bno {{count}} za\u0159\xEDzen\xED touchlink.",rescan:"Hledat znova",scan:"Hledat"},OSt={clear:"Vymazat",closed:"Zav\u0159eno",false:"Ne",not_supported:"Nen\xED podporov\xE1no",occupied:"Obsazen\xFD",open:"Otev\u0159eno",supported:"Podporov\xE1no",true:"Ano",empty_string:'Pr\xE1zdn\xFD \u0159et\u011Bzec("")',leaking:"Net\u011Bsnost",tampered:"Manipulov\xE1no",null:"Pr\xE1zdn\xE9",Clear:"Vy\u010Distit",Closed:"Zav\u0159eno",Occupied:"Obsazen\xFD",Open:"Otev\u0159\xEDt"},MSt={actions:"Akce",attribute:"Atribut",battery:"Baterie",block_join:"Zablokovat op\u011Btovn\xE9 p\u0159ipojen\xED",dc_source:"DC zdroj",description:"Popis",device_type:"Typ za\u0159\xEDzen\xED",endpoint:"Koncov\xFD bod",firmware_build_date:"Datum sestaven\xED firmwaru",firmware_version:"Verze firmwaru",force_remove:"Vynutit odstran\u011Bn\xED",friendly_name:"N\xE1zev",ieee_address:"IEEE adresa",input_clusters:"Vstupn\xED clustery",interview_completed:"P\xE1rov\xE1n\xED dokon\u010Deno",interview_failed:"P\xE1rov\xE1n\xED selhalo",interviewing:"P\xE1rov\xE1n\xED",last_seen:"Naposledy vid\u011Bno",mains_single_phase:"S\xED\u0165 (jednof\xE1zov\xE1)",manufacturer:"V\xFDrobce",max_rep_interval:"Max interval odezvy",min_rep_change:"Min zm\u011Bna odezvy",min_rep_interval:"Min interval odezvy",network_address:"S\xED\u0165ov\xE1 adresa",none:"\u017D\xE1dn\xFD",output_clusters:"V\xFDstupn\xED clustery",pic:"Obr.",power:"Nap\xE1jen\xED",power_level:"\xFArove\u0148 nap\xE1jen\xED",reconfigure:"P\u0159enastavit",remove_device:"Odebrat za\u0159\xEDzen\xED",rename_device:"P\u0159ejmenovat za\u0159\xEDzen\xED",select_attribute:"Vybrat atribut",select_cluster:"Vybrat cluster",support_status:"Stav podpory",unsupported:"Nepodporov\xE1no",updating_firmware:"Aktualizace firmwaru",update_Home_assistant_entity_id:"Aktualizovat ID entity v Home Assistant",zigbee_manufacturer:"V\xFDrobce Zigbee",zigbee_model:"Model Zigbee",device:"Za\u0159\xEDzen\xED",channel:"Kan\xE1l",available:"Dustupn\xFD"},RSt={scene_id:"ID sc\xE9ny",recall:"Odvol\xE1n\xED",store:"ulo\u017Eit",remove:"Odstranit",remove_all:"Odstranit v\u0161e",add:"P\u0159idat",select_scene:"Vybrat sc\xE9nu",scene_name:"N\xE1zev sc\xE9ny"},LSt={byType:"dle typu",byPowerSource:"dle zdroje nap\xE1jen\xED",byVendor:"dle v\xFDrobce",byModel:"dle modelu",total:"celkov\xE9",EndDevice:"Koncov\xE9 za\u0159\xEDzen\xED"},PSt={avaliability:"Dostupnost",offline:"Nedostupn\xE9",online:"Dostupn\xE9",disabled:"Zak\xE1z\xE1no",enabled:"Povoleno"},$St={"Home Assistant legacy triggers, when enabled Zigbee2mqt will send an empty 'action' or 'click' after one has been send. A 'sensor_action' and 'sensor_click' will be discoverd":"Home Assistant legacy triggers, when enabled Zigbee2mqtt will send an empty 'action' or 'click' after one has been sent. A 'sensor_action' and 'sensor_click' will be discovered","Allow new devices to join (re-applied at restart)":"Povolit p\u0159ipojen\xED nov\xFDch za\u0159\xEDzen\xED (p\u0159i restartu znovu pou\u017Eito)","Checks whether devices are online/offline":"Kontrola zda je za\u0159\xEDzen\xED online/offline","MQTT base topic for Zigbee2MQTT MQTT messages":"Z\xE1kladn\xED MQTT t\xE9ma Zigbee2MQTT zpr\xE1v","MQTT client ID":"ID klienta MQTT","Disable self-signed SSL certificate":"Zak\xE1zat self-signed SSL certifik\xE1t","Disable LED of the adapter if supported":"Vypne LED adapt\xE9ru, pokud to adapt\xE9r podporuje","Adapter type, not needed unless you are experiencing problems":"Typ adapt\xE9ru, obvykle nen\xED pot\u0159eba pokud nejsou probl\xE9my","Block devices from the network (by ieeeAddr)":"Blokovat za\u0159\xEDzen\xED (pomoc\xED ieeeAddr)","Location of override OTA index file":" Location of override OTA index file ","URL on which the frontend can be reached, currently only used for the Home Assistant device configuration page":"Adresa URL, na kter\xE9 je dostupn\xFD frontend, aktu\xE1ln\u011B pou\u017E\xEDvan\xE1 pouze pro konfigura\u010Dn\xED str\xE1nku za\u0159\xEDzen\xED Home Assistant","Disables the legacy api (false = disable)":"Zak\xE1\u017Ee star\u0161\xED API (false = zak\xE1zat)","Payload to be used for device availabilty and bridge/state topics. true = text, false = JSON":"","Log rotation":"P\u0159episov\xE1n\xED log\u016F","Create symlink to current logs in the log directory":"Vytvo\u0159\xED symlink aktu\xE1ln\xEDch protokol\u016F v adres\xE1\u0159i protokol\u016F","Location of log directory":"Um\xEDst\u011Bn\xED slo\u017Eky s logy","Logging level":"\xDArove\u0148 logov\xE1n\xED","Adapter concurrency (e.g. 2 for CC2531 or 16 for CC26X2R1) (default: null, uses recommended value)":"V\xE1ha adapt\xE9ru (nap\u0159. 2 pro CC2531 nebo 16 pro CC26X2R1) (v\xFDchoz\xED: null, doporu\u010Den\xE1 hodnota)","Adapter delay":"Zpo\u017Ed\u011Bn\xED adapt\xE9ru","Add a last_seen attribute to MQTT messages, contains date/time of last Zigbee message":"P\u0159idat do MQTT zpr\xE1v atribut last_seen, obsahuj\xEDc\xED datum/\u010Das posledn\xED Zigbee komunikace","Add an elapsed attribute to MQTT messages, contains milliseconds since the previous msg":"P\u0159idat do MQTT zpr\xE1v atribut elapsed, obsahuj\xEDc\xED milisekundy od p\u0159edchoz\xED zpr\xE1vy","Name of the device in Home Assistant":""},zSt={"Home Assistant integration":"Integrace Home Assistant","Home Assistant (simple)":"Home Assistant (jednoduch\xFD)","Home Assistant (advanced)":"Home Assistant (pokro\u010Dil\xFD)","Availability (simple)":"","Availability (advanced)":"",Active:"Aktivn\xED",Timeout:"\u010Casov\xFD limit",Passive:"Pasivn\xED",Availability:"Dostupnost","Base topic":"Z\xE1kladn\xED t\xE9ma",Keepalive:"Udr\u017Eovat na\u017Eivu","Certificate authority":"Certifika\u010Dn\xED autorita","SSL/TLS key":"SSL/TLS kl\xED\u010D","SSL/TLS certificate":"SSL/TLS certifik\xE1t",User:"U\u017Eivatel",Password:"Heslo","Client ID":"ID klienta","Reject unauthorized":"Odm\xEDtnout neautorizovan\xE9",Version:"Verze","Disable led":"Zak\xE1zat LED",Adapter:"Adapt\xE9r",Baudrate:"P\u0159enosov\xE1 rychlost",Networkmap:"S\xED\u0165ov\xE1 mapa","OTA updates":"OTA updaty","Update check interval":"Interval kontroly updat\u016F","Disable automatic update check":"Zak\xE1zat automatick\xE9 kontroly updat\u016F","IKEA TRADFRI OTA use test url":"IKEA TRADFRI OTA pou\u017Eije test url","OTA index override file name":"","Frontend (simple)":"Frontend (z\xE1kladn\xED)","Frontend (advanced)":"Frontend (pokro\u010Dil\xE9)","Auth token":"Autentiza\u010Dn\xED token","Options that are applied to all devices":"",Advanced:"Pokro\u010Dil\xFD","Legacy API":"Zastaral\xE9 API","Legacy availability payload":"","Log rotation":"P\u0159episov\xE1n\xED log soubor\u016F","Log output":"V\xFDstup log\u016F","Log directory":"Slo\u017Eka s logy","Log file":"Soubor s logy","Log level":"\xDArove\u0148 logov\xE1n\xED",Protocol:"Protokol",Path:"Cesta",Type:"Typ","ZigBee channel":"Kan\xE1l ZigBee","Adapter concurrency":"V\xE1ha adapt\xE9ru","Adapter delay":"Zpo\u017Ed\u011Bn\xED adapt\xE9ru","Cache state":"Stav mezipam\u011Bti","Last seen":"Naposledy vid\u011Bn",Elapsed:"Uplynul\xFD","Network key":"S\xED\u0165ov\xFD kl\xED\u010D","Timestamp format":"Form\xE1t \u010Dasov\xE9ho raz\xEDtka","Transmit power":"Vys\xEDlac\xED v\xFDkon",Reporting:"Hl\xE1\u0161en\xED","Baudrate (deprecated)":"P\u0159enosov\xE1 rychlost (zastaral\xE9)","RTS / CTS (deprecated)":"","IKEA TRADFRI OTA use test url (deprecated)":"","Experimental (deprecated)":"","Whitelist (deprecated, use passlist)":"Povolen\xE9 (zastaral\xE9, pou\u017Eijte passlist)","Ban (deprecated, use blocklist)":"Z\xE1kaz (zastaral\xE9, pou\u017Eijte blocklist)",Optimistic:"Optimistick\xFD",Icon:"Ikona","Home Assistant":"","Home Assistant name":""};var NSt={common:ySt,devicePage:_St,exposes:bSt,extensions:wSt,featureDescriptions:SSt,featureNames:ASt,groups:TSt,logs:kSt,map:CSt,navbar:ESt,ota:ISt,settings:DSt,touchlink:xSt,values:OSt,zigbee:MSt,scene:RSt,stats:LSt,avaliability:PSt,settingsSchemaDescriptions:$St,settingsSchemaTitles:zSt};const FSt={action:"Toiminto",actions:"Toiminnot",apply:"Aseta",attribute:"Attribuutti",bind:"Sido",check_all:"Tarkista kaikki",clear:"Pyyhi",close:"Sulje",cluster:"Ryp\xE4s",clusters:"Rypp\xE4\xE4t",confirmation:"Vahvistuskehote",delete:"Poista",destination:"Kohde",devices:"Laitteet",dialog_confirmation_prompt:"Oletko varma?",disable:"Poista k\xE4yt\xF6st\xE4",enter_search_criteria:"Anna hakukriteeri",groups:"Ryhm\xE4t",loading:"Ladataan...",none:"Ei mit\xE4\xE4n",read:"Lue",save:"Tallenna",select_device:"Valitse laite",select_endpoint:"Valitse p\xE4\xE4tepiste",source_endpoint:"L\xE4hdep\xE4\xE4tepiste",the_only_endpoint:"Ainoa p\xE4\xE4tepiste",unbind:"Vapauta sidos",write:"Kirjoita"},BSt={about:"Tietoja",bind:"Sido",clusters:"Rypp\xE4\xE4t",dev_console:"Kehityskonsoli",reporting:"Raportti",settings:"Asetukset",settings_specific:"Asetukset (erityiset)",state:"Tila",scene:"N\xE4kym\xE4",unknown_device:"Tuntematon laite"},WSt={empty_exposes_definition:"Exposes-m\xE4\xE4rittely on tyhj\xE4"},HSt={create_new_extension:"Luo uusi laajennus",extension_name_propmt:"Anna laajennuksen nimi",select_extension_to_edit:"Valitse muokattava laajennus"},jSt={"On/off state of this light":"T\xE4m\xE4n valon p\xE4\xE4ll\xE4/pois tila","Brightness of this light":"T\xE4m\xE4n valon kirkkaus","Color temperature of this light":"T\xE4m\xE4n valon v\xE4ril\xE4mp\xF6tila","Color temperature after cold power on of this light":"T\xE4m\xE4n valon v\xE4ril\xE4mp\xF6tila kylm\xE4k\xE4ynnistyksen j\xE4lkeen","Color of this light in the CIE 1931 color space (x/y)":"T\xE4m\xE4n valon v\xE4ri CIE 1931 v\xE4ritilassa (x/y)","Triggers an effect on the light (e.g. make light blink for a few seconds)":"Liipaisee valoefektint (esim. laita valo vilkkumaan muutamaksi sekunniksi)","Link quality (signal strength)":"Linkin laatu (signaalivoimakkuus)","Temperature setpoint":"L\xE4mp\xF6tila-asetus","Current temperature measured on the device":"Nykyinen laitteelta mitattu l\xE4mp\xF6tila","Mode of this device":"T\xE4m\xE4n laitteen tila","Offset to be used in the local_temperature":"Poikkeama, jota k\xE4ytet\xE4\xE4n local_temperature:n yhteydess\xE4","Position of this cover":"T\xE4m\xE4n peitteen asento","Motor speed":"Moottorin nopeus","On/off state of the switch":"Kytkimem p\xE4\xE4ll\xE4/pois tila","Recover state after power outage":"Toipumistila virtakatkon j\xE4lkeen","Remaining battery in %":"Pariston tila prosentteina","Triggered action (e.g. a button click)":"Liipaistu toiminto (esim. n\xE4pp\xE4inpainallus)","Indicates if the battery of this device is almost empty":"Osoittaa, ett\xE4 paristo on v\xE4hiss\xE4","Color of this light expressed as hue/saturation":"T\xE4m\xE4n valon v\xE4ri ilmaistuna s\xE4vy/kyll\xE4isyys","Type of user, unrestricted: owner (default), (year|week)_day_schedule: user has ability to open lock based on specific time period, master: user has ability to both program and operate the door lock, non_access: user is recognized by the lock but does not have the ability to open the lock":"","Triggered action on the lock":"","Source of the triggered action on the lock":"","ID of user that triggered the action on the lock":"","Voltage of the battery in millivolts":"Pariston j\xE4nnite millivoltteina","Instantaneous measured power":"Hetkellisesti mitattu teho","Sum of consumed energy":"Kulutettu kokonaisenergia","Measured temperature value":"Mitattu l\xE4mp\xF6tila","Measured electrical potential value":"Mitattu j\xE4nnitearvo","Instantaneous measured electrical current":"Hetkellisesti mitattu s\xE4hk\xF6virta","Indicates if the contact is closed (= true) or open (= false)":"Osoittaa, ett\xE4 kontaksti on suljettu (= true) tai avoin (= false)","Raw measured illuminance":"Valoisuuden raaka-arvo","Measured illuminance in lux":"Mitattu valoisuus lukseina","After turn on, the indicator light turns on while switch is off, and vice versa":"","Decoupled mode for left button":"Irroitustila vasemmalle painikkeelle","Decoupled mode for right button":"Irroitustila oikealle painikkeelle","Measured relative humidity":"Mitattu suhteellinen kosteus","Number of power outages (since last pairing)":"","Number of power outages":"","Enabling prevents both relais being on at the same time":"Salliminen est\xE4\xE4 molempien releiden samanaikaisen p\xE4\xE4ll\xE4olon","The current charging status.":"","The current state of the motor.":"","Whether the motor is moving or not":"","Motor state":"","Indicates whether the device detected smoke":"Osoittaa laitteen havainneen savua","Value of smoke concentration":"","Value of smoke concentration in dB/m":"","Starts the self-test process (checking the indicator light and buzzer work properly)":"","Self-test in progress":"","Mute the buzzer for 80 seconds (buzzer cannot be pre-muted, because this function only works when the alarm is triggered)":"","Buzzer muted":"","When this option is enabled then in the normal monitoring state, the green indicator light flashes every 60 seconds":"","When this option is enabled and a smoke is detected, other detectors with this option enabled will also sound the alarm buzzer":"","Value of gas concentration":"",'Gas concentration value at which an alarm is triggered ("10%LEL" is more sensitive than "15%LEL")':"","Mute the buzzer for 10 minutes (buzzer cannot be pre-muted, because this function only works when the alarm is triggered)":"","When this option is enabled and a gas leak is detected, other detectors with this option enabled will also sound the alarm buzzer":"",'"Preparation" or "work" (measurement of the gas concentration value and triggering of an alarm are only performed in the "work" state)':"","Indicates whether the device is tampered":"Osoittaa laitteen peukaloinnin","Side of the cube":"Kuution taho","Indicates whether the device detected a water leak":"Osoittaa laitteen havainneen vesivuodon",'Presence events: "enter", "leave", "left_enter", "right_leave", "right_enter", "left_leave", "approach", "away"':"","Monitoring mode with or without considering right and left sides":"","The distance at which the sensor detects approaching":"","Different sensitivities means different static human body recognition rate and response speed of occupied":"","Reset the status of no presence":"","Indicates whether the device detected occupancy":"Osoittaa laitteen havainneen paikallaolon","Time interval for detecting actions":"","The measured atmospheric pressure":"Mitattu ilmanpaine","Decoupled mode for center button":"Irroitustila keskipainikkeelle mode for center button","Switch between rgbw mode or dual color temperature mode":"","Is the device plugged in":"","Smoke alarm status":"","Test alarm":"","Test alarm result":"","Battery level state":"","Alarm enable":"","Fault alarm status":"","Silence siren":"","Enables/disables physical input on the device":"Sallii/est\xE4\xE4 laitteen fyysisen liit\xE4nn\xE4n","The dimmer is capable of measuring the reactanceto distinguish inductive and capacitive loads.":"The dimmer is capable of measuring the reactance to distinguish inductive and capacitive loads.","Controls the behavior when the device is powered on":"Ohjaa k\xE4ytt\xE4ytymist\xE4, kun laite on k\xE4ynnistetty","PIR sensor sensitivity (refresh and update only while active)":"","PIR keep time in seconds (refresh and update only while active)":"","Report interval":"","Current display unit":"","Temperature alarm status":"","Humidity alarm status":"","Alarm humidity max":"","Alarm humidity min":"","Distance to target":"","Minimum range":"","Maximum range":"","Detection delay":"","Fading time":"","Self_test, possible resuts: checking, check_success, check_failure, others, comm_fault, radar_fault.":"","Brightness state":"","presets for sensitivity for presence and movement":"","Tumble status switch":"","fall sensitivity of the radar":"","tumble alarm time":"","fall down status":"","static dwell alarm":"","Led status switch":"LED status switch","Trigger the door movement":"","Indicates if the garage door contact is closed (= true) or open (= false)":"","Relay LED indicator mode":"","Plug LED indicator mode":"","Maximum temperature":"Maksimil\xE4mp\xF6tila","Minimum temperature":"Minimil\xE4mp\xF6tila",Position:"Asento","Enables/disables window detection on the device":"Sallii/est\xE4\xE4 ikkunan havainnoinnin laitteella","Countdown in minutes":"Minuuttia j\xE4lejll\xE4","Away mode":"Poissa-tila","Comfort temperature":"Mukavuusl\xE4mp\xF6tila","Eco temperature":"S\xE4\xE4st\xF6l\xE4mp\xF6tila","Mode of this device (similar to system_mode)":"T\xE4m\xE4n laitteen tila (kuten system_mode)",'When Anti-Freezing function is activated, the temperature in the house is kept at 8 \xB0C, the device display "AF".press the pair button to cancel.':"",'Battery life can be prolonged by switching the heating off. To achieve this, the valve is closed fully. To activate the heating stop, the device display "HS", press the pair button to cancel.':"","Window open?":"","Mode of this device, in the `heat` mode the TS0601 will remain continuously heating, i.e. it does not regulate to the desired temperature. If you want TRV to properly regulate the temperature you need to use mode `auto` instead setting the desired temperature.":"","Enable/disable auto lock":"Salli/est\xE4 autom. lukitus","Enable/disable away mode":"Salli/est\xE4 poissa-tila","Away preset days":"Poissa: asetetut p\xE4iv\xE4t","Boost time":"Tehostusaika","Force the valve position":"Pakota venttiilin asento","Away preset temperature":"Poissa: asetettu l\xE4mp\xF6tila","Week format user for schedule":"Aikataulussa k\xE4ytett\xE4v\xE4 viikkomuoto","Calibration time":"Kalibrointiaika","Maximum light brightness":"","Indicates if CO (carbon monoxide) is detected":"Osoittaa CO:n (hiilimonoksidin) havaitsemisen","The measured CO (carbon monoxide) value":"","The measured formaldehyd value":"The measured formaldehyde value","Measured PM2.5 (particulate matter) concentration":"Measured PM\u2082.\u2085 (particulate matter) concentration","Group where the action was triggered on":"","The measured occupancy value":"","The measured noise value":"","Indicates whether the device detected noise":"","Time in seconds after which noise is cleared after detecting it (default: 60)":"","Time in seconds after which occupancy is cleared after detecting it (default: 60)":"","Self-heating compensation. The compensation value is subtracted from the measured temperature":"","If the sensor is triggered by the slightest movement, reduce the sensitivity, otherwise increase it (default: 50)":"","The minimum noise level at which the detector will work (default: 50)":"","Automatic calibration of the CO2 sensor. If ON, the CO2 sensor will automatically calibrate every 7 days.":"","Ventilate the room for 20 minutes, turn on manual calibration, and turn it off after one second. After about 5 minutes the CO2 sensor will show 400ppm. Calibration completed":"","Turn on when working in conditions of high humidity (more than 70 %, RH) or condensation, if the sensor shows 0 or 100 %.":"","White brightness of this light":"","Valve state if open or closed":"","Position of the valve":"","Control backlight dimming behavior":"Control backlight dimming behaviour","Door status":"","User ID can only number 1":"","Pincode to set, set pincode(4 digit) to null to clear":"","temperature of device internal mcu":"","Measured electrical power factor":"","Measured electrical ac frequency":"","Currently status":"","Instantaneous measured apparent power":"","Instantaneous measured power on phase A":"","Instantaneous measured power on phase B":"","Instantaneous measured power on phase C":"","Instantaneous measured power factor":"","Sum of consumed energy on phase A":"","Sum of consumed energy on phase B":"","Sum of consumed energy on phase C":"","Measured electrical AC frequency":"","Measured electrical potential value on phase A":"","Measured electrical potential value between phase A and B":"","Measured electrical potential value between phase B and C":"","Measured electrical potential value between phase C and A":"","Instantaneous measured electrical current on phase A":"","Time in seconds after which occupancy is cleared after detecting it":"","Controls the behaviour when the device is powered on":"Ohjaa k\xE4ytt\xE4ytymist\xE4, kun laite on k\xE4ynnistetty","Sets dimming mode to autodetect or fixed RC/RL/RL_LED mode (max load is reduced in RL_LED)":"","Duration of lift":"","Controls how programming affects the thermostat. Possible values: setpoint (only use specified setpoint), schedule (follow programmed setpoint schedule). Changing this value does not clear programmed schedules.":"","Not clear how this affects operation. However, it would appear that the device does not execute any motor functions if this is set to false. This may be a means to conserve battery during periods that the heating system is not energized (e.g. during summer). `false` No Heat Available or `true` Heat Available":"","If `radiator_covered` is `true`: Set at maximum 30 minutes interval but not more often than every 5 minutes and 0.1 degrees difference. Resets every 35 minutes to standard. If `radiator_covered` is `false`: Set at maximum 3 hours interval but not more often than every 30 minutes and 0.1 degrees difference. Resets every 3 hours to standard. Value 21C = 2100 (-8000=undefined).":"","Set if the TRV should solely rely on external_measured_room_sensor or operate in offset mode. `false` = Auto Offset Mode or `true` = Room Sensor Mode":"","Whether or not the window open feature is enabled":"","Mean radiator load for room calculated by gateway for load balancing purposes (-8000=undefined)":"","Specific for pre-heat running in Zigbee Weekly Schedule mode":"","Status of adaptation run: None (before first run), In Progress, Valve Characteristic Found, Valve Characteristic Lost":"","Automatic adaptation run enabled (the one during the night)":"","Adaptation run control: Initiate Adaptation Run or Cancel Adaptation Run":"","Regulation SetPoint Offset in range -2.5\xB0C to 2.5\xB0C in steps of 0.1\xB0C. Value 2.5\xB0C = 25.":"","Temperature sensitivity":"","Enable LED":"","Temperature/humidity alarm status":"","Temperature scale (\xB0F/\xB0C)":"","OLED brightness when operating the buttons. Default: Medium.":"","Key beep volume and vibration level. Default: Low.":"","Type of the external floor sensor. Default: NTC 10K/25.":"","The sensor used for heat control. Default: Room Sensor.":"","The mode after a power reset. Default: Previous Mode.":"","The tempearatue calibration for the exernal floor sensor, between -3 and 3 in 0.1\xB0C. Default: 0.":"","The duration of Dry Mode, between 5 and 100 minutes. Default: 5.":"","The mode after Dry Mode. Default: Auto.":"","The temperature on the display. Default: Room Temperature.":"","The threshold to detect window open, between 1.5 and 4 in 0.5 \xB0C. Default: 0 (disabled).":"","Hysteresis setting, between 0.5 and 2 in 0.1 \xB0C. Default: 0.5.":"","Room temperature alarm threshold, between 20 and 60 in \xB0C. 0 means disabled. Default: 45.":"","Power on behavior state":"Power on behaviour state","Indicator light status":"","The delta between local_temperature and current_heating_setpoint to trigger Heat":"","Serial Number":"","Base index":"","Tarif option":"","Subscribed intensity level":"","HCHC index":"","HCHP index":"","BBRHCJW index":"","BBRHPJW index":"","BBRHCJR index":"","BBRHPJR index":"","RMS current":"","RMS current (phase 2)":"","RMS current (phase 3)":"","RMS current peak":"","RMS current peak (phase 2)":"","RMS current peak (phase 3)":"","Three-phase power peak":"","Apparent power":"","Current pricing period":"","Tomorrow color":"","Schedule HPHC":"","Presence of potentials":"","EJP start notice (30min)":"","Subscribed Power Exceeded Warning":"","Over Current Warning (phase 1)":"","Over Current Warning (phase 2)":"","Over Current Warning (phase 3)":"","Current supplier price label":"","Current tariff index number":"","Customer tele-information protocol version":"","Current date and time":"","Total provider active power delivered (index 07)":"","Total provider active power delivered (index 08)":"","Total provider active power delivered (index 09)":"","Total provider active power delivered (index 10)":"","Active energy withdrawn Distributor (index 01)":"","Active energy withdrawn Distributor (index 02)":"","Active energy withdrawn Distributor (index 03)":"","Active energy withdrawn Distributor (index 04)":"","Total active power injected":"","Total reactive power (Q1)":"","Total reactive power (Q2)":"","Total reactive power (Q3)":"","Total reactive power (Q4)":"","RMS voltage":"","RMS voltage (phase 2)":"","RMS voltage (phase 3)":"","Register of Statutes":"","Apparent power threshold":"","Instantaneous apparent power injected":"","Apparent power max. injected n":"","Apparent power max. injected n-1":"","Current point of the active load curve drawn":"","Previous point of the active load curve drawn":"","Point n of the withdrawn active load curve":"","Point n-1 of the withdrawn active load curve":"","Average RMS voltage (phase 1)":"","Average RMS voltage (phase 2)":"","Average RMS voltage (phase 3)":"","Immediate apparent power delivered (phase 2)":"","Immediate apparent power delivered (phase 3)":"","Apparent power delivered peak (phase 2)":"","Apparent power delivered peak (phase 3)":"","Apparent power max. draw-off n-1":"","Apparent power max. draw-off n-1 (phase 2)":"","Apparent power max. draw-off n-1 (phase 3)":"","Message short":"","Message ultra-short":"","PRM number":"","Start mobile point 1":"","Stop mobile point 1":"","Start mobile point 2":"","Stop mobile point 2":"","Start mobile point 3":"","Stop mobile point 3":"","Current day number supplier calendar":"","Next day number supplier calendar":"","Profile of the next supplier calendar day":"","Profile of the next check-in day":"","Controls behaviour of led/siren on alarm":"Controls behaviour of LED/siren on alarm","Measured eCO2 value":"Measured CO2 value","Auto off after specific time.":"Autom. pois tietyn ajan j\xE4lkeen.","Enable the LED when the light is off":"","Works only when the pilot wire is deactivated":"","Animation Effect to use for the LEDs":"","Calculated by using a hue color circle(value/255*360) If color = 255 display white":"","Brightness of the LEDs":"","1-60 is in seconds calculated 61-120 is in minutes calculated by(value-60) Example a value of 65 would be 65-60 = 5 minutes - 120-254 Is in hours calculated by(value-120) Example a value of 132 would be 132-120 would be 12 hours. - 255 Indefinitely":"","Individual LED to target.":"","Animation Effect to use for the LED":"","Brightness of the LED":"","1-60 is in seconds calculated 61-120 is in minutes calculated by(value-60) Example a value of 65 would be 65-60 = 5 minutes - 120-254 Is in hours calculated by(value-120) Example a value of 132 would be 132-120 would be 12 hours. - 255 Indefinitely":"","This changes the speed that the light dims up when controlled from the hub. A setting of 0 turns the light immediately on. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 25 (2.5s)":"","This changes the speed that the light dims up when controlled at the switch. A setting of 0 turns the light immediately on. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpRemote setting.":"","This changes the speed that the light turns on when controlled from the hub. A setting of 0 turns the light immediately on. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpRemote setting.":"","This changes the speed that the light turns on when controlled at the switch. A setting of 0 turns the light immediately on. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpRemote setting.":"","This changes the speed that the light dims down when controlled from the hub. A setting of 0 turns the light immediately off. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpRemote setting.":"","This changes the speed that the light dims down when controlled at the switch. A setting of 0 turns the light immediately off. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpLocal setting.":"","This changes the speed that the light turns off when controlled from the hub. A setting of 'instant' turns the light immediately off. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with rampRateOffToOnRemote setting.":"","This changes the speed that the light turns off when controlled at the switch. A setting of 'instant' turns the light immediately off. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with rampRateOffToOnLocal setting.":"","The minimum level that the dimmer allows the bulb to be dimmed to. Useful when the user has an LED bulb that does not turn on or flickers at a lower level.":"","The maximum level that the dimmer allows the bulb to be dimmed to.Useful when the user has an LED bulb that reaches its maximum level before the dimmer value of 99 or when the user wants to limit the maximum brightness.":"","Inverts the orientation of the switch. Useful when the switch is installed upside down. Essentially up becomes down and down becomes up.":"","Automatically turns the switch off after this many seconds. When the switch is turned on a timer is started. When the timer expires, the switch is turned off. 0 = Auto off is disabled.":"","Default level for the dimmer when it is turned on at the switch. A setting of 0 means that the switch will return to the level that it was on before it was turned off.":"","Default level for the dimmer when it is turned on from the hub. A setting of 0 means that the switch will return to the level that it was on before it was turned off.":"","The state the switch should return to when power is restored after power failure. 0 = off, 1-100 = level, 101 = previous.":"","Shows the level that the load is at for x number of seconds after the load is adjusted and then returns to the Default LED state. 0 = Stay Off, 1-10 = seconds, 11 = Stay On.":"","Power level change that will result in a new power report being sent. The value is a percentage of the previous report.0 = disabled, 1-32767 = 0.1W-3276.7W.":"","Time period between consecutive power & energy reports being sent (in seconds). The timer is reset after each report is sent.":"","Energy reports Energy level change which will result in sending a new energy report.0 = disabled, 1-32767 = 0.01kWh-327.67kWh. Default setting: 10 (0.1 kWh)":"","Set the power type for the device.":"","Set the switch configuration.":"","This will set the button press delay. 0 = no delay (Disables Button Press Events), 1 = 100ms, 2 = 200ms, 3 = 300ms, etc. up to 900ms. Default = 500ms.":"","For use with Smart Bulbs that need constant power and are controlled via commands rather than power.":"","Set the color of the LED Indicator when the load is on.":"","Set the color of the LED Indicator when the load is off.":"","Set the intensity of the LED Indicator when the load is on.":"","Set the intensity of the LED Indicator when the load is off.":"","Ability to control switch from the wall.":"","Ability to control switch from the hub.":"","Use device as a Dimmer or an On/Off switch.":"","When the device is in On/Off mode, use full LED bar or just one LED.":"","Display progress on LED bar during firmware update.":"","0-254:This is the color of the LED strip in a hex representation. 255:Synchronization with default all LED strip color parameter.":"","Intesity of LED strip when on. 101 = Syncronized with default all LED strip intensity parameter.":"","Intesity of LED strip when off. 101 = Syncronized with default all LED strip intensity parameter.":"","Result of a double tap on the up button.":"","Measured Hcho value":"Measured HCHO value","Measured PM10 (particulate matter) concentration":"Measured PM\u2081\u2080 (particulate matter) concentration","Remaining battery 2 in %":"","Illuminance calibration in lux":"","Temperature calibration (-2.0...2.0)":"","Enable reporting":"","Control mode":"","External switch type":"","External switch status":"","Load detection mode":"","Load type":"","Load dimmable":"","Power supply mode":"","Pulses per kwh. Default 1000 imp/kWh. Range 0 to 65535":"Pulses per kWh. Default 1000 imp/kWh. Range 0 to 65535","Indicates if the card is inserted (= true) or not (= false)":"","Current temperature measured on the external sensor (floor)":"","The difference between the temperature at which the thermostat switches off, and the temperature at which it switches on again.":"","Max guarding temperature":"","Prevent changes. `false` = run normally. `true` = prevent from making changes.":"","Enables the LED when the light is off":"","Brightness of this backlight LED":"","Enable or disable the blue backlight LED":""},USt={undefined:"undefined",state:"Tila",brightness:"Kirkkaus",color_temp:"V\xE4ril\xE4mp\xF6tila",color_temp_startup:"V\xE4ril\xE4mp\xF6tila alussa",color_xy:"V\xE4ri Xy",effect:"Teho",linkquality:"Yhteyden laatu",local_temperature:"Paikallinen l\xE4mp\xF6tila",system_mode:"J\xE4rjestelm\xE4tila",local_temperature_calibration:"Paikallisen l\xE4mp\xF6tilan kalibrointi",position:"Paikka",options:"Valinnat",motor_speed:"moottorin nopeus",motor_working_mode:"",percent_state:"",border:"",power_outage_memory:"Virtakatkomuisti",battery:"Paristo",action:"Toiminta",power_on_behavior:"Toiminta virtakatkon j\xE4lkeen",battery_low:"Paristo v\xE4hiss\xE4",color_hs:"V\xE4ri (HS)",action_source_name:"",action_source_user:"",voltage:"J\xE4nnite",operation_mode:"Toimintomoodi",power:"Virta",energy:"Energia",temperature:"L\xE4mp\xF6tila",current:"Virta",led_disabled_night:"Led disabled night",contact:"Kontakti",illuminance:"Valoisuus",illuminance_lux:"Valoisuus",flip_indicator_light:"",consumer_connected:"Kulutus kytketty",humidity:"Kosteus",lcd_brightness:"LCD Brightness",lcd_auto_brightness_enabled:"LCD Auto Brightness Enabled",standby_lcd_brightness:"Standby LCD Brightness",power_outage_count:"",charging_status:"",motor_state:"",running:"",strength:"Voimakkuus",angle_x:"Kulma X",angle_y:"Kulma Y",angle_z:"Kulma Z",smoke:"Savu",smoke_density:"Savun Sakeus",smoke_density_dbm:"",mute_buzzer:"",mute:"",heartbeat_indicator:"",linkage_alarm:"",gas_sensitivity:"",tamper:"Peukalointi",auto_off:"Autom. pois",water_leak:"Vesivuoto",presence:"Paikalla",presence_event:"",monitoring_mode:"",approach_distance:"",reset_nopresence_status:"",occupancy:"Paikallaolo",detection_interval:"",pressure:"Ilmanpaine",alarm:"H\xE4lyytys",ac_connected:"",test_alarm:"",test_alarm_result:"",battery_level:"",fault_alarm:"",silence_siren:"",on_off_transition_time:"P\xE4\xE4lle Pois muutos aika",report_interval:"",temperature_unit_convert:"",max_temperature:"Max l\xE4mp\xF6tila",min_temperature:"Min l\xE4mp\xF6tila",max_humidity:"",min_humidity:"",target_distance:"",minimum_range:"",maximum_range:"",detection_delay:"",fading_time:"",self_test:"",brightness_state:"",action_step_size:"",action_transition_time:"",action_rate:"",child_lock:"Lapsilukko",motion_speed:"Liikkeen nopeus",motion_direction:"Liikkeen suunta",tumble_switch:"",fall_sensitivity:"",tumble_alarm_time:"",fall_down_status:"",static_dwell_alarm:"",led_status:"LED Status",trigger:"",garage_door_contact:"",indicator_mode:"",current_heating_setpoint:"Nykyinen l\xE4mmityksen asetus",preset:"Esiasetus",programming_mode:"Ohjelmointi Tila",thursday_schedule:"Torstai ohjelma",saturday_schedule:"Lauantai Ohjelma",sunday_schedule:"Sunnuntai Ohjelma",away_mode:"Poissa -tila",comfort_temperature:"Mukavuusl\xE4mp\xF6tila",eco_temperature:"S\xE4\xE4st\xF6l\xE4mp\xF6tila",holiday_start_stop:"",schedule:"",away_preset_days:"Poissa: p\xE4iv\xE4t",boost_time:"Tehostusaika",force:"Voima",away_preset_temperature:"Poissa: l\xE4mp\xF6tila",week:"Viikko",backlight_mode:"Taustavalotila",moving:"Liikkuu",calibration:"Kalibrointi",motor_reversal:"Moottorin peruutus",calibration_time:"kalibraatio aika",max_brightness:"",carbon_monoxide:"Hiilimonoksidi",co:"",co2:"CO2",formaldehyd:"Formaldehyde",pm25:"PM\u2082.\u2085",action_group:"",occupancy_level:"",noise:"",noise_detected:"",noise_timeout:"",occupancy_sensitivity:"",noise_detect_level:"",co2_autocalibration:"",co2_manual_calibration:"",th_heater:"",white_brightness:"",led_intensity_on:"LED Intensity On",led_intensity_off:"LED Intensity Off",door_state:"",power_factor:"",ac_frequency:"",status:"",power_apparent:"",power_phase_a:"",power_phase_b:"",power_phase_c:"",energy_phase_a:"",energy_phase_b:"",energy_phase_c:"",voltage_phase_a:"",voltage_phase_ab:"",voltage_phase_bc:"",voltage_phase_ca:"",current_phase_a:"",lift_duration:"",programming_operation_mode:"",radiator_covered:"",window_open_feature:"",preheat_status:"",adaptation_run_status:"",adaptation_run_settings:"",adaptation_run_control:"",regulation_setpoint_offset:"",led_indication:"LED Indication",action_duration:"",temperature_sensitivity:"",led_enable:"LED Enable",temperature_scale:"",battpercentage:"",outdoor_temperature:"",button_vibration_level:"",floor_sensor_type:"",powerup_status:"",floor_sensor_calibration:"",dry_time:"",mode_after_dry:"",temperature_display:"",window_open_check:"",hysterersis:"",display_auto_off_enabled:"",alarm_airtemp_overvalue:"",backlight:"",color_power_on_behavior:"Colour Power On Behaviour",valve_state:"",indicate_light:"",ADCO:"",BASE:"",OPTARIF:"",ISOUSC:"",HCHC:"",HCHP:"",BBRHCJW:"",BBRHPJW:"",BBRHCJR:"",BBRHPJR:"",IINST:"",IINST2:"",IINST3:"",IMAX:"",IMAX2:"",IMAX3:"",PMAX:"",PAPP:"",PTEC:"",DEMAIN:"",HHPHC:"",PPOT:"",PEJP:"",ADPS:"",ADIR1:"",ADIR2:"",ADIR3:"",LTARF:"",NTARF:"",VTIC:"",DATE:"",EASF07:"",EASF08:"",EASF09:"",EASF10:"",EASD01:"",EASD02:"",EASD03:"",EASD04:"",EAIT:"",ERQ1:"",ERQ2:"",ERQ3:"",ERQ4:"",URMS1:"",URMS2:"",URMS3:"",STGE:"",PCOUP:"",SINSTI:"",SMAXIN:"","SMAXIN-1":"",CCASN:"","CCASN-1":"",CCAIN:"","CCAIN-1":"",UMOY1:"",UMOY2:"",UMOY3:"",SINSTS2:"",SINSTS3:"",SMAXN2:"",SMAXN3:"","SMAXN-1":"","SMAXN2-1":"","SMAXN3-1":"",MSG1:"",MSG2:"",PRM:"",DPM1:"",FPM1:"",DPM2:"",FPM2:"",DPM3:"",FPM3:"",RELAIS:"",NJOURF:"","NJOURF+1":"","PJOURF+1":"",PPOINTE1:"",led_when_off:"",led_when_on:"LED When On",cable_outlet_mode:"",led_effect:"",color:"",individual_led_effect:"",led:"LED",dimmingSpeedUpRemote:"",dimmingSpeedUpLocal:"",rampRateOffToOnRemote:"",rampRateOffToOnLocal:"",dimmingSpeedDownRemote:"",dimmingSpeedDownLocal:"",rampRateOnToOffRemote:"",rampRateOnToOffLocal:"",minimumLevel:"",maximumLevel:"",invertSwitch:"",autoTimerOff:"",defaultLevelLocal:"",defaultLevelRemote:"",stateAfterPowerRestored:"",loadLevelIndicatorTimeout:"",activePowerReports:"",periodicPowerAndEnergyReports:"",activeEnergyReports:"",powerType:"",switchType:"",physicalOnOffDelay:"",smartBulbMode:"",ledColorWhenOn:"",ledColorWhenOff:"",ledIntensityWhenOn:"",ledIntensityWhenOff:"",localProtection:"",remoteProtection:"",outputMode:"",onOffLedMode:"",firmwareUpdateInProgressIndicator:"",defaultLed1ColorWhenOn:"",defaultLed1ColorWhenOff:"",defaultLed1IntensityWhenOn:"",defaultLed1IntensityWhenOff:"",defaultLed2ColorWhenOn:"",defaultLed2ColorWhenOff:"",defaultLed2IntensityWhenOn:"",defaultLed2IntensityWhenOff:"",defaultLed3ColorWhenOn:"",defaultLed3ColorWhenOff:"",defaultLed3IntensityWhenOn:"",defaultLed3IntensityWhenOff:"",defaultLed4ColorWhenOn:"",defaultLed4ColorWhenOff:"",defaultLed4IntensityWhenOn:"",defaultLed4IntensityWhenOff:"",defaultLed5ColorWhenOn:"",defaultLed5ColorWhenOff:"",defaultLed5IntensityWhenOn:"",defaultLed5IntensityWhenOff:"",defaultLed6ColorWhenOn:"",defaultLed6ColorWhenOff:"",defaultLed6IntensityWhenOn:"",defaultLed6IntensityWhenOff:"",defaultLed7ColorWhenOn:"",defaultLed7ColorWhenOff:"",defaultLed7IntensityWhenOn:"",defaultLed7IntensityWhenOff:"",doubleTapUpEvent:"",hcho:"HCHO",aqi:"AQI",pm10:"PM\u2081\u2080",battery2:"",control_mode:"",switch_status:"",load_detection_mode:"",load_type:"",load_dimmable:"",power_supply_mode:"",led_feedback:"LED Feedback",soil_moisture:"Maaper\xE4n kosteus",card:"",led_state:"LED State",external_temperature:"",hysteresis:"",max_temperature_protection:"",backlight_led:""},VSt={add_to_group:"Lis\xE4\xE4 ryhm\xE4\xE4n",create_group:"Luo ryhm\xE4",new_group_id:"Uuden ryhm\xE4n tunnus",new_group_id_placeholder:"Valitse ryhm\xE4tunnus, jos tarpeen",new_group_name:"Uuden ryhm\xE4n nimi",new_group_name_placeholder:"esimerkki: makkarin valot",remove_group:"Poista ryhm\xE4",group_id:"Ryhm\xE4n ID",group_name:"Ryhm\xE4n nimi",group_members:"Ryhm\xE4n j\xE4senet",group_scenes:"Ryhm\xE4n n\xE4kym\xE4t"},GSt={empty_logs_message:"Ei n\xE4ytett\xE4v\xE4\xE4",filter_by_text:"Suodata tekstill\xE4",show_only:"N\xE4yt\xE4 ainoastaan"},qSt={help_coordinator_link_description:"Yhten\xE4iset viivat ovat linkki koordinaattoriin",help_end_device_description:"Vihre\xE4 tarkoittaa loppup\xE4\xE4n laitetta",help_is_coordinator:"on koordinaattori",help_lqi_description:"Yhteyden laatu 0 - 255 (suurempi on parempi), arvoi, joissa / edustavat useita yhteystyyppej\xE4",help_router_description:"Sininen tarkoitaa reititint\xE4",help_router_links_description:"Katkoviivat ovat yhteyksi\xE4 reitittimeen",hide:"Napsauta piilottaaksesi",load:"Lataa kartta",loading:"Riippuen verkon koosta t\xE4m\xE4 voi kest\xE4\xE4 10 sekuntia tai jopa 2 minuuttia."},KSt={all:"Kaikki",dashboard:"Kojelauta",devices:"Laitteet",disable_join:"Est\xE4 liitokset",extensions:"Laajennukset",groups:"Ryhm\xE4t",logs:"Lokit",map:"Kartta",permit_join:"Salli liitokset",restart:"K\xE4ynnist\xE4 uudelleen",settings:"Asetukset"},QSt={check:"Tarkista p\xE4ivitykset",check_all:"Tarkista kaikki",empty_ota_message:"Sinulla ei ole OTAa tukevia laitteita",remaining_time:"Aikaa j\xE4ljell\xE4 {{- remaining}}",update:"P\xE4ivit\xE4 laitteen firmis"},ZSt={about:"Tietoja",advanced:"Edistyneet as.",blocklist:"Estolista",coordinator_revision:"Koordinaattorin revisio",coordinator_type:"Koordinaattorin tyyppi",donate:"Lahjoita",donation_text:["Moi, %username%, t\xE4\xE4ll\xE4 voi kiitt\xE4\xE4 meit\xE4 kovasta ty\xF6st\xE4","\xC4l\xE4 ep\xE4r\xF6i sanoa my\xF6s jotain mukavaa ;)"],download_state:"Latauksen tila",experimental:"Kokeellista",external_converters:"Ulkoiset muuntimet",frontend:"Etup\xE4\xE4",frontend_version:"Etup\xE4\xE4n versio",main:"P\xE4\xE4menu",ota:"OTA-p\xE4ivitykset",passlist:"P\xE4\xE4sylista",raw:"Raaka",restart_zigbee2mqtt:"K\xE4ynnist\xE4 Zigbee2MQTT uudelleen",serial:"Sarjanumero",settings:"Asetukset",tools:"Ty\xF6kalut",zigbee2mqtt_version:"Zigbee2MQTT:n versio",translate:"K\xE4\xE4nn\xE4",stats:"Tilastot"},YSt={detected_devices_message:"Havaittu {{count}} touchlink-laitetta.",rescan:"Hae uudelleen",scan:"Hae"},XSt={clear:"Pyyhi",closed:"Suljettu",false:"Ep\xE4tosi",not_supported:"Ei tuettu",occupied:"Varattu",open:"Avoin",supported:"Tuettu",true:"Tosi",empty_string:'Tyhj\xE4 merkkkijono("")',leaking:"Vuoto",tampered:"Peukaloitu"},JSt={actions:"Toiminnot",attribute:"Attribuutti",battery:"Paristo",block_join:"Est\xE4 uudelleenliittyminen",cluster:"Ryp\xE4s",dc_source:"DC l\xE4hde",description:"Kuvaus",device_type:"Laitetyyppi",endpoint:"P\xE4\xE4tepiste",firmware_build_date:"Firmiksen p\xE4iv\xE4ys",firmware_version:"Firmiksen versio",force_remove:"Pakota poisto",friendly_name:"Lempinimi",ieee_address:"IEEE-osoite",input_clusters:"Tuloryhm\xE4t",interview_completed:"Haastattelu p\xE4\xE4ttynyt",interview_failed:"Haastattelu ep\xE4onnistui",interviewing:"Haastatellaan",last_seen:"N\xE4hty viimeksi",mains_single_phase:"Verkkovirta (yksivaiheinen)",manufacturer:"Valmistaja",max_rep_interval:"Maksimi raportointiv\xE4li",min_rep_change:"Min. raportoitava muutos",min_rep_interval:"Minimi raportointiv\xE4li",model:"Malli",network_address:"Verkko-osoite",none:"Ei mit\xE4\xE4n",output_clusters:"L\xE4ht\xF6ryhm\xE4t",pic:"Kuva",power:"Virransy\xF6tt\xF6",power_level:"tehotaso",reconfigure:"Konfiguroi uudelleen",remove_device:"Poista laite",rename_device:"Nime\xE4 laite uudelleen",select_attribute:"Valitse attribuutti",select_cluster:"Valitse ryp\xE4s",support_status:"Tuen tila",unsupported:"Ei tuettu",updating_firmware:"Firmist\xE4 p\xE4ivitet\xE4\xE4n",update_Home_assistant_entity_id:"P\xE4ivit\xE4 Home Assistant entity ID",zigbee_manufacturer:"Zigbee Valmistaja",zigbee_model:"Zigbee Malli",device:"Laite",channel:"Kanava"},eAt={scene_id:"N\xE4kym\xE4n ID",recall:"Hae",store:"Talleta",remove:"Poista",remove_all:"Poista kaikki",add:"Lis\xE4\xE4",select_scene:"Valitse n\xE4kym\xE4",scene_name:"N\xE4kym\xE4n nimi"},tAt={byType:"Laitetyypin mukaan",byPowerSource:"Virtal\xE4hteen mukaan",byVendor:"Toimittajan mukaan",byModel:"Mallin mukaan",total:"Yhteens\xE4"},rAt={"Home Assistant legacy triggers, when enabled Zigbee2mqt will send an empty 'action' or 'click' after one has been send. A 'sensor_action' and 'sensor_click' will be discoverd":"Home Assistant legacy triggers, when enabled Zigbee2mqtt will send an empty 'action' or 'click' after one has been sent. A 'sensor_action' and 'sensor_click' will be discovered","Location of override OTA index file":" Location of override OTA index file ","Payload to be used for device availabilty and bridge/state topics. true = text, false = JSON":"","Name of the device in Home Assistant":""},nAt={"Availability (simple)":"","Availability (advanced)":"","Disable led":"Disable LED","OTA index override file name":"","Frontend (simple)":"","Frontend (advanced)":"","Options that are applied to all devices":"","Legacy availability payload":"","Baudrate (deprecated)":"","RTS / CTS (deprecated)":"","IKEA TRADFRI OTA use test url (deprecated)":"","Experimental (deprecated)":"","Home Assistant":"","Home Assistant name":""};var aAt={common:FSt,devicePage:BSt,exposes:WSt,extensions:HSt,featureDescriptions:jSt,featureNames:USt,groups:VSt,logs:GSt,map:qSt,navbar:KSt,ota:QSt,settings:ZSt,touchlink:YSt,values:XSt,zigbee:JSt,scene:eAt,stats:tAt,settingsSchemaDescriptions:rAt,settingsSchemaTitles:nAt};const iAt={action:"\xC5tg\xE4rd",actions:"\xC5tg\xE4rder",apply:"Till\xE4mpa",attribute:"Attribut",bind:"Binda",check_all:"Kontrollera alla",clear:"Rensa",close:"St\xE4ng",cluster:"Kluster",clusters:"Kluster",confirmation:"Bekr\xE4fta",delete:"Radera",devices:"Enheter",dialog_confirmation_prompt:"\xC4r du s\xE4ker?",disable:"Inaktivera",enter_search_criteria:"Ange s\xF6kkriterier",groups:"Grupper",loading:"Laddar...",none:"Ingen",read:"L\xE4s",save:"Spara",select_device:"V\xE4lj enhet",select_endpoint:"V\xE4lj slutpunkt",source_endpoint:"Inledande slutpunkt",the_only_endpoint:"Den enda slutpunkten",unbind:"Avbinda",write:"Skriv",destination_endpoint:"Destinationsslutpunkt"},oAt={about:"Om",bind:"Binda",clusters:"Kluster",dev_console:"Utvecklarkonsol",reporting:"Rapportering",settings:"Inst\xE4llningar",settings_specific:"Inst\xE4llningar (specifika)",state:"Status",scene:"Scen",unknown_device:"Ok\xE4nd enhet",exposes:"Exponerar"},sAt={empty_exposes_definition:"Finns inget att exponera"},lAt={create_new_extension:"Skapa nytt till\xE4gg",extension_name_propmt:"Ange nytt till\xE4ggsnamn",select_extension_to_edit:"V\xE4lj till\xE4gg att redigera"},uAt={"On/off state of this light":"P\xE5/av-status f\xF6r denna lampa","Brightness of this light":"Ljusk\xE4llans ljusstyrka","Color temperature of this light":"Ljusk\xE4llans f\xE4rgtemperatur","Color temperature after cold power on of this light":"F\xE4rgtemperatur efter str\xF6mavbrott","Color of this light in the CIE 1931 color space (x/y)":"F\xE4rg p\xE5 ljusk\xE4llan i f\xE4rgrymden CIE 1931 (x/y)","Triggers an effect on the light (e.g. make light blink for a few seconds)":"Utl\xF6ser en effekt p\xE5 ljuset (t.ex. f\xE5 ljuset att blinka i n\xE5gra sekunder)","Link quality (signal strength)":"Kommunikationskvalitet (signalstyrka)","Temperature setpoint":"St\xE4ll in temperaturen","Current temperature measured on the device":"Aktuell temperatur uppm\xE4tt av enheten","Mode of this device":"Enhetsl\xE4ge","The current running state":"Det aktuella k\xF6rl\xE4get","Offset to be used in the local_temperature":"Kalibrering av rumstemperaturen p\xE5 termostaten","Position of the valve (= demanded heat) where 0% is fully closed and 100% is fully open":"Ventilens l\xE4ge (= efterfr\xE5gad v\xE4rme) d\xE4r 0% \xE4r helt st\xE4ngd och 100% helt \xF6ppen","Position of this cover":"Gardinens l\xE4ge","Motor speed":"Motorvarvtal","On/off state of the switch":"P\xE5/av-status f\xF6r omkopplaren","Recover state after power outage":"\xC5terst\xE4ll str\xF6mmen efter avst\xE4ngning","Remaining battery in %":"\xC5terst\xE5ende batteri i %","Triggered action (e.g. a button click)":"Anropa en \xE5tg\xE4rd (som att trycka p\xE5 en knapp)","Indicates if the battery of this device is almost empty":"Indikerar om enhetens batteri n\xE4stan \xE4r tomt","Color of this light expressed as hue/saturation":"Ljusk\xE4llans f\xE4rg omvandlas till nyans/m\xE4ttnad","State of the lock":"L\xE5sets status","Actual state of the lock":"L\xE5sets faktiska status","User ID to set or clear the pincode for":"Anv\xE4ndar-ID att st\xE4lla in eller rensa pinkoden f\xF6r","Type of user, unrestricted: owner (default), (year|week)_day_schedule: user has ability to open lock based on specific time period, master: user has ability to both program and operate the door lock, non_access: user is recognized by the lock but does not have the ability to open the lock":"Typ av anv\xE4ndare, obegr\xE4nsad: \xE4gare (standard), (year|week)_day_schedule: anv\xE4ndaren har m\xF6jlighet att \xF6ppna l\xE5s baserat p\xE5 specifik tidsperiod, master: anv\xE4ndaren har m\xF6jlighet att b\xE5de programmera och anv\xE4nda d\xF6rrl\xE5set, non_access: anv\xE4ndaren k\xE4nns igen av l\xE5set men har inte m\xF6jlighet att \xF6ppna l\xE5set","Whether the user is enabled/disabled":"Om anv\xE4ndaren \xE4r aktiverad/inaktiverad","Pincode to set, set pincode to null to clear":"Pinkod att st\xE4lla in, l\xE4mna blankt f\xF6r att ta bort pinkod","Triggered action on the lock":"Utl\xF6st \xE5tg\xE4rd p\xE5 l\xE5set","Source of the triggered action on the lock":"K\xE4llan till den utl\xF6sta \xE5tg\xE4rden p\xE5 l\xE5set","ID of user that triggered the action on the lock":"ID f\xF6r anv\xE4ndaren som utl\xF6ste \xE5tg\xE4rden p\xE5 l\xE5set","Voltage of the battery in millivolts":"Batteriets sp\xE4nning i millivolt","Click mode, fast: only supports single click which will be send immediately after clicking.multi: supports more events like double and hold":"Klickl\xE4ge, snabbt: st\xF6der endast enkla klick som skickas direkt efter klickning. Multi: st\xF6der fler h\xE4ndelser som dubbel och ih\xE5llande",'Operation mode, select "command" to enable bindings (wake up the device before changing modes!)':'Driftl\xE4ge, v\xE4lj "kommando" f\xF6r att aktivera bindningar (v\xE4ck enheten innan du byter l\xE4ge!)',"Click mode, fast: only supports single click which will be send immediately after clicking, multi: supports more events like double and hold":"Klickl\xE4ge, snabbt: st\xF6der endast enkla klick som skickas direkt efter klickning, multi: st\xF6der fler h\xE4ndelser som dubbel och v\xE4nta","Button mode":"Knappl\xE4ge","Rotation angle":"Rotationsvinkel","Rotation angle speed":"Rotationsvinkelhastighet","Rotation percent":"Rotationsprocent","Rotation percent speed":"Rotationsprocenthastighet","Rotation time":"Rotationstid","Instantaneous measured power":"Tillf\xE4lligt uppm\xE4tt effektv\xE4rde","Sum of consumed energy":"Total energif\xF6rbrukning","Measured temperature value":"Uppm\xE4tt temperaturv\xE4rde","Measured electrical potential value":"Uppm\xE4tt sp\xE4nningsv\xE4rde","Instantaneous measured electrical current":"Tillf\xE4lligt uppm\xE4tt v\xE4rde p\xE5 str\xF6mstyrkan","Enable/disable the power outage memory, this recovers the on/off mode after power failure":"Aktivera/inaktivera minnet f\xF6r str\xF6mavbrott, detta \xE5terst\xE4ller p\xE5/av-l\xE4get efter str\xF6mavbrott","Enable/disable the LED at night":"Aktivera/inaktivera LED p\xE5 natten","Disables the physical switch button":"Inaktiverar den fysiska v\xE4xlingsknappen","Maximum allowed load, turns off if exceeded":"Maximal till\xE5ten belastning, st\xE4ngs av om den \xF6verskrids","Indicates if the contact is closed (= true) or open (= false)":"Kontaktstatus st\xE4ngd (= true) eller \xF6ppen (= false)","Control both relay and usb or only the relay with the physical switch button":"Styr b\xE5de rel\xE4 och usb eller bara rel\xE4et med den fysiska brytarknappen","Raw measured illuminance":"Det uppm\xE4tta belysningsstyrkan bearbetas inte","Measured illuminance in lux":"Uppm\xE4tt belysningsstyrka i lux","Time interval in seconds to report after light changes":"Tidsintervall i sekunder f\xF6r att rapportera efter ljusbyten","After turn on, the indicator light turns on while switch is off, and vice versa":"Efter p\xE5slag t\xE4nds indikatorlampan n\xE4r str\xF6mbrytaren \xE4r avst\xE4ngd och vice versa","Decoupled mode":"Fr\xE5nkopplat l\xE4ge","Indicates whether a plug is physically attached. Device does not have to pull power or even be connected electrically (state of this binary switch can be ON even if main power switch is OFF)":"Indikerar om en kontakt \xE4r fysiskt ansluten. Enheten beh\xF6ver inte dra str\xF6m eller ens vara ansluten elektriskt (tillst\xE5ndet f\xF6r denna bin\xE4ra str\xF6mbrytare kan vara P\xC5 \xE4ven om huvudstr\xF6mbrytaren \xE4r AV)","Decoupled mode for left button":"Separat l\xE4ge f\xF6r v\xE4nster knapp","Decoupled mode for right button":"Separat l\xE4ge f\xF6r h\xF6ger knapp","Measured relative humidity":"Uppm\xE4tt v\xE4rde p\xE5 fuktighet","Measured VOC value":"Uppm\xE4tt VOC-v\xE4rde","Anti flicker mode can be used to solve blinking issues of some lights.Quick mode makes the device respond faster.":"Anti-flimmerl\xE4ge kan anv\xE4ndas f\xF6r att l\xF6sa blinkande problem med vissa lampor. Snabbl\xE4ge g\xF6r att enheten reagerar snabbare.","Decoupled mode for button":"Fr\xE5nkopplat l\xE4ge f\xF6r knapp","Enable standby":"Aktivera standby","Display theme":"Visa tema","Beep volume":"Ljudvolym","LCD brightness (will not persist if auto-brightness is enabled)":"LCD-ljusstyrka (kommer inte att best\xE5 om automatisk ljusstyrka \xE4r aktiverad)","Interface language":"Gr\xE4nssnittsspr\xE5k","Screen saver style":"Stil f\xF6r sk\xE4rmsl\xE4ckare","Display standby time":"Visa standbytid","Display font size":"Visa teckenstorlek","Enable LCD auto brightness":"Aktivera automatisk LCD-ljusstyrka","Default display homepage":"Startsida f\xF6r standardvisning","Enable screen saver":"Aktivera sk\xE4rmsl\xE4ckare","Standby LCD brightness":"Standby LCD-ljusstyrka","Control which switches are available in the switches screen (none disables switches screen)":"Styr vilka omkopplare som \xE4r tillg\xE4ngliga p\xE5 sk\xE4rmen (ingen inaktiverar sk\xE4rmen)","Switch 1 text and icon":"Reglage 1 text och ikon",Icon:"Ikon","Switch 2 text and icon":"Reglage 2 text och ikon","Switch 3 text and icon":"Reglage 3 text och ikon","Wall switch type":"Typ av v\xE4ggbrytare","Temperature of the device":"Temperaturen p\xE5 enheten","Number of power outages (since last pairing)":"Antal str\xF6mavbrott (sedan senaste ihopparningen)","Number of power outages":"Antal str\xF6mavbrott","Enabling prevents both relais being on at the same time":"Aktivering f\xF6rhindrar att b\xE5da rel\xE4erna \xE4r p\xE5 samtidigt","The current charging status.":"Aktuell laddningsstatus.","The current state of the motor.":"Motorns nuvarande tillst\xE5nd.","Whether the motor is moving or not":"Om motorn r\xF6r sig eller inte","Motor state":"Motorstatus","Indicates whether the device detected vibration":"Indikerar om enheten har uppt\xE4ckt vibrationer","Indicates whether the device detected smoke":"Detektering av r\xF6k av enheten","Value of smoke concentration":"V\xE4rdet p\xE5 r\xF6kkoncentrationen","Value of smoke concentration in dB/m":"V\xE4rdet p\xE5 r\xF6kkoncentrationen i dB/m","Starts the self-test process (checking the indicator light and buzzer work properly)":"Startar sj\xE4lvtestprocessen (kontrollera att indikatorlampan och summern fungerar korrekt)","Self-test in progress":"Sj\xE4lvtest p\xE5g\xE5r","Mute the buzzer for 80 seconds (buzzer cannot be pre-muted, because this function only works when the alarm is triggered)":"St\xE4ng av pipsignalen i 80 sekunder (du kan inte st\xE4nga av pipsignalen i f\xF6rv\xE4g, eftersom den h\xE4r funktionen bara fungerar n\xE4r larmet g\xE5r)","Buzzer muted":"Summern avst\xE4ngd","When this option is enabled then in the normal monitoring state, the green indicator light flashes every 60 seconds":"Om detta alternativ \xE4r aktiverat, blinkar den gr\xF6na indikatorn var 60:e sekund i normalt \xF6vervakningstillst\xE5nd","When this option is enabled and a smoke is detected, other detectors with this option enabled will also sound the alarm buzzer":"Om det h\xE4r alternativet \xE4r aktiverat och r\xF6k uppt\xE4cks kommer andra detektorer med detta alternativ aktiverat ocks\xE5 att tjuta.","Indicates whether the device detected gas":"Indikerar om enheten uppt\xE4ckt gas","Value of gas concentration":"V\xE4rde p\xE5 gaskoncentration",'Gas concentration value at which an alarm is triggered ("10%LEL" is more sensitive than "15%LEL")':'Gaskoncentrationsv\xE4rde vid vilket ett larm utl\xF6ses ("10%LEL" \xE4r k\xE4nsligare \xE4n "15%LEL")',"Mute the buzzer for 10 minutes (buzzer cannot be pre-muted, because this function only works when the alarm is triggered)":"St\xE4ng av ljudet i 10 minuter (summern kan inte st\xE4ngas av i f\xF6rv\xE4g, eftersom denna funktion bara fungerar n\xE4r larmet utl\xF6ses)","When this option is enabled and a gas leak is detected, other detectors with this option enabled will also sound the alarm buzzer":"N\xE4r det h\xE4r alternativet \xE4r aktiverat och en gasl\xE4cka uppt\xE4cks, kommer andra detektorer med detta alternativ aktiverat ocks\xE5 att avge larmsignalen",'"Preparation" or "work" (measurement of the gas concentration value and triggering of an alarm are only performed in the "work" state)':'"F\xF6rberedelse" eller "arbete" (m\xE4tning av gaskoncentrationsv\xE4rdet och utl\xF6sning av ett larm utf\xF6rs endast i "arbetsl\xE4ge")',"Indicates whether the device is tampered":"Detektering av st\xF6rningar i enhetens funktion","Test mode activated":"Testl\xE4ge aktiverat","If the power is constantly lower than 2W within half an hour, the plug will be automatically turned off":"Om effekten konstant \xE4r l\xE4gre \xE4n 2W inom en halvtimme kommer kontakten att st\xE4ngas av automatiskt","Device temperature (polled every 30 min)":"Enhetstemperatur (kontroll sker var 30:e minut)","Turn the device automatically off when attached device consumes less than 2W for 20 minutes":"St\xE4ng av enheten automatiskt n\xE4r den anslutna enheten f\xF6rbrukar mindre \xE4n 2W under 20 minuter","Side of the cube":"Kubsidan","Indicates whether the device detected a water leak":"Detektering av vattenl\xE4ckor av enheten","Indicates whether the device detected presence":"Indikerar om enheten har uppt\xE4ckt n\xE4rvaro",'Presence events: "enter", "leave", "left_enter", "right_leave", "right_enter", "left_leave", "approach", "away"':'N\xE4rvaroh\xE4ndelser: "enter", "leave", "left_enter", "right_leave", "right_enter", "left_leave", "approach", "away"',"Monitoring mode with or without considering right and left sides":"\xD6vervakningsl\xE4ge med eller utan h\xE4nsyn till h\xF6ger och v\xE4nster sida","The distance at which the sensor detects approaching":"Avst\xE5ndet vid vilket sensorn uppt\xE4cker approximationen","Different sensitivities means different static human body recognition rate and response speed of occupied":"Olika k\xE4nsligheter betyder olika statisk m\xE4nsklig kroppsigenk\xE4nningshastighet och svarshastighet f\xF6r ockuperade","Reset the status of no presence":"\xC5terst\xE4ll n\xE4rvarostatus","Indicates whether the device detected occupancy":"N\xE4rvarodetekteringsanordning","Time interval for detecting actions":"Tidsintervall f\xF6r att uppt\xE4cka \xE5tg\xE4rder","The measured atmospheric pressure":"Uppm\xE4tt atmosf\xE4rstryck","Decoupled mode for center button":"Separat l\xE4ge f\xF6r mittknappen","Operation mode for left button":"Driftl\xE4ge f\xF6r v\xE4nster knapp","Operation mode for right button":"Driftl\xE4ge f\xF6r h\xF6ger knapp","Switch between rgbw mode or dual color temperature mode":"V\xE4xla mellan RGBW-l\xE4ge eller dubbelf\xE4rgstemperaturl\xE4ge","Mode of the warning (sound effect)":"L\xE4get f\xF6r varningen (ljudeffekt)","Sound level":"Ljudniv\xE5","Intensity of the strobe":"Strobens intensitet","Turn on/off the strobe (light) during warning":"Sl\xE5 p\xE5/av stroben (ljuset) under varning","Length of the flash cycle":"L\xE4ngden p\xE5 blink-cykel","Duration in seconds of the alarm":"Larmets varaktighet i sekunder","Is the device plugged in":"Enheten \xE4r ansluten till n\xE4tverket","Volume of siren":"Volym av siren","Smoke alarm status":"R\xF6kdetektorns status","Test alarm":"Larmtest","Test alarm result":"Larmtestets resultat","Battery level state":"Batteriniv\xE5ns status","Alarm enable":"Aktivera larm","Fault alarm status":"Fellarmstatus","Silence siren":"Tysta sirener","Detected by sudden temperature drop or set manually.":"Den best\xE4ms av ett pl\xF6tsligt temperaturfall eller st\xE4lls in manuellt.","Manually set window_open, ~1 minute to take affect.":"St\xE4ll in window_open manuellt, ~1 minut f\xF6r att tr\xE4da i kraft.","Enables/disables physical input on the device":"Aktiverar/inaktiverar fysisk inmatning p\xE5 enheten","Pin code introduced.":"Pinkod introducerad.","Last action transaction number.":"Transaktionsnummer f\xF6r senaste \xE5tg\xE4rd.","Alarm zone. Default value 0":"Larmzon. Standardv\xE4rde 0","Tilt of this cover":"gardinens lutning","Configure genLevelCtrl":"Konfigurera genLevelCtrl","Represents the time taken to move to or from the target level when On of Off commands are received by an On/Off cluster":"Representerar tiden det tar att flytta till eller fr\xE5n m\xE5lniv\xE5n n\xE4r P\xE5- eller Av-kommandon tas emot av ett P\xE5/Av-kluster","Represents the time taken to move the current level from the minimum level to the maximum level when an On command is received":"Representerar tiden det tar att flytta den aktuella niv\xE5n fr\xE5n miniminiv\xE5n till maximiniv\xE5n n\xE4r ett P\xE5-kommando tas emot","Represents the time taken to move the current level from the maximum level to the minimum level when an Off command is received":"Representerar den tid det tar att flytta den aktuella niv\xE5n fr\xE5n maxniv\xE5n till miniminiv\xE5n n\xE4r ett Av-kommando tas emot","Defines the desired startup level for a device when it is supplied with power":"Definierar \xF6nskad startniv\xE5 f\xF6r en enhet n\xE4r den matas med str\xF6m","Specifies the minimum light output the ballast can achieve.":"Specificerar den l\xE4gsta ljuseffekt ballasten kan uppn\xE5.","Specifies the maximum light output the ballast can achieve.":"Specificerar den maximala ljuseffekten som ballasten kan uppn\xE5.","Specifies the minimum light output of the ballast":"Anger den l\xE4gsta ljuseffekten f\xF6r ballasten","Specifies the maximum light output of the ballast":"Anger den maximala ljuseffekten f\xF6r ballasten","Specifies the minimum light output after switching on":"Anger den l\xE4gsta ljuseffekten efter p\xE5slagning","The dimmer supports AC forward phase control.":"Dimmern st\xF6der direkt styrning av AC-fasen.","The dimmer supports AC reverse phase control.":"Dimmern st\xF6der den omv\xE4nda fasen av v\xE4xelstr\xF6m.","The dimmer is capable of measuring the reactanceto distinguish inductive and capacitive loads.":"Dimmern kan m\xE4ta reaktansen f\xF6r att skilja induktiva och kapacitiva laster.","The dimmer is capable of replacing the built-in, default dimming curve.":"Dimmern kan ers\xE4tta den inbyggda, standarddimmerkurvan.","The dimmer is capable of detecting an output overload and shutting the output off.":"Dimmern kan detektera en utg\xE5ngs\xF6verbelastning och st\xE4nga av utg\xE5ngen.","The dimmer is currently operating in AC forward phase control mode.":"Dimmern arbetar f\xF6r n\xE4rvarande i normal AC-faskontrolll\xE4ge.","The dimmer is currently operating in AC reverse phase control mode.":"Dimmern arbetar f\xF6r n\xE4rvarande i omv\xE4nd AC-faskontrolll\xE4ge.","The output is currently turned off, because the dimmer has detected an overload.":"Utg\xE5ngen \xE4r f\xF6r n\xE4rvarande avst\xE4ngd eftersom dimmern har uppt\xE4ckt en \xF6verbelastning.","The dimmer's reactance discriminator had detected a capacitive load.":"Dimmerns reaktansdiskriminator hade detekterat en kapacitiv belastning.","The dimmer's reactance discriminator had detected an inductive load.":"Dimmerns reaktansdiskriminator hade uppt\xE4ckt en induktiv belastning.","Configures the dimming technique.":"Konfigurerar dimningstekniken.","Controls the behavior when the device is powered on":"Styr beteendet n\xE4r enheten sl\xE5s p\xE5","PIR sensor sensitivity (refresh and update only while active)":"PIR-sensork\xE4nslighet (ladda om och uppdatera endast n\xE4r aktiv)","PIR keep time in seconds (refresh and update only while active)":"PIR sparar tid i sekunder (ladda om och uppdatera endast n\xE4r aktiv)","Report interval":"Rapportintervall","Current display unit":"Aktuell displayenhet","Temperature alarm status":"Temperaturlarmstatus","Alarm temperature max":"Larmtemperatur max","Alarm temperature min":"Larmtemperatur min","Humidity alarm status":"Luftfuktighetslarmstatus","Alarm humidity max":"Larm n\xE4r fuktighet n\xE5r max","Alarm humidity min":"Larm n\xE4r fuktighet n\xE5r min","Distance to target":"Avst\xE5nd till m\xE5let","sensitivity of the radar":"radarns k\xE4nslighet","Minimum range":"Minsta r\xE4ckvidd","Maximum range":"Maximal r\xE4ckvidd","Detection delay":"Detekteringsf\xF6rdr\xF6jning","Fading time":"D\xE4mpningstid","Self_test, possible resuts: checking, check_success, check_failure, others, comm_fault, radar_fault.":"Sj\xE4lvtest, m\xF6jliga resultat: kontrollerar (checking), lyckad kontroll (check_success), kontrollfel (check_failure), andra (others), kommunikationsfel (comm_fault), radarfel (radar_fault).","Brightness state":"Status f\xF6r ljusstyrka",'Operation mode: "command" - for group control, "event" - for clicks':'Driftl\xE4ge: "kommando" - f\xF6r gruppkontroll, "h\xE4ndelse" - f\xF6r klick',"Speed of movement":"R\xF6relsehastighet","direction of movement from the point of view of the radar":"r\xF6relseriktning fr\xE5n radarns synvinkel","presets for sensitivity for presence and movement":"f\xF6rinst\xE4llningar f\xF6r k\xE4nslighet f\xF6r n\xE4rvaro och r\xF6relse","Tumble status switch":"Omkopplare f\xF6r tumlarstatus","fall sensitivity of the radar":"radarns fallk\xE4nslighet","tumble alarm time":"tumlar alarm tid","fall down status":"falla ner status","static dwell alarm":"statiskt uppeh\xE5llslarm","O-Sensitivity mode":"O-k\xE4nslighetsl\xE4ge","V-Sensitivity mode":"V-k\xE4nslighetsl\xE4ge","Led status switch":"LED-statusbrytare","Vacancy delay":"Vakansf\xF6rsening","Light-On luminance prefer":"F\xF6redragen Ljus-P\xE5-Luminans","Light-Off luminance prefer":"F\xF6redragen Ljus-Av-Luminans","Working mode":"Arbetsl\xE4ge","Luminance level":"Luminansniv\xE5","Reference luminance":"Referensluminans","Vacant confirm time":"Ledig bekr\xE4ftelsetid","Alarm humidity status":"Larm fuktstatus","Alarm temperature status":"Larmtemperaturstatus","Trigger the door movement":"Utl\xF6sa d\xF6rrr\xF6relsen","Indicates if the garage door contact is closed (= true) or open (= false)":"Visar om garageportens kontakt \xE4r st\xE4ngd (= true) eller \xF6ppen (= false)","Relay LED indicator mode":"LED-l\xE4ge f\xF6r rel\xE4indikatorn","Switch type settings":"Byt typinst\xE4llningar","Minimum light brightness":"L\xE4gsta ljusstyrka","Plug LED indicator mode":"Plugg LED-indikatorl\xE4ge","Maximum temperature":"Maximal temperatur","Minimum temperature":"L\xE4gsta temperatur","Enables/disables window detection on the device":"Aktiverar/inaktiverar f\xF6nsterdetektering p\xE5 enheten","Window status closed or open ":"Statusen f\xF6r f\xF6nstret \xE4r st\xE4ngt eller \xF6ppet","Device valve is open or closed (heating or not)":"Enhetsventilen \xE4r \xF6ppen eller st\xE4ngd (v\xE4rme eller inte)",'MANUAL MODE \u261D - In this mode, the device executes manual temperature setting. When the set temperature is lower than the "minimum temperature", the valve is closed (forced closed). AUTO MODE \u23F1 - In this mode, the device executes a preset week programming temperature time and temperature. ON - In this mode, the thermostat stays open OFF - In this mode, the thermostat stays closed':'MANUELLT L\xC4GE \u261D - I detta l\xE4ge utf\xF6r enheten manuell temperaturinst\xE4llning. N\xE4r den inst\xE4llda temperaturen \xE4r l\xE4gre \xE4n "minimitemperaturen" st\xE4ngs ventilen (tv\xE5ngsst\xE4ngning). AUTOL\xC4GE \u23F1 - I detta l\xE4ge utf\xF6r enheten en f\xF6rinst\xE4lld veckoprogrammering av temperaturtid och temperatur. P\xC5 - I detta l\xE4ge f\xF6rblir termostaten \xF6ppen AV - I detta l\xE4ge f\xF6rblir termostaten st\xE4ngd',"Auto MODE \u23F1 - In this mode, the device executes a preset week programming temperature time and temperature. ":"Auto MODE \u23F1 - I det h\xE4r l\xE4get k\xF6r enheten en f\xF6rinst\xE4lld veckoprogrammering av temperaturtid och temperatur.",'Boost Heating: press and hold "+" for 3 seconds, the device will enter the boost heating mode, and the \u25B7\u2575\u25C1 will flash. The countdown will be displayed in the APP':'Boost: Tryck och h\xE5ll "+" i 3 sekunder, ventilen v\xE4xlar till boost-l\xE4ge och \u25B7\u2575\u25C1 b\xF6rjar blinka. Varaktigheten visas i applikationen.',"Countdown in minutes":"Nedr\xE4kning i minuter","Away mode":"Bortal\xE4ge","Enables/disables the status on the device":"Aktiverar/inaktiverar status p\xE5 enheten","Open window temperature":"Temperatur med f\xF6nstret \xF6ppet","Comfort temperature":"Komforttemperatur","Eco temperature":"Ekotemperatur","Mode of this device (similar to system_mode)":"L\xE4ge f\xF6r denna enhet (liknande system_mode)","Setting minimum 0 - maximum 465 seconds boost time. The boost (\u2668) function is activated. The remaining time for the function will be counted down in seconds ( 465 to 0 ).":"Inst\xE4llning av minimum 0 - maximalt 465 sekunders \xF6kningstid. Snabbfunktionen (\u2668) \xE4r aktiverad. Den \xE5terst\xE5ende tiden f\xF6r funktionen kommer att r\xE4knas ned i sekunder ( 465 till 0 ).",'When Anti-Freezing function is activated, the temperature in the house is kept at 8 \xB0C, the device display "AF".press the pair button to cancel.':'N\xE4r frostskyddsfunktionen \xE4r aktiverad h\xE5lls temperaturen i huset vid 8\xB0C, enheten visar "AF". tryck p\xE5 parningsknappen f\xF6r att avbryta.','Battery life can be prolonged by switching the heating off. To achieve this, the valve is closed fully. To activate the heating stop, the device display "HS", press the pair button to cancel.':'Batteriets livsl\xE4ngd kan f\xF6rl\xE4ngas genom att st\xE4nga av v\xE4rmen. F\xF6r att uppn\xE5 detta st\xE4ngs ventilen helt. F\xF6r att aktivera v\xE4rmestoppet visar enheten "HS", tryck p\xE5 parningsknappen f\xF6r att avbryta.',"Holiday temperature":"Semestertemperatur","The holiday mode( \u26F1 ) will automatically start at the set time starting point and run the holiday temperature.":"Semesterl\xE4get ( \u26F1 ) startar automatiskt vid den inst\xE4llda startpunkten och k\xF6r semestertemperaturen.","Auto Mode \u23F1 - In this mode, the device executes a preset week programming temperature time and temperature. ":"Autol\xE4ge \u23F1 - I detta l\xE4ge k\xF6r enheten en f\xF6rinst\xE4lld veckoprogrammering av temperaturtid och temperatur.","Is the device online":"\xC4r enheten online","Error status":"Felstatus","Window open?":"\xC4r f\xF6nstret \xF6ppet?","Mode of this device, in the `heat` mode the TS0601 will remain continuously heating, i.e. it does not regulate to the desired temperature. If you want TRV to properly regulate the temperature you need to use mode `auto` instead setting the desired temperature.":'L\xE4get f\xF6r denna enhet, i "v\xE4rme"-l\xE4get kommer TS0601 att forts\xE4tta att v\xE4rmas upp, d.v.s. den reglerar inte till \xF6nskad temperatur. Om du vill att TRV ska reglera temperaturen korrekt m\xE5ste du anv\xE4nda l\xE4get "auto" ist\xE4llet f\xF6r att st\xE4lla in \xF6nskad temperatur.',"Enable/disable auto lock":"Aktivera/inaktivera automatisk l\xE5sning","Enable/disable away mode":"Aktivera/avaktivera bortal\xE4ge","Away preset days":"F\xF6rinst\xE4llda avresedagar","Boost time":"Accelerationstid","Force the valve position":"Tvinga ventilens l\xE4ge","Away preset temperature":"F\xF6rinst\xE4llda avg\xE5ngstemperaturer","Schedule MODE \u23F1 - In this mode, the device executes a preset week programming temperature time and temperature.":"Schemal\xE4ge \u23F1 - I detta l\xE4ge k\xF6r enheten en f\xF6rinst\xE4lld veckoprogrammering av temperaturtid och temperatur.","Week format user for schedule":"Veckovis anv\xE4ndarformat f\xF6r schemal\xE4ggning","Calibration time":"Kalibreringstid","Maximum light brightness":"Maximal ljusstyrka","PIR sensor sensitivity":"PIR-sensork\xE4nslighet","PIR keep time in seconds":"PIR h\xE5ller tiden i sekunder","Indicates if CO (carbon monoxide) is detected":"Detektion av CO (kolmonoxid)","The measured CO (carbon monoxide) value":"Det uppm\xE4tta CO-v\xE4rdet (kolmonoxid)","The measured CO2 (carbon dioxide) value":"Det uppm\xE4tta CO2-v\xE4rdet (koldioxid)","The measured formaldehyd value":"Det uppm\xE4tta formaldehydv\xE4rdet","Measured PM2.5 (particulate matter) concentration":"Uppm\xE4tt koncentration av PM2.5 (partiklar)","Group where the action was triggered on":"Gruppen d\xE4r \xE5tg\xE4rden inleddes","The measured occupancy value":"Det uppm\xE4tta bel\xE4ggningsv\xE4rdet","The measured noise value":"Det uppm\xE4tta bullerv\xE4rdet","Indicates whether the device detected noise":"Indikerar om enheten har uppt\xE4ckt brus","Time in seconds after which noise is cleared after detecting it (default: 60)":"Tid i sekunder efter vilket brus f\xF6rsvinner efter uppt\xE4ckt (standard: 60)","Time in seconds after which occupancy is cleared after detecting it (default: 60)":"Tid i sekunder efter vilken blockering rensas efter att den har uppt\xE4ckts (standard: 60)","Self-heating compensation. The compensation value is subtracted from the measured temperature":"Sj\xE4lvuppv\xE4rmningskompensation. Kompensationsv\xE4rdet subtraheras fr\xE5n den uppm\xE4tta temperaturen","If the sensor is triggered by the slightest movement, reduce the sensitivity, otherwise increase it (default: 50)":"Om sensorn utl\xF6ses av minsta lilla r\xF6relse, minska k\xE4nsligheten, annars \xF6ka den (standard: 50)","The minimum noise level at which the detector will work (default: 50)":"Minsta ljudniv\xE5 vid vilken detektorn kommer att fungera (standard: 50)","Automatic calibration of the CO2 sensor. If ON, the CO2 sensor will automatically calibrate every 7 days.":"Automatisk kalibrering av CO2-sensorn. Om den \xE4r aktiverad kommer CO2-sensorn att kalibreras automatiskt var 7:e dag.","Ventilate the room for 20 minutes, turn on manual calibration, and turn it off after one second. After about 5 minutes the CO2 sensor will show 400ppm. Calibration completed":"Ventilera rummet i 20 minuter, sl\xE5 p\xE5 manuell kalibrering och st\xE4ng av efter en sekund. Efter cirka 5 minuter visar CO2-sensorn 400 ppm. Kalibrering klar","Turn on when working in conditions of high humidity (more than 70 %, RH) or condensation, if the sensor shows 0 or 100 %.":"Sl\xE5 p\xE5 vid drift i h\xF6g luftfuktighet (mer \xE4n 70%, RH) eller kondensera om sensorn visar 0 eller 100%.","Indicates if the device is moving":"Indikerar om enheten r\xF6r sig","Accelerometer X value":"Accelerometer X-v\xE4rde","Accelerometer Y value":"Accelerometer Y-v\xE4rde","Accelerometer Z value":"Accelerometer Z-v\xE4rde","Trigger beep for x seconds":"Utl\xF6s pip i x sekunder","White brightness of this light":"Vit ljusstyrka f\xF6r detta ljus","Valve state if open or closed":"Ventilens tillst\xE5nd om den \xE4r \xF6ppen eller st\xE4ngd","Position of the valve":"Ventilens l\xE4ge","Control status LED when load ON":"Lysdiod f\xF6r kontrollstatus n\xE4r belastning \xE4r P\xC5","Control status LED when load OFF":"LED-kontrollstatus n\xE4r belastning \xE4r AV","Control minimum dimmer brightness":"Kontrollera minimiljusstyrkan f\xF6r dimmern","Control backlight dimming behavior":"Kontrollera dimmerns beteende f\xF6r bakgrundsbelysningen","Door status":"D\xF6rrstatus","User ID can only number 1":"Anv\xE4ndar-ID kan endast vara nummer 1","Pincode to set, set pincode(4 digit) to null to clear":"Pinkod f\xF6r att st\xE4lla in, st\xE4ll in pinkod (4 siffror) till null f\xF6r att radera","temperature of device internal mcu":"temperatur p\xE5 enhetens interna MCU","Measured electrical power factor":"Uppm\xE4tt elektrisk effektfaktor","Measured electrical ac frequency":"Uppm\xE4tt elektrisk v\xE4xelstr\xF6msfrekvens","Currently status":"Status f\xF6r n\xE4rvarande","People count":"Antal personer","Instantaneous measured apparent power":"Tillf\xE4lligt uppm\xE4tt skenbar effekt","Instantaneous measured power on phase A":"Tillf\xE4lligt uppm\xE4tt effekt i fas A","Instantaneous measured power on phase B":"Tillf\xE4lligt uppm\xE4tt effekt i fas B","Instantaneous measured power on phase C":"Tillf\xE4lligt uppm\xE4tt effekt i fas C","Instantaneous measured power factor":"Tillf\xE4lligt uppm\xE4tt effektfaktor","Sum of consumed energy on phase A":"M\xE4ngden energi som f\xF6rbrukas i fas A","Sum of consumed energy on phase B":"M\xE4ngden energi som f\xF6rbrukas i fas B","Sum of consumed energy on phase C":"M\xE4ngden energi som f\xF6rbrukas i fas C","Measured electrical AC frequency":"Uppm\xE4tt elektrisk AC-frekvens","Measured electrical potential value on phase A":"Det uppm\xE4tta v\xE4rdet av den elektriska potentialen i fas A","Measured electrical potential value on phase B":"Uppm\xE4tt elektriskt potentialv\xE4rde p\xE5 fas B","Measured electrical potential value on phase C":"Uppm\xE4tt elektrisk potentialv\xE4rde p\xE5 fas C","Measured electrical potential value between phase A and B":"Uppm\xE4tt v\xE4rde p\xE5 elektrisk potential mellan faserna A och B","Measured electrical potential value between phase B and C":"Uppm\xE4tt v\xE4rde p\xE5 elektrisk potential mellan faserna B och C","Measured electrical potential value between phase C and A":"Uppm\xE4tt v\xE4rde p\xE5 elektrisk potential mellan faserna C och A","Instantaneous measured electrical current on phase A":"Tillf\xE4lligt uppm\xE4tt elektrisk str\xF6m i fas A","Instantaneous measured electrical current on phase B":"Tillf\xE4lligt uppm\xE4tt elektrisk str\xF6m p\xE5 fas B","Instantaneous measured electrical current on phase C":"Tillf\xE4lligt uppm\xE4tt elektrisk str\xF6m p\xE5 fas C","Time in seconds after which occupancy is cleared after detecting it":"Tid i sekunder efter vilken bel\xE4ggning rensas efter att den har uppt\xE4ckts","Controls the behaviour when the device is powered on":"Styr beteendet n\xE4r enheten sl\xE5s p\xE5","Icon shown on device displays":"Ikon som visas p\xE5 enhetens sk\xE4rmar","Calibrates valve on next wakeup":"Kalibrerar ventilen vid n\xE4sta v\xE4ckning","Controls piloting mode":"Styr pilotl\xE4ge","Controls Capacitive or Inductive Dimming Mode":"Styr kapacitivt eller induktivt diml\xE4ge","Sets dimming mode to autodetect or fixed RC/RL/RL_LED mode (max load is reduced in RL_LED)":"St\xE4ller in dimningsl\xE4ge till autodetektering eller fast RC/RL/RL_LED-l\xE4ge (maxbelastning minskas i RL_LED)","Duration of lift":"Lyftets varaktighet","Auto off after specific time":"Automatisk avst\xE4ngning efter en viss tid","Auto off timer time left":"\xC5terst\xE5ende tid f\xF6r automatisk avst\xE4ngning","Time the valve was open when state on":"Tid d\xE5 ventilen var \xF6ppen n\xE4r status p\xE5","Liters of water consumed":"Liter vatten f\xF6rbrukat","Controls how programming affects the thermostat. Possible values: setpoint (only use specified setpoint), schedule (follow programmed setpoint schedule). Changing this value does not clear programmed schedules.":"Styr hur programmering p\xE5verkar termostaten. M\xF6jliga v\xE4rden: b\xF6rv\xE4rde (anv\xE4nd endast angivet b\xF6rv\xE4rde), schema (f\xF6lj programmerat b\xF6rv\xE4rdeschema). Att \xE4ndra detta v\xE4rde raderar inte programmerade scheman.","Is the unit in mounting mode. This is set to `false` for mounted (already on the radiator) or `true` for not mounted (after factory reset)":'Enheten \xE4r i monteringsl\xE4ge. Detta \xE4r inst\xE4llt p\xE5 "false" f\xF6r installerat (redan p\xE5 kylaren) eller "true" f\xF6r inte installerat (efter \xE5terst\xE4llning till fabriksinst\xE4llningarna)',"Set the unit mounting mode. `false` Go to Mounted Mode or `true` Go to Mounting Mode":'St\xE4ll in enhetens monteringsl\xE4ge. "False" f\xF6r att v\xE4xla till monterat l\xE4ge eller "True" f\xF6r att v\xE4xla till monteringsl\xE4ge',"Thermostat Orientation. This is important for the PID in how it assesses temperature. `false` Horizontal or `true` Vertical":'Orientering av termostaten. Detta \xE4r viktigt f\xF6r PID i hur termostaten utv\xE4rderar temperaturen. "False" horisontellt eller "true" vertikalt',"Viewing/Display Direction. `false` Horizontal or `true` Vertical":'Visa/visa riktning. "False" horisontellt eller "true" vertikalt',"Not clear how this affects operation. However, it would appear that the device does not execute any motor functions if this is set to false. This may be a means to conserve battery during periods that the heating system is not energized (e.g. during summer). `false` No Heat Available or `true` Heat Available":'Oklart hur detta p\xE5verkar driften. Det verkar dock som om enheten inte utf\xF6r n\xE5gra motorfunktioner om detta \xE4r inst\xE4llt p\xE5 "false". Detta kan vara ett s\xE4tt att spara p\xE5 batteriet under perioder d\xE5 v\xE4rmesystemet inte \xE4r str\xF6msatt (t.ex. under sommaren). "False" Ingen v\xE4rme tillg\xE4nglig eller "true" v\xE4rme tillg\xE4nglig',"Whether or not the unit needs warm water. `false` No Heat Request or `true` Heat Request":'Oavsett om apparaten beh\xF6ver varmvatten eller inte. "False" Ingen v\xE4rmebeg\xE4ran eller "True" v\xE4rmebeg\xE4ran',"Values observed are `0` (manual), `1` (schedule) or `2` (externally)":'De observerade v\xE4rdena \xE4r "0" (manuellt), "1" (schema) eller "2" (externt)',"If `radiator_covered` is `true`: Set at maximum 30 minutes interval but not more often than every 5 minutes and 0.1 degrees difference. Resets every 35 minutes to standard. If `radiator_covered` is `false`: Set at maximum 3 hours interval but not more often than every 30 minutes and 0.1 degrees difference. Resets every 3 hours to standard. Value 21C = 2100 (-8000=undefined).":'Om "radiator_covered" \xE4r "true": St\xE4ll in med maximalt 30 minuters intervall men inte oftare \xE4n var 5:e minut och 0,1 graders skillnad. \xC5terst\xE4lls var 35:e minut till standard. Om "radiator_covered" \xE4r "false": St\xE4ll in med maximalt 3 timmars intervall men inte oftare \xE4n var 30:e minut och 0,1 graders skillnad. \xC5terst\xE4lls var 3:e timme till standard. V\xE4rde 21C = 2100 (-8000=odefinierat).',"Set if the TRV should solely rely on external_measured_room_sensor or operate in offset mode. `false` = Auto Offset Mode or `true` = Room Sensor Mode":'St\xE4ll in om TRV enbart ska f\xF6rlita sig p\xE5 external_measured_room_sensor eller arbeta i offsetl\xE4ge. "false" = Auto Offset-l\xE4ge eller "true" = Rumssensorl\xE4ge',"Whether or not the window open feature is enabled":"Huruvida funktionen f\xF6r att \xF6ppna f\xF6nster \xE4r aktiverad eller inte","0=Quarantine, 1=Windows are closed, 2=Hold - Windows are maybe about to open, 3=Open window detected, 4=In window open state from external but detected closed locally":"0=Karant\xE4n, 1=F\xF6nster \xE4r st\xE4ngda, 2=V\xE4nta - Windows kanske \xE4r p\xE5 v\xE4g att \xF6ppnas, 3=\xD6ppet f\xF6nster uppt\xE4ckt, 4=I f\xF6nster \xF6ppet tillst\xE5nd fr\xE5n extern men uppt\xE4ckt st\xE4ngd lokalt","Set if the window is open or close. This setting will trigger a change in the internal window and heating demand. `false` (windows are closed) or `true` (windows are open)":'St\xE4ll in om f\xF6nstret \xE4r \xF6ppet eller st\xE4ngt. Denna inst\xE4llning kommer att utl\xF6sa en f\xF6r\xE4ndring av det interna f\xF6nstret och v\xE4rmebehovet. "False" (f\xF6nster \xE4r st\xE4ngda) eller "true" (f\xF6nster \xE4r \xF6ppna)',"Exercise day of week: 0=Sun...6=Sat, 7=undefined":"Tr\xE4ningsdag i veckan: 0=s\xF6n...6=l\xF6r, 7=odefinierad","Exercise trigger time. Minutes since midnight (65535=undefined). Range 0 to 1439":"Tr\xE4ningens utl\xF6sningstid. Minuter sedan midnatt (65535=odefinierat). Omr\xE5de 0 till 1439",'Scale factor of setpoint filter timeconstant ("aggressiveness" of control algorithm) 1= Quick ... 5=Moderate ... 10=Slow':'Skalfaktor f\xF6r b\xF6rv\xE4rdesfiltrets tidskonstant ("aggressivitet" f\xF6r styralgoritmen) 1=Snabb ... 5=M\xE5ttlig ... 10=L\xE5ngsam',"Whether or not the thermostat acts as standalone thermostat or shares load with other thermostats in the room. The gateway must update load_room_mean if enabled.":"Oavsett om termostaten fungerar som frist\xE5ende termostat eller delar belastning med andra termostater i rummet. Gatewayen m\xE5ste uppdatera ladda_rum_medel om den \xE4r aktiverad.","Mean radiator load for room calculated by gateway for load balancing purposes (-8000=undefined)":"Genomsnittlig radiatorbelastning f\xF6r rum ber\xE4knad av gateway f\xF6r lastbalanserings\xE4ndam\xE5l (-8000=odefinierad)","Load estimate on this radiator":"Belastningsuppskattning p\xE5 denna radiator","Specific for pre-heat running in Zigbee Weekly Schedule mode":"Speciellt f\xF6r f\xF6rv\xE4rmning i Zigbee Weekly Schedule-l\xE4ge","Status of adaptation run: None (before first run), In Progress, Valve Characteristic Found, Valve Characteristic Lost":"Status f\xF6r anpassningsk\xF6rning: Ingen (f\xF6re f\xF6rsta k\xF6rning), P\xE5g\xE5r, Ventilkarakteristik hittad, Ventilkarakteristik f\xF6rlorad","Automatic adaptation run enabled (the one during the night)":"Autostartanpassning aktiverad (en p\xE5 natten)","Adaptation run control: Initiate Adaptation Run or Cancel Adaptation Run":"Hantera anpassningsutf\xF6rande: starta anpassningsstarten eller avbryt anpassningsstarten","Regulation SetPoint Offset in range -2.5\xB0C to 2.5\xB0C in steps of 0.1\xB0C. Value 2.5\xB0C = 25.":"Offset av den inst\xE4llda kontrollpunkten i intervallet fr\xE5n -2,5\xB0C till 2,5\xB0C i steg om 0,1\xB0C. V\xE4rdet p\xE5 2,5\xB0C = 25.","Blink green LED on motion detection":"Blinka gr\xF6nt vid r\xF6relsedetektering","Ac louver position of this device":"AC jalusiposition f\xF6r denna enhet","On/off state of this fan":"P\xE5/av l\xE4ge f\xF6r denna fl\xE4kt","Mode of this fan":"L\xE4get f\xF6r denna fl\xE4kt","Sound volume of the lock":"Ljudvolym f\xF6r l\xE5set","Auto relock after 7 seconds.":"Automatisk \xE5terl\xE5sning efter 7 sekunder.","Temperature sensitivity":"Temperaturk\xE4nslighet","Enable LED":"Aktivera LED","Temperature/humidity alarm status":"Larmstatus f\xF6r temperatur/luftfuktighet","Temperature scale (\xB0F/\xB0C)":"Temperaturskala (\xB0F/\xB0C)","Current temperature measured from the floor sensor":"Aktuell temperatur m\xE4tt fr\xE5n golvgivaren","OLED brightness when operating the buttons. Default: Medium.":"OLED-ljusstyrka under knappman\xF6vrering. Standard: medium.","Key beep volume and vibration level. Default: Low.":"Knappvolym och vibrationsniv\xE5. Standard: l\xE5g.","Type of the external floor sensor. Default: NTC 10K/25.":"Typ av extern golvgivare. Standard: NTC 10K/25.","The sensor used for heat control. Default: Room Sensor.":"Sensor som anv\xE4nds f\xF6r v\xE4rmereglering. Standard: rumsgivare.","The mode after a power reset. Default: Previous Mode.":"L\xE4ge efter omstart. Standard: f\xF6reg\xE5ende l\xE4ge.","The tempearatue calibration for the exernal floor sensor, between -3 and 3 in 0.1\xB0C. Default: 0.":"Temperaturkalibrering f\xF6r utomhusgolvgivare, -3 till 3 vid 0,1\xB0C. Standard: 0.","The duration of Dry Mode, between 5 and 100 minutes. Default: 5.":"Varaktighet av torrl\xE4ge fr\xE5n 5 till 100 minuter. Standard: 5.","The mode after Dry Mode. Default: Auto.":"L\xE4ge efter torrl\xE4ge. Standard: Auto.","The temperature on the display. Default: Room Temperature.":"Temperatur p\xE5 displayen. Standard: Rumstemperatur.","The threshold to detect window open, between 1.5 and 4 in 0.5 \xB0C. Default: 0 (disabled).":"Tr\xF6skel f\xF6r att uppt\xE4cka ett \xF6ppet f\xF6nster fr\xE5n 1,5 till 4 vid 0,5\xB0C. Standard: 0 (av).","Hysteresis setting, between 0.5 and 2 in 0.1 \xB0C. Default: 0.5.":"Hysteresinst\xE4llning fr\xE5n 0,5 till 2 vid 0,1\xB0C. Standard: 0,5.","Room temperature alarm threshold, between 20 and 60 in \xB0C. 0 means disabled. Default: 45.":"Larmtr\xF6skel f\xF6r rumstemperatur fr\xE5n 20 till 60\xB0C. 0 betyder av. Standard: 45.","Do not disturb mode":"St\xF6r ej-l\xE4ge","Power on behavior state":"Str\xF6m p\xE5 beteendetillst\xE5nd","ECO mode (energy saving mode)":"ECO-l\xE4ge (str\xF6msparl\xE4ge)",'MANUAL MODE \u261D - In this mode, the device executes manual temperature setting. When the set temperature is lower than the "minimum temperature", the valve is closed (forced closed). PROGRAMMING MODE \u23F1 - In this mode, the device executes a preset week programming temperature time and temperature. HOLIDAY MODE \u26F1 - In this mode, for example, the vacation mode is set for 10 days and the temperature is setto 15 degrees Celsius. After 10 days, the device will automatically switch to programming mode. TEMPORARY MANUAL MODE - In this mode, \u261D icon will flash. At this time, the device executes the manually set temperature and returns to the weekly programming mode in the next time period. ':'MANUELLT L\xC4GE \u261D - I detta l\xE4ge utf\xF6r enheten manuell temperaturinst\xE4llning. N\xE4r den inst\xE4llda temperaturen \xE4r l\xE4gre \xE4n "minimitemperaturen" st\xE4ngs ventilen (tv\xE5ngsst\xE4ngd). PROGRAMMERINGSL\xC4GE \u23F1 - I detta l\xE4ge k\xF6r enheten en f\xF6rinst\xE4lld veckoprogrammering av temperaturtid och temperatur. SEMESTERL\xC4GE \u26F1 - I detta l\xE4ge \xE4r till exempel semesterl\xE4get inst\xE4llt p\xE5 10 dagar och temperaturen \xE4r inst\xE4lld p\xE5 15 grader Celsius. Efter 10 dagar v\xE4xlar enheten automatiskt till programmeringsl\xE4ge. TILLF\xC4LLIGT MANUELLT L\xC4GE - I detta l\xE4ge blinkar ikonen \u261D. Vid denna tidpunkt utf\xF6r enheten den manuellt inst\xE4llda temperaturen och \xE5terg\xE5r till veckoprogrammeringsl\xE4get under n\xE4sta tidsperiod.',"PROGRAMMING MODE \u23F1 - In this mode, the device executes a preset week programming temperature time and temperature. You can set up to 4 stages of temperature every for WEEKDAY \u2780\u2781\u2782\u2783\u2784, SATURDAY \u2785 and SUNDAY \u2786.":"PROGRAMMERINGSL\xC4GE \u23F1 - I detta l\xE4ge k\xF6r enheten en f\xF6rinst\xE4lld veckoprogrammering av temperaturtid och temperatur. Du kan st\xE4lla in upp till 4 temperatursteg varje f\xF6r VECKODAG \u2780\u2781\u2782\u2783\u2784, L\xD6RDAG \u2785 och S\xD6NDAG \u2786.","Boost Time Setting 100 sec - 900 sec, (default = 300 sec)":"Boost-tidsinst\xE4llning 100 sek - 900 sek, (standard = 300 sek)","Indicator light status":"Status f\xF6r indikatorlampa","The delta between local_temperature and current_heating_setpoint to trigger Heat":"Deltat mellan local_temperature och current_heating_setpoint f\xF6r att trigga v\xE4rme","Maximum temperature limit":"Maximal temperaturgr\xE4ns","Select temperature sensor to use":"V\xE4lj temperatursensor att anv\xE4nda","Mode of the fan":"L\xE4ge f\xF6r fl\xE4kten","Serial Number":"Serienummer","Base index":"Basindex","Tarif option":"Tariffalternativ","Subscribed intensity level":"Prenumererad intensitetsniv\xE5","HCHC index":"HCHC-index","HCHP index":"HCHP-index","BBRHCJW index":"BBRHCJW-index","BBRHPJW index":"BBRHPJW-index","BBRHCJR index":"BBRHCJR-index","BBRHPJR index":"BBRHPJR-index","RMS current":"RMS-str\xF6m","RMS current (phase 2)":"RMS-str\xF6m (fas 2)","RMS current (phase 3)":"RMS-str\xF6m (fas 3)","RMS current peak":"RMS-str\xF6mtopp","RMS current peak (phase 2)":"RMS-str\xF6mtopp (fas 2)","RMS current peak (phase 3)":"RMS-str\xF6mtopp (fas 3)","Three-phase power peak":"Trefas effekttopp","Apparent power":"Full styrka","Current pricing period":"Aktuell priss\xE4ttningsperiod","Tomorrow color":"F\xE4rg f\xF6r imorgon","Schedule HPHC":"Schemal\xE4gg HPHC","Presence of potentials":"N\xE4rvaro av potentialer","EJP start notice (30min)":"EJP startmeddelande (30min)","Subscribed Power Exceeded Warning":"Prenumererad str\xF6m \xF6verskriden Varning","Over Current Warning (phase 1)":"\xD6verstr\xF6msvarning (fas 1)","Over Current Warning (phase 2)":"\xD6verstr\xF6msvarning (fas 2)","Over Current Warning (phase 3)":"\xD6verstr\xF6msvarning (fas 3)","Current supplier price label":"Aktuell leverant\xF6rsprisetikett","Current tariff index number":"Aktuellt taxeindexnummer","Customer tele-information protocol version":"Kundens teleinformationsprotokollversion","Current date and time":"Aktuellt datum och tid","Total provider active power delivered (index 07)":"Total leverant\xF6rs aktiv effekt levererad (index 07)","Total provider active power delivered (index 08)":"Total leverant\xF6rs aktiv effekt levererad (index 08)","Total provider active power delivered (index 09)":"Total leverant\xF6rs aktiv effekt levererad (index 09)","Total provider active power delivered (index 10)":"Total leverant\xF6rs aktiv effekt levererad (index 10)","Active energy withdrawn Distributor (index 01)":"Aktiv energiuttagen distribut\xF6r (index 01)","Active energy withdrawn Distributor (index 02)":"Aktiv energiuttagen distribut\xF6r (index 02)","Active energy withdrawn Distributor (index 03)":"Aktiv energiuttagen distribut\xF6r (index 03)","Active energy withdrawn Distributor (index 04)":"Aktiv energiuttagen distribut\xF6r (index 04)","Total active power injected":"Total aktiv effekt injicerad","Total reactive power (Q1)":"Total reaktiv effekt (Q1)","Total reactive power (Q2)":"Total reaktiv effekt (Q2)","Total reactive power (Q3)":"Total reaktiv effekt (Q3)","Total reactive power (Q4)":"Total reaktiv effekt (Q4)","RMS voltage":"RMS-sp\xE4nning","RMS voltage (phase 2)":"RMS-sp\xE4nning (fas 2)","RMS voltage (phase 3)":"RMS-sp\xE4nning (fas 3)","Register of Statutes":"F\xF6rfattningsregister","Apparent power threshold":"Skenbar effekttr\xF6skel","Instantaneous apparent power injected":"Tillf\xE4lligt skenbar kraft injicerat","Apparent power max. injected n":"Skenbar effekt max. injicerat n","Apparent power max. injected n-1":"Skenbar effekt max. injicerat n-1","Current point of the active load curve drawn":"Aktuell punkt f\xF6r den aktiva lastkurvans str\xF6m","Previous point of the active load curve drawn":"F\xF6reg\xE5ende punkt p\xE5 den aktiva lastkurvans str\xF6m","Point n of the withdrawn active load curve":"Punkt n f\xF6r den tillbakadragna aktiva lastkurvan","Point n-1 of the withdrawn active load curve":"Punkt n-1 i den uttagna aktiva lastkurvan","Average RMS voltage (phase 1)":"Genomsnittlig RMS-sp\xE4nning (fas 1)","Average RMS voltage (phase 2)":"Genomsnittlig RMS-sp\xE4nning (fas 2)","Average RMS voltage (phase 3)":"Genomsnittlig RMS-sp\xE4nning (fas 3)","Immediate apparent power delivered (phase 2)":"Omedelbar skenbar effekt levererad (fas 2)","Immediate apparent power delivered (phase 3)":"Omedelbar skenbar effekt levererad (fas 3)","Apparent power delivered peak (phase 2)":"Skenbar effekt levererad topp (fas 2)","Apparent power delivered peak (phase 3)":"Skenbar effekt levererad topp (fas 3)","Apparent power max. draw-off n-1":"Skenbar effekt max. uttag n-1","Apparent power max. draw-off n-1 (phase 2)":"Skenbar effekt max. uttag n-1 (fas 2)","Apparent power max. draw-off n-1 (phase 3)":"Skenbar effekt max. uttag n-1 (fas 3)","Message short":"Meddelande kort","Message ultra-short":"Meddelande ultrakort","PRM number":"PRM-nummer","Start mobile point 1":"Starta mobil punkt 1","Stop mobile point 1":"Stoppa mobil punkt 1","Start mobile point 2":"Starta mobil punkt 2","Stop mobile point 2":"Stoppa mobil punkt 2","Start mobile point 3":"Starta mobil punkt 3","Stop mobile point 3":"Stoppa mobil punkt 3","Current day number supplier calendar":"Aktuellt dagnummer leverant\xF6rskalender","Next day number supplier calendar":"N\xE4sta dag nummer leverant\xF6r kalender","Profile of the next supplier calendar day":"Profil f\xF6r n\xE4sta leverant\xF6rskalenderdag","Profile of the next check-in day":"Profil f\xF6r n\xE4sta incheckningsdag","Motor options":"Motoralternativ","Motor direction":"Motorriktning","Motor is moving":"Motorn r\xF6r sig","Controls behaviour of led/siren on alarm":"Styr beteendet hos lysdioden/sirenen vid larm","Alarm zone. Default value 23":"Larmzon. Standardv\xE4rde 23","Measured eCO2 value":"Uppm\xE4tt CO2-v\xE4rde","Temperature setpoint automatic":"Temperaturb\xF6rv\xE4rde automatisk","Open window detection temperature":"Detekteringstemperatur f\xF6r \xF6ppet f\xF6nster","Open window time in minute":'K\xF6rtid f\xF6r "f\xF6nster \xF6ppet" i minuter',"Unknown binary one":"\xD6k\xE4nd bin\xE4r ett","Unknown binary two":"Ok\xE4nd bin\xE4r tv\xE5","Start away year 20xx":"Starta borta \xE5r 20xx","Start away month":"Starta efter m\xE5nad","Start away day":"Starta efter dag","Start away hours":"Starta efter timmar","Start away minutes":"Starta efter minuter","Temperature 1":"Temperatur 1","Hour TO for temp 1":"Timme TO f\xF6r temp 1","Minute TO for temp 1":"Minut TO f\xF6r temp 1","Temperature 2":"Temperatur 2","Hour TO for temp 2":"Timme TO f\xF6r temp 2","Minute TO for temp 2":"Minut TO f\xF6r temp 2","Temperature 3":"Temperatur 3","Hour TO for temp 3":"Timme TO f\xF6r temp 3","Minute TO for temp 3":"Minut TO f\xF6r temp 3","Temperature 4":"Temperatur 4","Hour TO for temp 4":"Timme TO f\xF6r temp 4","Minute TO for temp 4":"Minut TO f\xF6r temp 4","Temperature 5":"Temperatur 5","Hour TO for temp 5":"Timme TO f\xF6r temp 5","Minute TO for temp 5":"Minut TO f\xF6r temp 5","Temperature 6":"Temperatur 6","Hour TO for temp 6":"Timme TO f\xF6r temp 6","Minute TO for temp 6":"Minut TO f\xF6r temp 6","Temperature 7":"Temperatur 7","Hour TO for temp 7":"Timme TO f\xF6r temp 7","Minute TO for temp 7":"Minut TO f\xF6r temp 7","Temperature 8":"Temperatur 8","Hour TO for temp 8":"Timme TO f\xF6r temp 8","Minute TO for temp 8":"Minut TO f\xF6r temp 8","Temperature 9":"Temperatur 9","Hour TO for temp 9":"Timme TO f\xF6r temp 9","Minute TO for temp 9":"Minut TO f\xF6r temp 9","Auto off after specific time.":"Automatisk avst\xE4ngning efter viss tid.","Enable the LED when the light is off":"Sl\xE5 p\xE5 lysdioden n\xE4r lampan \xE4r sl\xE4ckt","Enables the LED when the light is on":"Aktiverar lysdioden n\xE4r lampan lyser","Works only when the pilot wire is deactivated":"Fungerar endast n\xE4r pilotkabeln \xE4r avaktiverad","Enable/disable the power alarm":"Aktivera/inaktivera str\xF6mlarmet","Specifies the minimum brightness value":"Anger l\xE4gsta ljusstyrka","Specifies the maximum brightness value":"Anger h\xF6gsta ljusstyrka","Allow the device to change brightness":"L\xE5t enheten \xE4ndra ljusstyrkan",'On/off (works only if device is in "switch" mode)':'P\xE5/av (fungerar endast om enheten \xE4r i "switch"-l\xE4ge)',"switch: allow on/off, auto will use wired action via C1/C2 on teleruptor with buttons":"switch: till\xE5t p\xE5/av, auto kommer att anv\xE4nda tr\xE5dbunden \xE5tg\xE4rd via C1/C2 p\xE5 teleruptor med knappar","switch: allow on/off, auto will use wired action via C1/C2 on contactor for example with HC/HP":"brytare: till\xE5t p\xE5/av, auto kommer att anv\xE4nda tr\xE5dbunden \xE5tg\xE4rd via C1/C2 p\xE5 kontaktorn till exempel med HC/HP","Enabled LED":"Aktiverad LED","PIR keep time 0:5s|1:30s|2:60s|3:180s|4:300s|5:600s|6:1200s|7:1800s":"PIR-h\xE5lltid 0:5s|1:30s|2:60s|3:180s|4:300s|5:600s|6:1200s|7:1800s","Illuminance calibration":"Belysningsstyrka kalibrering","Animation Effect to use for the LEDs":"Animationseffekt att anv\xE4nda f\xF6r lysdioderna","Calculated by using a hue color circle(value/255*360) If color = 255 display white":"Ber\xE4knat med hj\xE4lp av f\xE4rgnyanscirkeln (v\xE4rde/255*360) Om f\xE4rg = 255, visa vit","Brightness of the LEDs":"Lysdiodernas ljusstyrka","1-60 is in seconds calculated 61-120 is in minutes calculated by(value-60) Example a value of 65 would be 65-60 = 5 minutes - 120-254 Is in hours calculated by(value-120) Example a value of 132 would be 132-120 would be 12 hours. - 255 Indefinitely":"1-60 ber\xE4knas i sekunder 61-120 i minuter ber\xE4knas av (v\xE4rde-60) Exempelv\xE4rde 65 blir 65-60 = 5 minuter - 120-254 Ber\xE4knat i timmar med (v\xE4rde-120) Exempelv\xE4rde fr\xE5n 132 blir 132-120 blir 12 timmar. - 255 Inga begr\xE4nsningar","Individual LED to target.":"Individuell lysdiod till m\xE5l.","Animation Effect to use for the LED":"Animationseffekt som kan anv\xE4ndas f\xF6r lysdioden","Brightness of the LED":"Lysdiodens ljusstyrka","1-60 is in seconds calculated 61-120 is in minutes calculated by(value-60) Example a value of 65 would be 65-60 = 5 minutes - 120-254 Is in hours calculated by(value-120) Example a value of 132 would be 132-120 would be 12 hours. - 255 Indefinitely":"1-60 ber\xE4knas i sekunder 61-120 i minuter, ber\xE4knat av (v\xE4rde-60) Exempelv\xE4rde 65 kommer att vara 65-60 = 5 minuter - 120-254 Ber\xE4knat i timmar med (v\xE4rde-120) Exempelv\xE4rde fr\xE5n 132 kommer att vara 132-120 blir 12 timmar. - 255 Inga begr\xE4nsningar","This changes the speed that the light dims up when controlled from the hub. A setting of 0 turns the light immediately on. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 25 (2.5s)":"Detta \xE4ndrar hastigheten som ljuset dimmas upp n\xE4r det styrs fr\xE5n navet. En inst\xE4llning p\xE5 0 t\xE4nder ljuset omedelbart. Att \xF6ka v\xE4rdet saktar ner \xF6verg\xE5ngshastigheten. Varje nummer representerar 100ms. Standard = 25 (2.5s)","This changes the speed that the light dims up when controlled at the switch. A setting of 0 turns the light immediately on. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpRemote setting.":"Detta \xE4ndrar hastigheten som ljuset dimmas upp n\xE4r det styrs med str\xF6mbrytaren. En inst\xE4llning p\xE5 0 t\xE4nder ljuset omedelbart. Att \xF6ka v\xE4rdet saktar ner \xF6verg\xE5ngshastigheten. Varje nummer representerar 100ms. Standard = 127 - H\xE5ll i synk med dimmingSpeedUpRemote-inst\xE4llningen.","This changes the speed that the light turns on when controlled from the hub. A setting of 0 turns the light immediately on. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpRemote setting.":"Detta \xE4ndrar hastigheten med vilken ljuset t\xE4nds n\xE4r det styrs fr\xE5n navet. Inst\xE4llning 0 t\xE4nder omedelbart ljuset. Att \xF6ka v\xE4rdet saktar ner \xF6verg\xE5ngshastigheten. Varje nummer betyder 100ms. Standard = 127 - synkronisera med dimmingSpeedUpRemote-inst\xE4llningen.","This changes the speed that the light turns on when controlled at the switch. A setting of 0 turns the light immediately on. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpRemote setting.":"Detta \xE4ndrar hastigheten med vilken ljuset t\xE4nds n\xE4r det styrs av str\xF6mbrytaren. Inst\xE4llning 0 t\xE4nder omedelbart ljuset. Att \xF6ka v\xE4rdet saktar ner \xF6verg\xE5ngshastigheten. Varje nummer betyder 100ms. Standard = 127 - synkronisera med dimmingSpeedUpRemote-inst\xE4llningen.","This changes the speed that the light dims down when controlled from the hub. A setting of 0 turns the light immediately off. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpRemote setting.":"Detta \xE4ndrar hastigheten med vilken ljuset dimmas n\xE4r det styrs fr\xE5n navet. Inst\xE4llning 0 sl\xE4cker omedelbart ljuset. Att \xF6ka v\xE4rdet saktar ner \xF6verg\xE5ngshastigheten. Varje nummer betyder 100ms. Standard = 127 - synkronisera med dimmingSpeedUpRemote-inst\xE4llningen.","This changes the speed that the light dims down when controlled at the switch. A setting of 0 turns the light immediately off. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpLocal setting.":"","This changes the speed that the light turns off when controlled from the hub. A setting of 'instant' turns the light immediately off. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with rampRateOffToOnRemote setting.":"","This changes the speed that the light turns off when controlled at the switch. A setting of 'instant' turns the light immediately off. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with rampRateOffToOnLocal setting.":"","The minimum level that the dimmer allows the bulb to be dimmed to. Useful when the user has an LED bulb that does not turn on or flickers at a lower level.":"","The maximum level that the dimmer allows the bulb to be dimmed to.Useful when the user has an LED bulb that reaches its maximum level before the dimmer value of 99 or when the user wants to limit the maximum brightness.":"","Inverts the orientation of the switch. Useful when the switch is installed upside down. Essentially up becomes down and down becomes up.":"","Automatically turns the switch off after this many seconds. When the switch is turned on a timer is started. When the timer expires, the switch is turned off. 0 = Auto off is disabled.":"","Default level for the dimmer when it is turned on at the switch. A setting of 0 means that the switch will return to the level that it was on before it was turned off.":"","Default level for the dimmer when it is turned on from the hub. A setting of 0 means that the switch will return to the level that it was on before it was turned off.":"","The state the switch should return to when power is restored after power failure. 0 = off, 1-100 = level, 101 = previous.":"Tillst\xE5ndet som omkopplaren ska \xE5terg\xE5 till n\xE4r str\xF6mmen \xE5terst\xE4lls efter ett str\xF6mavbrott. 0 = av, 1-100 = niv\xE5, 101 = f\xF6reg\xE5ende.","Shows the level that the load is at for x number of seconds after the load is adjusted and then returns to the Default LED state. 0 = Stay Off, 1-10 = seconds, 11 = Stay On.":"","Power level change that will result in a new power report being sent. The value is a percentage of the previous report.0 = disabled, 1-32767 = 0.1W-3276.7W.":"","Time period between consecutive power & energy reports being sent (in seconds). The timer is reset after each report is sent.":"","Energy reports Energy level change which will result in sending a new energy report.0 = disabled, 1-32767 = 0.01kWh-327.67kWh. Default setting: 10 (0.1 kWh)":"","Set the power type for the device.":"St\xE4ll in vilken typ av str\xF6mf\xF6rs\xF6rjning f\xF6r enheten.","Set the switch configuration.":"Konfigurera omkopplaren.","This will set the button press delay. 0 = no delay (Disables Button Press Events), 1 = 100ms, 2 = 200ms, 3 = 300ms, etc. up to 900ms. Default = 500ms.":"","For use with Smart Bulbs that need constant power and are controlled via commands rather than power.":"","Set the color of the LED Indicator when the load is on.":"","Set the color of the LED Indicator when the load is off.":"","Set the intensity of the LED Indicator when the load is on.":"","Set the intensity of the LED Indicator when the load is off.":"","Ability to control switch from the wall.":"M\xF6jlighet att styra str\xF6mbrytaren fr\xE5n v\xE4ggen.","Ability to control switch from the hub.":"M\xF6jlighet att styra switchen fr\xE5n navet.","Use device as a Dimmer or an On/Off switch.":"","When the device is in On/Off mode, use full LED bar or just one LED.":"","Display progress on LED bar during firmware update.":"Visar f\xF6rlopp p\xE5 LED-panelen under firmwareuppdatering.","0-254:This is the color of the LED strip in a hex representation. 255:Synchronization with default all LED strip color parameter.":"","Intesity of LED strip when on. 101 = Syncronized with default all LED strip intensity parameter.":"LED-slingans styrka n\xE4r den \xE4r p\xE5. 101 = Synkroniserad med standardparametern f\xF6r intensitet f\xF6r alla LED-slingor.","Intesity of LED strip when off. 101 = Syncronized with default all LED strip intensity parameter.":"LED-slingans styrka n\xE4r den \xE4r av. 101 = Synkroniserad med standardparametern f\xF6r intensitet f\xF6r alla LED-slingor.","Result of a double tap on the up button.":"Resultatet av att dubbeltrycka upp-knappen.","Reporting interval in minutes":"Rapporteringsintervall i minuter","Temperature calibration":"Temperaturkalibrering","Humidity calibration":"Fuktighetskalibrering","Enable PIR sensor":"Aktivera PIR-sensor","Enabled reporting":"Aktiverad rapportering","Current fan speed":"Aktuell fl\xE4kthastighet","Measured air quality":"Uppm\xE4tt luftkvalitet","Filter is older than 6 months and needs replacing":"Filtret \xE4r \xE4ldre \xE4n 6 m\xE5nader och beh\xF6ver bytas ut","Indicates whether the device detected bright light (works only in night mode)":"Indikerar om enheten har uppt\xE4ckt starkt ljus (fungerar endast i nattl\xE4ge)","Prevent changes. `false` = run normally. `true` = prevent from making changes. Must be set to `false` when system_mode = off or `true` for heat":'F\xF6rhindra f\xF6r\xE4ndringar. "False" = arbeta i normalt l\xE4ge. "True" = f\xF6rbjud att g\xF6ra \xE4ndringar. M\xE5ste st\xE4llas in p\xE5 "false" n\xE4r system_mode = "disabled" eller "true" f\xF6r att v\xE4rma',"Period in minutes for which the setpoint hold will be active. 65535 = attribute not used. 0 to 360 to match the remote display":"Period i minuter under vilken b\xF6rv\xE4rdesh\xE5llningen \xE4r aktiv. 65535 = attribut anv\xE4nds inte. 0 till 360 f\xF6r att matcha fj\xE4rrkontrollens display","Measured Hcho value":"Uppm\xE4tt Hcho-v\xE4rde","Air quality index":"Luftkvalitetsindex","Measured PM10 (particulate matter) concentration":"Uppm\xE4tt PM10-koncentration (partiklar)","Valve open percentage (multiple of 10)":"Ventil\xF6ppningsprocent (multipel av 10)","Countdown timer in minutes":"Nedr\xE4kningstimer i minuter","SOS alarm":"SOS-larm","Remaining battery 2 in %":"Kvar av batteri 2 i %","Illuminance calibration in lux":"","Temperature calibration (-2.0...2.0)":"Temperaturkalibrering (-2.0...2.0)","Enable reporting":"Aktivera rapporter","Control mode":"Kontroll\xE4ge","External switch type":"Typ av extern brytare","External switch status":"Externt brytartillst\xE5nd","Load detection mode":"Ladda detekteringsl\xE4ge","Load type":"Ladda typ","Load dimmable":"Ladda dimbar","Power supply mode":"Str\xF6mf\xF6rs\xF6rjningsl\xE4ge","Select between direct control of the valve via the `valve_position` or automatic control of the valve based on the `current_heating_setpoint`. For manual control set the value to 1, for automatic control set the value to 2 (the default). When switched to manual mode the display shows a value from 0 (valve closed) to 100 (valve fully open) and the buttons on the device are disabled.":"V\xE4lj mellan direkt styrning av ventilen via `ventil_position` eller automatisk styrning av ventilen baserat p\xE5 `current_heating_setpoint`. F\xF6r manuell styrning st\xE4ll in v\xE4rdet till 1, f\xF6r automatisk styrning st\xE4ll in v\xE4rdet p\xE5 2 (standard). N\xE4r den v\xE4xlas till manuellt l\xE4ge visar displayen ett v\xE4rde fr\xE5n 0 (ventil st\xE4ngd) till 100 (ventil helt \xF6ppen) och knapparna p\xE5 enheten \xE4r avaktiverade.","Directly control the radiator valve when `trv_mode` is set to 1. The values range from 0 (valve closed) to 255 (valve fully open)":"Styr radiatorventilen direkt n\xE4r `trv_mode` \xE4r inst\xE4lld p\xE5 1. V\xE4rdena str\xE4cker sig fr\xE5n 0 (ventil st\xE4ngd) till 255 (ventil helt \xF6ppen)","Displayed text on thermostat display (zone). Max 14 characters":"Visad text p\xE5 termostatdisplayen (zon). Max 14 tecken","Load in W when heating is on (between 0-2000 W). The thermostat uses the value as input to the mean_power calculation.":"Belastning i W n\xE4r uppv\xE4rmning \xE4r p\xE5 (mellan 0-2000W). Termostaten anv\xE4nder v\xE4rdet som indata f\xF6r ber\xE4kningen av medeleffekt.","Device in regulator or thermostat mode.":"Enhet i regulator- eller termostatl\xE4ge.","When device is in regulator mode this controls the time between each in/out connection. When device is in thermostat mode this controls the time between each in/out switch when measured temperature is within +-0.5 \xB0C set temperature. Choose a long time for (slow) concrete floors and a short time for (quick) wooden floors.":"N\xE4r enheten \xE4r i regulatorl\xE4ge styr detta tiden mellan varje in/ut-anslutning. N\xE4r enheten \xE4r i termostatl\xE4ge styr detta tiden mellan varje in/ut-omkopplare n\xE4r den uppm\xE4tta temperaturen ligger inom +-0,5 \xB0C inst\xE4lld temperatur. V\xE4lj l\xE5ng tid f\xF6r (l\xE5ngsamma) betonggolv och kort tid f\xF6r (snabba) tr\xE4golv.",'Set max floor temperature (between 20-35 \xB0C) when "supervisor_floor" is set':'St\xE4ll in max golvtemperatur (mellan 20-35\xB0C) n\xE4r "supervisor_floor" \xE4r inst\xE4lld',"Reports average power usage last 10 minutes":"Rapporterar genomsnittlig str\xF6mf\xF6rbrukning senaste 10 minuterna",'When frost guard is ON, it is activated when the thermostat is switched OFF with the ON/OFF button.At the same time, the display will fade and the text "Frostsikring x \xB0C" appears in the display and remains until the thermostat is switched on again.':'N\xE4r frostvakten \xE4r P\xC5 aktiveras den n\xE4r termostaten st\xE4ngs AV med P\xC5/AV-knappen. Samtidigt ljusnar displayen och texten "Frostsikring x \xB0C" visas och finns kvar tills termostaten sl\xE5s p\xE5 igen.',"Turn on or off night setting.":"Sl\xE5 p\xE5 eller av nattinst\xE4llning.","Current state":"Nuvarande tillst\xE5nd","Select open mode":"V\xE4lj \xF6ppet l\xE4ge","Enable or disable sound":"Aktivera eller inaktivera ljud","Time to ring before answer":"Tid det ska ringa innan svar","Time to hold before open":"Tid att v\xE4nta innan \xF6ppning","Time to open before end":"Tid att \xF6ppna innan slut","Time after last bell to finish ring":"Tid efter sista klockan att sluta ringa","Reporting interval":"Rapporteringsintervall","Enable LEDs feedback":"Aktivera LED-feedback","Enable ABC (Automatic Baseline Correction)":"Aktivera ABC (Automatic Baseline Correction)","Warning (LED2) CO2 level":"Varning (LED2) CO2-niv\xE5","Critical (LED3) CO2 level":"Kritisk (LED3) CO2-niv\xE5","Adjust temperature":"Justera temperaturen","Adjust humidity":"Justera luftfuktigheten","Adjust pressure":"Justera trycket","Measured soil moisture value":"Uppm\xE4tt markfuktighetsv\xE4rde","Current count radioactive pulses per minute":"Aktuellt antal radioaktiva pulser per minut","Current radiation level":"Aktuell str\xE5lningsniv\xE5","Enable LED feedback":"Aktivera LED-respons","Enable buzzer feedback":"Aktivera summerrespons","Critical radiation level":"Kritisk str\xE5lningsniv\xE5","Type of installed tubes":"Typ av installerade r\xF6r","Count of installed tubes":"Antal installerade r\xF6r","This is applicable if tubes type is set to other":"Detta \xE4r till\xE4mpligt om r\xF6rtypen \xE4r inst\xE4lld p\xE5 annat","Temperature of the CPU":"CPU:ns temperatur","Indicates whether the device is being tested":"Indikerar om enheten testas","Set Squawk state":"St\xE4ll in Squawk-status","Turn on/off the strobe (light) for Squawk":"Sl\xE5 p\xE5/av stroben (ljuset) f\xF6r Squawk","Max duration of the siren":"Max l\xE4ngd p\xE5 sirenen","Manual start of the siren":"Manuell start av sirenen","Pulses per kwh. Default 1000 imp/kWh. Range 0 to 65535":"Pulser per kwh. Standard 1000 imp/kWh. Omr\xE5de 0 till 65535","Operating mode/probe":"Driftl\xE4ge/sond","Current summation value sent to the display. e.g. 570 = 0,570 kWh":"Aktuellt summeringsv\xE4rde skickas till displayen. t.ex. 570 = 0,570 kWh","Is true if communication problem with meter is experienced":"St\xE4mmer om kommunikationsproblem med m\xE4taren upplevs","Duration of Siren":"Sirenens varaktighet","Manual Start of Siren":"Manuell start av siren","Indicates reason if any fault":"Anger orsak vid eventuella fel","Indicates whether the device are in fault state":"Indikerar om enheten \xE4r i felstatus","Indicates if the card is inserted (= true) or not (= false)":'Indikerar om kortet \xE4r isatt (= "true") eller inte (= "false")',"Allow Master PIN Unlock":"Till\xE5t uppl\xE5sning av huvud-PIN","Allow RFID to Unlock":"Till\xE5t RFID att l\xE5sa upp","Allow Auto Re-Lock":"Till\xE5t automatisk \xE5terl\xE5sning","Lock-Mode of the Lock":"L\xE5s-l\xE4ge f\xF6r l\xE5set","Service Mode of the Lock":"Servicel\xE4ge f\xF6r l\xE5set","Absolute min temperature allowed on the device":"Absolut min temperatur till\xE5ten p\xE5 enheten","Absolute max temperature allowed on the device":"Absolut max temperatur till\xE5ten p\xE5 enheten","Min temperature limit set on the device":"Min temperaturgr\xE4ns inst\xE4lld p\xE5 enheten","Max temperature limit set on the device":"Max temperaturgr\xE4ns inst\xE4lld p\xE5 enheten","Danfoss Output Status [Active vs Inactive])":"Danfoss utmatningsstatus [Aktiv vs inaktiv])","Thermostat status":"Termostatstatus","Regulator Status":"Regulatorstatus","Water Status of Regulator":"Vattenstatus f\xF6r regulator","Regulator role (Master vs Slave)":"Regulatorroll (Master vs Slave)","State or sensor value":"Status eller sensorv\xE4rde","Current temperature measured on the external sensor (floor)":"","The difference between the temperature at which the thermostat switches off, and the temperature at which it switches on again.":"","Max guarding temperature":"","Manual start of siren":"Manuell start av siren","Prevent changes. `false` = run normally. `true` = prevent from making changes.":'F\xF6rhindra f\xF6r\xE4ndringar. "false" = k\xF6r normalt. "true" = f\xF6rhindra fr\xE5n att g\xF6ra \xE4ndringar.',"Enables the LED when the light is off":"Aktiverar LED n\xE4r lampan \xE4r sl\xE4ckt","Brightness of this backlight LED":"Ljusstyrkan f\xF6r denna bakgrundsbelysning","Enable or disable the blue backlight LED":"Aktivera eller inaktivera den bl\xE5 bakgrundsbelysningen"},dAt={undefined:"odefinierad",state:"Status",brightness:"Ljusstyrka",color_temp:"F\xE4rgtemp",color_temp_startup:"F\xE4rgtemperatur vid uppstart",color_xy:"F\xE4rg Xy",effect:"Effekt",linkquality:"L\xE4nkkvalitet",occupied_heating_setpoint:"Upptaget v\xE4rmeb\xF6rv\xE4rde",local_temperature:"Lokal temperatur",system_mode:"Systeml\xE4ge",running_state:"K\xF6rstatus",local_temperature_calibration:"Lokal temperaturskalibrering",pi_heating_demand:"Pi v\xE4rmebehov",options:"Alternativ",motor_speed:"Motorhastighet",motor_working_mode:"Motorns driftl\xE4ge",percent_state:"Procentstatus",mode:"L\xE4ge",motor_direction:"Motorriktning",border:"border",power_outage_memory:"Str\xF6mavbrottsminne",battery:"Batteri",action:"\xC5tg\xE4rd",power_on_behavior:"Str\xF6m p\xE5 beteende",battery_low:"L\xE5gt batteri",color_hs:"F\xE4rg Hs",hue:"Nyans",saturation:"M\xE4ttnad",lock_state:"L\xE5sstatus",pin_code:"Pinkod",user:"Anv\xE4ndare",user_type:"Anv\xE4ndartyp",user_enabled:"Anv\xE4ndare aktiverad",action_source_name:"Namnet p\xE5 k\xE4llan till \xE5tg\xE4rd",action_source_user:"",voltage:"Sp\xE4nning",click_mode:"Klickl\xE4ge",operation_mode:"Driftl\xE4ge",action_rotation_angle:"\xC5tg\xE4rdsrotationsvinkel",action_rotation_angle_speed:"\xC5tg\xE4rdsrotationsvinkelhastighet",action_rotation_percent:"\xC5tg\xE4rdsrotationsprocent",action_rotation_percent_speed:"\xC5tg\xE4rdsrotationsprocenthastighet",action_rotation_time:"\xC5tg\xE4rdsrotationstid",power:"Str\xF6m",energy:"Energi",temperature:"Temperatur",current:"Aktuell",led_disabled_night:"LED inaktiverad natt",button_lock:"Knappl\xE5s",overload_protection:"\xD6verbelastningsskydd",contact:"Kontakt",button_switch_mode:"Knappv\xE4xlingsl\xE4ge",illuminance:"Belysningsstyrka",illuminance_lux:"Ljusstyrka",detection_period:"Detektionsperiod",flip_indicator_light:"V\xE4xelindikatorlampa",consumer_connected:"Konsumentansluten",humidity:"Fuktighet",mode_switch:"L\xE4gesomkopplare",standby_enabled:"Standby aktiverad",theme:"Tema",beep_volume:"Pipvolym",lcd_brightness:"LCD Ljusstyrka",language:"Spr\xE5k",screen_saver_style:"Sk\xE4rmsl\xE4ckarstil",standby_time:"Standbytid",font_size:"Textstorlek",lcd_auto_brightness_enabled:"LCD automatisk ljusstyrka aktiverad",homepage:"Hemsida",screen_saver_enabled:"Sk\xE4rmsl\xE4ckare aktiverad",standby_lcd_brightness:"Standby LCD Ljusstyrka",available_switches:"Tillg\xE4ngliga reglage",switch_1_text_icon:"Textikon f\xF6r reglage 1",switch_1_icon:"Ikon f\xF6r reglage 1",switch_1_text:"Text f\xF6r reglage 1",switch_2_text_icon:"Textikon f\xF6r reglage 2",switch_2_icon:"Ikon f\xF6r reglage 2",switch_2_text:"Text f\xF6r reglage 2",switch_3_text_icon:"Textikon f\xF6r reglage 3",switch_3_icon:"Ikon f\xF6r reglage 3",switch_3_text:"Text f\xF6r reglage 3",switch_type:"Omkopplartyp",device_temperature:"Enhetstemperatur",power_outage_count:"Antal str\xF6mavbrott",reverse:"Omv\xE4nd",interlock:"Sp\xE4rr",charging_status:"Laddningsstatus",motor_state:"motor_state",running:"running",strength:"Styrka",sensitivity:"K\xE4nslighet",angle_x:"Vinkel X",angle_y:"Vinkel Y",angle_z:"Vinkel Z",inserted:"Insatt",smoke:"R\xF6k",smoke_density:"R\xF6kt\xE4thet",smoke_density_dbm:"R\xF6kdensitet dB/m",selftest:"Sj\xE4lvtest",mute_buzzer:"St\xE4ng av summern",mute:"mute",heartbeat_indicator:"Pulsindikator",linkage_alarm:"L\xE4nkvarning",gas_density:"Gasdensitet",gas_sensitivity:"Gask\xE4nslighet",tamper:"Manipulera",auto_off:"Automatisk avst\xE4ngning",action_angle:"\xC5tg\xE4rdsvinkel",action_from_side:"Handling fr\xE5n sidan",action_side:"\xC5tg\xE4rdssida",action_to_side:"\xC5tg\xE4rd till sida",water_leak:"Vattenl\xE4cka",presence:"N\xE4rvaro",presence_event:"N\xE4rvaroh\xE4ndelse",monitoring_mode:"\xD6vervakningsl\xE4ge",approach_distance:"N\xE4rmande avst\xE5nd",motion_sensitivity:"R\xF6relsek\xE4nslighet",reset_nopresence_status:"\xC5terst\xE4ll fr\xE5nvarostatus",occupancy:"Bel\xE4ggning",detection_interval:"Detektionsintervall",pressure:"Tryck",dimmer_mode:"Dimmerl\xE4ge",warning:"Varning",level:"Niv\xE5",strobe_level:"Stroboskopniv\xE5",strobe:"Stroboskop",strobe_duty_cycle:"Blinkningscykel",duration:"Varaktighet",ac_connected:"v\xE4xelstr\xF6m \xE4r ansluten",volume:"Volym",test_alarm:"Larmtest",test_alarm_result:"Resultatet av larmtestet",battery_level:"Batteriniv\xE5",fault_alarm:"Fellarm",silence_siren:"Tyst siren",window_open:"F\xF6nster \xF6ppet",window_open_force:"F\xF6nster\xF6ppningskraft",keypad_lockout:"Knappsatsl\xE5s",action_code:"\xC5tg\xE4rdskod",action_transaction:"\xC5tg\xE4rdstransaktion",action_zone:"\xC5tg\xE4rdszon",tilt:"Lutning",level_config:"Niv\xE5konfig",on_off_transition_time:"P\xE5/Av \xF6verg\xE5ngstid",on_transition_time:"\xD6verg\xE5ngstid vid P\xE5",off_transition_time:"\xD6verg\xE5ngstid vid Av",current_level_startup:"Uppstart p\xE5 nuvarande niv\xE5",ballast_physical_minimum_level:"Fysisk miniminiv\xE5 f\xF6r ballast",ballast_physical_maximum_level:"Fysisk maximiniv\xE5 f\xF6r ballast",ballast_minimum_level:"Miniminiv\xE5 f\xF6r ballast",ballast_maximum_level:"Maxniv\xE5 f\xF6r ballast",minimum_on_level:"Minimum P\xE5-Niv\xE5",capabilities_forward_phase_control:"Funktioner fram\xE5t faskontroll",capabilities_reverse_phase_control:"Funktioner Omv\xE4nd faskontroll",capabilities_reactance_discriminator:"Funktioner Reaktansdiskriminator",capabilities_configurable_curve:"Funktioner Konfigurerbar kurva",capabilities_overload_detection:"Funktioner \xF6verbelastningsdetektering",status_forward_phase_control:"Fram\xE5t faskontrollstatus",status_reverse_phase_control:"Status f\xF6r omv\xE4nd faskontroll",status_overload:"Status \xF6verbelastning",status_capacitive_load:"Status kapacitiv belastning",status_inductive_load:"Status induktiv belastning",mode_phase_control:"L\xE4ge Faskontroll",keep_time:"Beh\xE5ll tid",report_interval:"Rapportintervall",temperature_unit_convert:"Konvertera temperaturenhet",temperature_alarm:"Temperaturlarm",max_temperature:"Max temperatur",min_temperature:"Min temperatur",humidity_alarm:"Luftfuktighetslarm",max_humidity:"H\xF6gsta luftfuktighet",min_humidity:"L\xE4gsta luftfuktighet",target_distance:"Avst\xE5nd till m\xE5let",radar_sensitivity:"Radark\xE4nslighet",minimum_range:"Min r\xE4ckvidd",maximum_range:"Max r\xE4ckvidd",detection_delay:"detekteringsf\xF6rdr\xF6jning",fading_time:"D\xE4mpningstid",self_test:"Sj\xE4lvtestning",brightness_state:"Ljusstyrka",action_step_size:"\xC5tg\xE4rdsstegsstorlek",action_transition_time:"\xC5tg\xE4rds\xF6verg\xE5ngsperiod",action_rate:"\xC5tg\xE4rdshastighet",meter_number:"M\xE4tarnummer",trip:"Resa",child_lock:"Barnl\xE5s",countdown_timer:"Nedr\xE4kningstimer",voltage_rms:"RMS-sp\xE4nning",current_average:"Medelstr\xF6m",energy_consumed:"F\xF6rbrukad energi",clear_device_data:"Rensa enhetsdata",motion_speed:"R\xF6relsehastighet",motion_direction:"R\xF6relseriktning",radar_scene:"Radarscen",tumble_switch:"Vippbrytare",fall_sensitivity:"Fallk\xE4nslighet",tumble_alarm_time:"Vippbrytare f\xF6r larmtid",fall_down_status:"H\xF6stens status",static_dwell_alarm:"Statiskt uppeh\xE5llslarm",o_sensitivity:"O-k\xE4nslighet",v_sensitivity:"V-k\xE4nslighet",led_status:"LED-status",vacancy_delay:"Vakansf\xF6rdr\xF6jning",light_on_luminance_prefer:"F\xF6redragen Luminans vid ljus p\xE5",light_off_luminance_prefer:"F\xF6redragen Luminans vid ljus av",luminance_level:"Luminansniv\xE5",reference_luminance:"Referensluminans",vacant_confirm_time:"Ledig bekr\xE4ftelsetid",alarm_temperature_max:"Larmtemperatur max",alarm_temperature_min:"Larmtemperatur min",alarm_humidity_max:"Larm luftfuktighet max",alarm_humidity_min:"Larm luftfuktighet min",alarm_humidity:"Larm Fuktighet",alarm_temperature:"Larmtemperatur",trigger:"Utl\xF6sare",garage_door_contact:"Garageportskontakt",indicator_mode:"visningsl\xE4ge",current_heating_setpoint:"Aktuellt v\xE4rmeb\xF6rv\xE4rde",min_brightness:"Min ljusstyrka",window:"F\xF6nster",heating:"Uppv\xE4rmning",preset:"F\xF6rinst\xE4llning",programming_mode:"Programmeringsl\xE4ge",monday_schedule:"M\xE5ndagsschema",tuesday_schedule:"Tisdagsschema",wednesday_schedule:"Onsdagsschema",thursday_schedule:"Torsdagsschema",friday_schedule:"Fredagsschema",saturday_schedule:"L\xF6rdagsschema",sunday_schedule:"S\xF6ndagsschema",boost_heating:"\xD6ka uppv\xE4rmning",boost_heating_countdown:"\xD6ka uppv\xE4rmningens nedr\xE4kning",away_mode:"Bortal\xE4ge",open_window:"\xD6ppna f\xF6nster",open_window_temperature:"F\xF6nster\xF6ppningstemperatur",comfort_temperature:"Komforttemperatur",eco_temperature:"Ekotemperatur",boost_timeset_countdown:"\xD6ka tidsinst\xE4llningens nedr\xE4kning",frost_protection:"Frostskydd",heating_stop:"Uppv\xE4rmningsstopp",holiday_temperature:"Semestertemperatur",holiday_mode_date:"Datum f\xF6r semesterl\xE4ge",holiday_start_stop:"Semestertidens start/slut",schedule:"Schema",schedule_monday:"M\xE5ndagsschema",schedule_tuesday:"Tisdagsschema",schedule_wednesday:"Onsdagsschema",schedule_thursday:"Torsdagsschema",schedule_friday:"Fredagsschema",schedule_saturday:"L\xF6rdagsschema",schedule_sunday:"S\xF6ndagsschema",online:"Uppkopplad",error_status:"Felststus",away_preset_days:"Borta f\xF6rinst\xE4llda dagar",boost_time:"\xD6ka tid",force:"Tvinga",away_preset_temperature:"Borta f\xF6rinst\xE4lld temperatur",week:"Vecka",workdays_schedule:"Arbetsdagarsschema",holidays_schedule:"Semesterschema",backlight_mode:"Bakgrundsbelysningsl\xE4ge",moving:"Flyttas",calibration:"Kalibrering",motor_reversal:"Motorv\xE4ndning",calibration_time:"Kalibreringstid",max_brightness:"Max ljusstyrka",carbon_monoxide:"Kolmonoxid",co:"CO",co2:"CO2",action_group:"",direction:"Riktning",occupancy_level:"Bel\xE4ggningsniv\xE5",noise:"Buller",noise_detected:"Buller uppt\xE4ckt",noise_timeout:"V\xE4ntetid f\xF6r buller",occupancy_timeout:"Timeout f\xF6r bel\xE4ggning",temperature_offset:"Temperaturf\xF6rskjutning",occupancy_sensitivity:"",noise_detect_level:"",co2_autocalibration:"CO2 automatisk kalibrering",co2_manual_calibration:"CO2 manuell kalibrering",th_heater:"V\xE4rmare",x_axis:"X-axel",y_axis:"Y-axel",z_axis:"Z-axel",beep:"Pip",white_brightness:"Vit ljusstyrka",led_intensity_on:"LED-intensitet p\xE5",led_intensity_off:"LED-intensitet av",minimum_brightness:"Minsta ljusstyrka",backlight_auto_dim:"Automatisk dimmning av bakgrundsbelysning",door_state:"D\xF6rrstatus",power_factor:"Effektfaktor",ac_frequency:"V\xE4xelstr\xF6msfrekvens",people:"M\xE4nniskor",power_apparent:"",power_phase_a:"Effektfas A",power_phase_b:"Effektfas B",power_phase_c:"Effektfas C",energy_phase_a:"Energifas A",energy_phase_b:"Energifas B",energy_phase_c:"Energifas C",voltage_phase_a:"Sp\xE4nningsfas A",voltage_phase_b:"Voltfas B",voltage_phase_c:"Sp\xE4nningsfas C",voltage_phase_ab:"Sp\xE4nningsfas AB",voltage_phase_bc:"Sp\xE4nningsfas BC",voltage_phase_ca:"Sp\xE4nningsfas CA",current_phase_a:"Str\xF6mfas A",current_phase_b:"Str\xF6mfas B",current_phase_c:"Str\xF6mfas C",zone_mode:"Zonl\xE4ge",calibrate_valve:"Kalibrera ventil",valve_calibration_status:"Ventilkalibreringsstatus",schneider_pilot_mode:"Schneider Pilotl\xE4ge",lift_duration:"Slagl\xE4ngd",timer_state:"Timerstatus",timer_time_left:"Tid kvar f\xF6r timer",last_valve_open_duration:"Senaste ventil\xF6ppningstid",water_consumed:"Vattenf\xF6rbrukning",programming_operation_mode:"Programmeringsl\xE4ge",mounted_mode_active:"Monterat l\xE4ge aktivt",mounted_mode_control:"Monterad l\xE4geskontroll",thermostat_vertical_orientation:"Vertikal orientering av termostaten",viewing_direction:"Visningsriktning",heat_available:"Uppv\xE4rming tillg\xE4ngligt",heat_required:"Uppv\xE4rmning kr\xE4vs",setpoint_change_source:"K\xE4lla f\xF6r b\xF6rv\xE4rdes\xE4ndring",external_measured_room_sensor:"Extern uppm\xE4tt rumsgivare",radiator_covered:"Kylare t\xE4ckt",window_open_feature:"F\xF6nster\xF6ppningsfunktion",window_open_internal:"Intern f\xF6nster\xF6ppning",window_open_external:"Extern f\xF6nster\xF6ppning",day_of_week:"Veckodag",trigger_time:"Utl\xF6sningstid",algorithm_scale_factor:"Algoritmskalfaktor",load_balancing_enable:"Aktivera lastbalansering",load_room_mean:"Genomsnittlig lastrum",load_estimate:"Uppskattad belastning",preheat_status:"",adaptation_run_status:"",adaptation_run_settings:"",adaptation_run_control:"",regulation_setpoint_offset:"",led_indication:"LED-indikering",action_duration:"\xC5tg\xE4rdens varaktighet",device_mode:"Enhetsl\xE4ge",occupied_cooling_setpoint:"Upptaget kylningsb\xF6rv\xE4rde",ac_louver_position:"AC spj\xE4lll\xE4ge",sound_volume:"Ljudvolym",auto_relock:"Automatisk \xE5terl\xE5sning",temperature_sensitivity:"temperaturk\xE4nslighet",led_enable:"LED aktivera",power_type:"typ av str\xF6mk\xE4lla",temperature_min:"Minimitemperatur",temperature_max:"Maximitemperatur",temperature_scale:"",humidity_min:"L\xE4gsta luftfuktighet",humidity_max:"H\xF6gsta luftfuktighet",melody:"Melodi",battpercentage:"Batteriprocent",outdoor_temperature:"",button_vibration_level:"",floor_sensor_type:"",powerup_status:"",floor_sensor_calibration:"Kalibrering av golvgivaren",dry_time:"Torktid",mode_after_dry:"L\xE4ge efter torkning",temperature_display:"Temperaturdisplay",window_open_check:"Kontrollera \xF6ppet f\xF6nster",hysterersis:"F\xF6rdr\xF6jning",display_auto_off_enabled:"Sk\xE4rmen f\xF6r automatisk avst\xE4ngning \xE4r p\xE5",alarm_airtemp_overvalue:"Larm f\xF6r f\xF6r h\xF6g lufttemperatur",backlight:"Bakgrundsbelysning",do_not_disturb:"St\xF6r ej",color_power_on_behavior:"F\xE4rg n\xE4r den \xE4r p\xE5slagen",eco_mode:"Str\xF6msparl\xE4ge",valve_state:"Ventilstatus",boost_heating_countdown_time_set:"Nedr\xE4kningstid inst\xE4lld f\xF6r boost-uppv\xE4rmning",indicate_light:"Ljussignal",deadzone_temperature:"D\xF6dzonstemperatur",max_temperature_limit:"Maximal temperaturgr\xE4ns",fan_mode:"Fl\xE4ktl\xE4ge",ADCO:"ADCO",BASE:"BAS",OPTARIF:"OPTARIF",ISOUSC:"ISOUSC",HCHC:"HCHC",HCHP:"HCHP",BBRHCJW:"BBRHCJW",BBRHPJW:"BBRHPJW",BBRHCJR:"BBRHCJR",BBRHPJR:"BBRHPJR",IINST:"IINST",IINST2:"IINST2",IINST3:"IINST3",IMAX:"IMAX",IMAX2:"IMAX2",IMAX3:"IMAX3",PMAX:"PMAX",PAPP:"PAPP",PTEC:"PTEC",DEMAIN:"DEMAIN",HHPHC:"HHPHC",PPOT:"PPOT",PEJP:"PEJP",ADPS:"ADPS",ADIR1:"ADIR1",ADIR2:"ADIR2",ADIR3:"ADIR3",LTARF:"LTARF",NTARF:"NTARF",VTIC:"VTIC",DATE:"DATE",EASF07:"EASF07",EASF08:"EASF08",EASF09:"EASF09",EASF10:"EASF10",EASD01:"EASD01",EASD02:"EASD02",EASD03:"EASD03",EASD04:"EASD04",EAIT:"EAIT",ERQ1:"ERQ1",ERQ2:"ERQ2",ERQ3:"ERQ3",ERQ4:"ERQ4",URMS1:"URMS1",URMS2:"URMS2",URMS3:"URMS3",STGE:"STGE",PCOUP:"PCOUP",SINSTI:"SINSTI",SMAXIN:"SMAXIN","SMAXIN-1":"SMAXIN-1",CCASN:"CCASN","CCASN-1":"CCASN-1",CCAIN:"CCAIN","CCAIN-1":"CCAIN-1",UMOY1:"UMOY1",UMOY2:"UMOY2",UMOY3:"UMOY3",SINSTS2:"SINSTS2",SINSTS3:"SINSTS3",SMAXN2:"SMAXN2",SMAXN3:"SMAXN3","SMAXN-1":"SMAXN-1","SMAXN2-1":"SMAXN2-1","SMAXN3-1":"SMAXN3-1",MSG1:"MSG1",MSG2:"MSG2",PRM:"PRM",DPM1:"DPM1",FPM1:"FPM1",DPM2:"DPM2",FPM2:"FPM2",DPM3:"DPM3",FPM3:"FPM3",RELAIS:"RELAIS",NJOURF:"NJOURF","NJOURF+1":"NJOURF+1","PJOURF+1":"PJOURF+1",PPOINTE1:"PPOINTE1",alert_behaviour:"Varningsbeteende",eco2:"Eko 2",current_heating_setpoint_auto:"Aktuellt v\xE4rmeb\xF6rv\xE4rde Auto",detectwindow_temperature:"Detektera f\xF6nstertemperatur",detectwindow_timeminute:"Detektera f\xF6nster tidsminuter",binary_one:"Bin\xE4r 1",binary_two:"Bin\xE4r 2",away_setting:"Fr\xE5nvaroinst\xE4llning",away_preset_year:"Semester\xE5r",away_preset_month:"Semesterm\xE5nad",away_preset_day:"Semesterdag",away_preset_hour:"Semestertimme",away_preset_minute:"Semesterminut",monday:"M\xE5ndag",monday_temp_1:"M\xE5ndag temp 1",monday_hour_1:"M\xE5ndag timme 1",monday_minute_1:"M\xE5ndag minut 1",monday_temp_2:"M\xE5ndag temp 2",monday_hour_2:"M\xE5ndag timme 2",monday_minute_2:"M\xE5ndag minut 2",monday_temp_3:"M\xE5ndag temp 3",monday_hour_3:"M\xE5ndag timme 3",monday_minute_3:"M\xE5ndag timme 3",monday_temp_4:"M\xE5ndag temp 4",monday_hour_4:"M\xE5ndag timme 4",monday_minute_4:"M\xE5ndag minut 4",monday_temp_5:"M\xE5ndag temp 5",monday_hour_5:"M\xE5ndag timme 5",monday_minute_5:"M\xE5ndag minut 5",monday_temp_6:"M\xE5ndag temp 6",monday_hour_6:"M\xE5ndag timme 6",monday_minute_6:"M\xE5ndag minut 6",monday_temp_7:"M\xE5ndag temp 7",monday_hour_7:"M\xE5ndag timme 7",monday_minute_7:"M\xE5ndag minut 7",monday_temp_8:"M\xE5ndag temp 8",monday_hour_8:"M\xE5ndag timme 8",monday_minute_8:"M\xE5ndag minut 8",monday_temp_9:"M\xE5ndag temp 9",monday_hour_9:"M\xE5ndag timme 9",monday_minute_9:"M\xE5ndag minut 9",tuesday:"Tisdag",tuesday_temp_1:"Tisdag temp 1",tuesday_hour_1:"Tisdag timme 1",tuesday_minute_1:"Tisdag minut 1",tuesday_temp_2:"Tisdag temp 2",tuesday_hour_2:"Tisdag timme 2",tuesday_minute_2:"Tisdag minut 2",tuesday_temp_3:"Tisdag temp 3",tuesday_hour_3:"Tisdag timme 3",tuesday_minute_3:"Tisdag minut 3",tuesday_temp_4:"Tisdag temp 4",tuesday_hour_4:"Tisdag timme 4",tuesday_minute_4:"Tisdag minut 4",tuesday_temp_5:"Tisdag temp 5",tuesday_hour_5:"Tisdag timme 5",tuesday_minute_5:"Tisdag minut 5",tuesday_temp_6:"Tisdag temp 6",tuesday_hour_6:"Tisdag timme 6",tuesday_minute_6:"Tisdag minut 6",tuesday_temp_7:"Tisdag temp 7",tuesday_hour_7:"Tisdag timme 7",tuesday_minute_7:"Tisdag minut 7",tuesday_temp_8:"Tisdag temp 8",tuesday_hour_8:"Tisdag timme 8",tuesday_minute_8:"Tisdag minut 8",tuesday_temp_9:"Tisdag temp 9",tuesday_hour_9:"Tisdag timme 9",tuesday_minute_9:"Tisdag minut 9",wednesday:"Onsdag",wednesday_temp_1:"Onsdag temp 1",wednesday_hour_1:"Onsdag timme 1",wednesday_minute_1:"Onsdag minut 1",wednesday_temp_2:"Onsdag temp 2",wednesday_hour_2:"Onsdag timme 2",wednesday_minute_2:"Onsdag minut 2",wednesday_temp_3:"Onsdag temp 3",wednesday_hour_3:"Onsdag timme 3",wednesday_minute_3:"Onsdag minut 3",wednesday_temp_4:"Onsdag temp 4",wednesday_hour_4:"Onsdag timme 4",wednesday_minute_4:"Onsdag minut 4",wednesday_temp_5:"Onsdag temp 5",wednesday_hour_5:"Onsdag timme 5",wednesday_minute_5:"Onsdag minut 5",wednesday_temp_6:"Onsdag temp 6",wednesday_hour_6:"Onsdag timme 6",wednesday_minute_6:"Onsdag minut 6",wednesday_temp_7:"Onsdag temp 7",wednesday_hour_7:"Onsdag timme 7",wednesday_minute_7:"Onsdag minut 7",wednesday_temp_8:"Onsdag temp 8",wednesday_hour_8:"Onsdag timme 8",wednesday_minute_8:"Onsdag minut 8",wednesday_temp_9:"Onsdag temp 9",wednesday_hour_9:"Onsdag timme 9",wednesday_minute_9:"Onsdag minut 9",thursday:"Torsdag",thursday_temp_1:"Torsdag temp 1",thursday_hour_1:"Torsdag timme 1",thursday_minute_1:"Torsdag minut 1",thursday_temp_2:"Torsdag temp 2",thursday_hour_2:"Torsdag timme 2",thursday_minute_2:"Torsdag minut 2",thursday_temp_3:"Torsdag temp 3",thursday_hour_3:"Torsdag timme 3",thursday_minute_3:"Torsdag minut 3",thursday_temp_4:"Torsdag temp 4",thursday_hour_4:"Torsdag timme 4",thursday_minute_4:"Torsdag minut 4",thursday_temp_5:"Torsdag temp 5",thursday_hour_5:"Torsdag timme 5",thursday_minute_5:"Torsdag minut 5",thursday_temp_6:"Torsdag temp 6",thursday_hour_6:"Torsdag timme 6",thursday_minute_6:"Torsdag minut 6",thursday_temp_7:"Torsdag temp 7",thursday_hour_7:"Torsdag timme 7",thursday_minute_7:"Torsdag minut 7",thursday_temp_8:"Torsdag temp 8",thursday_hour_8:"Torsdag timme 8",thursday_minute_8:"Torsdag minut 8",thursday_temp_9:"Torsdag temp 9",thursday_hour_9:"Torsdag timme 9",thursday_minute_9:"Torsdag minut 9",friday:"Fredag",friday_temp_1:"Fredag temp 1",friday_hour_1:"Fredag timme 1",friday_minute_1:"Fredag minut 1",friday_temp_2:"Fredag temp 2",friday_hour_2:"Fredag timme 2",friday_minute_2:"Fredag minut 2",friday_temp_3:"Fredag temp 3",friday_hour_3:"Fredag timme 3",friday_minute_3:"Fredag minut 3",friday_temp_4:"Fredag temp 4",friday_hour_4:"Fredag timme 4",friday_minute_4:"Fredag minut 4",friday_temp_5:"Fredag temp 5",friday_hour_5:"Fredag timme 5",friday_minute_5:"Fredag minut 5",friday_temp_6:"Fredag temp 6",friday_hour_6:"Fredag timme 6",friday_minute_6:"Fredag minut 6",friday_temp_7:"Fredag temp 7",friday_hour_7:"Fredag timme 7",friday_minute_7:"Fredag minut 7",friday_temp_8:"Fredag temp 8",friday_hour_8:"Fredag timme 8",friday_minute_8:"Fredag minut 8",friday_temp_9:"Fredag temp 9",friday_hour_9:"Fredag timme 9",friday_minute_9:"Fredag minut 9",saturday:"L\xF6rdag",saturday_temp_1:"L\xF6rdag temp 1",saturday_hour_1:"L\xF6rdag timme 1",saturday_minute_1:"L\xF6rdag minut 1",saturday_temp_2:"L\xF6rdag temp 2",saturday_hour_2:"L\xF6rdag timme 2",saturday_minute_2:"L\xF6rdag minut 2",saturday_temp_3:"L\xF6rdag temp 3",saturday_hour_3:"L\xF6rdag timme 3",saturday_minute_3:"L\xF6rdag minut 3",saturday_temp_4:"L\xF6rdag temp 4",saturday_hour_4:"L\xF6rdag timme 4",saturday_minute_4:"L\xF6rdag minut 4",saturday_temp_5:"L\xF6rdag temp 5",saturday_hour_5:"L\xF6rdag timme 5",saturday_minute_5:"L\xF6rdag minut 5",saturday_temp_6:"L\xF6rdag temp 6",saturday_hour_6:"L\xF6rdag timme 6",saturday_minute_6:"L\xF6rdag minut 6",saturday_temp_7:"L\xF6rdag temp 7",saturday_hour_7:"L\xF6rdag timme 7",saturday_minute_7:"L\xF6rdag minut 7",saturday_temp_8:"L\xF6rdag temp 8",saturday_hour_8:"L\xF6rdag timme 8",saturday_minute_8:"L\xF6rdag minut 8",saturday_temp_9:"L\xF6rdag temp 9",saturday_hour_9:"L\xF6rdag timme 9",saturday_minute_9:"L\xF6rdag minut 9",sunday:"S\xF6ndag",sunday_temp_1:"S\xF6ndag temp 1",sunday_hour_1:"S\xF6ndag timme 1",sunday_minute_1:"S\xF6ndag minut 1",sunday_temp_2:"S\xF6ndag temp 2",sunday_hour_2:"S\xF6ndag timme 2",sunday_minute_2:"S\xF6ndag minut 2",sunday_temp_3:"S\xF6ndag temp 3",sunday_hour_3:"S\xF6ndag timme 3",sunday_minute_3:"S\xF6ndag minut 3",sunday_temp_4:"S\xF6ndag temp 4",sunday_hour_4:"S\xF6ndag timme 4",sunday_minute_4:"S\xF6ndag minut 4",sunday_temp_5:"S\xF6ndag temp 5",sunday_hour_5:"S\xF6ndag timme 5",sunday_minute_5:"S\xF6ndag minut 5",sunday_temp_6:"S\xF6ndag temp 6",sunday_hour_6:"S\xF6ndag timme 6",sunday_minute_6:"S\xF6ndag minut 6",sunday_temp_7:"S\xF6ndah temp 7",sunday_hour_7:"S\xF6ndag timme 7",sunday_minute_7:"S\xF6ndag minut 7",sunday_temp_8:"S\xF6ndag temp 8",sunday_hour_8:"S\xF6ndag timme 8",sunday_minute_8:"S\xF6ndag minut 8",sunday_temp_9:"S\xF6ndag temp 9",sunday_hour_9:"S\xF6ndag timme 9",sunday_minute_9:"S\xF6ndag minut 9",led_when_off:"LED n\xE4r den \xE4r avst\xE4ngd",led_when_on:"LED n\xE4r p\xE5",cable_outlet_mode:"kabelutg\xE5ngsl\xE4ge",power_alarm_active:"Str\xF6mlarm aktivt",power_alarm:"Str\xF6mlarm",illuminance_calibration:"Kalibrering av ljusstyrka",led_effect:"LED-effekt",color:"F\xE4rg",individual_led_effect:"Individuell LED-effekt",led:"LED",dimmingSpeedUpRemote:"Fj\xE4rrstyrd dimmeracceleration",dimmingSpeedUpLocal:"Acceleration av lokal dimmer",rampRateOffToOnRemote:"",rampRateOffToOnLocal:"",dimmingSpeedDownRemote:"",dimmingSpeedDownLocal:"",rampRateOnToOffRemote:"",rampRateOnToOffLocal:"",minimumLevel:"",maximumLevel:"",invertSwitch:"",autoTimerOff:"",defaultLevelLocal:"",defaultLevelRemote:"",stateAfterPowerRestored:"",loadLevelIndicatorTimeout:"",activePowerReports:"",periodicPowerAndEnergyReports:"",activeEnergyReports:"Energirapporter \xE4r aktiva",powerType:"Krafttyp",switchType:"V\xE4xlingstyp",physicalOnOffDelay:"Fysisk f\xF6rdr\xF6jning p\xE5/av",smartBulbMode:"Smart gl\xF6dlampsl\xE4ge",ledColorWhenOn:"LED-f\xE4rg n\xE4r p\xE5.",ledColorWhenOff:"LED-f\xE4rg n\xE4r av.",ledIntensityWhenOn:"",ledIntensityWhenOff:"",localProtection:"",remoteProtection:"Fj\xE4rrskydd",outputMode:"",onOffLedMode:"LED-l\xE4ge av/p\xE5",firmwareUpdateInProgressIndicator:"F\xF6rloppsindikator f\xF6r firmwareuppdatering",defaultLed1ColorWhenOn:"Standardf\xE4rg f\xF6r LED1 n\xE4r p\xE5.",defaultLed1ColorWhenOff:"Standardf\xE4rg f\xF6r LED1 n\xE4r av.",defaultLed1IntensityWhenOn:"Intensitet f\xF6r LED 1 n\xE4r p\xE5.",defaultLed1IntensityWhenOff:"Intensitet f\xF6r LED 1 n\xE4r av.",defaultLed2ColorWhenOn:"Standardf\xE4rg f\xF6r LED2 n\xE4r p\xE5.",defaultLed2ColorWhenOff:"Standardf\xE4rg f\xF6r LED2 n\xE4r av.",defaultLed2IntensityWhenOn:"Intensitet f\xF6r LED 2 n\xE4r p\xE5.",defaultLed2IntensityWhenOff:"Intensitet f\xF6r LED 2 n\xE4r av.",defaultLed3ColorWhenOn:"",defaultLed3ColorWhenOff:"",defaultLed3IntensityWhenOn:"",defaultLed3IntensityWhenOff:"",defaultLed4ColorWhenOn:"",defaultLed4ColorWhenOff:"",defaultLed4IntensityWhenOn:"Standardintensitet f\xF6r LED4 n\xE4r p\xE5.",defaultLed4IntensityWhenOff:"Standardintensitet f\xF6r LED4 n\xE4r av.",defaultLed5ColorWhenOn:"F\xF6rinst\xE4lld f\xE4rg f\xF6r LED5 n\xE4r p\xE5.",defaultLed5ColorWhenOff:"F\xF6rinst\xE4lld f\xE4rg f\xF6r LED5 n\xE4r av.",defaultLed5IntensityWhenOn:"F\xF6rinst\xE4lld intensitet f\xF6r LED5 n\xE4r p\xE5.",defaultLed5IntensityWhenOff:"F\xF6rinst\xE4lld intensitet f\xF6r LED5 n\xE4r av.",defaultLed6ColorWhenOn:"Standardf\xE4rg f\xF6r LED6 n\xE4r p\xE5.",defaultLed6ColorWhenOff:"Standardf\xE4rg f\xF6r LED6 n\xE4r av.",defaultLed6IntensityWhenOn:"Standardintensitet f\xF6r LED6 n\xE4r p\xE5.",defaultLed6IntensityWhenOff:"Standardintensitet f\xF6r LED6 n\xE4r av.",defaultLed7ColorWhenOn:"Standardf\xE4rg f\xF6r LED7 n\xE4r p\xE5.",defaultLed7ColorWhenOff:"Standardf\xE4rg f\xF6r LED7 n\xE4r av.",defaultLed7IntensityWhenOn:"Intensitet f\xF6r LED7 n\xE4r p\xE5.",defaultLed7IntensityWhenOff:"Intensitet f\xF6r LED7 n\xE4r av.",doubleTapUpEvent:"",reporting_time:"Rapporteringstid",temperature_calibration:"Temperaturkalibrering",humidity_calibration:"Fuktighetskalibrering",pir_enable:"Aktivera Pir",reporting_enable:"Aktivera rapport",fan_speed:"Fl\xE4kthastighet",air_quality:"Luftkvalitet",replace_filter:"Filterbyte",requested_brightness_level:"Beg\xE4rd ljusstyrka",requested_brightness_percent:"Beg\xE4rd ljusstyrka i procent",illuminance_above_threshold:"Belysningsstyrka \xF6ver tr\xF6skeln",temperature_setpoint_hold:"Bibeh\xE5ll temperaturb\xF6rv\xE4rdet",temperature_setpoint_hold_duration:"H\xE5lltid f\xF6r temperaturb\xF6rv\xE4rdet",battery_state:"Batteristatus",threshold:"Tr\xF6skel",battery2:"Batteri 2",control_mode:"Kontroll\xE4ge",switch_status:"V\xE4xla status",load_detection_mode:"",load_type:"Typ av last",load_dimmable:"",power_supply_mode:"Str\xF6mf\xF6rs\xF6rjningsl\xE4ge",trv_mode:"Ventill\xE4ge",valve_position:"Ventilposition",display_text:"Visa text",load:"Belastning",regulator_mode:"Kontrolll\xE4ge",regulator_time:"Kontrolltid",floor_temp:"Golvtemperatur",max_floor_temp:"Max golvtemperatur",mean_power:"Genomsnittlig prestanda",frost_guard:"Frostskydd",night_switching:"Nattl\xE4ge",sound:"Ljud",time_ring:"Ringtid",time_talk:"Samtalsl\xE4ngd",time_open:"\xD6ppningstid",time_bell:"Ringtid",time_report:"Tidsrapport",led_feedback:"LED-respons",enable_abc:"Aktivera ABC",threshold1:"Tr\xF6skel 1",threshold2:"Tr\xF6skel 2",humidity_offset:"Luftfuktighetsf\xF6rskjutning",pressure_offset:"Tryckf\xF6rskjutning",soil_moisture:"Markfuktighet",radioactive_events_per_minute:"Radioaktiva h\xE4ndelser per minut",radiation_dose_per_hour:"Str\xE5ldos per timme",buzzer_feedback:"Summerrespons",alert_threshold:"Varningstr\xF6skel",sensors_type:"Sensortyp",sensors_count:"Sensorantal",switch_actions:"Reglage\xE5tg\xE4rder",cpu_temperature:"CPU-temperatur",max_duration:"Max varaktighet",pulse_configuration:"Pulskonfiguration",interface_mode:"Gr\xE4nssnittsl\xE4ge",current_summation:"Str\xF6msummering",check_meter:"Kontrollera m\xE4tare",reliability:"p\xE5litlighet",fault:"Fel",card:"Kort",master_pin_mode:"Huvudpinkod",rfid_enable:"Aktivera RFID",relock_enabled:"\xC5terl\xE5sning aktiverad",lock_mode:"L\xE5sets tillst\xE5nd",service_mode:"Servicel\xE4ge",led_state:"LED-status",key_state:"Knappstatus",abs_min_heat_setpoint_limit:"ABS l\xE4gsta gr\xE4nsv\xE4rde f\xF6r v\xE4rme",abs_max_heat_setpoint_limit:"ABS h\xF6gsta gr\xE4nsv\xE4rde f\xF6r v\xE4rme",min_heat_setpoint_limit:"L\xE4gsta gr\xE4nsv\xE4rde f\xF6r v\xE4rme",max_heat_setpoint_limit:"H\xF6gsta gr\xE4nsv\xE4rde f\xF6r v\xE4rme",output_status:"Utg\xE5ngsstatus",room_status_code:"Rumsstatuskod",system_status_code:"Systemstatuskod",system_status_water:"Systemstatus Vatten",multimaster_role:"Multimaster-roll",external_temperature:"Utv\xE4ndig temperatur",hysteresis:"F\xF6rdr\xF6jning",max_temperature_protection:"Skydd mot maximal temperatur",backlight_led:"Bakgrundsljus"},cAt={add_to_group:"L\xE4gg till i grupp",create_group:"Skapa grupp",new_group_id:"Nytt grupp-id",new_group_id_placeholder:"Ange grupp-ID vid behov",new_group_name:"Nytt gruppnamn",new_group_name_placeholder:"exempel: mitt_sovrumsljus",remove_group:"Ta bort grupp",group_id:"Grupp-ID",group_name:"Gruppnamn",group_members:"Gruppmedlemmar",group_scenes:"Gruppscener",rename_group:"Byt namn p\xE5 grupp"},hAt={empty_logs_message:"Det finns inget att visa",filter_by_text:"Filtrera efter text",show_only:"Visa endast"},mAt={help_coordinator_link_description:"Heldragna linjer \xE4r kommunikationen till koordinatorn",help_end_device_description:"Gr\xF6n - Den sista enheten",help_is_coordinator:"\xE4r koordinator",help_lqi_description:'L\xE4nkkvaliteten \xE4r mellan 0-255 (h\xF6gre \xE4r b\xE4ttre), v\xE4rden med "/" representerar flera typer av l\xE4nkar',help_router_description:"Bl\xE5 - Router",help_router_links_description:"Streckade linjer \xE4r l\xE4nken till router",hide:"Klicka f\xF6r att d\xF6lja denna text",load:"Ladda karta",loading:"Beroende p\xE5 storleken p\xE5 ditt n\xE4tverk kan detta ta n\xE5gonstans mellan 10 sekunder och 2 minuter."},fAt={all:"Alla",dashboard:"Instrumentpanel",devices:"Enheter",disable_join:"Inaktivera anslutning",extensions:"Till\xE4gg",groups:"Grupper",logs:"Loggar",map:"Karta",permit_join:"Till\xE5t anslutning",restart:"Starta om",settings:"Inst\xE4llningar",toggle_dropdown:"V\xE4xla rullgardinsmenyn",touchlink:"Pekl\xE4nk"},pAt={check:"S\xF6k efter nya uppdateringar",check_all:"Kontrollera alla",empty_ota_message:"Du har inga enheter som st\xF6der OTA",remaining_time:"{{- remaining}} \xE5terst\xE5r",update:"Uppdatera enhetens firmware"},gAt={about:"Om",advanced:"Avancerat",availability:"Tillg\xE4nglighet",blocklist:"Blockeringslista",coordinator_revision:"Koordinator revision",coordinator_type:"Koordinatortyp",donate:"Donera",donation_text:["Hej, %username%, h\xE4r kan du tacka oss f\xF6r h\xE5rt arbetande","Tveka inte att s\xE4ga n\xE5got trevligt ocks\xE5 ;)"],download_state:"Ladda ner status",experimental:"Experimentell",external_converters:"Externa omvandlare",frontend:"Gr\xE4nssnitt",frontend_version:"Gr\xE4nssnittets version",main:"Huvudmeny",ota:"OTA-uppdateringar",passlist:"Beh\xF6righeter",raw:"R\xE5data",restart_zigbee2mqtt:"Starta om Zigbee2MQTT",serial:"Seriell",settings:"Inst\xE4llningar",tools:"Verktyg",translate:"\xD6vers\xE4tt",stats:"Statistik",coordinator_ieee_address:"Koordinatorns IEEE-adress"},vAt={detected_devices_message:"Uppt\xE4ckte {{count}} pekl\xE4nksenheter.",rescan:"Skanna igen",scan:"Skanna"},yAt={clear:"Rensa",closed:"St\xE4ngd",false:"Falsk",not_supported:"St\xF6ds inte",occupied:"Upptagen",open:"\xD6ppen",supported:"St\xF6ds",true:"Sant",empty_string:'Tom str\xE4ng("")',leaking:"L\xE4ckage",tampered:"Manipulerad",Clear:"Rensa",Closed:"St\xE4ngd",Occupied:"Aktiv",Open:"\xD6ppen"},_At={actions:"\xC5tg\xE4rder",attribute:"Attribut",battery:"Batteri",block_join:"Blockera fr\xE5n att \xE5teransluta",cluster:"Kluster",dc_source:"DC-k\xE4lla",description:"Beskrivning",device_type:"Enhetstyp",endpoint:"Slutpunkt",firmware_build_date:"Byggdatum f\xF6r firmware",force_remove:"Tvinga borttagning",friendly_name:"V\xE4nligt namn",ieee_address:"IEEE-adress",input_clusters:"Ing\xE5ngskluster",interview_completed:"Intervju avklarad",interview_failed:"Intervjun misslyckades",interviewing:"Intervjuar",last_seen:"S\xE5gs senast",mains_single_phase:"Eln\xE4t (enfas)",manufacturer:"Tillverkare",max_rep_interval:"max repintervall",min_rep_change:"Min repf\xF6r\xE4ndring",min_rep_interval:"min repintervall",model:"Modell",network_address:"N\xE4tverksadress",none:"Ingen",output_clusters:"Utg\xE5ngskluster",pic:"Bild",power:"Str\xF6mk\xE4lla",power_level:"Effektniv\xE5",reconfigure:"Konfigurera om",remove_device:"Ta bort enhet",rename_device:"Byt namn p\xE5 enhet",select_attribute:"V\xE4lj attribut",select_cluster:"V\xE4lj kluster",support_status:"Supportstatus",unsupported:"St\xF6ds inte",updating_firmware:"Uppdaterar firmware",update_Home_assistant_entity_id:"Uppdatera enhets-ID f\xF6r Home Assistant",zigbee_manufacturer:"Zigbee-tillverkare",zigbee_model:"Zigbee-modell",device:"Enhet",channel:"Kanal",possible:"M\xF6jlig",available:"Tillg\xE4nglig",execute:"k\xF6r",command:"Kommando",payload:"nyttolast",save_description:"Spara beskrivning"},bAt={scene_id:"Scen-ID",recall:"\xC5terkalla",store:"Lagra",remove:"Ta bort",remove_all:"Ta bort alla",add:"L\xE4gg till",select_scene:"V\xE4lj scen",scene_name:"scenens namn"},wAt={byType:"Efter enhetstyp",byPowerSource:"Efter str\xF6mk\xE4lla",byVendor:"Efter tillverkare",byModel:"Efter modell",total:"Totalt",EndDevice:"Den sista enheten"},SAt={avaliability:"Tillg\xE4nglighet",disabled:"Inaktiverad",enabled:"Aktiverad"},AAt={"Home Assistant integration (MQTT discovery)":"Home Assistant-integration (MQTT-uppt\xE4ckt)","Home Assistant legacy triggers, when enabled Zigbee2mqt will send an empty 'action' or 'click' after one has been send. A 'sensor_action' and 'sensor_click' will be discoverd":"\xC4ldre Home Assistant-utl\xF6sare, n\xE4r aktiverat kommer Zigbee2MQTT att skicka en tom \u201D\xE5tg\xE4rd\u201D eller \u201Dklick\u201D efter att en har skickats. En \u201Dsensor_action\u201D och \u201Dsensor_click\u201D kommer att uppt\xE4ckas","Home Assistant discovery topic":"Uppt\xE4ckts\xE4mne f\xF6r Home Assistant","Home Assistant legacy entity attributes, when enabled Zigbee2MQTT will add state attributes to each entity, additional to the separate entities and devices it already creates":"\xC4ldre entitetsattribut f\xF6r Home Assistant, n\xE4r de \xE4r aktiverade kommer Zigbee2MQTT att l\xE4gga till statusattribut till varje entitet, ut\xF6ver de separata enheter och enheter som den redan skapar","Home Assistant status topic":"Status\xE4mne f\xF6r Home Assistant","Allow new devices to join (re-applied at restart)":"Till\xE5t anslutningar f\xF6r nya enheter (\xE5teraktiveras vid omstart)","Options for active devices (routers/mains powered)":"Alternativ f\xF6r aktiva enheter (routrar/n\xE4tdrivna)","Time after which an active device will be marked as offline in minutes":"Tid efter vilken en aktiv enhet kommer att markeras som offline i minuter","Options for passive devices (mostly battery powered)":"Alternativ f\xF6r passiva enheter (mestadels batteridrivna)","Time after which an passive device will be marked as offline in minutes":"Tid efter vilken en passiv enhet kommer att markeras som offline i minuter","Checks whether devices are online/offline":"Kontrollerar om enheter \xE4r online/offline","You can define external converters to e.g. add support for a DiY device":"Du kan definiera externa omvandlare till t.ex. l\xE4gg till st\xF6d f\xF6r en g\xF6r-det-sj\xE4lv-enhet","MQTT base topic for Zigbee2MQTT MQTT messages":"MQTT-bas\xE4mne f\xF6r Zigbee2MQTT MQTT-meddelanden","MQTT server URL (use mqtts:// for SSL/TLS connection)":"Webbadress f\xF6r MQTT-server (anv\xE4nd mqtts:// f\xF6r SSL/TLS-anslutning)","MQTT keepalive in second":"MQTT-uppeh\xE5ll i sekunder","Absolute path to SSL/TLS certificate of CA used to sign server and client certificates":"S\xF6kv\xE4gen till SSL/TLS-certifikat f\xF6r CA som anv\xE4nds f\xF6r att signera server- och klientcertifikat","Absolute path to SSL/TLS key for client-authentication":"Absolut s\xF6kv\xE4g till SSL/TLS-certifikat f\xF6r klientautentisering","Absolute path to SSL/TLS certificate for client-authentication":"S\xF6kv\xE4gen till SSL/TLS-certifikat f\xF6r klientautentisering","MQTT server authentication user":"MQTT-serverautentiseringsanv\xE4ndare","MQTT server authentication password":"MQTT-serverautentiseringsl\xF6senord","MQTT client ID":"MQTT klient-ID","Disable self-signed SSL certificate":"Inaktivera sj\xE4lvsignerat SSL-certifikat","Include device information to mqtt messages":"Inkludera enhetsinformation i mqtt-meddelanden","MQTT protocol version":"MQTT-protokollversion","Disable retain for all send messages. ONLY enable if you MQTT broker doesn't support retained message (e.g. AWS IoT core, Azure IoT Hub, Google Cloud IoT core, IBM Watson IoT Platform). Enabling will break the Home Assistant integration":"Inaktivera beh\xE5llning f\xF6r alla skickade meddelanden. Aktivera ENDAST om din MQTT-m\xE4klare inte st\xF6der beh\xE5llna meddelanden (t.ex. AWS IoT-k\xE4rna, Azure IoT Hub, Google Cloud IoT-k\xE4rna, IBM Watson IoT-plattform). Aktivering bryter Home Assistant-integrationen","Location of the adapter. To autodetect the port, set null":"Adapterns plats. F\xF6r att automatiskt fastst\xE4lla porten, l\xE4mna f\xE4ltet tomt","Disable LED of the adapter if supported":"St\xE4ng av adapterns LED, om det st\xF6ds","Adapter type, not needed unless you are experiencing problems":"Adaptertyp, kr\xE4vs inte om du inte har n\xE5gra problem","Baud rate speed for serial port, this can be anything firmware support but default is 115200 for Z-Stack and EZSP, 38400 for Deconz, however note that some EZSP firmware need 57600":"Baudhastighet f\xF6r seriell port, detta kan vara allt st\xF6d f\xF6r firmware men standard \xE4r 115200 f\xF6r Z-Stack och EZSP, 38400 f\xF6r Deconz, notera dock att vissa EZSP firmware beh\xF6ver 57600","RTS / CTS Hardware Flow Control for serial port":"RTS / CTS h\xE5rdvarufl\xF6deskontroll f\xF6r seriell port","Block devices from the network (by ieeeAddr)":"Blockera enheter fr\xE5n n\xE4tverket (med IEEE-adress)","Allow only certain devices to join the network (by ieeeAddr). Note that all devices not on the passlist will be removed from the network!":"Till\xE5t endast vissa enheter att g\xE5 med i n\xE4tverket (med IEEE-adress). Observera att alla enheter som inte finns med i listan kommer att tas bort fr\xE5n n\xE4tverket!","Your device may request a check for a new firmware update. This value determines how frequently third party servers may actually be contacted to look for firmware updates. The value is set in minutes, and the default is 1 day.":"Din enhet kan beg\xE4ra en kontroll efter en ny firmwareuppdatering. Detta v\xE4rde avg\xF6r hur ofta tredje parts servrar faktiskt kan kontaktas f\xF6r att leta efter firmwareuppdateringar. V\xE4rdet st\xE4lls in i minuter och standard \xE4r 1 dag.","Zigbee devices may request a firmware update, and do so frequently, causing Zigbee2MQTT to reach out to third party servers. If you disable these device initiated checks, you can still initiate a firmware update check manually.":"Zigbee-enheter kan beg\xE4ra en firmwareuppdatering, och g\xF6r det ofta, vilket g\xF6r att Zigbee2MQTT n\xE5r ut till tredje parts servrar. Om du inaktiverar dessa enhetsinitierade kontroller kan du fortfarande initiera en uppdatering av firmware manuellt.","Use IKEA TRADFRI OTA test server, see OTA updates documentation":"Anv\xE4nd IKEA TR\xC5DFRI OTA-testserver, se OTA-uppdateringsdokumentationen","Location of override OTA index file":"S\xF6kv\xE4g f\xF6r \xE5sidos\xE4ttning av OTA-indexfil","Frontend binding port":"Gr\xE4nssnittets bindande port","Frontend binding host":"Gr\xE4nssnittets bindande v\xE4rd","Enables authentication, disabled by default":"Aktiverar autentisering, inaktiverad som standard","URL on which the frontend can be reached, currently only used for the Home Assistant device configuration page":"Webbadress d\xE4r gr\xE4nssnittet kan n\xE5s, anv\xE4nds f\xF6r n\xE4rvarande endast f\xF6r Home Assistant-enhetens konfigurationssida","Disables the legacy api (false = disable)":'Inaktiverar det \xE4ldre API:et ("False" = inaktivera)',"Payload to be used for device availabilty and bridge/state topics. true = text, false = JSON":"Nyttolast som ska anv\xE4ndas f\xF6r tillg\xE4nglighets\xE4mnen f\xF6r enheter och bryggor/tillst\xE5nd. true = text, false = JSON","Log rotation":"Loggrotation","Create symlink to current logs in the log directory":"Skapa symboll\xE4nk till aktuella loggar i loggkatalogen","Output location of the log, leave empty to suppress logging":"Utdataplats f\xF6r loggen, l\xE4mna tom f\xF6r att undertrycka loggning","Location of log directory":"Plats f\xF6r loggkatalogen","Log file name, can also contain timestamp":"Loggfilens namn, kan ocks\xE5 inneh\xE5lla tidsst\xE4mpel","Logging level":"Loggningsniv\xE5","The host running syslogd, defaults to localhost.":"V\xE4rden som k\xF6r syslogd, \xE4r som standard localhost.","The port on the host that syslog is running on, defaults to syslogd's default port.":"Porten p\xE5 v\xE4rden som systemloggen k\xF6rs p\xE5, \xE4r som standard syslogds standardport.","The network protocol to log over (e.g. tcp4, udp4, tls4, unix, unix-connect, etc).":"N\xE4tverksprotokollet att logga \xF6ver (t.ex. tcp4, udp4, tls4, unix, unix-connect, etc).","The path to the syslog dgram socket (i.e. /dev/log or /var/run/syslog for OS X).":"S\xF6kv\xE4gen till syslog dgram-socket (t.ex. /dev/log eller /var/run/syslog f\xF6r OS X).","PID of the process that log messages are coming from (Default process.pid).":"PID f\xF6r processen som loggmeddelanden kommer fr\xE5n (Standard process.pid).","Host to indicate that log messages are coming from (Default: localhost).":"V\xE4rd f\xF6r att indikera att loggmeddelanden kommer fr\xE5n (Standard: localhost).","The type of the syslog protocol to use (Default: BSD, also valid: 5424).":"Typen av syslog-protokoll som ska anv\xE4ndas (Standard: BSD, \xE4ven giltigt: 5424).","The name of the application (Default: Zigbee2MQTT).":"Namnet p\xE5 programmet (Standard: Zigbee2MQTT).","The end of line character to be added to the end of the message (Default: Message without modifications).":"Radsluttecken som ska l\xE4ggas till i slutet av meddelandet (Standard: Meddelande utan \xE4ndringar).","ZigBee pan ID, changing requires repairing all devices!":"ZigBee pan-ID, alla enheter m\xE5ste paras om vid \xE4ndringar!","Zigbee extended pan ID, changing requires repairing all devices!":"Zigbee ut\xF6kat pan-ID, alla enheter m\xE5ste paras om vid \xE4ndringar!","Zigbee channel, changing requires repairing all devices! (Note: use a ZLL channel: 11, 15, 20, or 25 to avoid Problems)":"Zigbee-kanal, alla enheter m\xE5ste paras om vid f\xF6r\xE4ndringar! (OBS: anv\xE4nd en ZLL-kanal: 11, 15, 20 eller 25 f\xF6r att undvika problem)","Adapter concurrency (e.g. 2 for CC2531 or 16 for CC26X2R1) (default: null, uses recommended value)":"Adaptersamverkan (t.ex. 2 f\xF6r CC2531 eller 16 f\xF6r CC26X2R1) (standard: blankt, anv\xE4nder rekommenderat v\xE4rde)","Adapter delay":"Adapterf\xF6rdr\xF6jning","MQTT message payload will contain all attributes, not only changed ones. Has to be true when integrating via Home Assistant":"MQTT-nyttolasten kommer att inneh\xE5lla alla attribut, inte bara modifierade. M\xE5ste vara korrekt vid integration via Home Assistant","Persist cached state, only used when cache_state: true":'Beh\xE5ll cachad status, anv\xE4nds endast n\xE4r cache_state: "true"',"Send cached state on startup, only used when cache_state: true":'Skicka cachad status vid uppstart, anv\xE4nds endast n\xE4r cache_state: "true"',"Add a last_seen attribute to MQTT messages, contains date/time of last Zigbee message":"L\xE4gg till ett last_seen-attribut till MQTT-meddelanden, inneh\xE5ller datum/tid f\xF6r senaste Zigbee-meddelande","Add an elapsed attribute to MQTT messages, contains milliseconds since the previous msg":"L\xE4gg till ett f\xF6rflutet attribut till MQTT-meddelanden, inneh\xE5ller millisekunder sedan f\xF6reg\xE5ende meddelande","Network encryption key, changing requires repairing all devices!":"N\xE4tverkskrypteringsnyckel, Alla enheter m\xE5ste paras om vid \xE4ndringar!","Log timestamp format":"Tidsst\xE4mpelformat f\xF6r logg","Transmit power of adapter, only available for Z-Stack (CC253*/CC2652/CC1352) adapters, CC2652 = 5dbm, CC1352 max is = 20dbm (5dbm default)":"S\xE4ndningseffekt f\xF6r adapter, endast tillg\xE4nglig f\xF6r Z-Stack (CC253*/CC2652/CC1352) adaptrar, CC2652 = 5dbm, CC1352 max \xE4r = 20dbm (5dbm standard)","Examples when 'state' of a device is published json: topic: 'zigbee2mqtt/my_bulb' payload '{\"state\": \"ON\"}' attribute: topic 'zigbee2mqtt/my_bulb/state' payload 'ON' attribute_and_json: both json and attribute (see above)":`Exempel n\xE4r 'status' f\xF6r en enhet publiceras json: \xE4mne: 'zigbee2mqtt/min_gl\xF6dlampa' nyttolast '{"state": "ON"}' attribut: \xE4mne 'zigbee2mqtt/min_gl\xF6dlampa/state' nyttolast 'P\xC5' attribute_and_json: b\xE5de json och attribut (se ovan)`,"Home Assistant legacy triggers, when enabled Zigbee2mqt will send an empty 'action' or 'click' after one has been send. A 'sensor_action' and 'sensor_click' will be discovered":`Home Assistant legacy triggers, n\xE4r aktiverat kommer Zigbee2MQTT att skicka en tom "\xE5tg\xE4rd" eller "klick" efter att en har skickats. En 'sensor_action' och 'sensor_click' kommer att uppt\xE4ckas`,"Soft reset ZNP after timeout":"Mjuk \xE5terst\xE4llning av ZNP efter timeout","Enables report feature (deprecated)":"Aktiverar rapportfunktionen (st\xF6ds inte)","Used in the MQTT topic of a device. By default this is the device ID":"Anv\xE4nds i MQTT-\xE4mnet f\xF6r en enhet. Som standard \xE4r detta enhets-ID","Retain MQTT messages of this device":"Beh\xE5ll MQTT-meddelanden fr\xE5n denna enhet","Sets the MQTT Message Expiry in seconds, Make sure to set mqtt.version to 5":"St\xE4ller in MQTT-meddelandets utg\xE5ng i sekunder. Se till att st\xE4lla in MQTT till version 5","QoS level for MQTT messages of this device":"QoS-niv\xE5 f\xF6r MQTT-meddelanden f\xF6r denna enhet","Debounces messages of this device":"Avstudsar meddelanden fr\xE5n den h\xE4r enheten","Protects unique payload values of specified payload properties from overriding within debounce time":"Skyddar unika nyttolastv\xE4rden f\xF6r specificerade nyttolastegenskaper fr\xE5n att \xE5sidos\xE4ttas inom avstudstiden","Publish optimistic state after set":"Publicera optimistiskt tillst\xE5nd efter inst\xE4llning","Filter attributes from optimistic publish payload when calling /set. (This has no effect if optimistic is set to false).":"Filtrera attribut fr\xE5n optimistisk publiceringsnyttolast n\xE4r du anropar /set. (Detta har ingen effekt om optimistisk \xE4r inst\xE4lld p\xE5 falsk).","Filter attributes from publish payload.":"Filtrera attribut fr\xE5n att publicera nyttolast.","The user-defined device icon for the frontend. It can be a link to an image (not a path to a file) or base64 encoded data URL like: image/svg+xml;base64,PHN2ZyB3aW....R0aD":"Den anv\xE4ndardefinierade enhetsikonen f\xF6r gr\xE4nssnittet. Det kan vara en l\xE4nk till en bild (inte en s\xF6kv\xE4g till en fil) eller base64-kodad data-webbadress som: image/svg+xml;base64,PHN2ZyB3aW....R0aD","Name of the device in Home Assistant":"Enhetens namn i Home Assistant"},TAt={"Home Assistant integration":"Home Assistant-integration","Home Assistant (simple)":"Home Assistant (enkel)","Home Assistant (advanced)":"Home Assistant (avancerat)","Home Assistant legacy triggers":"Home Assistant \xE4ldre utl\xF6sare","Homeassistant discovery topic":"Uppt\xE4ckts\xE4mne f\xF6r Home Assistant","Home Assistant legacy entity attributes":"\xC4ldre enhetsattribut f\xF6r Home Assistant","Home Assistant status topic":"Status\xE4mne f\xF6r Home Assistant","Permit join":"Till\xE5t anslutning","Availability (simple)":"Tillg\xE4nglighet (enkel)","Availability (advanced)":"Tillg\xE4nglighet (avancerat)",Active:"Aktiv",Passive:"Passiv",Availability:"Tillg\xE4nglighet","External converters":"Externa omvandlare","Base topic":"Bas\xE4mne","MQTT server":"MQTT-server",Keepalive:"H\xE5ll vid liv","Certificate authority":"Certifikatutf\xE4rdare","SSL/TLS key":"SSL/TLS-nyckel","SSL/TLS certificate":"SSL/TLS-certifikat",User:"Anv\xE4ndare",Password:"L\xF6senord","Client ID":"Klient-ID","Reject unauthorized":"Avvisa obeh\xF6riga","Include device information":"Inkludera enhetsinformation","Force disable retain":"Tvinga inaktivera beh\xE5lla",Serial:"seriell","Disable led":"Inaktivera LED",Baudrate:"Baudhastighet",Blocklist:"Blockeringslista",Passlist:"Inst\xE4llningar f\xF6r beh\xF6righeter",Networkmap:"N\xE4tverkskarta","OTA updates":"OTA-uppdateringar","Update check interval":"Uppdateringskontrollintervall","Disable automatic update check":"Inaktivera automatisk uppdateringskontroll","IKEA TRADFRI OTA use test url":"IKEA TR\xC5DFRI OTA anv\xE4nd test-webbadress","OTA index override file name":"OTA index \xE5sidos\xE4tt filnamn","Frontend (simple)":"Frontend (enkel)","Frontend (advanced)":"Frontend (avancerat)","Bind host":"Bind v\xE4rd","Auth token":"Autentiseringstoken",URL:"Webbadress",Frontend:"Gr\xE4nssnitt","Options that are applied to all devices":"Alternativ som till\xE4mpas p\xE5 alla enheter",Advanced:"Avancerat","Legacy API":"\xC4ldre API","Legacy availability payload":"Tillg\xE4nglighetens nyttolast \xE4r inaktuell","Log rotation":"Loggrotation","Log symlink current":"Logga symboll\xE4nk str\xF6m","Log output":"Utdatalogg","Log directory":"Loggkatalog","Log file":"Loggfil","Log level":"Loggningsniv\xE5",syslog:"Systemlogg",Host:"V\xE4rd",Protocol:"Protokoll",Path:"S\xF6kv\xE4g",Localhost:"Lokal v\xE4rd",Type:"Typ",eol:"EOL","Pan ID (string)":"Pan-ID (str\xE4ng)","Pan ID (number)":"Pan-ID (nummer)","Pan ID":"Pan-ID","Ext Pan ID":"Extern Pan-ID","ZigBee channel":"Zigbee-kanal","Adapter concurrency":"Adaptersamverkan","Adapter delay":"Adapterf\xF6rdr\xF6jning","Cache state":"Cachestatus","Persist cache state":"Beh\xE5ller cachestatus","Send cached state on startup":"Skicka cachad status vid start","Last seen":"S\xE5gs senast",Elapsed:"F\xF6rflutit","Network key(string)":"N\xE4tverksnyckel (str\xE4ng)","Network key(array)":"N\xE4tverksnyckel (rad)","Network key":"N\xE4tverksnyckel","Timestamp format":"Tidsst\xE4mpelformat","Transmit power":"S\xE4ndningseffekt","MQTT output type":"MQTT-utg\xE5ngstyp","Soft reset timeout (deprecated)":"Timeout f\xF6r mjuk \xE5terst\xE4llning (utfasad)",Reporting:"Rapportering","Baudrate (deprecated)":"Baudrate (utfasad)","RTS / CTS (deprecated)":"RTS/CTS (utfasad)","IKEA TRADFRI OTA use test url (deprecated)":"Anv\xE4nd IKEA TR\xC5DFRI OTA-testadress (utfasad)","Experimental (deprecated)":"Experimentell (utfasad)","Whitelist (deprecated, use passlist)":"Vitlista (st\xF6ds inte, anv\xE4nd beh\xF6righetslista)","Ban (deprecated, use blocklist)":"F\xF6rbjuda (st\xF6ds inte, anv\xE4nd blockeringslista)","Friendly name":"V\xE4nligt namn",Retain:"Beh\xE5ll",Retention:"Bibeh\xE5lla",Debounce:"Avstudsa","Ignore debounce":"Ignorera avbrottet",Optimistic:"Optimistisk","Filtered optimistic attributes":"Filtrerade optimistiska attribut","Filtered publish attributes":"Filtrerade publiceringsattribut",Icon:"Ikon","Home Assistant name":"Namn f\xF6r Home Assistant"};var kAt={common:iAt,devicePage:oAt,exposes:sAt,extensions:lAt,featureDescriptions:uAt,featureNames:dAt,groups:cAt,logs:hAt,map:mAt,navbar:fAt,ota:pAt,settings:gAt,touchlink:vAt,values:yAt,zigbee:_At,scene:bAt,stats:wAt,avaliability:SAt,settingsSchemaDescriptions:AAt,settingsSchemaTitles:TAt};const CAt={action:"Aksiyon",actions:"Eylemler",apply:"Uygula",attribute:"\xD6znitelik",bind:"Ba\u011Fla",check_all:"Hepsini se\xE7",clear:"Temizle",close:"Kapat",cluster:"K\xFCme",clusters:"K\xFCmeler",confirmation:"Onay istemi",delete:"Sil",destination:"Hedef",devices:"Cihazlar",dialog_confirmation_prompt:"Emin misin?",disable:"Devre d\u0131\u015F\u0131 b\u0131rak",enter_search_criteria:"Arama Kriterleri girin",groups:"Gruplar",loading:"Y\xFCkleniyor...",none:"Hi\xE7biri",ok:"Tamam",read:"Oku",save:"Kaydet",select_device:"Cihaz se\xE7",select_endpoint:"U\xE7 noktas\u0131n\u0131 se\xE7in",source_endpoint:"Kaynak u\xE7 noktas\u0131",the_only_endpoint:"Sadece u\xE7 noktas\u0131",unbind:"Ba\u011F\u0131 \xC7\xF6z",write:"Yaz"},EAt={about:"Hakk\u0131nda",bind:"Ba\u011Fla",clusters:"K\xFCmeler",dev_console:"Y\xF6netim Konsolu",reporting:"Raporlama",settings:"Ayarlar",settings_specific:"Ayarlar (Spesifik)",state:"Durum",scene:"Sahne",unknown_device:"Bilinmeyen cihaz"},IAt={empty_exposes_definition:"Bo\u015F uzant\u0131 tan\u0131mlamas\u0131"},DAt={create_new_extension:"Yeni Uzant\u0131 Olu\u015Ftur",extension_name_propmt:"Yeni Uzant\u0131 Ad\u0131n\u0131 Girin",select_extension_to_edit:"D\xFCzenlemek i\xE7in Uzant\u0131 Se\xE7in"},xAt={"Brightness of this light":"Bu \u0131\u015F\u0131\u011F\u0131n parlakl\u0131\u011F\u0131","Color temperature of this light":"Bu \u0131\u015F\u0131\u011F\u0131n renk s\u0131cakl\u0131\u011F\u0131","Color temperature after cold power on of this light":"Bu \u0131\u015F\u0131kta so\u011Fuk g\xFC\xE7ten sonra renk s\u0131cakl\u0131\u011F\u0131","Color of this light in the CIE 1931 color space (x/y)":"CIE 1931 Renk Alan\u0131nda (XY) bu \u0131\u015F\u0131\u011F\u0131n rengi","Motor speed":"Motor h\u0131z\u0131","Color of this light expressed as hue/saturation":"Colour of this light expressed as hue/saturation","Actual state of the lock":"Kilitin ger\xE7ek durumu","Type of user, unrestricted: owner (default), (year|week)_day_schedule: user has ability to open lock based on specific time period, master: user has ability to both program and operate the door lock, non_access: user is recognized by the lock but does not have the ability to open the lock":"","Triggered action on the lock":"","Source of the triggered action on the lock":"","ID of user that triggered the action on the lock":"","Button mode":"D\xFC\u011Fme Modu","After turn on, the indicator light turns on while switch is off, and vice versa":"","Anti flicker mode can be used to solve blinking issues of some lights.Quick mode makes the device respond faster.":"Titre\u015Fim \xF6nleme modu, baz\u0131 \u0131\u015F\u0131klar\u0131n yan\u0131p s\xF6nme sorunlar\u0131n\u0131 \xE7\xF6zmek i\xE7in kullan\u0131labilir.Quick modu, cihaz\u0131n daha h\u0131zl\u0131 yan\u0131t vermesini sa\u011Flar.","Beep volume":"Bip sesi","Enable LCD auto brightness":"LCD Otomatik Parlakl\u0131\u011F\u0131 Etkinle\u015Ftir",Icon:"Simge",Text:"Metin","Temperature of the device":"Cihaz\u0131n s\u0131cakl\u0131\u011F\u0131","Number of power outages (since last pairing)":"","Number of power outages":"","The current charging status.":"","The current state of the motor.":"","Whether the motor is moving or not":"","Motor state":"","Value of smoke concentration":"","Value of smoke concentration in dB/m":"","Starts the self-test process (checking the indicator light and buzzer work properly)":"","Self-test in progress":"","Mute the buzzer for 80 seconds (buzzer cannot be pre-muted, because this function only works when the alarm is triggered)":"","Buzzer muted":"","When this option is enabled then in the normal monitoring state, the green indicator light flashes every 60 seconds":"","When this option is enabled and a smoke is detected, other detectors with this option enabled will also sound the alarm buzzer":"","Value of gas concentration":"",'Gas concentration value at which an alarm is triggered ("10%LEL" is more sensitive than "15%LEL")':"","Mute the buzzer for 10 minutes (buzzer cannot be pre-muted, because this function only works when the alarm is triggered)":"","When this option is enabled and a gas leak is detected, other detectors with this option enabled will also sound the alarm buzzer":"",'"Preparation" or "work" (measurement of the gas concentration value and triggering of an alarm are only performed in the "work" state)':"",'Presence events: "enter", "leave", "left_enter", "right_leave", "right_enter", "left_leave", "approach", "away"':"","Monitoring mode with or without considering right and left sides":"","The distance at which the sensor detects approaching":"","Different sensitivities means different static human body recognition rate and response speed of occupied":"","Reset the status of no presence":"","Time interval for detecting actions":"","Decoupled mode for center button":"Decoupled mode for centre button","Switch between rgbw mode or dual color temperature mode":"","Sound level":"Ses seviyesi","Is the device plugged in":"","Smoke alarm status":"","Test alarm":"","Test alarm result":"","Battery level state":"","Alarm enable":"","Fault alarm status":"","Silence siren":"","Alarm zone. Default value 0":"Alarm b\xF6lgesi. Varsay\u0131lan de\u011Fer 0","Tilt of this cover":"Bu kapa\u011F\u0131n e\u011Fimi","The dimmer is capable of measuring the reactanceto distinguish inductive and capacitive loads.":"The dimmer is capable of measuring the reactance to distinguish inductive and capacitive loads.","Controls the behavior when the device is powered on":"Cihaz a\xE7\u0131ld\u0131\u011F\u0131ndaki davran\u0131\u015F\u0131 kontrol eder","PIR sensor sensitivity (refresh and update only while active)":"","PIR keep time in seconds (refresh and update only while active)":"","Report interval":"","Current display unit":"","Temperature alarm status":"S\u0131cakl\u0131k alarm durumu","Alarm temperature max":"Alarm S\u0131cakl\u0131\u011F\u0131 Maksimum","Alarm temperature min":"Alarm S\u0131cakl\u0131\u011F\u0131 Minimum","Humidity alarm status":"","Alarm humidity max":"Alarm nem maksimum","Alarm humidity min":"Alarm nem minimum","Distance to target":"","Minimum range":"","Maximum range":"","Detection delay":"","Fading time":"","Self_test, possible resuts: checking, check_success, check_failure, others, comm_fault, radar_fault.":"","Brightness state":"Parlakl\u0131k Durumu","Speed of movement":"Hareket h\u0131z\u0131","presets for sensitivity for presence and movement":"","Tumble status switch":"","fall sensitivity of the radar":"","tumble alarm time":"","fall down status":"","static dwell alarm":"","O-Sensitivity mode":"O-Duyarl\u0131l\u0131k modu","Led status switch":"LED status switch","Working mode":"\xC7al\u0131\u015Fma modu","Luminance level":"Parlakl\u0131k seviyesi","Alarm humidity status":"Alarm nem durumu","Alarm temperature status":"Alarm S\u0131cakl\u0131\u011F\u0131 Durumu","Trigger the door movement":"","Indicates if the garage door contact is closed (= true) or open (= false)":"","Relay LED indicator mode":"","Plug LED indicator mode":"",Position:"Pozisyon","Away mode":"D\u0131\u015Far\u0131da modu","Comfort temperature":"Konfor s\u0131cakl\u0131\u011F\u0131","Eco temperature":"Eko s\u0131cakl\u0131\u011F\u0131",'When Anti-Freezing function is activated, the temperature in the house is kept at 8 \xB0C, the device display "AF".press the pair button to cancel.':"",'Battery life can be prolonged by switching the heating off. To achieve this, the valve is closed fully. To activate the heating stop, the device display "HS", press the pair button to cancel.':"","Holiday temperature":"Tatil s\u0131cakl\u0131\u011F\u0131","Error status":"Hata durumu","Window open?":"","Mode of this device, in the `heat` mode the TS0601 will remain continuously heating, i.e. it does not regulate to the desired temperature. If you want TRV to properly regulate the temperature you need to use mode `auto` instead setting the desired temperature.":"","Away preset days":"D\u0131\u015Far\u0131da ayarlanm\u0131\u015F g\xFCnler","Boost time":"Zaman\u0131 artt\u0131r","Away preset temperature":"D\u0131\u015Far\u0131da ayarlanm\u0131\u015F s\u0131cakl\u0131k","Calibration time":"Kalibrasyon s\xFCresi","Maximum light brightness":"","The measured CO (carbon monoxide) value":"","The measured formaldehyd value":"The measured formaldehyde value","Measured PM2.5 (particulate matter) concentration":"Measured PM\u2082.\u2085 (particulate matter) concentration","Group where the action was triggered on":"","The measured occupancy value":"","The measured noise value":"","Indicates whether the device detected noise":"","Time in seconds after which noise is cleared after detecting it (default: 60)":"","Time in seconds after which occupancy is cleared after detecting it (default: 60)":"","Self-heating compensation. The compensation value is subtracted from the measured temperature":"","If the sensor is triggered by the slightest movement, reduce the sensitivity, otherwise increase it (default: 50)":"","The minimum noise level at which the detector will work (default: 50)":"","Automatic calibration of the CO2 sensor. If ON, the CO2 sensor will automatically calibrate every 7 days.":"","Ventilate the room for 20 minutes, turn on manual calibration, and turn it off after one second. After about 5 minutes the CO2 sensor will show 400ppm. Calibration completed":"","Turn on when working in conditions of high humidity (more than 70 %, RH) or condensation, if the sensor shows 0 or 100 %.":"","Accelerometer X value":"\u0130vme\xF6l\xE7er x de\u011Feri","Accelerometer Y value":"\u0130vme\xF6l\xE7er y de\u011Feri","Accelerometer Z value":"\u0130vme\xF6l\xE7er z de\u011Feri","White brightness of this light":"","Valve state if open or closed":"","Position of the valve":"","Control backlight dimming behavior":"Control backlight dimming behaviour","Door status":"Kap\u0131 durumu","User ID can only number 1":"","Pincode to set, set pincode(4 digit) to null to clear":"","temperature of device internal mcu":"","Measured electrical power factor":"","Measured electrical ac frequency":"","Currently status":"","Instantaneous measured apparent power":"","Instantaneous measured power on phase A":"","Instantaneous measured power on phase B":"","Instantaneous measured power on phase C":"","Instantaneous measured power factor":"","Sum of consumed energy on phase A":"","Sum of consumed energy on phase B":"","Sum of consumed energy on phase C":"","Measured electrical AC frequency":"","Measured electrical potential value on phase A":"","Measured electrical potential value between phase A and B":"","Measured electrical potential value between phase B and C":"","Measured electrical potential value between phase C and A":"","Instantaneous measured electrical current on phase A":"","Time in seconds after which occupancy is cleared after detecting it":"","Controls the behaviour when the device is powered on":"Cihaz a\xE7\u0131ld\u0131\u011F\u0131ndaki davran\u0131\u015F\u0131 kontrol eder","Sets dimming mode to autodetect or fixed RC/RL/RL_LED mode (max load is reduced in RL_LED)":"","Duration of lift":"","Auto off after specific time":"Belirli bir s\xFCreden sonra otomatik olarak kapal\u0131","Controls how programming affects the thermostat. Possible values: setpoint (only use specified setpoint), schedule (follow programmed setpoint schedule). Changing this value does not clear programmed schedules.":"","Not clear how this affects operation. However, it would appear that the device does not execute any motor functions if this is set to false. This may be a means to conserve battery during periods that the heating system is not energized (e.g. during summer). `false` No Heat Available or `true` Heat Available":"","If `radiator_covered` is `true`: Set at maximum 30 minutes interval but not more often than every 5 minutes and 0.1 degrees difference. Resets every 35 minutes to standard. If `radiator_covered` is `false`: Set at maximum 3 hours interval but not more often than every 30 minutes and 0.1 degrees difference. Resets every 3 hours to standard. Value 21C = 2100 (-8000=undefined).":"","Set if the TRV should solely rely on external_measured_room_sensor or operate in offset mode. `false` = Auto Offset Mode or `true` = Room Sensor Mode":"","Whether or not the window open feature is enabled":"","Mean radiator load for room calculated by gateway for load balancing purposes (-8000=undefined)":"","Specific for pre-heat running in Zigbee Weekly Schedule mode":"","Status of adaptation run: None (before first run), In Progress, Valve Characteristic Found, Valve Characteristic Lost":"","Automatic adaptation run enabled (the one during the night)":"","Adaptation run control: Initiate Adaptation Run or Cancel Adaptation Run":"","Regulation SetPoint Offset in range -2.5\xB0C to 2.5\xB0C in steps of 0.1\xB0C. Value 2.5\xB0C = 25.":"","Blink green LED on motion detection":"Hareket alg\u0131lamada yan\u0131p s\xF6nen ye\u015Fil LED","Ac louver position of this device":"Bu cihaz\u0131n AC panjur konumu","Auto relock after 7 seconds.":"7 saniye sonra otomatik tekrar kilitle.","Temperature sensitivity":"S\u0131cakl\u0131k duyarl\u0131l\u0131\u011F\u0131","Enable LED":"","Temperature/humidity alarm status":"","Temperature scale (\xB0F/\xB0C)":"","OLED brightness when operating the buttons. Default: Medium.":"","Key beep volume and vibration level. Default: Low.":"","Type of the external floor sensor. Default: NTC 10K/25.":"","The sensor used for heat control. Default: Room Sensor.":"","The mode after a power reset. Default: Previous Mode.":"","The tempearatue calibration for the exernal floor sensor, between -3 and 3 in 0.1\xB0C. Default: 0.":"","The duration of Dry Mode, between 5 and 100 minutes. Default: 5.":"","The mode after Dry Mode. Default: Auto.":"","The temperature on the display. Default: Room Temperature.":"","The threshold to detect window open, between 1.5 and 4 in 0.5 \xB0C. Default: 0 (disabled).":"","Hysteresis setting, between 0.5 and 2 in 0.1 \xB0C. Default: 0.5.":"","Room temperature alarm threshold, between 20 and 60 in \xB0C. 0 means disabled. Default: 45.":"","Do not disturb mode":"Rahats\u0131z Etmeyin modu","Power on behavior state":"Power on behaviour state","Indicator light status":"","The delta between local_temperature and current_heating_setpoint to trigger Heat":"","Serial Number":"Seri Numaras\u0131","Base index":"","Tarif option":"","Subscribed intensity level":"","HCHC index":"","HCHP index":"","BBRHCJW index":"","BBRHPJW index":"","BBRHCJR index":"","BBRHPJR index":"","RMS current":"","RMS current (phase 2)":"","RMS current (phase 3)":"","RMS current peak":"","RMS current peak (phase 2)":"","RMS current peak (phase 3)":"","Three-phase power peak":"","Apparent power":"","Current pricing period":"","Tomorrow color":"","Schedule HPHC":"","Presence of potentials":"","EJP start notice (30min)":"","Subscribed Power Exceeded Warning":"","Over Current Warning (phase 1)":"","Over Current Warning (phase 2)":"","Over Current Warning (phase 3)":"","Current supplier price label":"","Current tariff index number":"","Customer tele-information protocol version":"","Current date and time":"","Total provider active power delivered (index 07)":"","Total provider active power delivered (index 08)":"","Total provider active power delivered (index 09)":"","Total provider active power delivered (index 10)":"","Active energy withdrawn Distributor (index 01)":"","Active energy withdrawn Distributor (index 02)":"","Active energy withdrawn Distributor (index 03)":"","Active energy withdrawn Distributor (index 04)":"","Total active power injected":"","Total reactive power (Q1)":"Toplam reaktif g\xFC\xE7 (Q1)","Total reactive power (Q2)":"Toplam reaktif g\xFC\xE7 (Q2)","Total reactive power (Q3)":"Toplam reaktif g\xFC\xE7 (Q3)","Total reactive power (Q4)":"Toplam reaktif g\xFC\xE7 (Q4)","RMS voltage":"RMS gerilimi","RMS voltage (phase 2)":"","RMS voltage (phase 3)":"","Register of Statutes":"","Apparent power threshold":"","Instantaneous apparent power injected":"","Apparent power max. injected n":"","Apparent power max. injected n-1":"","Current point of the active load curve drawn":"","Previous point of the active load curve drawn":"","Point n of the withdrawn active load curve":"","Point n-1 of the withdrawn active load curve":"","Average RMS voltage (phase 1)":"","Average RMS voltage (phase 2)":"","Average RMS voltage (phase 3)":"","Immediate apparent power delivered (phase 2)":"","Immediate apparent power delivered (phase 3)":"","Apparent power delivered peak (phase 2)":"","Apparent power delivered peak (phase 3)":"","Apparent power max. draw-off n-1":"","Apparent power max. draw-off n-1 (phase 2)":"","Apparent power max. draw-off n-1 (phase 3)":"","Message short":"K\u0131sa mesaj","Message ultra-short":"\xC7ok k\u0131sa mesaj","PRM number":"PRM numaras\u0131","Start mobile point 1":"","Stop mobile point 1":"","Start mobile point 2":"","Stop mobile point 2":"","Start mobile point 3":"","Stop mobile point 3":"","Current day number supplier calendar":"","Next day number supplier calendar":"","Profile of the next supplier calendar day":"","Profile of the next check-in day":"","Motor direction":"Motor y\xF6n\xFC","Controls behaviour of led/siren on alarm":"Controls behaviour of LED/siren on alarm","Alarm zone. Default value 23":"Alarm b\xF6lgesi. Varsay\u0131lan de\u011Fer 23","Measured eCO2 value":"Measured CO2 value","Temperature 1":"S\u0131cakl\u0131k 1","Temperature 2":"S\u0131cakl\u0131k 2","Temperature 3":"S\u0131cakl\u0131k 3","Temperature 4":"S\u0131cakl\u0131k 4","Temperature 5":"S\u0131cakl\u0131k 5","Temperature 6":"S\u0131cakl\u0131k 6","Temperature 7":"S\u0131cakl\u0131k 7","Temperature 8":"S\u0131cakl\u0131k 8","Temperature 9":"S\u0131cakl\u0131k 9","Auto off after specific time.":"Belirli bir s\xFCreden sonra otomatik olarak kapal\u0131.","Enable the LED when the light is off":"","Works only when the pilot wire is deactivated":"","Allow the device to change brightness":"Cihaz\u0131n parlakl\u0131\u011F\u0131 de\u011Fi\u015Ftirmesine izin verin","Animation Effect to use for the LEDs":"","Calculated by using a hue color circle(value/255*360) If color = 255 display white":"","Brightness of the LEDs":"","1-60 is in seconds calculated 61-120 is in minutes calculated by(value-60) Example a value of 65 would be 65-60 = 5 minutes - 120-254 Is in hours calculated by(value-120) Example a value of 132 would be 132-120 would be 12 hours. - 255 Indefinitely":"","Individual LED to target.":"","Animation Effect to use for the LED":"","Brightness of the LED":"","1-60 is in seconds calculated 61-120 is in minutes calculated by(value-60) Example a value of 65 would be 65-60 = 5 minutes - 120-254 Is in hours calculated by(value-120) Example a value of 132 would be 132-120 would be 12 hours. - 255 Indefinitely":"","This changes the speed that the light dims up when controlled from the hub. A setting of 0 turns the light immediately on. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 25 (2.5s)":"","This changes the speed that the light dims up when controlled at the switch. A setting of 0 turns the light immediately on. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpRemote setting.":"","This changes the speed that the light turns on when controlled from the hub. A setting of 0 turns the light immediately on. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpRemote setting.":"","This changes the speed that the light turns on when controlled at the switch. A setting of 0 turns the light immediately on. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpRemote setting.":"","This changes the speed that the light dims down when controlled from the hub. A setting of 0 turns the light immediately off. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpRemote setting.":"","This changes the speed that the light dims down when controlled at the switch. A setting of 0 turns the light immediately off. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with dimmingSpeedUpLocal setting.":"","This changes the speed that the light turns off when controlled from the hub. A setting of 'instant' turns the light immediately off. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with rampRateOffToOnRemote setting.":"","This changes the speed that the light turns off when controlled at the switch. A setting of 'instant' turns the light immediately off. Increasing the value slows down the transition speed. Every number represents 100ms. Default = 127 - Keep in sync with rampRateOffToOnLocal setting.":"","The minimum level that the dimmer allows the bulb to be dimmed to. Useful when the user has an LED bulb that does not turn on or flickers at a lower level.":"","The maximum level that the dimmer allows the bulb to be dimmed to.Useful when the user has an LED bulb that reaches its maximum level before the dimmer value of 99 or when the user wants to limit the maximum brightness.":"","Inverts the orientation of the switch. Useful when the switch is installed upside down. Essentially up becomes down and down becomes up.":"","Automatically turns the switch off after this many seconds. When the switch is turned on a timer is started. When the timer expires, the switch is turned off. 0 = Auto off is disabled.":"","Default level for the dimmer when it is turned on at the switch. A setting of 0 means that the switch will return to the level that it was on before it was turned off.":"","Default level for the dimmer when it is turned on from the hub. A setting of 0 means that the switch will return to the level that it was on before it was turned off.":"","The state the switch should return to when power is restored after power failure. 0 = off, 1-100 = level, 101 = previous.":"","Shows the level that the load is at for x number of seconds after the load is adjusted and then returns to the Default LED state. 0 = Stay Off, 1-10 = seconds, 11 = Stay On.":"","Power level change that will result in a new power report being sent. The value is a percentage of the previous report.0 = disabled, 1-32767 = 0.1W-3276.7W.":"","Time period between consecutive power & energy reports being sent (in seconds). The timer is reset after each report is sent.":"","Energy reports Energy level change which will result in sending a new energy report.0 = disabled, 1-32767 = 0.01kWh-327.67kWh. Default setting: 10 (0.1 kWh)":"","Set the power type for the device.":"","Set the switch configuration.":"","This will set the button press delay. 0 = no delay (Disables Button Press Events), 1 = 100ms, 2 = 200ms, 3 = 300ms, etc. up to 900ms. Default = 500ms.":"","For use with Smart Bulbs that need constant power and are controlled via commands rather than power.":"","Set the color of the LED Indicator when the load is on.":"","Set the color of the LED Indicator when the load is off.":"","Set the intensity of the LED Indicator when the load is on.":"","Set the intensity of the LED Indicator when the load is off.":"","Ability to control switch from the wall.":"","Ability to control switch from the hub.":"","Use device as a Dimmer or an On/Off switch.":"","When the device is in On/Off mode, use full LED bar or just one LED.":"","Display progress on LED bar during firmware update.":"","0-254:This is the color of the LED strip in a hex representation. 255:Synchronization with default all LED strip color parameter.":"","Intesity of LED strip when on. 101 = Syncronized with default all LED strip intensity parameter.":"","Intesity of LED strip when off. 101 = Syncronized with default all LED strip intensity parameter.":"","Result of a double tap on the up button.":"","Temperature calibration":"S\u0131cakl\u0131k Kalibrasyonu","Humidity calibration":"Nem kalibrasyonu","Current fan speed":"Mevcut fan h\u0131z\u0131","Measured Hcho value":"Measured HCHO value","Air quality index":"Hava Kalitesi Endeksi","Measured PM10 (particulate matter) concentration":"Measured PM\u2081\u2080 (particulate matter) concentration","SOS alarm":"SOS alarm\u0131","Remaining battery 2 in %":"","Illuminance calibration in lux":"","Temperature calibration (-2.0...2.0)":"","Enable reporting":"","Control mode":"","External switch type":"","External switch status":"","Load detection mode":"","Load type":"","Load dimmable":"","Power supply mode":"","Current state":"Mevcut durum","Enable or disable sound":"Sesi etkinle\u015Ftirin veya devre d\u0131\u015F\u0131 b\u0131rak\u0131n","Enable LEDs feedback":"LED'lerin geri bildirimini etkinle\u015Ftirin","Critical (LED3) CO2 level":"Kritik (LED3) CO2 seviyesi","Adjust temperature":"S\u0131cakl\u0131\u011F\u0131 ayarlay\u0131n","Adjust humidity":"Nemi ayarlay\u0131n","Adjust pressure":"Bas\u0131nc\u0131 ayarlay\u0131n","Current radiation level":"Mevcut radyasyon seviyesi","Enable LED feedback":"LED geri bildirimini etkinle\u015Ftirin","Enable buzzer feedback":"Buzzer geri bildirimini etkinle\u015Ftirin","Critical radiation level":"Kritik radyasyon seviyesi","Temperature of the CPU":"CPU s\u0131cakl\u0131\u011F\u0131","Pulses per kwh. Default 1000 imp/kWh. Range 0 to 65535":"Pulses per kWh. Default 1000 imp/kWh. Range 0 to 65535","Duration of Siren":"Siren s\xFCresi","Indicates if the card is inserted (= true) or not (= false)":"","Allow Master PIN Unlock":"Master PIN Kilit a\xE7mas\u0131na izin ver","Allow RFID to Unlock":"RFID'nin kilidini a\xE7mas\u0131na izin verin","Allow Auto Re-Lock":"Otomatik yeniden kilitlemeye izin ver","Current temperature measured on the external sensor (floor)":"","The difference between the temperature at which the thermostat switches off, and the temperature at which it switches on again.":"","Max guarding temperature":"","Prevent changes. `false` = run normally. `true` = prevent from making changes.":"","Enables the LED when the light is off":"","Brightness of this backlight LED":"","Enable or disable the blue backlight LED":""},OAt={undefined:"tan\u0131ms\u0131z",state:"Durum",brightness:"Parlakl\u0131k",color_temp:"Renk S\u0131cakl\u0131\u011F\u0131",color_temp_startup:"Colour Temp Startup",color_xy:"Renk xy",effect:"Etki",linkquality:"Ba\u011Flant\u0131 kalitesi",system_mode:"Sistem Modu",position:"Pozisyon",options:"Se\xE7enekler",motor_speed:"Motor H\u0131z\u0131",motor_working_mode:"",percent_state:"",mode:"Mod",motor_direction:"Motor Y\xF6n\xFC",border:"",battery:"Pil",action:"Aksiyon",power_on_behavior:"Power On Behaviour",battery_low:"D\xFC\u015F\xFCk Pil",color_hs:"Colour Hue/Saturation",lock_state:"Kilit Durumu",pin_code:"Pin kodu",user_type:"Kullan\u0131c\u0131 Tipi",action_source_name:"",action_source_user:"",voltage:"Gerilim",click_mode:"T\u0131klama Modu",action_rotation_angle:"Aksiyon D\xF6n\xFC\u015F A\xE7\u0131s\u0131",action_rotation_angle_speed:"Aksiyon D\xF6n\xFC\u015F A\xE7\u0131s\u0131 H\u0131z\u0131",action_rotation_percent:"Aksiyon Rotasyonu Y\xFCzde",action_rotation_percent_speed:"Aksiyon D\xF6nd\xFCrme Y\xFCzde H\u0131z\u0131",action_rotation_time:"Aksiyon D\xF6n\xFC\u015F S\xFCresi",power:"G\xFC\xE7",energy:"Enerji",temperature:"S\u0131cakl\u0131k",current:"Ak\u0131m",led_disabled_night:"LED Disabled Night",button_lock:"D\xFC\u011Fme Kilidi",contact:"\u0130leti\u015Fim",button_switch_mode:"D\xFC\u011Fme Anahtar\u0131 Modu",illuminance:"Ayd\u0131nl\u0131k",flip_indicator_light:"",humidity:"Nem",theme:"Tema",beep_volume:"Bip Sesi",lcd_brightness:"LCD Parlakl\u0131\u011F\u0131",font_size:"Yaz\u0131 Boyutu",lcd_auto_brightness_enabled:"LCD Auto Brightness Enabled",homepage:"Ana sayfa",standby_lcd_brightness:"Standby LCD Brightness",available_switches:"Mevcut Anahtarlar",switch_type:"Anahtar T\xFCr\xFC",device_temperature:"Cihaz S\u0131cakl\u0131\u011F\u0131",power_outage_count:"",charging_status:"",motor_state:"",running:"",strength:"Kuvvet",sensitivity:"Duyarl\u0131l\u0131k",angle_x:"X A\xE7\u0131s\u0131",angle_y:"Y A\xE7\u0131s\u0131",angle_z:"Z A\xE7\u0131s\u0131",smoke:"Duman",smoke_density_dbm:"",selftest:"Kendi kendini test",mute_buzzer:"",mute:"sessiz",heartbeat_indicator:"",linkage_alarm:"",gas:"Gaz",gas_density:"Gaz Yo\u011Funlu\u011Fu",gas_sensitivity:"",tamper:"Kurcalanm\u0131\u015F",auto_off:"Otomatik Kapal\u0131",action_angle:"Aksiyon A\xE7\u0131s\u0131",action_from_side:"Yandan Aksiyon",action_side:"Aksiyon Taraf\u0131",water_leak:"Su S\u0131z\u0131nt\u0131s\u0131",presence_event:"",monitoring_mode:"",approach_distance:"",motion_sensitivity:"Hareket Hassasiyeti",reset_nopresence_status:"",occupancy:"Dolgunluk",detection_interval:"",pressure:"Bas\u0131n\xE7",dimmer_mode:"Dimmer Modu",warning:"Uyar\u0131",duration:"S\xFCre",ac_connected:"",volume:"Ses",test_alarm:"",test_alarm_result:"",battery_level:"",fault_alarm:"",silence_siren:"",action_code:"Aksiyon Kodu",action_transaction:"Aksiyon \u0130\u015Flemi",action_zone:"Aksiyon B\xF6lgesi",tilt:"E\u011Fim",current_level_startup:"Mevcut Seviye Ba\u015Flang\u0131\xE7",ballast_physical_minimum_level:"Balast fiziksel minimum seviye",ballast_physical_maximum_level:"Balast fiziksel maksimum seviye",ballast_minimum_level:"Balast minimum seviye",ballast_maximum_level:"Balast maksimum seviyesi",report_interval:"",temperature_unit_convert:"",temperature_alarm:"S\u0131cakl\u0131k Alarm\u0131",humidity_alarm:"Nem Alarm\u0131",max_humidity:"",min_humidity:"",target_distance:"",minimum_range:"",maximum_range:"",detection_delay:"",fading_time:"",self_test:"",brightness_state:"",action_step_size:"",action_transition_time:"",action_rate:"",child_lock:"\xC7o\xE7uk Kilidi",current_average:"Mevcut ortalama",energy_consumed:"Enerji T\xFCketilen",clear_device_data:"Cihaz Verilerini Temizle",motion_speed:"Hareket H\u0131z\u0131",motion_direction:"Hareket Y\xF6n\xFC",tumble_switch:"",fall_sensitivity:"",tumble_alarm_time:"",fall_down_status:"",static_dwell_alarm:"",led_status:"LED Status",luminance_level:"Parlakl\u0131k Seviyesi",alarm_temperature_max:"Alarm S\u0131cakl\u0131\u011F\u0131 Maksimum",alarm_temperature_min:"Alarm S\u0131cakl\u0131\u011F\u0131 Minimum",alarm_humidity_max:"Alarm Nem Maksimum",alarm_humidity_min:"Alarm Nem Minimum",alarm_humidity:"Alarm Nemi",alarm_temperature:"Alarm S\u0131cakl\u0131\u011F\u0131",trigger:"",garage_door_contact:"",indicator_mode:"",current_heating_setpoint:"Mevcut Is\u0131tma Ayar Noktas\u0131",heating:"Is\u0131tma",programming_mode:"Programlama Modu",monday_schedule:"Pazartesi Program\u0131",tuesday_schedule:"Sal\u0131 Program\u0131",wednesday_schedule:"\xC7ar\u015Famba Program\u0131",thursday_schedule:"Per\u015Fembe Program\u0131",friday_schedule:"Cuma Program\u0131",saturday_schedule:"Cumartesi Program\u0131",sunday_schedule:"Pazar Program\u0131",boost_heating:"Is\u0131tmay\u0131 Artt\u0131r",boost_heating_countdown:"Is\u0131tma Geri Say\u0131m\u0131n\u0131 Artt\u0131r",away_mode:"D\u0131\u015Far\u0131da Modu",comfort_temperature:"Konfor S\u0131cakl\u0131\u011F\u0131",eco_temperature:"Eko S\u0131cakl\u0131\u011F\u0131",holiday_temperature:"Tatil S\u0131cakl\u0131\u011F\u0131",holiday_start_stop:"",schedule:"",schedule_monday:"Pazartesi Program\u0131",schedule_tuesday:"Sal\u0131 Program\u0131",schedule_wednesday:"\xC7ar\u015Famba program\u0131",schedule_thursday:"Per\u015Fembe Program\u0131",schedule_friday:"Cuma Program\u0131",schedule_saturday:"Cumartesi Program\u0131",schedule_sunday:"Pazarg\xFCn\xFC Program\u0131",online:"\xC7evrimi\xE7i",error_status:"Hata Durumu",away_preset_days:"D\u0131\u015Far\u0131da Ayarlanm\u0131\u015F G\xFCnler",boost_time:"Zaman\u0131 Artt\u0131r",force:"Kuvvet",away_preset_temperature:"D\u0131\u015Far\u0131da Ayarlanm\u0131\u015F S\u0131cakl\u0131k",week:"Hafta",workdays_schedule:"\u0130\u015F G\xFCnleri Program\u0131",holidays_schedule:"Tatil Program\u0131",backlight_mode:"Arka I\u015F\u0131k Modu",calibration:"Kalibrasyon",calibration_time:"Kalibrasyon T\xFCresi",max_brightness:"",carbon_monoxide:"Karbonmonoksit",co:"",co2:"CO2",formaldehyd:"Formaldehit",pm25:"PM\u2082.\u2085",action_group:"",direction:"Y\xF6n",occupancy_level:"",noise:"g\xFCr\xFClt\xFC",noise_detected:"",noise_timeout:"",temperature_offset:"S\u0131cakl\u0131k Ofseti",occupancy_sensitivity:"",noise_detect_level:"",co2_autocalibration:"",co2_manual_calibration:"",th_heater:"",x_axis:"X Ekseni",y_axis:"Y Ekseni",z_axis:"Z Ekseni",beep:"Bip",white_brightness:"",led_intensity_on:"LED Intensity On",led_intensity_off:"LED Intensity Off",backlight_auto_dim:"Arka I\u015F\u0131k Otomatik Dim",door_state:"",power_factor:"",ac_frequency:"",status:"durum",people:"\u0130nsanlar",power_apparent:"",power_phase_a:"",power_phase_b:"",power_phase_c:"",energy_phase_a:"",energy_phase_b:"",energy_phase_c:"",voltage_phase_a:"",voltage_phase_ab:"",voltage_phase_bc:"",voltage_phase_ca:"",current_phase_a:"",current_phase_b:"Mevcut Faz B",current_phase_c:"Mevcut Faz C",zone_mode:"B\xF6lge Modu",calibrate_valve:"Kalibre Valfi",lift_duration:"",timer:"Zamanlay\u0131c\u0131",programming_operation_mode:"",radiator_covered:"",window_open_feature:"",day_of_week:"Haftan\u0131n G\xFCn\xFC",trigger_time:"Tetikleme S\xFCresi",algorithm_scale_factor:"Algoritma \xD6l\xE7ek Fakt\xF6r\xFC",preheat_status:"",adaptation_run_status:"",adaptation_run_settings:"",adaptation_run_control:"",regulation_setpoint_offset:"",led_indication:"LED Indication",action_duration:"",device_mode:"Cihaz Modu",ac_louver_position:"AC Panjur Pozisyonu",sound_volume:"Ses Seviyesi",temperature_sensitivity:"",led_enable:"LED Enable",power_type:"G\xFC\xE7 T\xFCr\xFC",temperature_min:"S\u0131cakl\u0131k Minimum",temperature_max:"S\u0131cakl\u0131k Maksimum",temperature_scale:"",melody:"Melodi",battpercentage:"",outdoor_temperature:"",button_vibration_level:"",floor_sensor_type:"",sensor:"Sens\xF6r",powerup_status:"",floor_sensor_calibration:"",dry_time:"",mode_after_dry:"",temperature_display:"",window_open_check:"",hysterersis:"",display_auto_off_enabled:"",alarm_airtemp_overvalue:"",backlight:"",do_not_disturb:"Rahats\u0131z Etmeyin",color_power_on_behavior:"Colour Power On Behaviour",eco_mode:"Eko modu",valve_state:"",boost_heating_countdown_time_set:"Is\u0131tma Geri Say\u0131m\u0131n\u0131 Artt\u0131rmay\u0131 Ayarla",indicate_light:"",fan_mode:"Fan modu",ADCO:"ADCO",BASE:"BASE",OPTARIF:"OPTARIF",ISOUSC:"ISOUSC",HCHC:"HCHC",HCHP:"HCHP",BBRHCJW:"BBRHCJW",BBRHPJW:"BBRHPJW",BBRHCJR:"BBRHCJR",BBRHPJR:"BBRHPJR",IINST:"IINST",IINST2:"IINST2",IINST3:"IINST3",IMAX:"IMAX",IMAX2:"IMAX2",IMAX3:"IMAX3",PMAX:"PMAX",PAPP:"PAPP",PTEC:"PTEC",DEMAIN:"DEMAIN",HHPHC:"HHPHC",PPOT:"PPOT",PEJP:"PEJP",ADPS:"ADPS",ADIR1:"ADIR1",ADIR2:"ADIR2",ADIR3:"ADIR3",LTARF:"LTARF",NTARF:"NTARF",VTIC:"VTIC",DATE:"G\xDCN",EASF07:"EASF07",EASF08:"EASF08",EASF09:"EASF09",EASF10:"EASF10",EASD01:"EASD01",EASD02:"EASD02",EASD03:"EASD03",EASD04:"EASD04",EAIT:"EAIT",ERQ1:"ERQ1",ERQ2:"ERQ2",ERQ3:"ERQ3",ERQ4:"ERQ4",URMS1:"URMS1",URMS2:"URMS2",URMS3:"URMS3",STGE:"STGE",PCOUP:"PCOUP",SINSTI:"SINSTI",SMAXIN:"SMAXIN","SMAXIN-1":"SMAXIN-1",CCASN:"CCASN","CCASN-1":"CCASN-1",CCAIN:"CCAIN","CCAIN-1":"CCAIN-1",UMOY1:"UMOY1",UMOY2:"UMOY2",UMOY3:"UMOY3",SINSTS2:"SINSTS2",SINSTS3:"SINSTS3",SMAXN2:"SMAXN2",SMAXN3:"SMAXN3","SMAXN-1":"SMAXN-1","SMAXN2-1":"SMAXN2-1","SMAXN3-1":"SMAXN3-1",MSG1:"MSG1",MSG2:"MSG2",PRM:"PRM",DPM1:"DPM1",FPM1:"FPM1",DPM2:"DPM2",FPM2:"FPM2",DPM3:"DPM3",FPM3:"FPM3",RELAIS:"RELAIS",NJOURF:"NJOURF","NJOURF+1":"NJOURF+1","PJOURF+1":"PJOURF+1",PPOINTE1:"PPOINTE1",eco2:"Eko 2",current_heating_setpoint_auto:"Mevcut Is\u0131tma Ayar Noktas\u0131 Otomatik",away_setting:"D\u0131\u015Far\u0131da Ayarlar\u0131",away_preset_year:"D\u0131\u015Far\u0131da Ayarlanm\u0131\u015F Y\u0131l",away_preset_month:"D\u0131\u015Far\u0131da Ayarlanm\u0131\u015F Ay",away_preset_day:"D\u0131\u015Far\u0131da Ayarlanm\u0131\u015F G\xFCn",away_preset_hour:"D\u0131\u015Far\u0131da Ayarlanm\u0131\u015F Saat",away_preset_minute:"D\u0131\u015Far\u0131da Ayarlanm\u0131\u015F Dakika",monday:"Pazartesi",monday_temp_1:"Pazartesi S\u0131cakl\u0131k 1",monday_hour_1:"Pazartesi Saat 1",monday_minute_1:"Pazartesi Dakika 1",monday_temp_2:"Pazartesi S\u0131cakl\u0131k 2",monday_hour_2:"Pazartesi Saat 2",monday_minute_2:"Pazartesi Dakika 2",monday_temp_3:"Pazartesi S\u0131cakl\u0131k 3",monday_hour_3:"Pazartesi Saat 3",monday_minute_3:"Pazartesi Dakika 3",monday_temp_4:"Pazartesi S\u0131cakl\u0131k 4",monday_hour_4:"Pazartesi Saat 4",monday_minute_4:"Pazartesi Dakika 4",monday_temp_5:"Pazartesi S\u0131cakl\u0131k 5",monday_hour_5:"Pazartesi Saat 5",monday_minute_5:"Pazartesi Dakika 5",monday_temp_6:"Pazartesi S\u0131cakl\u0131k 6",monday_hour_6:"Pazartesi Saat 6",monday_minute_6:"Pazartesi Dakika 6",monday_temp_7:"Pazartesi S\u0131cakl\u0131k 7",monday_hour_7:"Pazartesi Saat 7",monday_minute_7:"Pazartesi Dakika 7",monday_temp_8:"Pazartesi S\u0131cakl\u0131k 8",monday_hour_8:"Pazartesi Saat 8",monday_minute_8:"Pazartesi Dakika 8",monday_temp_9:"Pazartesi S\u0131cakl\u0131k 9",monday_hour_9:"Pazartesi Saat 9",monday_minute_9:"Pazartesi Dakika 9",tuesday:"Sal\u0131",tuesday_temp_1:"Sal\u0131 S\u0131cakl\u0131k 1",tuesday_hour_1:"Sal\u0131 Saat 1",tuesday_minute_1:"Sal\u0131 Dakika 1",tuesday_temp_2:"Sal\u0131 S\u0131cakl\u0131k 2",tuesday_hour_2:"Sal\u0131 Saat 2",tuesday_minute_2:"Sal\u0131 Dakika 2",tuesday_temp_3:"Sal\u0131 S\u0131cakl\u0131k 3",tuesday_hour_3:"Sal\u0131 Saat 3",tuesday_minute_3:"Sal\u0131 Dakika 3",tuesday_temp_4:"Sal\u0131 S\u0131cakl\u0131k 4",tuesday_hour_4:"Sal\u0131 Saat 4",tuesday_minute_4:"Sal\u0131 Dakika 4",tuesday_temp_5:"Sal\u0131 S\u0131cakl\u0131k 5",tuesday_hour_5:"Sal\u0131 Saat 5",tuesday_minute_5:"Sal\u0131 Dakika 5",tuesday_temp_6:"Sal\u0131 S\u0131cakl\u0131k 6",tuesday_hour_6:"Sal\u0131 Saat 6",tuesday_minute_6:"Sal\u0131 Dakika 6",tuesday_temp_7:"Sal\u0131 S\u0131cakl\u0131k 7",tuesday_hour_7:"Sal\u0131 Saat 7",tuesday_minute_7:"Sal\u0131 Dakika 7",tuesday_temp_8:"Sal\u0131 S\u0131cakl\u0131k 8",tuesday_hour_8:"Sal\u0131 Saat 8",tuesday_minute_8:"Sal\u0131 Dakika 8",tuesday_temp_9:"Sal\u0131 S\u0131cakl\u0131k 9",tuesday_hour_9:"Sal\u0131 Saat 9",tuesday_minute_9:"Sal\u0131 Dakika 9",wednesday:"\xC7ar\u015Famba",wednesday_temp_1:"\xC7ar\u015Famba S\u0131cakl\u0131k 1",wednesday_hour_1:"\xC7ar\u015Famba Saat 1",wednesday_minute_1:"\xC7ar\u015Famba Dakika 1",wednesday_temp_2:"\xC7ar\u015Famba S\u0131cakl\u0131k 2",wednesday_hour_2:"\xC7ar\u015Famba Saat 2",wednesday_minute_2:"\xC7ar\u015Famba Dakika 2",wednesday_temp_3:"\xC7ar\u015Famba S\u0131cakl\u0131k 3",wednesday_hour_3:"\xC7ar\u015Famba Saat 3",wednesday_minute_3:"\xC7ar\u015Famba Dakika 3",wednesday_temp_4:"\xC7ar\u015Famba S\u0131cakl\u0131k 4",wednesday_hour_4:"\xC7ar\u015Famba Saat 4",wednesday_minute_4:"\xC7ar\u015Famba Dakika 4",wednesday_temp_5:"\xC7ar\u015Famba S\u0131cakl\u0131k 5",wednesday_hour_5:"\xC7ar\u015Famba Saat 5",wednesday_minute_5:"\xC7ar\u015Famba Dakika 5",wednesday_temp_6:"\xC7ar\u015Famba S\u0131cakl\u0131k 6",wednesday_hour_6:"\xC7ar\u015Famba Saat 6",wednesday_minute_6:"\xC7ar\u015Famba Dakika 6",wednesday_temp_7:"\xC7ar\u015Famba S\u0131cakl\u0131k 7",wednesday_hour_7:"\xC7ar\u015Famba Saat 7",wednesday_minute_7:"\xC7ar\u015Famba Dakika 7",wednesday_temp_8:"\xC7ar\u015Famba S\u0131cakl\u0131k 8",wednesday_hour_8:"\xC7ar\u015Famba Saat 8",wednesday_minute_8:"\xC7ar\u015Famba Dakika 8",wednesday_temp_9:"\xC7ar\u015Famba S\u0131cakl\u0131k 9",wednesday_hour_9:"\xC7ar\u015Famba Saat 9",wednesday_minute_9:"\xC7ar\u015Famba Dakika 9",thursday:"Per\u015Fembe",thursday_temp_1:"Per\u015Fembe S\u0131cakl\u0131k 1",thursday_hour_1:"Per\u015Fembe Saat 1",thursday_minute_1:"Per\u015Fembe Dakika 1",thursday_temp_2:"Per\u015Fembe S\u0131cakl\u0131k 2",thursday_hour_2:"Per\u015Fembe Saat 2",thursday_minute_2:"Per\u015Fembe Dakika 2",thursday_temp_3:"Per\u015Fembe S\u0131cakl\u0131k 3",thursday_hour_3:"Per\u015Fembe Saat 3",thursday_minute_3:"Per\u015Fembe Dakika 3",thursday_temp_4:"Per\u015Fembe S\u0131cakl\u0131k 4",thursday_hour_4:"Per\u015Fembe Saat 4",thursday_minute_4:"Per\u015Fembe Dakika 4",thursday_temp_5:"Per\u015Fembe S\u0131cakl\u0131k 5",thursday_hour_5:"Per\u015Fembe Saat 5",thursday_minute_5:"Per\u015Fembe Dakika 5",thursday_temp_6:"Per\u015Fembe S\u0131cakl\u0131k 6",thursday_hour_6:"Per\u015Fembe Saat 6",thursday_minute_6:"Per\u015Fembe Dakika 6",thursday_temp_7:"Per\u015Fembe S\u0131cakl\u0131k 7",thursday_hour_7:"Per\u015Fembe Saat 7",thursday_minute_7:"Per\u015Fembe Dakika 7",thursday_temp_8:"Per\u015Fembe S\u0131cakl\u0131k 8",thursday_hour_8:"Per\u015Fembe Saat 8",thursday_minute_8:"Per\u015Fembe Dakika 8",thursday_temp_9:"Per\u015Fembe S\u0131cakl\u0131k 9",thursday_hour_9:"Per\u015Fembe Saat 9",thursday_minute_9:"Per\u015Fembe Dakika 9",friday:"Cuma",friday_temp_1:"Cuma S\u0131cakl\u0131k 1",friday_hour_1:"Cuma Saat 1",friday_minute_1:"Cuma Dakika 1",friday_temp_2:"Cuma S\u0131cakl\u0131k 2",friday_hour_2:"Cuma Saat 2",friday_minute_2:"Cuma Dakika 2",friday_temp_3:"Cuma S\u0131cakl\u0131k 3",friday_hour_3:"Cuma Saat 3",friday_minute_3:"Cuma Dakika 3",friday_temp_4:"Cuma S\u0131cakl\u0131k 4",friday_hour_4:"Cuma Saat 4",friday_minute_4:"Cuma Dakika 4",friday_temp_5:"Cuma S\u0131cakl\u0131k 5",friday_hour_5:"Cuma Saat 5",friday_minute_5:"Cuma Dakika 5",friday_temp_6:"Cuma S\u0131cakl\u0131k 6",friday_hour_6:"Cuma Saat 6",friday_minute_6:"Cuma Dakika 6",friday_temp_7:"Cuma S\u0131cakl\u0131k 7",friday_hour_7:"Cuma Saat 7",friday_minute_7:"Cuma Dakika 7",friday_temp_8:"Cuma S\u0131cakl\u0131k 8",friday_hour_8:"Cuma Saat 8",friday_minute_8:"Cuma Dakika 8",friday_temp_9:"Cuma S\u0131cakl\u0131k 9",friday_hour_9:"Cuma Saat 9",friday_minute_9:"Cuma Dakika 9",saturday:"Cumartesi",saturday_temp_1:"Cumartesi S\u0131cakl\u0131k 1",saturday_hour_1:"Cumartesi Saat 1",saturday_minute_1:"Cumartesi Dakika 1",saturday_temp_2:"Cumartesi S\u0131cakl\u0131k 2",saturday_hour_2:"Cumartesi Saat 2",saturday_minute_2:"Cumartesi Dakika 2",saturday_temp_3:"Cumartesi S\u0131cakl\u0131k 3",saturday_hour_3:"Cumartesi Saat 3",saturday_minute_3:"Cumartesi Dakika 3",saturday_temp_4:"Cumartesi S\u0131cakl\u0131k 4",saturday_hour_4:"Cumartesi Saat 4",saturday_minute_4:"Cumartesi Dakika 4",saturday_temp_5:"Cumartesi S\u0131cakl\u0131k 5",saturday_hour_5:"Cumartesi Saat 5",saturday_minute_5:"Cumartesi Dakika 5",saturday_temp_6:"Cumartesi S\u0131cakl\u0131k 6",saturday_hour_6:"Cumartesi Saat 6",saturday_minute_6:"Cumartesi Dakika 6",saturday_temp_7:"Cumartesi S\u0131cakl\u0131k 7",saturday_hour_7:"Cumartesi Saat 7",saturday_minute_7:"Cumartesi Dakika 7",saturday_temp_8:"Cumartesi S\u0131cakl\u0131k 8",saturday_hour_8:"Cumartesi Saat 8",saturday_minute_8:"Cumartesi Dakika 8",saturday_temp_9:"Cumartesi S\u0131cakl\u0131k 9",saturday_hour_9:"Cumartesi Saat 9",saturday_minute_9:"Cumartesi Dakika 9",sunday:"Pazar",sunday_temp_1:"Pazar S\u0131cakl\u0131k 1",sunday_hour_1:"Pazar Saati 1",sunday_minute_1:"Pazar Dakika 1",sunday_temp_2:"Pazar S\u0131cakl\u0131k 2",sunday_hour_2:"Pazar Saat 2",sunday_minute_2:"Pazar Dakika 2",sunday_temp_3:"Pazar S\u0131cakl\u0131k 3",sunday_hour_3:"Pazar Saati 3",sunday_minute_3:"Pazar Dakika 3",sunday_temp_4:"Pazar S\u0131cakl\u0131k 4",sunday_hour_4:"Pazar Saat 4",sunday_minute_4:"Pazar Dakika 4",sunday_temp_5:"Pazar S\u0131cakl\u0131k 5",sunday_hour_5:"Pazar Saati 5",sunday_minute_5:"Pazar Dakika 5",sunday_temp_6:"Pazar S\u0131cakl\u0131k 6",sunday_hour_6:"Pazar Saati 6",sunday_minute_6:"Pazar Dakika 6",sunday_temp_7:"Pazar S\u0131cakl\u0131k 7",sunday_hour_7:"Pazar Saat 7",sunday_minute_7:"Pazar Dakika 7",sunday_temp_8:"Pazar S\u0131cakl\u0131k 8",sunday_hour_8:"Pazar Saat 8",sunday_minute_8:"Pazar Dakika 8",sunday_temp_9:"Pazar S\u0131cakl\u0131k 9",sunday_hour_9:"Pazar Saati 9",sunday_minute_9:"Pazar Dakika 9",led_when_off:"",led_when_on:"LED When On",cable_outlet_mode:"",led_effect:"",color:"",individual_led_effect:"",led:"LED",dimmingSpeedUpRemote:"",dimmingSpeedUpLocal:"",rampRateOffToOnRemote:"",rampRateOffToOnLocal:"",dimmingSpeedDownRemote:"",dimmingSpeedDownLocal:"",rampRateOnToOffRemote:"",rampRateOnToOffLocal:"",minimumLevel:"",maximumLevel:"",invertSwitch:"",autoTimerOff:"",defaultLevelLocal:"",defaultLevelRemote:"",stateAfterPowerRestored:"",loadLevelIndicatorTimeout:"",activePowerReports:"",periodicPowerAndEnergyReports:"",activeEnergyReports:"",powerType:"",switchType:"",physicalOnOffDelay:"",smartBulbMode:"",ledColorWhenOn:"",ledColorWhenOff:"",ledIntensityWhenOn:"",ledIntensityWhenOff:"",localProtection:"",remoteProtection:"",outputMode:"",onOffLedMode:"",firmwareUpdateInProgressIndicator:"",defaultLed1ColorWhenOn:"",defaultLed1ColorWhenOff:"",defaultLed1IntensityWhenOn:"",defaultLed1IntensityWhenOff:"",defaultLed2ColorWhenOn:"",defaultLed2ColorWhenOff:"",defaultLed2IntensityWhenOn:"",defaultLed2IntensityWhenOff:"",defaultLed3ColorWhenOn:"",defaultLed3ColorWhenOff:"",defaultLed3IntensityWhenOn:"",defaultLed3IntensityWhenOff:"",defaultLed4ColorWhenOn:"",defaultLed4ColorWhenOff:"",defaultLed4IntensityWhenOn:"",defaultLed4IntensityWhenOff:"",defaultLed5ColorWhenOn:"",defaultLed5ColorWhenOff:"",defaultLed5IntensityWhenOn:"",defaultLed5IntensityWhenOff:"",defaultLed6ColorWhenOn:"",defaultLed6ColorWhenOff:"",defaultLed6IntensityWhenOn:"",defaultLed6IntensityWhenOff:"",defaultLed7ColorWhenOn:"",defaultLed7ColorWhenOff:"",defaultLed7IntensityWhenOn:"",defaultLed7IntensityWhenOff:"",doubleTapUpEvent:"",reporting_time:"Raporlama S\xFCresi",temperature_calibration:"S\u0131cakl\u0131k Kalibrasyonu",humidity_calibration:"Nem Kalibrasyonu",reporting_enable:"Raporlama Etkin",fan_speed:"Fan H\u0131z\u0131",air_quality:"Hava kalitesi",replace_filter:"Filtreyi De\u011Fi\u015Ftir",hcho:"HCHO",aqi:"AQI",pm10:"PM\u2081\u2080",battery_state:"Pil Durumu",threshold:"E\u015Fik",battery2:"",control_mode:"",switch_status:"",load_detection_mode:"",load_type:"",load_dimmable:"",power_supply_mode:"",trv_mode:"TRV modu",load:"Y\xFCk",regulator_mode:"Reg\xFClat\xF6r Modu",regulator_time:"Reg\xFClat\xF6r Zaman\u0131",floor_temp:"Zemin S\u0131cakl\u0131\u011F\u0131",sound:"Ses",led_feedback:"LED Feedback",threshold1:"E\u015Fik 1",threshold2:"E\u015Fik 2",pressure_offset:"Bas\u0131n\xE7 Ofseti",soil_moisture:"Toprak nemi",buzzer_feedback:"Buzzer Geri Bildirimi",alert_threshold:"Uyar\u0131 E\u015Fi\u011Fi",sensors_type:"Sens\xF6rlerin T\xFCr\xFC",sensors_count:"Sens\xF6rlerin Say\u0131s\u0131",switch_actions:"Aksiyonlar\u0131 De\u011Fi\u015Ftir",cpu_temperature:"CPU S\u0131cakl\u0131\u011F\u0131",current_summation:"Mevcut \xF6zet",reliability:"G\xFCvenilirlik",fault:"Ar\u0131za",card:"",lock_mode:"Kilit Modu",service_mode:"Servis Modu",led_state:"LED State",external_temperature:"",hysteresis:"",max_temperature_protection:"",backlight_led:""},MAt={add_to_group:"Gruba ekle",create_group:"Grup Yarat",new_group_id:"Yeni grup id",new_group_id_placeholder:"Gerekirse grup ID belirtin",new_group_name:"Yeni grup ad\u0131",new_group_name_placeholder:"\xF6rnek: benim_odam_lamba",remove_group:"Grubu kald\u0131r",group_id:"Grup ID",group_name:"Grup Ad\u0131",group_members:"Grup \xFCyeleri",group_scenes:"Grup sahneleri",rename_group:"Grubu yeniden adland\u0131r"},RAt={empty_logs_message:"G\xF6r\xFCnt\xFClenecek bir \u015Fey yok",filter_by_text:"Metne g\xF6re filtrele",show_only:"Sadece g\xF6ster"},LAt={help_router_description:"Mavi Router demektir",load:"Haritay\u0131 y\xFCkle"},PAt={all:"Hepsi",dashboard:"G\xF6sterge Paneli",devices:"Cihazlar",extensions:"Uzant\u0131lar",groups:"Gruplar",logs:"Kay\u0131tlar",map:"Harita",permit_join:"Kat\u0131l\u0131m \u0130zni",restart:"Tekrar ba\u015Flat",settings:"Ayarlar",touchlink:"Dokunmatik ba\u011Flant\u0131"},$At={check:"Yeni g\xFCncellemeleri kontrol edin",check_all:"Hepsini se\xE7",update:"Cihaz \xFCr\xFCn yaz\u0131l\u0131m\u0131n\u0131 g\xFCncelleyin"},zAt={about:"Hakk\u0131nda",advanced:"Geli\u015Fmi\u015F Ayarlar",availability:"Kullan\u0131labilirlik",blocklist:"Blok listesi",coordinator_revision:"Koordinat\xF6r revizyonu",coordinator_type:"Koordinat\xF6r t\xFCr\xFC",donate:"Ba\u011F\u0131\u015F",download_state:"\u0130ndirme Durumu",experimental:"Deneysel",external_converters:"Harici d\xF6n\xFC\u015Ft\xFCr\xFCc\xFCler",frontend:"\xD6ny\xFCz",frontend_version:"\xD6ny\xFCz versiyonu",main:"Ana Ayarlar",ota:"OTA g\xFCncellemeleri",raw:"Ham",restart_zigbee2mqtt:"Zigbee2MQTT'yi yeniden ba\u015Flat\u0131n",serial:"Seri",settings:"Ayarlar",tools:"Ara\xE7lar",zigbee2mqtt_version:"Zigbee2mqtt versiyonu",translate:"\xC7eviri",stats:"\u0130statistikler",coordinator_ieee_address:"Koordinat\xF6r IEEE Adresi"},NAt={rescan:"Tekrar tara",scan:"Tara"},FAt={clear:"Temiz",closed:"Kapand\u0131",false:"Yanl\u0131\u015F",not_supported:"Desteklenmiyor",occupied:"Me\u015Fgul",open:"A\xE7\u0131k",supported:"Destekleniyor",true:"Do\u011Fru",empty_string:'Bo\u015F dize ("")',leaking:"S\u0131z\u0131nt\u0131",null:"Bo\u015F",Clear:"Temiz",Closed:"Kapal\u0131",Occupied:"Me\u015Fgul",Open:"A\xE7\u0131k"},BAt={actions:"Aksiyonlar",attribute:"\xD6znitelik",battery:"Pil",cluster:"K\xFCme",dc_source:"DC kayna\u011F\u0131",description:"Tan\u0131m",device_type:"Cihaz tipi",force_remove:"Zorla ay\u0131rma",friendly_name:"Kolay ad",ieee_address:"IEEE Adresi",last_seen:"Son G\xF6r\xFClme",manufacturer:"\xDCretici firma",network_address:"A\u011F adresi",none:"Hi\xE7biri",pic:"Resim",power:"G\xFC\xE7",power_level:"g\xFC\xE7 seviyesi",remove_device:"Cihaz\u0131 Kald\u0131r",rename_device:"Cihaz\u0131 yeniden adland\u0131r",select_attribute:"\xD6zellik se\xE7in",select_cluster:"K\xFCme se\xE7in",support_status:"Destek Durumu",unsupported:"Desteklenmeyen",updating_firmware:"\xDCr\xFCn yaz\u0131l\u0131m\u0131n\u0131 g\xFCncelleme",zigbee_manufacturer:"Zigbee \xDCreticisi",zigbee_model:"Zigbee Modeli",device:"Cihaz",channel:"Kanal",possible:"M\xFCmk\xFCn",available:"Mevcut"},WAt={store:"Ma\u011Faza",remove:"Kald\u0131r",remove_all:"Hepsini Kald\u0131r",add:"Ekle",select_scene:"Sahneyi Se\xE7in"},HAt={byType:"Cihaz tipine g\xF6re",byPowerSource:"G\xFC\xE7 kayna\u011F\u0131na g\xF6re",byVendor:"\xDCreticiye g\xF6re",byModel:"Modeline g\xF6re",total:"Toplam",Router:"Y\xF6nlendirici"},jAt={avaliability:"Kullan\u0131labilirlik",offline:"\xC7evrimd\u0131\u015F\u0131",online:"\xC7evrimi\xE7i"},UAt={"Allow new devices to join (re-applied at restart)":"Yeni cihazlar\u0131n kat\u0131lmas\u0131na izin verin (yeniden ba\u015Flatma s\u0131ras\u0131nda yeniden uyguland\u0131)","Adapter type, not needed unless you are experiencing problems":"Adapt\xF6r t\xFCr\xFC, sorun ya\u015Famad\u0131\u011F\u0131n\u0131z s\xFCrece gerekli de\u011Fildir","Baud rate speed for serial port, this can be anything firmware support but default is 115200 for Z-Stack and EZSP, 38400 for Deconz, however note that some EZSP firmware need 57600":"Seri ba\u011Flant\u0131 noktas\u0131 i\xE7in baud h\u0131z\u0131 h\u0131z\u0131, bu herhangi bir \xFCr\xFCn yaz\u0131l\u0131m\u0131 deste\u011Fi olabilir, ancak Z-Stack ve EZSP i\xE7in varsay\u0131lan 115200, Deconz i\xE7in 38400'd\xFCr, ancak baz\u0131 EZSP \xFCr\xFCn yaz\u0131l\u0131m\u0131n\u0131n 57600'e ihtiya\xE7 duydu\u011Funu unutmay\u0131n","Block devices from the network (by ieeeAddr)":"A\u011Fdaki cihazlar\u0131 bloke edin (IEEADRDR taraf\u0131ndan)","Allow only certain devices to join the network (by ieeeAddr). Note that all devices not on the passlist will be removed from the network!":"Sadece belirli cihazlar\u0131n a\u011Fa kat\u0131lmas\u0131na izin verin (IEEADRDR taraf\u0131ndan). Ge\xE7i\u015F Listesinde olmayan t\xFCm cihazlar\u0131n a\u011Fdan kald\u0131r\u0131laca\u011F\u0131n\u0131 unutmay\u0131n!","Location of override OTA index file":" Location of override OTA index file ","Payload to be used for device availabilty and bridge/state topics. true = text, false = JSON":"","Adapter concurrency (e.g. 2 for CC2531 or 16 for CC26X2R1) (default: null, uses recommended value)":"Adapt\xF6r e\u015Fzamanl\u0131l\u0131\u011F\u0131 (\xF6rn. CC2531 i\xE7in 2 veya CC26X2R1 i\xE7in 16) (varsay\u0131lan: null, \xF6nerilen de\u011Feri kullan\u0131r)","Adapter delay":"Adapt\xF6r gecikmesi","Add a last_seen attribute to MQTT messages, contains date/time of last Zigbee message":"MQTT mesajlar\u0131na Last_Seen \xF6zniteli\u011Fi ekleyin, son zigbee mesaj\u0131n\u0131n tarih/saatini i\xE7erir","Add an elapsed attribute to MQTT messages, contains milliseconds since the previous msg":"MQTT mesajlar\u0131na ge\xE7en bir \xF6znitelik ekleyin, \xF6nceki MSG'den bu yana milisaniye i\xE7erir","Name of the device in Home Assistant":""},VAt={"Home Assistant (simple)":"Home Assistant (basit)","Home Assistant (advanced)":"Home Assistant (geli\u015Fmi\u015F)","Availability (simple)":"","Availability (advanced)":"Kullan\u0131labilirlik (Geli\u015Fmi\u015F)",Active:"Aktif",Timeout:"Zaman a\u015F\u0131m\u0131",Passive:"Pasif",Availability:"Kullan\u0131labilirlik","Base topic":"Temel Konu","MQTT server":"MQTT sunucusu","Certificate authority":"Sertifika yetkilisi","SSL/TLS key":"SSL/TLS anahtar\u0131","SSL/TLS certificate":"SSL/TLS Sertifikas\u0131",Password:"Parola",Serial:"Seri","Disable led":"LED'i devre d\u0131\u015F\u0131 b\u0131rak",Adapter:"Adapt\xF6r",Baudrate:"Bandh\u0131z\u0131",Blocklist:"Blok listesi",Networkmap:"A\u011F Haritas\u0131","OTA updates":"OTA g\xFCncellemeleri","OTA index override file name":"","Frontend (simple)":"\xD6ny\xFCz (basit)","Frontend (advanced)":"\xD6ny\xFCz (geli\u015Fmi\u015F)","Bind host":"Ba\u011Fl\u0131 ana bilgisayar","Auth token":"Kimlik Do\u011Frulamas\u0131 Anahtar\u0131",Frontend:"\xD6ny\xFCz","Options that are applied to all devices":"",Advanced:"Geli\u015Fmi\u015F Ayarlar","Legacy availability payload":"",Protocol:"Protokol",Path:"Yol",Type:"Tip","ZigBee channel":"Zigbee kanal\u0131","Adapter concurrency":"Adapt\xF6r e\u015Fzamanl\u0131l\u0131\u011F\u0131","Adapter delay":"Adapt\xF6r gecikmesi","Cache state":"\xD6nbellek Durumu","Last seen":"Son G\xF6r\xFClme",Elapsed:"Ge\xE7mi\u015F","Network key(string)":"A\u011F Anahtar\u0131 (Dize)","Network key(array)":"A\u011F Anahtar\u0131 (Dizi)","Network key":"A\u011F anahtar\u0131","Transmit power":"\u0130letim g\xFCc\xFC",Reporting:"Raporlama","Baudrate (deprecated)":"","RTS / CTS (deprecated)":"","IKEA TRADFRI OTA use test url (deprecated)":"","Experimental (deprecated)":"Deneysel (kullan\u0131mdan de\u011Fil)","Ban (deprecated, use blocklist)":"Yasak (kullan\u0131mdan kald\u0131r\u0131lm\u0131\u015F, blok listesini kullan\u0131n)","Friendly name":"Kolay ad",Optimistic:"\u0130yimser",Icon:"Simge","Home Assistant":"","Home Assistant name":""};var GAt={common:CAt,devicePage:EAt,exposes:IAt,extensions:DAt,featureDescriptions:xAt,featureNames:OAt,groups:MAt,logs:RAt,map:LAt,navbar:PAt,ota:$At,settings:zAt,touchlink:NAt,values:FAt,zigbee:BAt,scene:WAt,stats:HAt,avaliability:jAt,settingsSchemaDescriptions:UAt,settingsSchemaTitles:VAt},aY={};Object.defineProperty(aY,"__esModule",{value:!0});function qAt(e,t){return[["fa un moment","d'aqu\xED un moment"],["fa %s segons","d'aqu\xED %s segons"],["fa 1 minut","d'aqu\xED 1 minut"],["fa %s minuts","d'aqu\xED %s minuts"],["fa 1 hora","d'aqu\xED 1 hora"],["fa %s hores","d'aqu\xED %s hores"],["fa 1 dia","d'aqu\xED 1 dia"],["fa %s dies","d'aqu\xED %s dies"],["fa 1 setmana","d'aqu\xED 1 setmana"],["fa %s setmanes","d'aqu\xED %s setmanes"],["fa 1 mes","d'aqu\xED 1 mes"],["fa %s mesos","d'aqu\xED %s mesos"],["fa 1 any","d'aqu\xED 1 any"],["fa %s anys","d'aqu\xED %s anys"]][t]}var KAt=aY.default=qAt,iY={};Object.defineProperty(iY,"__esModule",{value:!0});var QAt=[["w tej chwili","za chwil\u0119"],["%s sekund temu","za %s sekund"],["1 minut\u0119 temu","za 1 minut\u0119"],["%s minut temu","za %s minut"],["1 godzin\u0119 temu","za 1 godzin\u0119"],["%s godzin temu","za %s godzin"],["1 dzie\u0144 temu","za 1 dzie\u0144"],["%s dni temu","za %s dni"],["1 tydzie\u0144 temu","za 1 tydzie\u0144"],["%s tygodni temu","za %s tygodni"],["1 miesi\u0105c temu","za 1 miesi\u0105c"],["%s miesi\u0119cy temu","za %s miesi\u0119cy"],["1 rok temu","za 1 rok"],["%s lat temu","za %s lat"],["%s sekundy temu","za %s sekundy"],["%s minuty temu","za %s minuty"],["%s godziny temu","za %s godziny"],["%s dni temu","za %s dni"],["%s tygodnie temu","za %s tygodnie"],["%s miesi\u0105ce temu","za %s miesi\u0105ce"],["%s lata temu","za %s lata"]];function ZAt(e,t){return QAt[t&1?e%10>4||e%10<2||~~(e/10)%10===1?t:++t/2+13:t]}var YAt=iY.default=ZAt,oY={};Object.defineProperty(oY,"__esModule",{value:!0});function XAt(e,t){return[["\xE0 l'instant","dans un instant"],["il y a %s secondes","dans %s secondes"],["il y a 1 minute","dans 1 minute"],["il y a %s minutes","dans %s minutes"],["il y a 1 heure","dans 1 heure"],["il y a %s heures","dans %s heures"],["il y a 1 jour","dans 1 jour"],["il y a %s jours","dans %s jours"],["il y a 1 semaine","dans 1 semaine"],["il y a %s semaines","dans %s semaines"],["il y a 1 mois","dans 1 mois"],["il y a %s mois","dans %s mois"],["il y a 1 an","dans 1 an"],["il y a %s ans","dans %s ans"]][t]}var JAt=oY.default=XAt,sY={};Object.defineProperty(sY,"__esModule",{value:!0});function eTt(e,t){return[["gerade eben","vor einer Weile"],["vor %s Sekunden","in %s Sekunden"],["vor 1 Minute","in 1 Minute"],["vor %s Minuten","in %s Minuten"],["vor 1 Stunde","in 1 Stunde"],["vor %s Stunden","in %s Stunden"],["vor 1 Tag","in 1 Tag"],["vor %s Tagen","in %s Tagen"],["vor 1 Woche","in 1 Woche"],["vor %s Wochen","in %s Wochen"],["vor 1 Monat","in 1 Monat"],["vor %s Monaten","in %s Monaten"],["vor 1 Jahr","in 1 Jahr"],["vor %s Jahren","in %s Jahren"]][t]}var tTt=sY.default=eTt,lY={};Object.defineProperty(lY,"__esModule",{value:!0});function ku(e,t,r,n,a){var i=a%10,o=n;return a===1?o=e:i===1&&a>20?o=t:i>1&&i<5&&(a>20||a<10)&&(o=r),o}var aW=ku.bind(null,"\u0441\u0435\u043A\u0443\u043D\u0434\u0443","%s \u0441\u0435\u043A\u0443\u043D\u0434\u0443","%s \u0441\u0435\u043A\u0443\u043D\u0434\u044B","%s \u0441\u0435\u043A\u0443\u043D\u0434"),iW=ku.bind(null,"\u043C\u0438\u043D\u0443\u0442\u0443","%s \u043C\u0438\u043D\u0443\u0442\u0443","%s \u043C\u0438\u043D\u0443\u0442\u044B","%s \u043C\u0438\u043D\u0443\u0442"),oW=ku.bind(null,"\u0447\u0430\u0441","%s \u0447\u0430\u0441","%s \u0447\u0430\u0441\u0430","%s \u0447\u0430\u0441\u043E\u0432"),sW=ku.bind(null,"\u0434\u0435\u043D\u044C","%s \u0434\u0435\u043D\u044C","%s \u0434\u043D\u044F","%s \u0434\u043D\u0435\u0439"),lW=ku.bind(null,"\u043D\u0435\u0434\u0435\u043B\u044E","%s \u043D\u0435\u0434\u0435\u043B\u044E","%s \u043D\u0435\u0434\u0435\u043B\u0438","%s \u043D\u0435\u0434\u0435\u043B\u044C"),uW=ku.bind(null,"\u043C\u0435\u0441\u044F\u0446","%s \u043C\u0435\u0441\u044F\u0446","%s \u043C\u0435\u0441\u044F\u0446\u0430","%s \u043C\u0435\u0441\u044F\u0446\u0435\u0432"),dW=ku.bind(null,"\u0433\u043E\u0434","%s \u0433\u043E\u0434","%s \u0433\u043E\u0434\u0430","%s \u043B\u0435\u0442");function rTt(e,t){switch(t){case 0:return["\u0442\u043E\u043B\u044C\u043A\u043E \u0447\u0442\u043E","\u0447\u0435\u0440\u0435\u0437 \u043D\u0435\u0441\u043A\u043E\u043B\u044C\u043A\u043E \u0441\u0435\u043A\u0443\u043D\u0434"];case 1:return[aW(e)+" \u043D\u0430\u0437\u0430\u0434","\u0447\u0435\u0440\u0435\u0437 "+aW(e)];case 2:case 3:return[iW(e)+" \u043D\u0430\u0437\u0430\u0434","\u0447\u0435\u0440\u0435\u0437 "+iW(e)];case 4:case 5:return[oW(e)+" \u043D\u0430\u0437\u0430\u0434","\u0447\u0435\u0440\u0435\u0437 "+oW(e)];case 6:return["\u0432\u0447\u0435\u0440\u0430","\u0437\u0430\u0432\u0442\u0440\u0430"];case 7:return[sW(e)+" \u043D\u0430\u0437\u0430\u0434","\u0447\u0435\u0440\u0435\u0437 "+sW(e)];case 8:case 9:return[lW(e)+" \u043D\u0430\u0437\u0430\u0434","\u0447\u0435\u0440\u0435\u0437 "+lW(e)];case 10:case 11:return[uW(e)+" \u043D\u0430\u0437\u0430\u0434","\u0447\u0435\u0440\u0435\u0437 "+uW(e)];case 12:case 13:return[dW(e)+" \u043D\u0430\u0437\u0430\u0434","\u0447\u0435\u0440\u0435\u0437 "+dW(e)];default:return["",""]}}var nTt=lY.default=rTt,uY={};Object.defineProperty(uY,"__esModule",{value:!0});function aTt(e,t){return[["agora mesmo","agora"],["h\xE1 %s segundos","em %s segundos"],["h\xE1 um minuto","em um minuto"],["h\xE1 %s minutos","em %s minutos"],["h\xE1 uma hora","em uma hora"],["h\xE1 %s horas","em %s horas"],["h\xE1 um dia","em um dia"],["h\xE1 %s dias","em %s dias"],["h\xE1 uma semana","em uma semana"],["h\xE1 %s semanas","em %s semanas"],["h\xE1 um m\xEAs","em um m\xEAs"],["h\xE1 %s meses","em %s meses"],["h\xE1 um ano","em um ano"],["h\xE1 %s anos","em %s anos"]][t]}var iTt=uY.default=aTt,dY={};Object.defineProperty(dY,"__esModule",{value:!0});function oTt(e,t){return[["justo ahora","en un rato"],["hace %s segundos","en %s segundos"],["hace 1 minuto","en 1 minuto"],["hace %s minutos","en %s minutos"],["hace 1 hora","en 1 hora"],["hace %s horas","en %s horas"],["hace 1 d\xEDa","en 1 d\xEDa"],["hace %s d\xEDas","en %s d\xEDas"],["hace 1 semana","en 1 semana"],["hace %s semanas","en %s semanas"],["hace 1 mes","en 1 mes"],["hace %s meses","en %s meses"],["hace 1 a\xF1o","en 1 a\xF1o"],["hace %s a\xF1os","en %s a\xF1os"]][t]}var sTt=dY.default=oTt,cY={};Object.defineProperty(cY,"__esModule",{value:!0});function Cu(e,t,r,n,a){var i=a%10,o=n;return a===1?o=e:i===1&&a>20?o=t:i>1&&i<5&&(a>20||a<10)&&(o=r),o}var cW=Cu.bind(null,"\u0441\u0435\u043A\u0443\u043D\u0434\u0443","%s \u0441\u0435\u043A\u0443\u043D\u0434\u0443","%s \u0441\u0435\u043A\u0443\u043D\u0434\u0438","%s \u0441\u0435\u043A\u0443\u043D\u0434"),hW=Cu.bind(null,"\u0445\u0432\u0438\u043B\u0438\u043D\u0443","%s \u0445\u0432\u0438\u043B\u0438\u043D\u0443","%s \u0445\u0432\u0438\u043B\u0438\u043D\u0438","%s \u0445\u0432\u0438\u043B\u0438\u043D"),mW=Cu.bind(null,"\u0433\u043E\u0434\u0438\u043D\u0443","%s \u0433\u043E\u0434\u0438\u043D\u0443","%s \u0433\u043E\u0434\u0438\u043D\u0438","%s \u0433\u043E\u0434\u0438\u043D"),fW=Cu.bind(null,"\u0434\u0435\u043D\u044C","%s \u0434\u0435\u043D\u044C","%s \u0434\u043D\u0456","%s \u0434\u043D\u0456\u0432"),pW=Cu.bind(null,"\u0442\u0438\u0436\u0434\u0435\u043D\u044C","%s \u0442\u0438\u0436\u0434\u0435\u043D\u044C","%s \u0442\u0438\u0436\u0434\u043D\u0456","%s \u0442\u0438\u0436\u0434\u043D\u0456\u0432"),gW=Cu.bind(null,"\u043C\u0456\u0441\u044F\u0446\u044C","%s \u043C\u0456\u0441\u044F\u0446\u044C","%s \u043C\u0456\u0441\u044F\u0446\u0456","%s \u043C\u0456\u0441\u044F\u0446\u0456\u0432"),vW=Cu.bind(null,"\u0440\u0456\u043A","%s \u0440\u0456\u043A","%s \u0440\u043E\u043A\u0438","%s \u0440\u043E\u043A\u0456\u0432");function lTt(e,t){switch(t){case 0:return["\u0449\u043E\u0439\u043D\u043E","\u0447\u0435\u0440\u0435\u0437 \u0434\u0435\u043A\u0456\u043B\u044C\u043A\u0430 \u0441\u0435\u043A\u0443\u043D\u0434"];case 1:return[cW(e)+" \u0442\u043E\u043C\u0443","\u0447\u0435\u0440\u0435\u0437 "+cW(e)];case 2:case 3:return[hW(e)+" \u0442\u043E\u043C\u0443","\u0447\u0435\u0440\u0435\u0437 "+hW(e)];case 4:case 5:return[mW(e)+" \u0442\u043E\u043C\u0443","\u0447\u0435\u0440\u0435\u0437 "+mW(e)];case 6:case 7:return[fW(e)+" \u0442\u043E\u043C\u0443","\u0447\u0435\u0440\u0435\u0437 "+fW(e)];case 8:case 9:return[pW(e)+" \u0442\u043E\u043C\u0443","\u0447\u0435\u0440\u0435\u0437 "+pW(e)];case 10:case 11:return[gW(e)+" \u0442\u043E\u043C\u0443","\u0447\u0435\u0440\u0435\u0437 "+gW(e)];case 12:case 13:return[vW(e)+" \u0442\u043E\u043C\u0443","\u0447\u0435\u0440\u0435\u0437 "+vW(e)];default:return["",""]}}var uTt=cY.default=lTt,hY={};Object.defineProperty(hY,"__esModule",{value:!0});var dTt=["\u79D2","\u5206\u949F","\u5C0F\u65F6","\u5929","\u5468","\u4E2A\u6708","\u5E74"];function cTt(e,t){if(t===0)return["\u521A\u521A","\u7247\u523B\u540E"];var r=dTt[~~(t/2)];return[e+" "+r+"\u524D",e+" "+r+"\u540E"]}var hTt=hY.default=cTt,mY={};Object.defineProperty(mY,"__esModule",{value:!0});function mTt(e,t){return[["recent","binnenkort"],["%s seconden geleden","binnen %s seconden"],["1 minuut geleden","binnen 1 minuut"],["%s minuten geleden","binnen %s minuten"],["1 uur geleden","binnen 1 uur"],["%s uur geleden","binnen %s uur"],["1 dag geleden","binnen 1 dag"],["%s dagen geleden","binnen %s dagen"],["1 week geleden","binnen 1 week"],["%s weken geleden","binnen %s weken"],["1 maand geleden","binnen 1 maand"],["%s maanden geleden","binnen %s maanden"],["1 jaar geleden","binnen 1 jaar"],["%s jaar geleden","binnen %s jaar"]][t]}var fTt=mY.default=mTt,fY={};Object.defineProperty(fY,"__esModule",{value:!0});function pTt(e,t){return[["poco fa","fra poco"],["%s secondi fa","fra %s secondi"],["un minuto fa","fra un minuto"],["%s minuti fa","fra %s minuti"],["un'ora fa","fra un'ora"],["%s ore fa","fra %s ore"],["un giorno fa","fra un giorno"],["%s giorni fa","fra %s giorni"],["una settimana fa","fra una settimana"],["%s settimane fa","fra %s settimane"],["un mese fa","fra un mese"],["%s mesi fa","fra %s mesi"],["un anno fa","fra un anno"],["%s anni fa","fra %s anni"]][t]}var gTt=fY.default=pTt,pY={};Object.defineProperty(pY,"__esModule",{value:!0});function vTt(e,t){return[["\u525B\u525B","\u7247\u523B\u5F8C"],["%s \u79D2\u524D","%s \u79D2\u5F8C"],["1 \u5206\u9418\u524D","1 \u5206\u9418\u5F8C"],["%s \u5206\u9418\u524D","%s \u5206\u9418\u5F8C"],["1 \u5C0F\u6642\u524D","1 \u5C0F\u6642\u5F8C"],["%s \u5C0F\u6642\u524D","%s \u5C0F\u6642\u5F8C"],["1 \u5929\u524D","1 \u5929\u5F8C"],["%s \u5929\u524D","%s \u5929\u5F8C"],["1 \u9031\u524D","1 \u9031\u5F8C"],["%s \u9031\u524D","%s \u9031\u5F8C"],["1 \u500B\u6708\u524D","1 \u500B\u6708\u5F8C"],["%s \u500B\u6708\u524D","%s \u500B\u6708\u5F8C"],["1 \u5E74\u524D","1 \u5E74\u5F8C"],["%s \u5E74\u524D","%s \u5E74\u5F8C"]][t]}var yTt=pY.default=vTt,gY={};Object.defineProperty(gY,"__esModule",{value:!0});function _Tt(e,t){return[["\uBC29\uAE08","\uACE7"],["%s\uCD08 \uC804","%s\uCD08 \uD6C4"],["1\uBD84 \uC804","1\uBD84 \uD6C4"],["%s\uBD84 \uC804","%s\uBD84 \uD6C4"],["1\uC2DC\uAC04 \uC804","1\uC2DC\uAC04 \uD6C4"],["%s\uC2DC\uAC04 \uC804","%s\uC2DC\uAC04 \uD6C4"],["1\uC77C \uC804","1\uC77C \uD6C4"],["%s\uC77C \uC804","%s\uC77C \uD6C4"],["1\uC8FC\uC77C \uC804","1\uC8FC\uC77C \uD6C4"],["%s\uC8FC\uC77C \uC804","%s\uC8FC\uC77C \uD6C4"],["1\uAC1C\uC6D4 \uC804","1\uAC1C\uC6D4 \uD6C4"],["%s\uAC1C\uC6D4 \uC804","%s\uAC1C\uC6D4 \uD6C4"],["1\uB144 \uC804","1\uB144 \uD6C4"],["%s\uB144 \uC804","%s\uB144 \uD6C4"]][t]}var bTt=gY.default=_Tt,vY={};Object.defineProperty(vY,"__esModule",{value:!0});function wTt(e,t){var r=0,n=t==1||t==3||t==5||t==7||t==9||t==11||t==13;return n&&e>=5&&(r=1),[[["pr\xE1v\u011B te\u010F","pr\xE1v\u011B te\u010F"]],[["p\u0159ed %s vte\u0159inami","za %s vte\u0159iny"],["p\u0159ed %s vte\u0159inami","za %s vte\u0159in"]],[["p\u0159ed minutou","za minutu"]],[["p\u0159ed %s minutami","za %s minuty"],["p\u0159ed %s minutami","za %s minut"]],[["p\u0159ed hodinou","za hodinu"]],[["p\u0159ed %s hodinami","za %s hodiny"],["p\u0159ed %s hodinami","za %s hodin"]],[["v\u010Dera","z\xEDtra"]],[["p\u0159ed %s dny","za %s dny"],["p\u0159ed %s dny","za %s dn\u016F"]],[["minul\xFD t\xFDden","p\u0159\xED\u0161t\xED t\xFDden"]],[["p\u0159ed %s t\xFDdny","za %s t\xFDdny"],["p\u0159ed %s t\xFDdny","za %s t\xFDdn\u016F"]],[["minul\xFD m\u011Bs\xEDc","p\u0159\xEDst\xED m\u011Bs\xEDc"]],[["p\u0159ed %s m\u011Bs\xEDci","za %s m\u011Bs\xEDce"],["p\u0159ed %s m\u011Bs\xEDci","za %s m\u011Bs\xEDc\u016F"]],[["p\u0159ed rokem","p\u0159\xEDst\xED rok"]],[["p\u0159ed %s lety","za %s roky"],["p\u0159ed %s lety","za %s let"]]][t][r]}var STt=vY.default=wTt,yY={};Object.defineProperty(yY,"__esModule",{value:!0});function ATt(e,t){return[["juuri \xE4sken","juuri nyt"],["%s sekuntia sitten","%s sekunnin p\xE4\xE4st\xE4"],["minuutti sitten","minuutin p\xE4\xE4st\xE4"],["%s minuuttia sitten","%s minuutin p\xE4\xE4st\xE4"],["tunti sitten","tunnin p\xE4\xE4st\xE4"],["%s tuntia sitten","%s tunnin p\xE4\xE4st\xE4"],["p\xE4iv\xE4 sitten","p\xE4iv\xE4n p\xE4\xE4st\xE4"],["%s p\xE4iv\xE4\xE4 sitten","%s p\xE4iv\xE4n p\xE4\xE4st\xE4"],["viikko sitten","viikon p\xE4\xE4st\xE4"],["%s viikkoa sitten","%s viikon p\xE4\xE4st\xE4"],["kuukausi sitten","kuukauden p\xE4\xE4st\xE4"],["%s kuukautta sitten","%s kuukauden p\xE4\xE4st\xE4"],["vuosi sitten","vuoden p\xE4\xE4st\xE4"],["%s vuotta sitten","%s vuoden p\xE4\xE4st\xE4"]][t]}var TTt=yY.default=ATt,_Y={};Object.defineProperty(_Y,"__esModule",{value:!0});function kTt(e,t){return[["just nu","om en stund"],["%s sekunder sedan","om %s sekunder"],["1 minut sedan","om 1 minut"],["%s minuter sedan","om %s minuter"],["1 timme sedan","om 1 timme"],["%s timmar sedan","om %s timmar"],["1 dag sedan","om 1 dag"],["%s dagar sedan","om %s dagar"],["1 vecka sedan","om 1 vecka"],["%s veckor sedan","om %s veckor"],["1 m\xE5nad sedan","om 1 m\xE5nad"],["%s m\xE5nader sedan","om %s m\xE5nader"],["1 \xE5r sedan","om 1 \xE5r"],["%s \xE5r sedan","om %s \xE5r"]][t]}var CTt=_Y.default=kTt,bY={};Object.defineProperty(bY,"__esModule",{value:!0});function ETt(e,t){return[["az \xF6nce","\u015Fimdi"],["%s saniye \xF6nce","%s saniye i\xE7inde"],["1 dakika \xF6nce","1 dakika i\xE7inde"],["%s dakika \xF6nce","%s dakika i\xE7inde"],["1 saat \xF6nce","1 saat i\xE7inde"],["%s saat \xF6nce","%s saat i\xE7inde"],["1 g\xFCn \xF6nce","1 g\xFCn i\xE7inde"],["%s g\xFCn \xF6nce","%s g\xFCn i\xE7inde"],["1 hafta \xF6nce","1 hafta i\xE7inde"],["%s hafta \xF6nce","%s hafta i\xE7inde"],["1 ay \xF6nce","1 ay i\xE7inde"],["%s ay \xF6nce","%s ay i\xE7inde"],["1 y\u0131l \xF6nce","1 y\u0131l i\xE7inde"],["%s y\u0131l \xF6nce","%s y\u0131l i\xE7inde"]][t]}var ITt=bY.default=ETt;Wr("ca",KAt);Wr("pl",YAt);Wr("fr",JAt);Wr("de",tTt);Wr("ru",nTt);Wr("ptbr",iTt);Wr("es",sTt);Wr("ua",uTt);Wr("chs",hTt);Wr("nl",fTt);Wr("it",gTt);Wr("ko",bTt);Wr("zh",yTt);Wr("cs",STt);Wr("fi",TTt);Wr("sv",CTt);Wr("tr",ITt);const wY={ca:g_t,en:nY,fr:nbt,pl:Tbt,de:Vbt,ru:hwt,ptbr:Rwt,es:e0t,ua:w0t,chs:H0t,nl:u1t,it:x1t,zh:Y1t,ko:vSt,cs:NSt,fi:aAt,sv:kAt,tr:GAt},DTt=!1;Hr.on("languageChanged",e=>{document.documentElement.lang=e});Hr.use(rY).use(Kze).init({fallbackLng:"en",debug:DTt,resources:wY,ns:Object.keys(nY)});const xTt=Hr.language.split("-")[0].toLocaleLowerCase();wY[xTt]||Hr.changeLanguage("en");var OTt="assets/light.5a8dab40.css?used",MTt="assets/dark.776a264b.css?used";const RTt={light:OTt,dark:MTt};zt.connect();const LTt=()=>{const{theme:e}=ir.getState();return de(St,{children:[x(ac.NotificationContainer,{}),x(tNe,{i18n:Hr,children:x(hi.Provider,{children:x(G9,{store:ir,children:x(opt,{themeMap:RTt,defaultTheme:e,children:x(s9e,{children:de("div",{className:"main",children:[x(Zpt,{}),x("main",{className:"content p-0 p-sm-3",children:x("div",{className:"container-fluid p-0 h-100",children:de(o9e,{children:[x(Qa,{path:"/ota",render:t=>x(Xa,He(Se({},t),{children:x(hgt,{})}))}),x(Qa,{path:"/map",render:t=>x(Xa,He(Se({},t),{children:x(s7e,{})}))}),x(Qa,{path:"/device/:dev/:tab?",render:t=>x(Xa,He(Se({},t),{children:x(pft,{})}))}),x(Qa,{path:"/settings/:tab?",render:t=>x(Xa,He(Se({},t),{children:x(Jft,{})}))}),x(Qa,{path:"/groups",render:t=>x(Xa,He(Se({},t),{children:x(rgt,{})}))}),x(Qa,{path:"/group/:groupId?",render:t=>x(Xa,He(Se({},t),{children:x(iyt,{})}))}),x(Qa,{path:"/logs",render:t=>x(Xa,He(Se({},t),{children:x(tft,{})}))}),x(Qa,{path:"/touchlink",render:t=>x(Xa,He(Se({},t),{children:x(Sft,{})}))}),x(Qa,{path:"/dashboard",render:t=>x(Xa,He(Se({},t),{children:x(Tgt,{})}))}),x(Qa,{path:"/extensions",render:t=>x(Xa,He(Se({},t),{children:x(Jvt,{})}))}),x(Qa,{path:"/",render:t=>x(Xa,He(Se({},t),{children:x(sgt,{})}))})]})})})]})})})})})})]})};Hd.render(x(LTt,{}),document.getElementById("root"));