Auto-indexing service and GraphQL API for AT Protocol Records quickslice.slices.network/
atproto gleam graphql

Custom validation of records #1

open opened by byjp.me targeting main from byjp.me/quickslice: validation

I've had a crack at building customizable validation for records as they're ingested (from jetstream, from backfill, or when created with a mutation).

With this PR, quickslices imports CommonJS "validatior" scripts from the lexicons.zip when paired with the lexicon JSON (eg. a app/bsky/feed/post.js next to app/bsky/feed/post.json), and then uses a partner NodeJS worker to only ingest records which the relevant function returns true (or Promise<true>) for.

The CommonJS must export a default function, and must return a boolean, or a Promise of a boolean:

exports.default = function(record) {
  return !record.text?.startsWith('X');
}

Please note: This is the first time I've worked with Gleam (and I've only barely touched Erlang)! I've tested this with my own use case, but this was heavily driven by an AI โ€” I'd appreciate a thorough critique and any pointers!

Fixes #5

Labels

None yet.

assignee

None yet.

Participants 1
AT URI
at://did:plc:ephkzpinhaqcabtkugtbzrwu/sh.tangled.repo.pull/3mcxhb63y7n22
+1566 -374
Diff #0
+18
server/db/migrations/20260120000001_add_lexicon_validator.sql
···
··· 1 + -- migrate:up 2 + 3 + -- Add validator_js column to lexicon table for JavaScript validators 4 + ALTER TABLE lexicon ADD COLUMN validator_js TEXT; 5 + 6 + -- migrate:down 7 + 8 + -- SQLite doesn't support DROP COLUMN in older versions, so we recreate the table 9 + CREATE TABLE lexicon_backup AS SELECT id, json, created_at FROM lexicon; 10 + DROP TABLE lexicon; 11 + CREATE TABLE lexicon ( 12 + id TEXT PRIMARY KEY NOT NULL, 13 + json TEXT NOT NULL, 14 + created_at TEXT NOT NULL DEFAULT (datetime('now')) 15 + ); 16 + INSERT INTO lexicon SELECT * FROM lexicon_backup; 17 + DROP TABLE lexicon_backup; 18 + CREATE INDEX IF NOT EXISTS idx_lexicon_created_at ON lexicon(created_at DESC);
+8
server/db/migrations_postgres/20260120000001_add_lexicon_validator.sql
···
··· 1 + -- migrate:up 2 + 3 + -- Add validator_js column to lexicon table for JavaScript validators 4 + ALTER TABLE lexicon ADD COLUMN validator_js TEXT; 5 + 6 + -- migrate:down 7 + 8 + ALTER TABLE lexicon DROP COLUMN validator_js;
+3 -2
server/db/schema.sql
··· 26 id TEXT PRIMARY KEY NOT NULL, 27 json TEXT NOT NULL, 28 created_at TEXT NOT NULL DEFAULT (datetime('now')) 29 - ); 30 CREATE INDEX idx_lexicon_created_at ON lexicon(created_at DESC); 31 CREATE TABLE config ( 32 key TEXT PRIMARY KEY NOT NULL, ··· 243 ('20241210000001'), 244 ('20241227000001'), 245 ('20251229000001'), 246 - ('20251230000001');
··· 26 id TEXT PRIMARY KEY NOT NULL, 27 json TEXT NOT NULL, 28 created_at TEXT NOT NULL DEFAULT (datetime('now')) 29 + , validator_js TEXT); 30 CREATE INDEX idx_lexicon_created_at ON lexicon(created_at DESC); 31 CREATE TABLE config ( 32 key TEXT PRIMARY KEY NOT NULL, ··· 243 ('20241210000001'), 244 ('20241227000001'), 245 ('20251229000001'), 246 + ('20251230000001'), 247 + ('20260120000001');
+13 -13
server/priv/static/quickslice_client.js
··· 1 - var Ah=Object.defineProperty;var PL=(Z,J)=>{for(var K in J)Ah(Z,K,{get:J[K],enumerable:!0,configurable:!0,set:(X)=>J[K]=()=>X})};class O{withFields(Z){let J=Object.keys(this).map((K)=>(K in Z)?Z[K]:this[K]);return new this.constructor(...J)}}class r0{static fromArray(Z,J){let K=J||new M;for(let X=Z.length-1;X>=0;--X)K=new $1(Z[X],K);return K}[Symbol.iterator](){return new EL(this)}toArray(){return[...this]}atLeastLength(Z){let J=this;while(Z-- >0&&J)J=J.tail;return J!==void 0}hasLength(Z){let J=this;while(Z-- >0&&J)J=J.tail;return Z===-1&&J instanceof M}countLength(){let Z=this,J=0;while(Z)Z=Z.tail,J++;return J-1}}function A(Z,J){return new $1(Z,J)}function Q(Z,J){return r0.fromArray(Z,J)}class EL{#Z;constructor(Z){this.#Z=Z}next(){if(this.#Z instanceof M)return{done:!0};else{let{head:Z,tail:J}=this.#Z;return this.#Z=J,{value:Z,done:!1}}}}class M extends r0{}class $1 extends r0{constructor(Z,J){super();this.head=Z,this.tail=J}}var CL=(Z)=>Z instanceof $1,xL=(Z)=>Z.head,wL=(Z)=>Z.tail;class xZ{bitSize;byteSize;bitOffset;rawBuffer;constructor(Z,J,K){if(!(Z instanceof Uint8Array))throw globalThis.Error("BitArray can only be constructed from a Uint8Array");if(this.bitSize=J??Z.length*8,this.byteSize=Math.trunc((this.bitSize+7)/8),this.bitOffset=K??0,this.bitSize<0)throw globalThis.Error(`BitArray bit size is invalid: ${this.bitSize}`);if(this.bitOffset<0||this.bitOffset>7)throw globalThis.Error(`BitArray bit offset is invalid: ${this.bitOffset}`);if(Z.length!==Math.trunc((this.bitOffset+this.bitSize+7)/8))throw globalThis.Error("BitArray buffer length is invalid");this.rawBuffer=Z}byteAt(Z){if(Z<0||Z>=this.byteSize)return;return CZ(this.rawBuffer,this.bitOffset,Z)}equals(Z){if(this.bitSize!==Z.bitSize)return!1;let J=Math.trunc(this.bitSize/8);if(this.bitOffset===0&&Z.bitOffset===0){for(let X=0;X<J;X++)if(this.rawBuffer[X]!==Z.rawBuffer[X])return!1;let K=this.bitSize%8;if(K){let X=8-K;if(this.rawBuffer[J]>>X!==Z.rawBuffer[J]>>X)return!1}}else{for(let X=0;X<J;X++){let W=CZ(this.rawBuffer,this.bitOffset,X),Y=CZ(Z.rawBuffer,Z.bitOffset,X);if(W!==Y)return!1}let K=this.bitSize%8;if(K){let X=CZ(this.rawBuffer,this.bitOffset,J),W=CZ(Z.rawBuffer,Z.bitOffset,J),Y=8-K;if(X>>Y!==W>>Y)return!1}}return!0}get buffer(){if(AL("buffer","Use BitArray.byteAt() or BitArray.rawBuffer instead"),this.bitOffset!==0||this.bitSize%8!==0)throw new globalThis.Error("BitArray.buffer does not support unaligned bit arrays");return this.rawBuffer}get length(){if(AL("length","Use BitArray.bitSize or BitArray.byteSize instead"),this.bitOffset!==0||this.bitSize%8!==0)throw new globalThis.Error("BitArray.length does not support unaligned bit arrays");return this.rawBuffer.length}}function CZ(Z,J,K){if(J===0)return Z[K]??0;else{let X=Z[K]<<J&255,W=Z[K+1]>>8-J;return X|W}}class _M{constructor(Z){this.value=Z}}var SL={};function AL(Z,J){if(SL[Z])return;console.warn(`Deprecated BitArray.${Z} property used in JavaScript FFI code. ${J}.`),SL[Z]=!0}class Z4 extends O{static isResult(Z){return Z instanceof Z4}}class E extends Z4{constructor(Z){super();this[0]=Z}isOk(){return!0}}var UL=(Z)=>new E(Z);class v extends Z4{constructor(Z){super();this[0]=Z}isOk(){return!1}}var ML=(Z)=>new v(Z);function P0(Z,J){let K=[Z,J];while(K.length){let X=K.pop(),W=K.pop();if(X===W)continue;if(!qL(X)||!qL(W))return!1;if(!Rh(X,W)||Eh(X,W)||Ch(X,W)||xh(X,W)||wh(X,W)||Uh(X,W)||Mh(X,W))return!1;let V=Object.getPrototypeOf(X);if(V!==null&&typeof V.equals==="function")try{if(X.equals(W))continue;else return!1}catch{}let[G,I]=qh(X),z=G(X),N=G(W);if(z.length!==N.length)return!1;for(let F of z)K.push(I(X,F),I(W,F))}return!0}function qh(Z){if(Z instanceof Map)return[(J)=>J.keys(),(J,K)=>J.get(K)];else{let J=Z instanceof globalThis.Error?["message"]:[];return[(K)=>[...J,...Object.keys(K)],(K,X)=>K[X]]}}function Eh(Z,J){return Z instanceof Date&&(Z>J||Z<J)}function Ch(Z,J){return!(Z instanceof xZ)&&Z.buffer instanceof ArrayBuffer&&Z.BYTES_PER_ELEMENT&&!(Z.byteLength===J.byteLength&&Z.every((K,X)=>K===J[X]))}function xh(Z,J){return Array.isArray(Z)&&Z.length!==J.length}function wh(Z,J){return Z instanceof Map&&Z.size!==J.size}function Uh(Z,J){return Z instanceof Set&&(Z.size!=J.size||[...Z].some((K)=>!J.has(K)))}function Mh(Z,J){return Z instanceof RegExp&&(Z.source!==J.source||Z.flags!==J.flags)}function qL(Z){return typeof Z==="object"&&Z!==null}function Rh(Z,J){if(typeof Z!=="object"&&typeof J!=="object"&&(!Z||!J))return!1;if([Promise,WeakSet,WeakMap,Function].some((X)=>Z instanceof X))return!1;return Z.constructor===J.constructor}function lJ(Z,J){if(J===0)return 0;else return Z/J}function s8(Z,J,K,X,W,Y,V){let G=new globalThis.Error(Y);G.gleam_error=Z,G.file=J,G.module=K,G.line=X,G.function=W,G.fn=W;for(let I in V)G[I]=V[I];return G}class Z1 extends O{}class J1 extends O{}class R8 extends O{}class L extends O{constructor(Z){super();this[0]=Z}}class b extends O{}function mM(Z,J){if(Z instanceof L){let K=Z[0];return new E(K)}else return new v(J)}function uM(Z){if(Z instanceof E){let J=Z[0];return new L(J)}else return new b}function RL(Z,J){if(Z instanceof L)return Z[0];else return J}function dM(Z,J){if(Z instanceof L){let K=Z[0];return J(K)}else return Z}var jL=new WeakMap,cM=new DataView(new ArrayBuffer(8)),pM=0;function nM(Z){let J=jL.get(Z);if(J!==void 0)return J;let K=pM++;if(pM===2147483647)pM=0;return jL.set(Z,K),K}function iM(Z,J){return Z^J+2654435769+(Z<<6)+(Z>>2)|0}function sM(Z){let J=0,K=Z.length;for(let X=0;X<K;X++)J=Math.imul(31,J)+Z.charCodeAt(X)|0;return J}function yL(Z){cM.setFloat64(0,Z);let J=cM.getInt32(0),K=cM.getInt32(4);return Math.imul(73244475,J>>16^J)^K}function jh(Z){return sM(Z.toString())}function Lh(Z){let J=Object.getPrototypeOf(Z);if(J!==null&&typeof J.hashCode==="function")try{let X=Z.hashCode(Z);if(typeof X==="number")return X}catch{}if(Z instanceof Promise||Z instanceof WeakSet||Z instanceof WeakMap)return nM(Z);if(Z instanceof Date)return yL(Z.getTime());let K=0;if(Z instanceof ArrayBuffer)Z=new Uint8Array(Z);if(Array.isArray(Z)||Z instanceof Uint8Array)for(let X=0;X<Z.length;X++)K=Math.imul(31,K)+l1(Z[X])|0;else if(Z instanceof Set)Z.forEach((X)=>{K=K+l1(X)|0});else if(Z instanceof Map)Z.forEach((X,W)=>{K=K+iM(l1(X),l1(W))|0});else{let X=Object.keys(Z);for(let W=0;W<X.length;W++){let Y=X[W],V=Z[Y];K=K+iM(l1(V),sM(Y))|0}}return K}function l1(Z){if(Z===null)return 1108378658;if(Z===void 0)return 1108378659;if(Z===!0)return 1108378657;if(Z===!1)return 1108378656;switch(typeof Z){case"number":return yL(Z);case"string":return sM(Z);case"bigint":return jh(Z);case"object":return Lh(Z);case"symbol":return nM(Z);case"function":return nM(Z);default:return 0}}var F8=5,rM=Math.pow(2,F8),yh=rM-1,fh=rM/2,kh=rM/4,C1=0,N8=1,g1=2,q5=3,aM={type:g1,bitmap:0,array:[]};function wZ(Z,J){return Z>>>J&yh}function rJ(Z,J){return 1<<wZ(Z,J)}function bh(Z){return Z-=Z>>1&1431655765,Z=(Z&858993459)+(Z>>2&858993459),Z=Z+(Z>>4)&252645135,Z+=Z>>8,Z+=Z>>16,Z&127}function tM(Z,J){return bh(Z&J-1)}function s1(Z,J,K){let X=Z.length,W=Array(X);for(let Y=0;Y<X;++Y)W[Y]=Z[Y];return W[J]=K,W}function hh(Z,J,K){let X=Z.length,W=Array(X+1),Y=0,V=0;while(Y<J)W[V++]=Z[Y++];W[V++]=K;while(Y<X)W[V++]=Z[Y++];return W}function lM(Z,J){let K=Z.length,X=Array(K-1),W=0,Y=0;while(W<J)X[Y++]=Z[W++];++W;while(W<K)X[Y++]=Z[W++];return X}function fL(Z,J,K,X,W,Y){let V=l1(J);if(V===X)return{type:q5,hash:V,array:[{type:C1,k:J,v:K},{type:C1,k:W,v:Y}]};let G={val:!1};return UZ(oM(aM,Z,V,J,K,G),Z,X,W,Y,G)}function UZ(Z,J,K,X,W,Y){switch(Z.type){case N8:return vh(Z,J,K,X,W,Y);case g1:return oM(Z,J,K,X,W,Y);case q5:return $h(Z,J,K,X,W,Y)}}function vh(Z,J,K,X,W,Y){let V=wZ(K,J),G=Z.array[V];if(G===void 0)return Y.val=!0,{type:N8,size:Z.size+1,array:s1(Z.array,V,{type:C1,k:X,v:W})};if(G.type===C1){if(P0(X,G.k)){if(W===G.v)return Z;return{type:N8,size:Z.size,array:s1(Z.array,V,{type:C1,k:X,v:W})}}return Y.val=!0,{type:N8,size:Z.size,array:s1(Z.array,V,fL(J+F8,G.k,G.v,K,X,W))}}let I=UZ(G,J+F8,K,X,W,Y);if(I===G)return Z;return{type:N8,size:Z.size,array:s1(Z.array,V,I)}}function oM(Z,J,K,X,W,Y){let V=rJ(K,J),G=tM(Z.bitmap,V);if((Z.bitmap&V)!==0){let I=Z.array[G];if(I.type!==C1){let N=UZ(I,J+F8,K,X,W,Y);if(N===I)return Z;return{type:g1,bitmap:Z.bitmap,array:s1(Z.array,G,N)}}let z=I.k;if(P0(X,z)){if(W===I.v)return Z;return{type:g1,bitmap:Z.bitmap,array:s1(Z.array,G,{type:C1,k:X,v:W})}}return Y.val=!0,{type:g1,bitmap:Z.bitmap,array:s1(Z.array,G,fL(J+F8,z,I.v,K,X,W))}}else{let I=Z.array.length;if(I>=fh){let z=Array(32),N=wZ(K,J);z[N]=oM(aM,J+F8,K,X,W,Y);let F=0,D=Z.bitmap;for(let B=0;B<32;B++){if((D&1)!==0){let T=Z.array[F++];z[B]=T}D=D>>>1}return{type:N8,size:I+1,array:z}}else{let z=hh(Z.array,G,{type:C1,k:X,v:W});return Y.val=!0,{type:g1,bitmap:Z.bitmap|V,array:z}}}}function $h(Z,J,K,X,W,Y){if(K===Z.hash){let V=eM(Z,X);if(V!==-1){if(Z.array[V].v===W)return Z;return{type:q5,hash:K,array:s1(Z.array,V,{type:C1,k:X,v:W})}}let G=Z.array.length;return Y.val=!0,{type:q5,hash:K,array:s1(Z.array,G,{type:C1,k:X,v:W})}}return UZ({type:g1,bitmap:rJ(Z.hash,J),array:[Z]},J,K,X,W,Y)}function eM(Z,J){let K=Z.array.length;for(let X=0;X<K;X++)if(P0(J,Z.array[X].k))return X;return-1}function sJ(Z,J,K,X){switch(Z.type){case N8:return gh(Z,J,K,X);case g1:return _h(Z,J,K,X);case q5:return mh(Z,X)}}function gh(Z,J,K,X){let W=wZ(K,J),Y=Z.array[W];if(Y===void 0)return;if(Y.type!==C1)return sJ(Y,J+F8,K,X);if(P0(X,Y.k))return Y;return}function _h(Z,J,K,X){let W=rJ(K,J);if((Z.bitmap&W)===0)return;let Y=tM(Z.bitmap,W),V=Z.array[Y];if(V.type!==C1)return sJ(V,J+F8,K,X);if(P0(X,V.k))return V;return}function mh(Z,J){let K=eM(Z,J);if(K<0)return;return Z.array[K]}function ZR(Z,J,K,X){switch(Z.type){case N8:return uh(Z,J,K,X);case g1:return dh(Z,J,K,X);case q5:return ch(Z,X)}}function uh(Z,J,K,X){let W=wZ(K,J),Y=Z.array[W];if(Y===void 0)return Z;let V=void 0;if(Y.type===C1){if(!P0(Y.k,X))return Z}else if(V=ZR(Y,J+F8,K,X),V===Y)return Z;if(V===void 0){if(Z.size<=kh){let G=Z.array,I=Array(Z.size-1),z=0,N=0,F=0;while(z<W){let D=G[z];if(D!==void 0)I[N]=D,F|=1<<z,++N;++z}++z;while(z<G.length){let D=G[z];if(D!==void 0)I[N]=D,F|=1<<z,++N;++z}return{type:g1,bitmap:F,array:I}}return{type:N8,size:Z.size-1,array:s1(Z.array,W,V)}}return{type:N8,size:Z.size,array:s1(Z.array,W,V)}}function dh(Z,J,K,X){let W=rJ(K,J);if((Z.bitmap&W)===0)return Z;let Y=tM(Z.bitmap,W),V=Z.array[Y];if(V.type!==C1){let G=ZR(V,J+F8,K,X);if(G===V)return Z;if(G!==void 0)return{type:g1,bitmap:Z.bitmap,array:s1(Z.array,Y,G)};if(Z.bitmap===W)return;return{type:g1,bitmap:Z.bitmap^W,array:lM(Z.array,Y)}}if(P0(X,V.k)){if(Z.bitmap===W)return;return{type:g1,bitmap:Z.bitmap^W,array:lM(Z.array,Y)}}return Z}function ch(Z,J){let K=eM(Z,J);if(K<0)return Z;if(Z.array.length===1)return;return{type:q5,hash:Z.hash,array:lM(Z.array,K)}}function kL(Z,J){if(Z===void 0)return;let K=Z.array,X=K.length;for(let W=0;W<X;W++){let Y=K[W];if(Y===void 0)continue;if(Y.type===C1){J(Y.v,Y.k);continue}kL(Y,J)}}class W1{static fromObject(Z){let J=Object.keys(Z),K=W1.new();for(let X=0;X<J.length;X++){let W=J[X];K=K.set(W,Z[W])}return K}static fromMap(Z){let J=W1.new();return Z.forEach((K,X)=>{J=J.set(X,K)}),J}static new(){return new W1(void 0,0)}constructor(Z,J){this.root=Z,this.size=J}get(Z,J){if(this.root===void 0)return J;let K=sJ(this.root,0,l1(Z),Z);if(K===void 0)return J;return K.v}set(Z,J){let K={val:!1},X=this.root===void 0?aM:this.root,W=UZ(X,0,l1(Z),Z,J,K);if(W===this.root)return this;return new W1(W,K.val?this.size+1:this.size)}delete(Z){if(this.root===void 0)return this;let J=ZR(this.root,0,l1(Z),Z);if(J===this.root)return this;if(J===void 0)return W1.new();return new W1(J,this.size-1)}has(Z){if(this.root===void 0)return!1;return sJ(this.root,0,l1(Z),Z)!==void 0}entries(){if(this.root===void 0)return[];let Z=[];return this.forEach((J,K)=>Z.push([K,J])),Z}forEach(Z){kL(this.root,Z)}hashCode(){let Z=0;return this.forEach((J,K)=>{Z=Z+iM(l1(J),l1(K))|0}),Z}equals(Z){if(!(Z instanceof W1)||this.size!==Z.size)return!1;try{return this.forEach((J,K)=>{if(!P0(Z.get(K,!J),J))throw LL}),!0}catch(J){if(J===LL)return!1;throw J}}}var LL=Symbol();function JR(Z){return aJ(Z)===0}function ph(Z,J){return!P0(S0(J,Z),new v(void 0))}function bL(Z,J){return ph(J,Z)}function a0(Z,J,K){return vL(J,K,Z)}function nh(Z,J){while(!0){let K=Z,X=J;if(K instanceof M)return X;else{let W=K.head;Z=K.tail,J=A(W,X)}}}function ih(Z,J){while(!0){let K=Z,X=J;if(K instanceof M)return nh(X,Q([]));else{let W=K.tail,Y=K.head[0];Z=W,J=A(Y,X)}}}function j8(Z){return ih(a8(Z),Q([]))}function H8(Z,J){return hL(J,Z)}function lh(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof M)return W;else{let V=X.tail,G=X.head[0],I=X.head[1];Z=V,J=Y(W,G,I),K=Y}}}function J4(Z,J,K){return lh(a8(Z),J,K)}class I1 extends O{}class K4 extends O{}function rh(Z,J){while(!0){let K=Z,X=J;if(K instanceof M)return X;else Z=K.tail,J=X+1}}function o8(Z){return rh(Z,0)}function E5(Z,J){while(!0){let K=Z,X=J;if(K instanceof M)return X;else{let W=K.head;Z=K.tail,J=A(W,X)}}}function H0(Z){return E5(Z,Q([]))}function $L(Z){return P0(Z,Q([]))}function KR(Z,J){while(!0){let K=Z,X=J;if(K instanceof M)return!1;else{let W=K.head;if(P0(W,X))return!0;else Z=K.tail,J=X}}}function gL(Z){if(Z instanceof M)return new v(void 0);else{let J=Z.head;return new E(J)}}function ah(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof M)return H0(Y);else{let{head:V,tail:G}=X,I;if(W(V))I=A(V,Y);else I=Y;let N=I;Z=G,J=W,K=N}}}function tJ(Z,J){return ah(Z,J,Q([]))}function th(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof M)return H0(Y);else{let{head:V,tail:G}=X,I,z=W(V);if(z instanceof E){let F=z[0];I=A(F,Y)}else I=Y;let N=I;Z=G,J=W,K=N}}}function C5(Z,J){return th(Z,J,Q([]))}function oh(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof M)return H0(Y);else{let V=X.head;Z=X.tail,J=W,K=A(W(V),Y)}}}function z0(Z,J){return oh(Z,J,Q([]))}function eh(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(W instanceof M)return H0(G);else{let{head:I,tail:z}=W,N=A(Y(I,V),G);Z=z,J=Y,K=V+1,X=N}}}function oJ(Z,J){return eh(Z,J,0,Q([]))}function Y4(Z,J){while(!0){let K=Z,X=J;if(X<=0)return K;else if(K instanceof M)return K;else Z=K.tail,J=X-1}}function Zv(Z,J){while(!0){let K=Z,X=J;if(K instanceof M)return X;else{let W=K.head;Z=K.tail,J=A(W,X)}}}function _0(Z,J){return Zv(H0(Z),J)}function eJ(Z,J){return A(J,Z)}function Jv(Z,J){while(!0){let K=Z,X=J;if(K instanceof M)return H0(X);else{let W=K.head;Z=K.tail,J=E5(W,X)}}}function _L(Z){return Jv(Z,Q([]))}function g0(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof M)return W;else{let V=X.head;Z=X.tail,J=Y(W,V),K=Y}}}function YR(Z,J){while(!0){let K=Z,X=J;if(K instanceof M)return new v(void 0);else{let{head:W,tail:Y}=K;if(X(W))return new E(W);else Z=Y,J=X}}}function ZK(Z,J){while(!0){let K=Z,X=J;if(K instanceof M)return new v(void 0);else{let{head:W,tail:Y}=K,V=X(W);if(V instanceof E)return V;else Z=Y,J=X}}}function Kv(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof M)return H0(Y);else{let{head:V,tail:G}=X;if(bL(W,V))Z=G,J=W,K=Y;else Z=G,J=a0(W,V,void 0),K=A(V,Y)}}}function mL(Z){return Kv(Z,$0(),Q([]))}function Yv(Z,J,K,X,W,Y){while(!0){let V=Z,G=J,I=K,z=X,N=W,F=Y,D=A(N,I);if(V instanceof M)if(z instanceof I1)return A(H0(D),F);else return A(D,F);else{let{head:B,tail:T}=V,P=G(N,B);if(z instanceof I1)if(P instanceof Z1)Z=T,J=G,K=D,X=z,W=B,Y=F;else if(P instanceof J1)Z=T,J=G,K=D,X=z,W=B,Y=F;else{let S;if(z instanceof I1)S=A(H0(D),F);else S=A(D,F);let q=S;if(T instanceof M)return A(Q([B]),q);else{let{head:x,tail:U}=T,k,w=G(B,x);if(w instanceof Z1)k=new I1;else if(w instanceof J1)k=new I1;else k=new K4;let f=k;Z=U,J=G,K=Q([B]),X=f,W=x,Y=q}}else if(P instanceof Z1){let S;if(z instanceof I1)S=A(H0(D),F);else S=A(D,F);let q=S;if(T instanceof M)return A(Q([B]),q);else{let{head:x,tail:U}=T,k,w=G(B,x);if(w instanceof Z1)k=new I1;else if(w instanceof J1)k=new I1;else k=new K4;let f=k;Z=U,J=G,K=Q([B]),X=f,W=x,Y=q}}else if(P instanceof J1){let S;if(z instanceof I1)S=A(H0(D),F);else S=A(D,F);let q=S;if(T instanceof M)return A(Q([B]),q);else{let{head:x,tail:U}=T,k,w=G(B,x);if(w instanceof Z1)k=new I1;else if(w instanceof J1)k=new I1;else k=new K4;let f=k;Z=U,J=G,K=Q([B]),X=f,W=x,Y=q}}else Z=T,J=G,K=D,X=z,W=B,Y=F}}}function Xv(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(W instanceof M)return E5(Y,G);else if(Y instanceof M)return E5(W,G);else{let{head:I,tail:z}=W,N=Y.head,F=Y.tail,D=V(I,N);if(D instanceof Z1)Z=z,J=Y,K=V,X=A(I,G);else if(D instanceof J1)Z=W,J=F,K=V,X=A(N,G);else Z=W,J=F,K=V,X=A(N,G)}}}function Wv(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof M)return H0(Y);else{let V=X.tail;if(V instanceof M){let G=X.head;return H0(A(H0(G),Y))}else{let G=X.head,I=V.head,z=V.tail,N=Xv(G,I,W,Q([]));Z=z,J=W,K=A(N,Y)}}}}function Qv(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(W instanceof M)return E5(Y,G);else if(Y instanceof M)return E5(W,G);else{let{head:I,tail:z}=W,N=Y.head,F=Y.tail,D=V(I,N);if(D instanceof Z1)Z=W,J=F,K=V,X=A(N,G);else if(D instanceof J1)Z=z,J=Y,K=V,X=A(I,G);else Z=z,J=Y,K=V,X=A(I,G)}}}function Vv(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof M)return H0(Y);else{let V=X.tail;if(V instanceof M){let G=X.head;return H0(A(H0(G),Y))}else{let G=X.head,I=V.head,z=V.tail,N=Qv(G,I,W,Q([]));Z=z,J=W,K=A(N,Y)}}}}function Gv(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof M)return X;else if(W instanceof I1)if(X.tail instanceof M)return X.head;else Z=Wv(X,Y,Q([])),J=new K4,K=Y;else if(X.tail instanceof M){let G=X.head;return H0(G)}else Z=Vv(X,Y,Q([])),J=new I1,K=Y}}function XR(Z,J){if(Z instanceof M)return Z;else{let K=Z.tail;if(K instanceof M)return Z;else{let X=Z.head,W=K.head,Y=K.tail,V,G=J(X,W);if(G instanceof Z1)V=new I1;else if(G instanceof J1)V=new I1;else V=new K4;let I=V,z=Yv(Y,J,Q([X]),I,W,Q([]));return Gv(z,new I1,J)}}}function MZ(Z,J){return ZK(Z,(K)=>{let X,W;if(X=K[0],W=K[1],P0(X,J))return new E(W);else return new v(void 0)})}function Iv(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(W instanceof M)return H0(A([Y,V],G));else{let I=W.head[0];if(P0(I,Y)){let z=W.tail;return E5(G,A([I,V],z))}else{let z=W.head;Z=W.tail,J=Y,K=V,X=A(z,G)}}}}function WR(Z,J,K){return Iv(Z,J,K,Q([]))}function uL(Z,J){while(!0){let K=Z,X=J;if(K instanceof M)return;else{let{head:W,tail:Y}=K;X(W),Z=Y,J=X}}}function dL(Z,J){if(Z instanceof M)return new v(void 0);else{let{head:K,tail:X}=Z;return new E(g0(X,K,J))}}class e8 extends O{constructor(Z,J,K){super();this.expected=Z,this.found=J,this.path=K}}class _1 extends O{constructor(Z){super();this.function=Z}}function N0(Z,J){let K=J.function(Z),X,W;if(X=K[0],W=K[1],W instanceof M)return new E(X);else return new v(W)}function s(Z){return new _1((J)=>{return[Z,Q([])]})}function Fv(Z){return[Z,Q([])]}function x5(Z,J){return new _1((K)=>{let X=Z.function(K),W,Y;return W=X[0],Y=X[1],[J(W),Y]})}function Hv(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(Y instanceof M)return W;else{let{head:V,tail:G}=Y,I=V.function(X),z,N;if(z=I,N=I[1],N instanceof M)return z;else Z=X,J=W,K=G}}}function VR(Z,J){return new _1((K)=>{let X=Z.function(K),W,Y;if(W=X,Y=X[1],Y instanceof M)return W;else return Hv(K,W,J)})}function y1(Z){return new _1((J)=>{if(eL(J))return[new b,Q([])];else{let X=Z.function(J),W,Y;return W=X[0],Y=X[1],[new L(W),Y]}})}var v0=new _1(Fv);function nL(Z,J){return Q([new e8(Z,t8(J),Q([]))])}function GR(Z,J,K){let X=K(Z);if(X instanceof E)return[X[0],Q([])];else return[X[0],Q([new e8(J,t8(Z),Q([]))])]}function Dv(Z){if(P0(F0(!0),Z))return[!0,Q([])];else if(P0(F0(!1),Z))return[!1,Q([])];else return[!1,nL("Bool",Z)]}function Bv(Z){return GR(Z,"Int",tL)}function Ov(Z){return GR(Z,"Float",aL)}var z1=new _1(Dv),l0=new _1(Bv),iL=new _1(Ov);function Tv(Z){return GR(Z,"String",oL)}var u=new _1(Tv);function Pv(Z,J,K,X,W){let Y=X(J),V=Y[1];if(V instanceof M){let G=Y[0],I=W(K),z=I[1];if(z instanceof M){let N=I[0];return[a0(Z[0],G,N),Z[1]]}else{let N=z;return X4([$0(),N],Q(["values"]))}}else{let G=V;return X4([$0(),G],Q(["keys"]))}}function L8(Z,J){return new _1((K)=>{let X=rL(K);if(X instanceof E){let W=X[0];return J4(W,[$0(),Q([])],(Y,V,G)=>{if(Y[1]instanceof M)return Pv(Y,V,G,Z.function,J.function);else return Y})}else return[$0(),nL("Dict",K)]})}function L0(Z){return new _1((J)=>{return sL(J,Z.function,(K,X)=>{return X4(K,Q([X]))},0,Q([]))})}function X4(Z,J){let K=VR(u,Q([(()=>{return x5(l0,x1)})()])),X=z0(J,(Y)=>{let V=F0(Y),G=N0(V,K);if(G instanceof E)return G[0];else return"<"+t8(V)+">"}),W=z0(Z[1],(Y)=>{return new e8(Y.expected,Y.found,_0(X,Y.path))});return[Z[0],W]}function Sv(Z,J,K,X,W){while(!0){let Y=Z,V=J,G=K,I=X,z=W;if(Y instanceof M){let F=G(I);return X4(F,H0(V))}else{let{head:N,tail:F}=Y,D=lL(I,N);if(D instanceof E){let B=D[0];if(B instanceof L){let T=B[0];Z=F,J=A(N,V),K=G,X=T,W=z}else return z(I,A(N,V))}else{let B=D[0],T=G(I),P;P=T[0];let S=[P,Q([new e8(B,t8(I),Q([]))])];return X4(S,H0(V))}}}}function RZ(Z,J,K){return new _1((X)=>{let W=Sv(Z,Q([]),J.function,X,(N,F)=>{let D=J.function(N),B;B=D[0];let T=[B,Q([new e8("Field","Nothing",Q([]))])];return X4(T,H0(F))}),Y,V;Y=W[0],V=W[1];let G=K(Y).function(X),I,z;return I=G[0],z=G[1],[I,_0(V,z)]})}function $(Z,J,K){return RZ(Q([Z]),J,K)}var jZ=void 0,Zy={};function F0(Z){return Z}function x1(Z){return Z.toString()}function W8(Z){if(Z==="")return 0;let J=JK(Z);if(J){let K=0;for(let X of J)K++;return K}else return Z.match(/./gsu).length}function LZ(Z){let J=JK(Z);if(J)return r0.fromArray(Array.from(J).map((K)=>K.segment));else return r0.fromArray(Z.match(/./gsu))}var Jy=void 0;function JK(Z){if(globalThis.Intl&&Intl.Segmenter)return Jy||=new Intl.Segmenter,Jy.segment(Z)[Symbol.iterator]()}function KK(Z){let J,K=JK(Z);if(K)J=K.next().value?.segment;else J=Z.match(/./su)?.[0];if(J)return new E([J,Z.slice(J.length)]);else return new v(jZ)}function w5(Z){return[Z.charCodeAt(0)|0,Z.slice(1)]}function a1(Z){return Z.toLowerCase()}function YK(Z){return Z.toUpperCase()}function zR(Z,J){return r0.fromArray(Z.split(J))}function NR(Z,J,K){if(K<=0||J>=Z.length)return"";let X=JK(Z);if(X){while(J-- >0)X.next();let W="";while(K-- >0){let Y=X.next().value;if(Y===void 0)break;W+=Y.segment}return W}else return Z.match(/./gsu).slice(J,J+K).join("")}function N1(Z,J,K){return Z.slice(J,J+K)}function W4(Z,J){return Z.startsWith(J)}function XK(Z,J){return Z.endsWith(J)}function U5(Z,J){let K=Z.indexOf(J);if(K>=0){let X=Z.slice(0,K),W=Z.slice(K+J.length);return new E([X,W])}else return new v(jZ)}var Wy=[" ","\t",` 2 - `,"\v","\f","\r","ย…","\u2028","\u2029"].join(""),qv=new RegExp(`^[${Wy}]*`),Ev=new RegExp(`[${Wy}]*$`);function Qy(Z){return Z.replace(qv,"")}function FR(Z){return Z.replace(Ev,"")}function M5(Z){console.log(Z)}function $0(){return W1.new()}function aJ(Z){return Z.size}function a8(Z){return r0.fromArray(Z.entries())}function hL(Z,J){return J.delete(Z)}function S0(Z,J){let K=Z.get(J,Zy);if(K===Zy)return new v(jZ);return new E(K)}function vL(Z,J,K){return K.set(Z,J)}function Cv(Z){return decodeURIComponent(Z||"")}function Ky(Z){return decodeURIComponent((Z||"").replace("+"," "))}function HR(Z){try{return new E(Cv(Z))}catch{return new v(jZ)}}function WK(Z){try{let J=[];for(let K of Z.split("&")){let[X,W]=K.split("=");if(!X)continue;let Y=Ky(X),V=Ky(W);J.push([Y,V])}return new E(r0.fromArray(J))}catch{return new v(jZ)}}function t8(Z){if(typeof Z==="string")return"String";else if(typeof Z==="boolean")return"Bool";else if(Z instanceof Z4)return"Result";else if(Z instanceof r0)return"List";else if(Z instanceof xZ)return"BitArray";else if(Z instanceof W1)return"Dict";else if(Number.isInteger(Z))return"Int";else if(Array.isArray(Z))return"Array";else if(typeof Z==="number")return"Float";else if(Z===null)return"Nil";else if(Z===void 0)return"Nil";else{let J=typeof Z;return J.charAt(0).toUpperCase()+J.slice(1)}}function Vy(Z){return new Gy().inspect(Z)}function n0(Z){let J=Z.toString().replace("+","");if(J.indexOf(".")>=0)return J;else{let K=J.indexOf("e");if(K>=0)return J.slice(0,K)+".0"+J.slice(K);else return J+".0"}}class Gy{#Z=new Set;inspect(Z){let J=typeof Z;if(Z===!0)return"True";if(Z===!1)return"False";if(Z===null)return"//js(null)";if(Z===void 0)return"Nil";if(J==="string")return this.#W(Z);if(J==="bigint"||Number.isInteger(Z))return Z.toString();if(J==="number")return n0(Z);if(Z instanceof _M)return this.#Q(Z);if(Z instanceof xZ)return this.#G(Z);if(Z instanceof RegExp)return`//js(${Z})`;if(Z instanceof Date)return`//js(Date("${Z.toISOString()}"))`;if(Z instanceof globalThis.Error)return`//js(${Z.toString()})`;if(Z instanceof Function){let X=[];for(let W of Array(Z.length).keys())X.push(String.fromCharCode(W+97));return`//fn(${X.join(", ")}) { ... }`}if(this.#Z.size===this.#Z.add(Z).size)return"//js(circular reference)";let K;if(Array.isArray(Z))K=`#(${Z.map((X)=>this.inspect(X)).join(", ")})`;else if(Z instanceof r0)K=this.#J(Z);else if(Z instanceof O)K=this.#Y(Z);else if(Z instanceof W1)K=this.#K(Z);else if(Z instanceof Set)return`//js(Set(${[...Z].map((X)=>this.inspect(X)).join(", ")}))`;else K=this.#X(Z);return this.#Z.delete(Z),K}#X(Z){let J=Object.getPrototypeOf(Z)?.constructor?.name||"Object",K=[];for(let Y of Object.keys(Z))K.push(`${this.inspect(Y)}: ${this.inspect(Z[Y])}`);let X=K.length?" "+K.join(", ")+" ":"";return`//js(${J==="Object"?"":J+" "}{${X}})`}#K(Z){let J="dict.from_list([",K=!0;return Z.forEach((X,W)=>{if(!K)J=J+", ";J=J+"#("+this.inspect(W)+", "+this.inspect(X)+")",K=!1}),J+"])"}#Y(Z){let J=Object.keys(Z).map((K)=>{let X=this.inspect(Z[K]);return isNaN(parseInt(K))?`${K}: ${X}`:X}).join(", ");return J?`${Z.constructor.name}(${J})`:Z.constructor.name}#J(Z){if(Z instanceof M)return"[]";let J='charlist.from_string("',K="[",X=Z;while(X instanceof $1){let W=X.head;if(X=X.tail,K!=="[")K+=", ";if(K+=this.inspect(W),J)if(Number.isInteger(W)&&W>=32&&W<=126)J+=String.fromCharCode(W);else J=null}if(J)return J+'")';else return K+"]"}#W(Z){let J='"';for(let K=0;K<Z.length;K++){let X=Z[K];switch(X){case` 3 - `:J+="\\n";break;case"\r":J+="\\r";break;case"\t":J+="\\t";break;case"\f":J+="\\f";break;case"\\":J+="\\\\";break;case'"':J+="\\\"";break;default:if(X<" "||X>"~"&&X<"ย ")J+="\\u{"+X.charCodeAt(0).toString(16).toUpperCase().padStart(4,"0")+"}";else J+=X}}return J+='"',J}#Q(Z){return`//utfcodepoint(${String.fromCodePoint(Z.value)})`}#G(Z){if(Z.bitSize===0)return"<<>>";let J="<<";for(let K=0;K<Z.byteSize-1;K++)J+=Z.byteAt(K).toString(),J+=", ";if(Z.byteSize*8===Z.bitSize)J+=Z.byteAt(Z.byteSize-1).toString();else{let K=Z.bitSize%8;J+=Z.byteAt(Z.byteSize-1)>>8-K,J+=`:size(${K})`}return J+=">>",J}}function lL(Z,J){if(Z instanceof W1||Z instanceof WeakMap||Z instanceof Map){let X={},W=Z.get(J,X);if(W===X)return new E(new b);return new E(new L(W))}let K=Number.isInteger(J);if(K&&J>=0&&J<8&&Z instanceof r0){let X=0;for(let W of Z){if(X===J)return new E(new L(W));X++}return new v("Indexable")}if(K&&Array.isArray(Z)||Z&&typeof Z==="object"||Z&&Object.getPrototypeOf(Z)===Object.prototype){if(J in Z)return new E(new L(Z[J]));return new E(new b)}return new v(K?"Indexable":"Dict")}function sL(Z,J,K,X,W){if(!(Z instanceof r0||Array.isArray(Z))){let V=new e8("List",t8(Z),W);return[W,r0.fromArray([V])]}let Y=[];for(let V of Z){let G=J(V),[I,z]=G;if(z instanceof $1){let[N,F]=K(G,X.toString());return[W,F]}Y.push(I),X++}return[r0.fromArray(Y),W]}function rL(Z){if(Z instanceof W1)return new E(Z);if(Z instanceof Map||Z instanceof WeakMap)return new E(W1.fromMap(Z));if(Z==null)return new v("Dict");if(typeof Z!=="object")return new v("Dict");let J=Object.getPrototypeOf(Z);if(J===Object.prototype||J===null)return new E(W1.fromObject(Z));return new v("Dict")}function aL(Z){if(typeof Z==="number")return new E(Z);return new v(0)}function tL(Z){if(Number.isInteger(Z))return new E(Z);return new v(0)}function oL(Z){if(typeof Z==="string")return new E(Z);return new v("")}function eL(Z){return Z===null||Z===void 0}function QK(Z,J){if(Z>J)return Z;else return J}function zy(Z,J,K){if(K<=0)return"";else if(J<0){let Y=W8(Z)+J;if(Y<0)return"";else return NR(Z,Y,K)}else return NR(Z,J,K)}function jv(Z,J){while(!0){let K=Z,X=J;if(K instanceof M)return X;else{let W=K.head;Z=K.tail,J=X+W}}}function yZ(Z){return jv(Z,"")}function Lv(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof M)return Y;else{let V=X.head;Z=X.tail,J=W,K=Y+W+V}}}function Z5(Z,J){if(Z instanceof M)return"";else{let{head:K,tail:X}=Z;return Lv(X,J,K)}}function V4(Z){let K=Qy(Z);return FR(K)}function G4(Z,J){if(J==="")return LZ(Z);else{let X=F0(Z),W=zR(X,J);return z0(W,F0)}}function GK(Z){let K=Vy(Z);return F0(K)}function Hy(Z){if(Z instanceof E)return!0;else return!1}function DR(Z,J){if(Z instanceof E){let K=Z[0];return new E(J(K))}else return Z}function I4(Z,J){if(Z instanceof E)return Z;else{let K=Z[0];return new v(J(K))}}function f1(Z,J){if(Z instanceof E){let K=Z[0];return J(K)}else return Z}function D8(Z,J){if(Z instanceof E)return Z[0];else return J}function Dy(Z){return C5(Z,(J)=>{return J})}function BR(Z){return JSON.stringify(Z)}function By(Z){return Object.fromEntries(Z)}function J5(Z){return Z}function Oy(Z){let J=[];while(CL(Z))J.push(xL(Z)),Z=wL(Z);return J}function Ty(){return null}function Py(Z){try{let J=JSON.parse(Z);return UL(J)}catch(J){return ML(hv(J,Z))}}function hv(Z,J){if(vv(Z))return Sy();return $v(Z,J)}function vv(Z){return/((unexpected (end|eof))|(end of data)|(unterminated string)|(json( parse error|\.parse)\: expected '(\:|\}|\])'))/i.test(Z.message)}function $v(Z,J){let K=[gv,_v,uv,mv];for(let X of K){let W=X(Z,J);if(W)return W}return z4("")}function gv(Z){let K=/unexpected token '(.)', ".+" is not valid JSON/i.exec(Z.message);if(!K)return null;let X=IK(K[1]);return z4(X)}function _v(Z){let K=/unexpected token (.) in JSON at position (\d+)/i.exec(Z.message);if(!K)return null;let X=IK(K[1]);return z4(X)}function mv(Z,J){let X=/(unexpected character|expected .*) at line (\d+) column (\d+)/i.exec(Z.message);if(!X)return null;let W=Number(X[2]),Y=Number(X[3]),V=dv(W,Y,J),G=IK(J[V]);return z4(G)}function uv(Z){let K=/unexpected (identifier|token) "(.)"/i.exec(Z.message);if(!K)return null;let X=IK(K[2]);return z4(X)}function IK(Z){return"0x"+Z.charCodeAt(0).toString(16).toUpperCase()}function dv(Z,J,K){if(Z===1)return J-1;let X=1,W=0;return K.split("").find((Y,V)=>{if(Y===` 4 - `)X+=1;if(X===Z)return W=V+J,!0;return!1}),W}class Ay extends O{}var Sy=()=>new Ay;class qy extends O{constructor(Z){super();this[0]=Z}}var z4=(Z)=>new qy(Z);class Ey extends O{constructor(Z){super();this[0]=Z}}function cv(Z,J){return f1(Py(Z),(K)=>{let X=N0(K,J);return I4(X,(W)=>{return new Ey(W)})})}function t1(Z,J){return cv(Z,J)}function y8(Z){return BR(Z)}function c(Z){return J5(Z)}function o1(Z){return J5(Z)}function Q1(Z){return J5(Z)}function Cy(Z){return J5(Z)}function OR(){return Ty()}function h(Z){return By(Z)}function xy(Z){return Oy(Z)}function k0(Z,J){let X=z0(Z,J);return xy(X)}class zK extends O{constructor(Z){super();this.dict=Z}}function R5(){return new zK($0())}function N4(Z,J){let K=Z.dict,X=S0(K,J);return Hy(X)}function wy(Z,J){return new zK(H8(Z.dict,J))}function Uy(Z){return j8(Z.dict)}var nv=void 0;function fZ(Z,J){return new zK(a0(Z.dict,J,nv))}class G0 extends O{constructor(Z,J,K,X,W,Y,V){super();this.scheme=Z,this.userinfo=J,this.host=K,this.port=X,this.path=W,this.query=Y,this.fragment=V}}function lv(Z){return 48>=Z&&Z<=57||65>=Z&&Z<=90||97>=Z&&Z<=122||Z===58||Z===46}function Q8(Z,J){return new E(new G0(J.scheme,J.userinfo,J.host,J.port,J.path,J.query,new L(Z)))}function sv(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(Y.startsWith("#"))if(G===0){let I=Y.slice(1);return Q8(I,V)}else{let I=Y.slice(1),z=N1(W,0,G),N=new G0(V.scheme,V.userinfo,V.host,V.port,V.path,new L(z),V.fragment);return Q8(I,N)}else if(Y==="")return new E(new G0(V.scheme,V.userinfo,V.host,V.port,V.path,new L(W),V.fragment));else{let I=w5(Y),z;z=I[1],Z=W,J=z,K=V,X=G+1}}}function f8(Z,J){return sv(Z,Z,J,0)}function rv(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(Y.startsWith("?")){let I=Y.slice(1),z=N1(W,0,G),N=new G0(V.scheme,V.userinfo,V.host,V.port,z,V.query,V.fragment);return f8(I,N)}else if(Y.startsWith("#")){let I=Y.slice(1),z=N1(W,0,G),N=new G0(V.scheme,V.userinfo,V.host,V.port,z,V.query,V.fragment);return Q8(I,N)}else if(Y==="")return new E(new G0(V.scheme,V.userinfo,V.host,V.port,W,V.query,V.fragment));else{let I=w5(Y),z;z=I[1],Z=W,J=z,K=V,X=G+1}}}function L5(Z,J){return rv(Z,Z,J,0)}function B8(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X.startsWith("0"))Z=X.slice(1),J=W,K=Y*10;else if(X.startsWith("1"))Z=X.slice(1),J=W,K=Y*10+1;else if(X.startsWith("2"))Z=X.slice(1),J=W,K=Y*10+2;else if(X.startsWith("3"))Z=X.slice(1),J=W,K=Y*10+3;else if(X.startsWith("4"))Z=X.slice(1),J=W,K=Y*10+4;else if(X.startsWith("5"))Z=X.slice(1),J=W,K=Y*10+5;else if(X.startsWith("6"))Z=X.slice(1),J=W,K=Y*10+6;else if(X.startsWith("7"))Z=X.slice(1),J=W,K=Y*10+7;else if(X.startsWith("8"))Z=X.slice(1),J=W,K=Y*10+8;else if(X.startsWith("9"))Z=X.slice(1),J=W,K=Y*10+9;else if(X.startsWith("?")){let V=X.slice(1),G=new G0(W.scheme,W.userinfo,W.host,new L(Y),W.path,W.query,W.fragment);return f8(V,G)}else if(X.startsWith("#")){let V=X.slice(1),G=new G0(W.scheme,W.userinfo,W.host,new L(Y),W.path,W.query,W.fragment);return Q8(V,G)}else if(X.startsWith("/")){let V=new G0(W.scheme,W.userinfo,W.host,new L(Y),W.path,W.query,W.fragment);return L5(X,V)}else if(X==="")return new E(new G0(W.scheme,W.userinfo,W.host,new L(Y),W.path,W.query,W.fragment));else return new v(void 0)}}function NK(Z,J){if(Z.startsWith(":0")){let K=Z.slice(2);return B8(K,J,0)}else if(Z.startsWith(":1")){let K=Z.slice(2);return B8(K,J,1)}else if(Z.startsWith(":2")){let K=Z.slice(2);return B8(K,J,2)}else if(Z.startsWith(":3")){let K=Z.slice(2);return B8(K,J,3)}else if(Z.startsWith(":4")){let K=Z.slice(2);return B8(K,J,4)}else if(Z.startsWith(":5")){let K=Z.slice(2);return B8(K,J,5)}else if(Z.startsWith(":6")){let K=Z.slice(2);return B8(K,J,6)}else if(Z.startsWith(":7")){let K=Z.slice(2);return B8(K,J,7)}else if(Z.startsWith(":8")){let K=Z.slice(2);return B8(K,J,8)}else if(Z.startsWith(":9")){let K=Z.slice(2);return B8(K,J,9)}else if(Z===":")return new E(J);else if(Z==="")return new E(J);else if(Z.startsWith("?")){let K=Z.slice(1);return f8(K,J)}else if(Z.startsWith(":?")){let K=Z.slice(2);return f8(K,J)}else if(Z.startsWith("#")){let K=Z.slice(1);return Q8(K,J)}else if(Z.startsWith(":#")){let K=Z.slice(2);return Q8(K,J)}else if(Z.startsWith("/"))return L5(Z,J);else if(Z.startsWith(":")){let K=Z.slice(1);if(K.startsWith("/"))return L5(K,J);else return new v(void 0)}else return new v(void 0)}function My(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(Y==="")return new E(new G0(V.scheme,V.userinfo,new L(W),V.port,V.path,V.query,V.fragment));else if(Y.startsWith(":")){let I=N1(W,0,G),z=new G0(V.scheme,V.userinfo,new L(I),V.port,V.path,V.query,V.fragment);return NK(Y,z)}else if(Y.startsWith("/")){let I=N1(W,0,G),z=new G0(V.scheme,V.userinfo,new L(I),V.port,V.path,V.query,V.fragment);return L5(Y,z)}else if(Y.startsWith("?")){let I=Y.slice(1),z=N1(W,0,G),N=new G0(V.scheme,V.userinfo,new L(z),V.port,V.path,V.query,V.fragment);return f8(I,N)}else if(Y.startsWith("#")){let I=Y.slice(1),z=N1(W,0,G),N=new G0(V.scheme,V.userinfo,new L(z),V.port,V.path,V.query,V.fragment);return Q8(I,N)}else{let I=w5(Y),z;z=I[1],Z=W,J=z,K=V,X=G+1}}}function av(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(Y==="")return new E(new G0(V.scheme,V.userinfo,new L(Y),V.port,V.path,V.query,V.fragment));else if(Y.startsWith("]"))if(G===0){let I=Y.slice(1);return NK(I,V)}else{let I=Y.slice(1),z=N1(W,0,G+1),N=new G0(V.scheme,V.userinfo,new L(z),V.port,V.path,V.query,V.fragment);return NK(I,N)}else if(Y.startsWith("/"))if(G===0)return L5(Y,V);else{let I=N1(W,0,G),z=new G0(V.scheme,V.userinfo,new L(I),V.port,V.path,V.query,V.fragment);return L5(Y,z)}else if(Y.startsWith("?"))if(G===0){let I=Y.slice(1);return f8(I,V)}else{let I=Y.slice(1),z=N1(W,0,G),N=new G0(V.scheme,V.userinfo,new L(z),V.port,V.path,V.query,V.fragment);return f8(I,N)}else if(Y.startsWith("#"))if(G===0){let I=Y.slice(1);return Q8(I,V)}else{let I=Y.slice(1),z=N1(W,0,G),N=new G0(V.scheme,V.userinfo,new L(z),V.port,V.path,V.query,V.fragment);return Q8(I,N)}else{let I=w5(Y),z,N;if(z=I[0],N=I[1],lv(z))Z=W,J=N,K=V,X=G+1;else return My(W,W,V,0)}}}function tv(Z,J){return av(Z,Z,J,0)}function ov(Z,J){return My(Z,Z,J,0)}function F4(Z,J){if(Z.startsWith("["))return tv(Z,J);else if(Z.startsWith(":")){let K=new G0(J.scheme,J.userinfo,new L(""),J.port,J.path,J.query,J.fragment);return NK(Z,K)}else if(Z==="")return new E(new G0(J.scheme,J.userinfo,new L(""),J.port,J.path,J.query,J.fragment));else return ov(Z,J)}function ev(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(Y.startsWith("@"))if(G===0){let I=Y.slice(1);return F4(I,V)}else{let I=Y.slice(1),z=N1(W,0,G),N=new G0(V.scheme,new L(z),V.host,V.port,V.path,V.query,V.fragment);return F4(I,N)}else if(Y==="")return F4(W,V);else if(Y.startsWith("/"))return F4(W,V);else if(Y.startsWith("?"))return F4(W,V);else if(Y.startsWith("#"))return F4(W,V);else{let I=w5(Y),z;z=I[1],Z=W,J=z,K=V,X=G+1}}}function Z$(Z,J){return ev(Z,Z,J,0)}function TR(Z,J){if(Z==="//")return new E(new G0(J.scheme,J.userinfo,new L(""),J.port,J.path,J.query,J.fragment));else if(Z.startsWith("//")){let K=Z.slice(2);return Z$(K,J)}else return L5(Z,J)}function J$(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(Y.startsWith("/"))if(G===0)return TR(Y,V);else{let I=N1(W,0,G),z=new G0(new L(a1(I)),V.userinfo,V.host,V.port,V.path,V.query,V.fragment);return TR(Y,z)}else if(Y.startsWith("?"))if(G===0){let I=Y.slice(1);return f8(I,V)}else{let I=Y.slice(1),z=N1(W,0,G),N=new G0(new L(a1(z)),V.userinfo,V.host,V.port,V.path,V.query,V.fragment);return f8(I,N)}else if(Y.startsWith("#"))if(G===0){let I=Y.slice(1);return Q8(I,V)}else{let I=Y.slice(1),z=N1(W,0,G),N=new G0(new L(a1(z)),V.userinfo,V.host,V.port,V.path,V.query,V.fragment);return Q8(I,N)}else if(Y.startsWith(":"))if(G===0)return new v(void 0);else{let I=Y.slice(1),z=N1(W,0,G),N=new G0(new L(a1(z)),V.userinfo,V.host,V.port,V.path,V.query,V.fragment);return TR(I,N)}else if(Y==="")return new E(new G0(V.scheme,V.userinfo,V.host,V.port,W,V.query,V.fragment));else{let I=w5(Y),z;z=I[1],Z=W,J=z,K=V,X=G+1}}}function FK(Z){let J,K=Z.fragment;if(K instanceof L){let w=K[0];J=Q(["#",w])}else J=Q([]);let X=J,W,Y=Z.query;if(Y instanceof L){let w=Y[0];W=A("?",A(w,X))}else W=X;let V=W,G=A(Z.path,V),I,z=Z.host,N=W4(Z.path,"/");if(z instanceof L&&!N)if(z[0]!=="")I=A("/",G);else I=G;else I=G;let F=I,D,B=Z.host,T=Z.port;if(B instanceof L&&T instanceof L){let w=T[0];D=A(":",A(x1(w),F))}else D=F;let P=D,S,q=Z.scheme,x=Z.userinfo,U=Z.host;if(q instanceof L)if(x instanceof L)if(U instanceof L){let w=q[0],f=x[0],g=U[0];S=A(w,A("://",A(f,A("@",A(g,P)))))}else{let w=q[0];S=A(w,A(":",P))}else if(U instanceof L){let w=q[0],f=U[0];S=A(w,A("://",A(f,P)))}else{let w=q[0];S=A(w,A(":",P))}else if(x instanceof b&&U instanceof L){let w=U[0];S=A("//",A(w,P))}else S=P;return yZ(S)}var K$=new G0(new b,new b,new b,new b,"",new b,new b);function PR(Z){return J$(Z,Z,K$,0)}function H4(Z,J,K){if(Z)return J;else return K()}function A0(Z){return Z}var e1=()=>globalThis?.document,DK="http://www.w3.org/1999/xhtml",BK=1,qR=3;var yy=!!globalThis.HTMLElement?.prototype?.moveBefore;var e=Q([]),OK=new b;var Q$=new R8,V$=new Z1,G$=new J1;function TK(Z,J){if(Z.name===J.name)return G$;else if(Z.name<J.name)return V$;else return Q$}class Z8 extends O{constructor(Z,J,K){super();this.kind=Z,this.name=J,this.value=K}}class kZ extends O{constructor(Z,J,K){super();this.kind=Z,this.name=J,this.value=K}}class S1 extends O{constructor(Z,J,K,X,W,Y,V,G){super();this.kind=Z,this.name=J,this.handler=K,this.include=X,this.prevent_default=W,this.stop_propagation=Y,this.debounce=V,this.throttle=G}}class bZ extends O{constructor(Z,J,K){super();this.prevent_default=Z,this.stop_propagation=J,this.message=K}}class vy extends O{constructor(Z){super();this.kind=Z}}class $y extends O{constructor(Z){super();this.kind=Z}}function D$(Z,J){while(!0){let K=Z,X=J;if(K instanceof M)return X;else{let W=K.head;if(W instanceof Z8){let Y=W.name;if(Y==="")Z=K.tail,J=X;else if(Y==="class"){let V=W.value;if(V==="")Z=K.tail,J=X;else{let G=K.tail;if(G instanceof M){let I=W;Z=G,J=A(I,X)}else{let I=G.head;if(I instanceof Z8)if(I.name==="class"){let N=W.kind,F=V,D=G.tail,B=I.value,T=F+" "+B,P=new Z8(N,"class",T);Z=A(P,D),J=X}else{let N=W;Z=G,J=A(N,X)}else{let z=W;Z=G,J=A(z,X)}}}}else if(Y==="style"){let V=W.value;if(V==="")Z=K.tail,J=X;else{let G=K.tail;if(G instanceof M){let I=W;Z=G,J=A(I,X)}else{let I=G.head;if(I instanceof Z8)if(I.name==="style"){let N=W.kind,F=V,D=G.tail,B=I.value,T=F+";"+B,P=new Z8(N,"style",T);Z=A(P,D),J=X}else{let N=W;Z=G,J=A(N,X)}else{let z=W;Z=G,J=A(z,X)}}}}else{let V=W;Z=K.tail,J=A(V,X)}}else{let Y=W;Z=K.tail,J=A(Y,X)}}}}function gy(Z){if(Z instanceof M)return Z;else if(Z.tail instanceof M)return Z;else{let X=XR(Z,(W,Y)=>{return TK(Y,W)});return D$(X,e)}}var CR=0;function _y(Z,J){return new Z8(CR,Z,J)}var xR=1;function my(Z,J){return new kZ(xR,Z,J)}var wR=2;function uy(Z,J,K,X,W,Y,V){return new S1(wR,Z,J,K,X,W,Y,V)}var UR=0;var MR=new vy(UR);var PK=2,dy=new $y(PK);function j(Z,J){return _y(Z,J)}function RR(Z,J){return my(Z,J)}function jR(Z,J){if(J)return j(Z,"");else return RR(Z,o1(!1))}function H(Z){return j("class",Z)}function T8(Z){return j("id",Z)}function m1(Z){return j("href",Z)}function cy(Z){return j("alt",Z)}function py(Z){return j("src",Z)}function y5(Z){return j("action",Z)}function f5(Z){return j("method",Z)}function ny(Z){return j("accept",Z5(Z,","))}function hZ(Z){return jR("disabled",Z)}function iy(Z){return j("name",Z)}function V1(Z){return j("placeholder",Z)}function Y5(Z){return jR("required",Z)}function LR(Z){return jR("selected",Z)}function x0(Z){return j("type",Z)}function i0(Z){return j("value",Z)}class vZ extends O{constructor(Z,J,K){super();this.synchronous=Z,this.before_paint=J,this.after_paint=K}}class fR extends O{constructor(Z,J,K,X,W){super();this.dispatch=Z,this.emit=J,this.select=K,this.root=X,this.provide=W}}function B$(Z,J,K){return}function O$(Z,J){return new fR((K)=>{return Z.dispatch(J(K))},Z.emit,(K)=>{return B$(Z,K,J)},Z.root,Z.provide)}function yR(Z,J){return z0(Z,(K)=>{return(X)=>{return K(O$(X,J))}})}function kR(Z,J){return new vZ(yR(Z.synchronous,J),yR(Z.before_paint,J),yR(Z.after_paint,J))}function ly(Z,J,K,X,W,Y){let V=new fR(J,K,X,W,Y);return uL(Z.synchronous,(G)=>{return G(V)})}var SK=new vZ(Q([]),Q([]),Q([]));function i(){return SK}function F1(Z){return new vZ(Q([(K)=>{let X=K.dispatch;return Z(X)}]),SK.before_paint,SK.after_paint)}function G1(Z){return g0(Z,SK,(J,K)=>{return new vZ(g0(K.synchronous,J.synchronous,eJ),g0(K.before_paint,J.before_paint,eJ),g0(K.after_paint,J.after_paint,eJ))})}function w1(){return null}function $Z(Z,J){let K=Z?.get(J);if(K!=null)return new E(K);else return new v(void 0)}function gZ(Z,J){return Z&&Z.has(J)}function k5(Z,J,K){return Z??=new Map,Z.set(J,K),Z}function bR(Z,J){return Z?.delete(J),Z}class hR extends O{}class vR extends O{constructor(Z,J){super();this.key=Z,this.parent=J}}class sy extends O{constructor(Z,J){super();this.index=Z,this.parent=J}}function T$(Z,J){while(!0){let K=Z,X=J;if(X instanceof M)return!1;else{let{head:W,tail:Y}=X,V=W4(K,W);if(V)return V;else Z=K,J=Y}}}function K8(Z,J,K){if(K==="")return new sy(J,Z);else return new vR(K,Z)}var B4=new hR,mZ="\t";function ry(Z,J){while(!0){let K=Z,X=J;if(K instanceof hR)if(X instanceof M)return"";else{let W=X.tail;return yZ(W)}else if(K instanceof vR){let W=K.key;Z=K.parent,J=A(mZ,A(W,X))}else{let W=K.index;Z=K.parent,J=A(mZ,A(x1(W),X))}}}function ay(Z){return ry(Z,Q([]))}function ty(Z,J){if(J instanceof M)return!1;else return T$(ay(Z),J)}var $R=` 5 - `;function gR(Z,J){return ry(Z,Q([$R,J]))}class k1 extends O{constructor(Z,J,K,X,W){super();this.kind=Z,this.key=J,this.mapper=K,this.children=X,this.keyed_children=W}}class U1 extends O{constructor(Z,J,K,X,W,Y,V,G,I,z){super();this.kind=Z,this.key=J,this.mapper=K,this.namespace=X,this.tag=W,this.attributes=Y,this.children=V,this.keyed_children=G,this.self_closing=I,this.void=z}}class u1 extends O{constructor(Z,J,K,X){super();this.kind=Z,this.key=J,this.mapper=K,this.content=X}}class X5 extends O{constructor(Z,J,K,X,W,Y,V){super();this.kind=Z,this.key=J,this.mapper=K,this.namespace=X,this.tag=W,this.attributes=Y,this.inner_html=V}}function O4(Z,J){if(J==="")if(Z==="area")return!0;else if(Z==="base")return!0;else if(Z==="br")return!0;else if(Z==="col")return!0;else if(Z==="embed")return!0;else if(Z==="hr")return!0;else if(Z==="img")return!0;else if(Z==="input")return!0;else if(Z==="link")return!0;else if(Z==="meta")return!0;else if(Z==="param")return!0;else if(Z==="source")return!0;else if(Z==="track")return!0;else if(Z==="wbr")return!0;else return!1;else return!1}function oy(Z,J){if(J instanceof k1)return new k1(J.kind,Z,J.mapper,J.children,J.keyed_children);else if(J instanceof U1)return new U1(J.kind,Z,J.mapper,J.namespace,J.tag,J.attributes,J.children,J.keyed_children,J.self_closing,J.void);else if(J instanceof u1)return new u1(J.kind,Z,J.mapper,J.content);else return new X5(J.kind,Z,J.mapper,J.namespace,J.tag,J.attributes,J.inner_html)}var V8=0;function qK(Z,J,K,X){return new k1(V8,Z,J,K,X)}var b5=1;function T4(Z,J,K,X,W,Y,V,G,I){return new U1(b5,Z,J,K,X,gy(W),Y,V,G,I)}var P4=2;function _R(Z,J,K){return new u1(P4,Z,J,K)}var ey=3;var mR=(Z,J)=>Z===J,G8=(Z,J)=>{if(Z===J)return!0;if(Z==null||J==null)return!1;let K=typeof Z;if(K!==typeof J)return!1;if(K!=="object")return!1;if(Z.constructor!==J.constructor)return!1;if(Array.isArray(Z))return A$(Z,J);return q$(Z,J)},A$=(Z,J)=>{let K=Z.length;if(K!==J.length)return!1;while(K--)if(!G8(Z[K],J[K]))return!1;return!0},q$=(Z,J)=>{let K=Object.keys(Z),X=K.length;if(Object.keys(J).length!==X)return!1;while(X--){let W=K[X];if(!Object.hasOwn(J,W))return!1;if(!G8(Z[W],J[W]))return!1}return!0};class h8 extends O{constructor(Z,J,K){super();this.handlers=Z,this.dispatched_paths=J,this.next_dispatched_paths=K}}class cR extends O{constructor(Z,J){super();this.path=Z,this.handler=J}}class uR extends O{constructor(Z){super();this.path=Z}}function pR(){return new h8(w1(),e,e)}function Yf(Z){return new h8(Z.handlers,Z.next_dispatched_paths,e)}function Xf(Z,J,K){return bR(Z,gR(J,K))}function EK(Z,J,K){let X=Xf(Z.handlers,J,K);return new h8(X,Z.dispatched_paths,Z.next_dispatched_paths)}function Zf(Z,J,K){return g0(K,Z,(X,W)=>{if(W instanceof S1){let Y=W.name;return Xf(X,J,Y)}else return X})}function nR(Z,J,K,X){let W=$Z(Z.handlers,J+$R+K);if(W instanceof E){let Y=W[0],V=N0(X,Y);if(V instanceof E){let G=V[0];return new cR(J,G)}else return new uR(J)}else return new uR(J)}function iR(Z,J){let K=A(J.path,Z.next_dispatched_paths),X=new h8(Z.handlers,Z.dispatched_paths,K);if(J instanceof cR){let W=J.handler;return[X,new E(W)]}else return[X,new v(void 0)]}function CK(Z,J,K,X){let W=nR(Z,J,K,X);return((Y)=>{return iR(Z,Y)})(W)}function xK(Z,J){return ty(J,Z.dispatched_paths)}function Wf(Z,J,K,X,W){return k5(Z,gR(K,X),x5(W,(Y)=>{return new bZ(Y.prevent_default,Y.stop_propagation,A0(J)(Y.message))}))}function S4(Z,J,K,X,W){let Y=Wf(Z.handlers,J,K,X,W);return new h8(Y,Z.dispatched_paths,Z.next_dispatched_paths)}function Jf(Z,J,K,X){return g0(X,Z,(W,Y)=>{if(Y instanceof S1){let{name:V,handler:G}=Y;return Wf(W,J,K,V,G)}else return W})}function b8(Z,J){let K=mR(Z,A0);if(mR(J,A0))return Z;else if(K)return J;else return(W)=>{return Z(J(W))}}function Kf(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(G instanceof M)return W;else{let{head:I,tail:z}=G;Z=Qf(W,Y,V,I),J=Y,K=V+1,X=z}}}function Qf(Z,J,K,X){if(X instanceof k1){let W=X.children,Y=K8(J,K,X.key);return Kf(Z,Y,0,W)}else if(X instanceof U1){let{attributes:W,children:Y}=X,V=K8(J,K,X.key),I=Zf(Z,V,W);return Kf(I,V,0,Y)}else if(X instanceof u1)return Z;else{let W=X.attributes,Y=K8(J,K,X.key);return Zf(Z,Y,W)}}function v8(Z,J,K,X){let W=Qf(Z.handlers,J,K,X);return new h8(W,Z.dispatched_paths,Z.next_dispatched_paths)}function dR(Z,J,K,X,W){while(!0){let Y=Z,V=J,G=K,I=X,z=W;if(z instanceof M)return Y;else{let{head:N,tail:F}=z;Z=Vf(Y,V,G,I,N),J=V,K=G,X=I+1,W=F}}}function Vf(Z,J,K,X,W){if(W instanceof k1){let Y=W.children,V=K8(K,X,W.key),G=b8(J,W.mapper);return dR(Z,G,V,0,Y)}else if(W instanceof U1){let{attributes:Y,children:V}=W,G=K8(K,X,W.key),I=b8(J,W.mapper),N=Jf(Z,I,G,Y);return dR(N,I,G,0,V)}else if(W instanceof u1)return Z;else{let Y=W.attributes,V=K8(K,X,W.key),G=b8(J,W.mapper);return Jf(Z,G,V,Y)}}function $8(Z,J,K,X,W){let Y=Vf(Z.handlers,J,K,X,W);return new h8(Y,Z.dispatched_paths,Z.next_dispatched_paths)}function lR(Z){return $8(pR(),A0,B4,0,Z)}function Gf(Z,J,K,X,W){let Y=dR(Z.handlers,J,K,X,W);return new h8(Y,Z.dispatched_paths,Z.next_dispatched_paths)}function y0(Z,J,K){return T4("",A0,"",Z,J,K,w1(),!1,O4(Z,""))}function d1(Z,J,K,X){return T4("",A0,Z,J,K,X,w1(),!1,O4(J,Z))}function C(Z){return _R("",A0,Z)}function X0(){return _R("",A0,"")}function If(Z){return qK("",A0,Z,w1())}function uZ(Z,J){let K=A0(b8(A0(J),Z.mapper));if(Z instanceof k1){let{children:X,keyed_children:W}=Z;return new k1(Z.kind,Z.key,K,A0(X),A0(W))}else if(Z instanceof U1){let{attributes:X,children:W,keyed_children:Y}=Z;return new U1(Z.kind,Z.key,K,Z.namespace,Z.tag,A0(X),A0(W),A0(Y),Z.self_closing,Z.void)}else if(Z instanceof u1)return A0(Z);else{let X=Z.attributes;return new X5(Z.kind,Z.key,K,Z.namespace,Z.tag,A0(X),Z.inner_html)}}function o0(Z){return C(Z)}function c1(Z,J){return y0("h1",Z,J)}function P8(Z,J){return y0("h2",Z,J)}function v5(Z,J){return y0("h3",Z,J)}function R(Z,J){return y0("div",Z,J)}function g8(Z,J){return y0("li",Z,J)}function D0(Z,J){return y0("p",Z,J)}function wK(Z,J){return y0("pre",Z,J)}function A4(Z,J){return y0("ul",Z,J)}function p1(Z,J){return y0("a",Z,J)}function _8(Z,J){return y0("code",Z,J)}function p(Z,J){return y0("span",Z,J)}function zf(Z){return y0("img",Z,e)}function q0(Z,J){return y0("button",Z,J)}function m8(Z,J){return y0("form",Z,J)}function s0(Z){return y0("input",Z,e)}function m0(Z,J){return y0("label",Z,J)}function sR(Z,J){return y0("option",Z,Q([C(J)]))}function Nf(Z,J){return y0("select",Z,J)}function rR(Z,J){return y0("textarea",A(RR("value",c(J)),Z),Q([C(J)]))}function Ff(Z,J){return y0("details",Z,J)}function Hf(Z,J){return y0("summary",Z,J)}class dZ extends O{constructor(Z,J,K,X){super();this.index=Z,this.removed=J,this.changes=K,this.children=X}}class Df extends O{constructor(Z,J){super();this.kind=Z,this.content=J}}class Bf extends O{constructor(Z,J){super();this.kind=Z,this.inner_html=J}}class Of extends O{constructor(Z,J,K){super();this.kind=Z,this.added=J,this.removed=K}}class Tf extends O{constructor(Z,J,K){super();this.kind=Z,this.key=J,this.before=K}}class Pf extends O{constructor(Z,J,K){super();this.kind=Z,this.index=J,this.with=K}}class Sf extends O{constructor(Z,J){super();this.kind=Z,this.index=J}}class Af extends O{constructor(Z,J,K){super();this.kind=Z,this.children=J,this.before=K}}function aR(Z,J,K,X){return new dZ(Z,J,K,X)}var tR=0;function qf(Z){return new Df(tR,Z)}var oR=1;function Ef(Z){return new Bf(oR,Z)}var eR=2;function Zj(Z,J){return new Of(eR,Z,J)}var Jj=3;function Cf(Z,J){return new Tf(Jj,Z,J)}var Kj=4;function xf(Z){return new Sf(Kj,Z)}var Yj=5;function $5(Z,J){return new Pf(Yj,Z,J)}var Xj=6;function Wj(Z,J){return new Af(Xj,Z,J)}class Uf extends O{constructor(Z,J,K,X,W,Y,V,G){super();this.kind=Z,this.open_shadow_root=J,this.will_adopt_styles=K,this.observed_attributes=X,this.observed_properties=W,this.requested_contexts=Y,this.provided_contexts=V,this.vdom=G}}class Mf extends O{constructor(Z,J){super();this.kind=Z,this.patch=J}}class Rf extends O{constructor(Z,J,K){super();this.kind=Z,this.name=J,this.data=K}}class jf extends O{constructor(Z,J,K){super();this.kind=Z,this.key=J,this.value=K}}class UK extends O{constructor(Z,J){super();this.kind=Z,this.messages=J}}class MK extends O{constructor(Z,J,K){super();this.kind=Z,this.name=J,this.value=K}}class RK extends O{constructor(Z,J,K){super();this.kind=Z,this.name=J,this.value=K}}class jK extends O{constructor(Z,J,K,X){super();this.kind=Z,this.path=J,this.name=K,this.event=X}}class Qj extends O{constructor(Z,J,K){super();this.kind=Z,this.key=J,this.value=K}}var x$=0;function Lf(Z,J,K,X,W,Y,V){return new Uf(x$,Z,J,K,X,W,Y,V)}var w$=1;function Vj(Z){return new Mf(w$,Z)}var U$=2;function yf(Z,J){return new Rf(U$,Z,J)}var M$=3;function ff(Z,J){return new jf(M$,Z,J)}class LK extends O{constructor(Z,J){super();this.patch=Z,this.events=J}}class hf extends O{constructor(Z,J,K){super();this.added=Z,this.removed=J,this.events=K}}function R$(Z,J,K,X){if(K==="input"&&J==="")return xK(Z,X);else if(K==="select"&&J==="")return xK(Z,X);else if(K==="textarea"&&J==="")return xK(Z,X);else return!1}function bf(Z,J,K,X,W,Y,V,G){while(!0){let I=Z,z=J,N=K,F=X,D=W,B=Y,T=V,P=G;if(D instanceof M)if(B instanceof M)return new hf(T,P,F);else{let S=B.head;if(S instanceof S1){let q=S,x=B.tail,U=S.name,k=S.handler,w=A(q,T),f=S4(F,N,z,U,k);Z=I,J=z,K=N,X=f,W=D,Y=x,V=w,G=P}else{let q=S,x=B.tail,U=A(q,T);Z=I,J=z,K=N,X=F,W=D,Y=x,V=U,G=P}}else if(B instanceof M){let S=D.head;if(S instanceof S1){let q=S,x=D.tail,U=S.name,k=A(q,P),w=EK(F,z,U);Z=I,J=z,K=N,X=w,W=x,Y=B,V=T,G=k}else{let q=S,x=D.tail,U=A(q,P);Z=I,J=z,K=N,X=F,W=x,Y=B,V=T,G=U}}else{let{head:S,tail:q}=D,x=B.head,U=B.tail,k=TK(S,x);if(k instanceof Z1)if(S instanceof S1){let w=S.name,f=A(S,P),g=EK(F,z,w);Z=I,J=z,K=N,X=g,W=q,Y=B,V=T,G=f}else{let w=A(S,P);Z=I,J=z,K=N,X=F,W=q,Y=B,V=T,G=w}else if(k instanceof J1)if(S instanceof Z8)if(x instanceof Z8){let w,f=x.name;if(f==="value")w=I||S.value!==x.value;else if(f==="checked")w=I||S.value!==x.value;else if(f==="selected")w=I||S.value!==x.value;else w=S.value!==x.value;let g=w,d;if(g)d=A(x,T);else d=T;let n=d;Z=I,J=z,K=N,X=F,W=q,Y=U,V=n,G=P}else if(x instanceof S1){let{name:w,handler:f}=x,g=A(x,T),d=A(S,P),n=S4(F,N,z,w,f);Z=I,J=z,K=N,X=n,W=q,Y=U,V=g,G=d}else{let w=A(x,T),f=A(S,P);Z=I,J=z,K=N,X=F,W=q,Y=U,V=w,G=f}else if(S instanceof kZ)if(x instanceof kZ){let w,f=x.name;if(f==="scrollLeft")w=!0;else if(f==="scrollRight")w=!0;else if(f==="value")w=I||!G8(S.value,x.value);else if(f==="checked")w=I||!G8(S.value,x.value);else if(f==="selected")w=I||!G8(S.value,x.value);else w=!G8(S.value,x.value);let g=w,d;if(g)d=A(x,T);else d=T;let n=d;Z=I,J=z,K=N,X=F,W=q,Y=U,V=n,G=P}else if(x instanceof S1){let{name:w,handler:f}=x,g=A(x,T),d=A(S,P),n=S4(F,N,z,w,f);Z=I,J=z,K=N,X=n,W=q,Y=U,V=g,G=d}else{let w=A(x,T),f=A(S,P);Z=I,J=z,K=N,X=F,W=q,Y=U,V=w,G=f}else if(x instanceof S1){let{name:w,handler:f}=x,g=S.prevent_default.kind!==x.prevent_default.kind||S.stop_propagation.kind!==x.stop_propagation.kind||S.debounce!==x.debounce||S.throttle!==x.throttle,d;if(g)d=A(x,T);else d=T;let n=d,r=S4(F,N,z,w,f);Z=I,J=z,K=N,X=r,W=q,Y=U,V=n,G=P}else{let w=S.name,f=A(x,T),g=A(S,P),d=EK(F,z,w);Z=I,J=z,K=N,X=d,W=q,Y=U,V=f,G=g}else if(x instanceof S1){let{name:w,handler:f}=x,g=A(x,T),d=S4(F,N,z,w,f);Z=I,J=z,K=N,X=d,W=D,Y=U,V=g,G=P}else{let w=A(x,T);Z=I,J=z,K=N,X=F,W=D,Y=U,V=w,G=P}}}}function Gj(Z,J,K,X,W,Y,V,G,I,z,N,F,D,B){while(!0){let T=Z,P=J,S=K,q=X,x=W,U=Y,k=V,w=G,f=I,g=z,d=N,n=F,r=D,W0=B;if(T instanceof M)if(S instanceof M)return new LK(new dZ(f,k,d,n),W0);else{let T0=Gf(W0,r,g,w,S),b0=Wj(S,w-U),I0=A(b0,d);return new LK(new dZ(f,k,I0,n),T0)}else if(S instanceof M){let{head:T0,tail:b0}=T,I0;if(T0.key===""||!gZ(x,T0.key))I0=k+1;else I0=k;let V0=I0,J0=v8(W0,g,w,T0);Z=b0,J=P,K=S,X=q,W=x,Y=U,V=V0,G=w,I=f,z=g,N=d,F=n,D=r,B=J0}else{let T0=T.head,b0=S.head;if(T0.key!==b0.key){let I0=T.tail,B0=S.tail,V0=$Z(P,b0.key);if(gZ(q,T0.key))if(V0 instanceof E){let Z0=V0[0];if(gZ(x,T0.key))Z=I0,J=P,K=S,X=q,W=x,Y=U-1,V=k,G=w,I=f,z=g,N=d,F=n,D=r,B=W0;else{let y=w-U,_=A(Cf(b0.key,y),d),t=k5(x,b0.key,void 0),o=U+1;Z=A(Z0,T),J=P,K=S,X=q,W=t,Y=o,V=k,G=w,I=f,z=g,N=_,F=n,D=r,B=W0}}else{let Z0=w-U,m=$8(W0,r,g,w,b0),y=Wj(Q([b0]),Z0),_=A(y,d);Z=T,J=P,K=B0,X=q,W=x,Y=U+1,V=k,G=w+1,I=f,z=g,N=_,F=n,D=r,B=m}else if(V0 instanceof E){let Z0=w-U,m=A(xf(Z0),d),y=v8(W0,g,w,T0),_=U-1;Z=I0,J=P,K=S,X=q,W=x,Y=_,V=k,G=w,I=f,z=g,N=m,F=n,D=r,B=y}else{let Z0=$5(w-U,b0),m,_=v8(W0,g,w,T0);m=$8(_,r,g,w,b0);let t=m;Z=I0,J=P,K=B0,X=q,W=x,Y=U,V=k,G=w+1,I=f,z=g,N=A(Z0,d),F=n,D=r,B=t}}else{let I0=T.head;if(I0 instanceof k1){let B0=S.head;if(B0 instanceof k1){let V0=I0,J0=T.tail,Z0=B0,m=S.tail,y=b8(r,Z0.mapper),_=K8(g,w,Z0.key),t=Gj(V0.children,V0.keyed_children,Z0.children,Z0.keyed_children,w1(),0,0,0,w,_,e,e,y,W0),o,Y0=t.patch;if(Y0.changes instanceof M)if(Y0.children instanceof M)if(Y0.removed===0)o=n;else o=A(t.patch,n);else o=A(t.patch,n);else o=A(t.patch,n);let R0=o;Z=J0,J=P,K=m,X=q,W=x,Y=U,V=k,G=w+1,I=f,z=g,N=d,F=R0,D=r,B=t.events}else{let V0=I0,J0=T.tail,Z0=B0,m=S.tail,y=$5(w-U,Z0),_,o=v8(W0,g,w,V0);_=$8(o,r,g,w,Z0);let Y0=_;Z=J0,J=P,K=m,X=q,W=x,Y=U,V=k,G=w+1,I=f,z=g,N=A(y,d),F=n,D=r,B=Y0}}else if(I0 instanceof U1){let B0=S.head;if(B0 instanceof U1){let V0=I0,J0=B0;if(V0.namespace===J0.namespace&&V0.tag===J0.tag){let Z0=T.tail,m=S.tail,y=b8(r,J0.mapper),_=K8(g,w,J0.key),t=R$(W0,J0.namespace,J0.tag,_),o=bf(t,_,y,W0,V0.attributes,J0.attributes,e,e),Y0,j0,R0;Y0=o.added,j0=o.removed,R0=o.events;let h0;if(Y0 instanceof M&&j0 instanceof M)h0=e;else h0=Q([Zj(Y0,j0)]);let O1=h0,q1=Gj(V0.children,V0.keyed_children,J0.children,J0.keyed_children,w1(),0,0,0,w,_,O1,e,y,R0),E1,L1=q1.patch;if(L1.changes instanceof M)if(L1.children instanceof M)if(L1.removed===0)E1=n;else E1=A(q1.patch,n);else E1=A(q1.patch,n);else E1=A(q1.patch,n);let M8=E1;Z=Z0,J=P,K=m,X=q,W=x,Y=U,V=k,G=w+1,I=f,z=g,N=d,F=M8,D=r,B=q1.events}else{let Z0=I0,m=T.tail,y=B0,_=S.tail,t=$5(w-U,y),o,j0=v8(W0,g,w,Z0);o=$8(j0,r,g,w,y);let R0=o;Z=m,J=P,K=_,X=q,W=x,Y=U,V=k,G=w+1,I=f,z=g,N=A(t,d),F=n,D=r,B=R0}}else{let V0=I0,J0=T.tail,Z0=B0,m=S.tail,y=$5(w-U,Z0),_,o=v8(W0,g,w,V0);_=$8(o,r,g,w,Z0);let Y0=_;Z=J0,J=P,K=m,X=q,W=x,Y=U,V=k,G=w+1,I=f,z=g,N=A(y,d),F=n,D=r,B=Y0}}else if(I0 instanceof u1){let B0=S.head;if(B0 instanceof u1){let V0=I0,J0=B0;if(V0.content===J0.content){let Z0=T.tail,m=S.tail;Z=Z0,J=P,K=m,X=q,W=x,Y=U,V=k,G=w+1,I=f,z=g,N=d,F=n,D=r,B=W0}else{let Z0=T.tail,m=B0,y=S.tail,_=aR(w,0,Q([qf(m.content)]),e);Z=Z0,J=P,K=y,X=q,W=x,Y=U,V=k,G=w+1,I=f,z=g,N=d,F=A(_,n),D=r,B=W0}}else{let V0=I0,J0=T.tail,Z0=B0,m=S.tail,y=$5(w-U,Z0),_,o=v8(W0,g,w,V0);_=$8(o,r,g,w,Z0);let Y0=_;Z=J0,J=P,K=m,X=q,W=x,Y=U,V=k,G=w+1,I=f,z=g,N=A(y,d),F=n,D=r,B=Y0}}else{let B0=S.head;if(B0 instanceof X5){let V0=I0,J0=T.tail,Z0=B0,m=S.tail,y=b8(r,Z0.mapper),_=K8(g,w,Z0.key),t=bf(!1,_,y,W0,V0.attributes,Z0.attributes,e,e),o,Y0,j0;o=t.added,Y0=t.removed,j0=t.events;let R0;if(o instanceof M&&Y0 instanceof M)R0=e;else R0=Q([Zj(o,Y0)]);let h0=R0,O1;if(V0.inner_html===Z0.inner_html)O1=h0;else O1=A(Ef(Z0.inner_html),h0);let E1=O1,L1;if(E1 instanceof M)L1=n;else L1=A(aR(w,0,E1,Q([])),n);let z8=L1;Z=J0,J=P,K=m,X=q,W=x,Y=U,V=k,G=w+1,I=f,z=g,N=d,F=z8,D=r,B=j0}else{let V0=I0,J0=T.tail,Z0=B0,m=S.tail,y=$5(w-U,Z0),_,o=v8(W0,g,w,V0);_=$8(o,r,g,w,Z0);let Y0=_;Z=J0,J=P,K=m,X=q,W=x,Y=U,V=k,G=w+1,I=f,z=g,N=A(y,d),F=n,D=r,B=Y0}}}}}}function q4(Z,J,K){return Gj(Q([J]),w1(),Q([K]),w1(),w1(),0,0,0,0,B4,e,e,A0,Yf(Z))}var{setTimeout:j$,clearTimeout:Ij}=globalThis,L$=(Z,J)=>e1().createElementNS(Z,J),y$=(Z)=>e1().createTextNode(Z),f$=()=>e1().createDocumentFragment(),E4=(Z,J,K)=>Z.insertBefore(J,K),$f=yy?(Z,J,K)=>Z.moveBefore(J,K):E4,k$=(Z,J)=>Z.removeChild(J),b$=(Z,J)=>Z.getAttribute(J),gf=(Z,J,K)=>Z.setAttribute(J,K),h$=(Z,J)=>Z.removeAttribute(J),v$=(Z,J,K,X)=>Z.addEventListener(J,K,X),_f=(Z,J,K)=>Z.removeEventListener(J,K),$$=(Z,J)=>Z.innerHTML=J,g$=(Z,J)=>Z.data=J,u8=Symbol("lustre");class df{constructor(Z,J,K,X){this.kind=Z,this.key=X,this.parent=J,this.children=[],this.node=K,this.handlers=new Map,this.throttles=new Map,this.debouncers=new Map}get parentNode(){return this.kind===V8?this.node.parentNode:this.node}}var d8=(Z,J,K,X,W)=>{let Y=new df(Z,J,K,W);return K[u8]=Y,J?.children.splice(X,0,Y),Y},_$=(Z)=>{let J="";for(let K=Z[u8];K.parent;K=K.parent)if(K.key)J=`${mZ}${K.key}${J}`;else{let X=K.parent.children.indexOf(K);J=`${mZ}${X}${J}`}return J.slice(1)};class Nj{#Z=null;#X;#K;#Y=!1;constructor(Z,J,K,{exposeKeys:X=!1}={}){this.#Z=Z,this.#X=J,this.#K=K,this.#Y=X}mount(Z){d8(b5,null,this.#Z,0,null),this.#P(this.#Z,null,this.#Z[u8],0,Z)}push(Z){this.#J.push({node:this.#Z[u8],patch:Z}),this.#W()}#J=[];#W(){let Z=this.#J;while(Z.length){let{node:J,patch:K}=Z.pop(),{children:X}=J,{changes:W,removed:Y,children:V}=K;if(g5(W,(G)=>this.#Q(J,G)),Y)this.#F(J,X.length-Y,Y);g5(V,(G)=>{let I=X[G.index|0];this.#J.push({node:I,patch:G})})}}#Q(Z,J){switch(J.kind){case tR:this.#C(Z,J);break;case oR:this.#S(Z,J);break;case eR:this.#D(Z,J);break;case Jj:this.#z(Z,J);break;case Kj:this.#O(Z,J);break;case Yj:this.#N(Z,J);break;case Xj:this.#G(Z,J);break}}#G(Z,{children:J,before:K}){let X=f$(),W=this.#I(Z,K);this.#T(X,null,Z,K|0,J),E4(Z.parentNode,X,W)}#N(Z,{index:J,with:K}){this.#F(Z,J|0,1);let X=this.#I(Z,J);this.#P(Z.parentNode,X,Z,J|0,K)}#I(Z,J){J=J|0;let{children:K}=Z,X=K.length;if(J<X)return K[J].node;let W=K[X-1];if(!W&&Z.kind!==V8)return null;if(!W)W=Z;while(W.kind===V8&&W.children.length)W=W.children[W.children.length-1];return W.node.nextSibling}#z(Z,{key:J,before:K}){K=K|0;let{children:X,parentNode:W}=Z,Y=X[K].node,V=X[K];for(let N=K+1;N<X.length;++N){let F=X[N];if(X[N]=V,V=F,F.key===J){X[K]=F;break}}let{kind:G,node:I,children:z}=V;if($f(W,I,Y),G===V8)this.#V(W,z,Y)}#V(Z,J,K){for(let X=0;X<J.length;++X){let{kind:W,node:Y,children:V}=J[X];if($f(Z,Y,K),W===V8)this.#V(Z,V,K)}}#O(Z,{index:J}){this.#F(Z,J,1)}#F(Z,J,K){let{children:X,parentNode:W}=Z,Y=X.splice(J,K);for(let V=0;V<Y.length;++V){let{kind:G,node:I,children:z}=Y[V];if(k$(W,I),this.#H(Y[V]),G===V8)Y.push(...z)}}#H(Z){let{debouncers:J,children:K}=Z;for(let{timeout:X}of J.values())if(X)Ij(X);J.clear(),g5(K,(X)=>this.#H(X))}#D({node:Z,handlers:J,throttles:K,debouncers:X},{added:W,removed:Y}){g5(Y,({name:V})=>{if(J.delete(V))_f(Z,V,zj),this.#B(K,V,0),this.#B(X,V,0);else h$(Z,V),uf[V]?.removed?.(Z,V)}),g5(W,(V)=>this.#E(Z,V))}#C({node:Z},{content:J}){g$(Z,J??"")}#S({node:Z},{inner_html:J}){$$(Z,J??"")}#T(Z,J,K,X,W){g5(W,(Y)=>this.#P(Z,J,K,X++,Y))}#P(Z,J,K,X,W){switch(W.kind){case b5:{let Y=this.#A(K,X,W);this.#T(Y,null,Y[u8],0,W.children),E4(Z,Y,J);break}case P4:{let Y=this.#q(K,X,W);E4(Z,Y,J);break}case V8:{let Y=this.#q(K,X,W);E4(Z,Y,J),this.#T(Z,J,Y[u8],0,W.children);break}case ey:{let Y=this.#A(K,X,W);this.#S({node:Y},W),E4(Z,Y,J);break}}}#A(Z,J,{kind:K,key:X,tag:W,namespace:Y,attributes:V}){let G=L$(Y||DK,W);if(d8(K,Z,G,J,X),this.#Y&&X)gf(G,"data-lustre-key",X);return g5(V,(I)=>this.#E(G,I)),G}#q(Z,J,{kind:K,key:X,content:W}){let Y=y$(W??"");return d8(K,Z,Y,J,X),Y}#E(Z,J){let{debouncers:K,handlers:X,throttles:W}=Z[u8],{kind:Y,name:V,value:G,prevent_default:I,debounce:z,throttle:N}=J;switch(Y){case CR:{let F=G??"";if(V==="virtual:defaultValue"){Z.defaultValue=F;return}else if(V==="virtual:defaultChecked"){Z.defaultChecked=!0;return}else if(V==="virtual:defaultSelected"){Z.defaultSelected=!0;return}if(F!==b$(Z,V))gf(Z,V,F);uf[V]?.added?.(Z,F);break}case xR:Z[V]=G;break;case wR:{if(X.has(V))_f(Z,V,zj);let F=I.kind===UR;v$(Z,V,zj,{passive:F}),this.#B(W,V,N),this.#B(K,V,z),X.set(V,(D)=>this.#x(J,D));break}}}#B(Z,J,K){let X=Z.get(J);if(K>0)if(X)X.delay=K;else Z.set(J,{delay:K});else if(X){let{timeout:W}=X;if(W)Ij(W);Z.delete(J)}}#x(Z,J){let{currentTarget:K,type:X}=J,{debouncers:W,throttles:Y}=K[u8],V=_$(K),{prevent_default:G,stop_propagation:I,include:z}=Z;if(G.kind===PK)J.preventDefault();if(I.kind===PK)J.stopPropagation();if(X==="submit")J.detail??={},J.detail.formData=[...new FormData(J.target,J.submitter).entries()];let N=this.#X(J,V,X,z),F=Y.get(X);if(F){let B=Date.now(),T=F.last||0;if(B>T+F.delay)F.last=B,F.lastEvent=J,this.#K(J,N)}let D=W.get(X);if(D)Ij(D.timeout),D.timeout=j$(()=>{if(J===Y.get(X)?.lastEvent)return;this.#K(J,N)},D.delay);if(!F&&!D)this.#K(J,N)}}var g5=(Z,J)=>{if(Array.isArray(Z))for(let K=0;K<Z.length;K++)J(Z[K]);else if(Z)for(Z;Z.head;Z=Z.tail)J(Z.head)},zj=(Z)=>{let{currentTarget:J,type:K}=Z;J[u8].handlers.get(K)(Z)},mf=(Z)=>{return{added(J){J[Z]=!0},removed(J){J[Z]=!1}}},m$=(Z)=>{return{added(J,K){J[Z]=K}}},uf={checked:mf("checked"),selected:mf("selected"),value:m$("value"),autofocus:{added(Z){queueMicrotask(()=>{Z.focus?.()})}},autoplay:{added(Z){try{Z.play?.()}catch(J){console.error(J)}}}};function u$(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof M)return[W,H0(Y)];else{let V=X.tail,G=X.head[0],I=X.head[1],z=oy(G,I),N;if(G==="")N=W;else N=k5(W,G,z);let F=N,D=A(z,Y);Z=V,J=F,K=D}}}function Fj(Z){return u$(Z,w1(),e)}function cf(Z,J,K){let X=Fj(K),W,Y;return W=X[0],Y=X[1],T4("",A0,"",Z,J,Y,W,!1,O4(Z,""))}function pf(Z,J,K,X){let W=Fj(X),Y,V;return Y=W[0],V=W[1],T4("",A0,Z,J,K,V,Y,!1,O4(J,Z))}function nf(Z){let J=Fj(Z),K,X;return K=J[0],X=J[1],qK("",A0,X,K)}var lf=(Z)=>{let J=d8(b5,null,Z,0,null),K=0;for(let V=Z.firstChild;V;V=V.nextSibling)if(sf(V))K+=1;if(K===0){let V=e1().createTextNode("");return d8(P4,J,V,0,null),Z.replaceChildren(V),X0()}if(K===1)return Hj(J,Z).head[1];let X=e1().createTextNode(""),W=d8(V8,J,X,0,null),Y=Hj(W,Z);return Z.insertBefore(X,Z.firstChild),nf(Y)},sf=(Z)=>{switch(Z.nodeType){case BK:return!0;case qR:return!!Z.data;default:return!1}},d$=(Z,J,K,X)=>{if(!sf(J))return null;switch(J.nodeType){case BK:{let W=d8(b5,Z,J,X,K),Y=J.localName,V=J.namespaceURI,G=!V||V===DK;if(G&&c$.includes(Y))p$(Y,J);let I=n$(J),z=Hj(W,J);return G?cf(Y,I,z):pf(V,Y,I,z)}case qR:return d8(P4,Z,J,X,null),C(J.data);default:return null}},c$=["input","select","textarea"],p$=(Z,J)=>{let{value:K,checked:X}=J;if(Z==="input"&&J.type==="checkbox"&&!X)return;if(Z==="input"&&J.type==="radio"&&!X)return;if(J.type!=="checkbox"&&J.type!=="radio"&&!K)return;queueMicrotask(()=>{if(J.value=K,J.checked=X,J.dispatchEvent(new Event("input",{bubbles:!0})),J.dispatchEvent(new Event("change",{bubbles:!0})),e1().activeElement!==J)J.dispatchEvent(new Event("blur",{bubbles:!0}))})},Hj=(Z,J)=>{let K=null,X=J.firstChild,W=null,Y=0;while(X){let V=X.nodeType===BK?X.getAttribute("data-lustre-key"):null;if(V!=null)X.removeAttribute("data-lustre-key");let G=d$(Z,X,V,Y),I=X.nextSibling;if(G){let z=new $1([V??"",G],null);if(W)W=W.tail=z;else W=K=z;Y+=1}else J.removeChild(X);X=I}if(!W)return e;return W.tail=e,K},n$=(Z)=>{let J=Z.attributes.length,K=e;while(J-- >0){let X=Z.attributes[J];if(X.name==="xmlns")continue;K=new $1(i$(X),K)}return K},i$=(Z)=>{let{localName:J,value:K}=Z;return j(J,K)};var W5=()=>!!e1();class yK{constructor(Z,[J,K],X,W){this.root=Z,this.#Z=J,this.#X=X,this.#K=W,this.root.addEventListener("context-request",(G)=>{if(!(G.context&&G.callback))return;if(!this.#Q.has(G.context))return;G.stopImmediatePropagation();let I=this.#Q.get(G.context);if(G.subscribe){let z=()=>{I.subscribers=I.subscribers.filter((N)=>N!==G.callback)};I.subscribers.push([G.callback,z]),G.callback(I.value,z)}else G.callback(I.value)});let Y=(G,I,z)=>nR(this.#J,I,z,G),V=(G,I)=>{let[z,N]=iR(this.#J,I);if(this.#J=z,N.isOk()){let F=N[0];if(F.stop_propagation)G.stopPropagation();if(F.prevent_default)G.preventDefault();this.dispatch(F.message,!1)}};this.#W=new Nj(this.root,Y,V),this.#Y=lf(this.root),this.#J=pR(),this.#H(K),this.#D()}root=null;dispatch(Z,J=!1){if(this.#G)this.#N.push(Z);else{let[K,X]=this.#K(this.#Z,Z);this.#Z=K,this.#F(X,J)}}emit(Z,J){(this.root.host??this.root).dispatchEvent(new CustomEvent(Z,{detail:J,bubbles:!0,composed:!0}))}provide(Z,J){if(!this.#Q.has(Z))this.#Q.set(Z,{value:J,subscribers:[]});else{let K=this.#Q.get(Z);if(G8(K.value,J))return;K.value=J;for(let X=K.subscribers.length-1;X>=0;X--){let[W,Y]=K.subscribers[X];if(!W){K.subscribers.splice(X,1);continue}W(J,Y)}}}#Z;#X;#K;#Y;#J;#W;#Q=new Map;#G=!1;#N=[];#I=e;#z=e;#V=null;#O={dispatch:(Z)=>this.dispatch(Z),emit:(Z,J)=>this.emit(Z,J),select:()=>{},root:()=>this.root,provide:(Z,J)=>this.provide(Z,J)};#F(Z,J=!1){if(this.#H(Z),!this.#V)if(J)this.#V="sync",queueMicrotask(()=>this.#D());else this.#V=requestAnimationFrame(()=>this.#D())}#H(Z){this.#G=!0;while(!0){for(let K=Z.synchronous;K.tail;K=K.tail)K.head(this.#O);if(this.#I=af(this.#I,Z.before_paint),this.#z=af(this.#z,Z.after_paint),!this.#N.length)break;let J=this.#N.shift();[this.#Z,Z]=this.#K(this.#Z,J)}this.#G=!1}#D(){this.#V=null;let Z=this.#X(this.#Z),{patch:J,events:K}=q4(this.#J,this.#Y,Z);if(this.#J=K,this.#Y=Z,this.#W.push(J),this.#I instanceof $1){let X=rf(this.#I);this.#I=e,queueMicrotask(()=>{this.#F(X,!0)})}if(this.#z instanceof $1){let X=rf(this.#z);this.#z=e,requestAnimationFrame(()=>{this.#F(X,!0)})}}}function rf(Z){return{synchronous:Z,after_paint:e,before_paint:e}}function af(Z,J){if(Z instanceof M)return J;else if(J instanceof M)return Z;else return _0(Z,J)}class Bj extends O{constructor(Z){super();this.message=Z}}class Oj extends O{constructor(Z){super();this.callback=Z}}class Tj extends O{constructor(Z){super();this.callback=Z}}class Q5 extends O{constructor(Z){super();this.message=Z}}class _5 extends O{constructor(Z,J){super();this.name=Z,this.data=J}}class fK extends O{constructor(Z,J){super();this.key=Z,this.value=J}}class m5 extends O{}class ef extends O{constructor(Z,J,K,X,W,Y,V,G,I,z){super();this.open_shadow_root=Z,this.adopt_styles=J,this.delegates_focus=K,this.attributes=X,this.properties=W,this.contexts=Y,this.is_form_associated=V,this.on_form_autofill=G,this.on_form_reset=I,this.on_form_restore=z}}function Zk(Z){let J=new ef(!0,!0,!1,e,e,e,!1,OK,OK,OK);return g0(Z,J,(K,X)=>{return X.apply(K)})}class Kk{#Z;constructor(Z,[J,K],X,W){this.#Z=new yK(Z,[J,K],W,X)}send(Z){switch(Z.constructor){case Q5:{this.dispatch(Z.message,!1);break}case _5:{this.emit(Z.name,Z.data);break}case m5:break}}dispatch(Z){this.#Z.dispatch(Z)}emit(Z,J){this.#Z.emit(Z,J)}}var Yk=({init:Z,update:J,view:K},X,W)=>{if(!W5())return new v(new cZ);let Y=X instanceof HTMLElement?X:e1().querySelector(X);if(!Y)return new v(new Pj(X));return new E(new Kk(Y,Z(W),J,K))};class l${#Z;#X;#K;#Y;#J;#W;#Q=$0();#G=new Set;constructor([Z,J],K,X,W){this.#Z=Z,this.#X=K,this.#K=X,this.#Y=W,this.#J=this.#K(this.#Z),this.#W=lR(this.#J),this.#V(J)}send(Z){switch(Z.constructor){case Bj:{let{message:J}=Z,K=this.#N(J),X=q4(this.#W,this.#J,K);this.#J=K,this.#W=X.events,this.broadcast(Vj(X.patch));return}case Oj:{let{callback:J}=Z;this.#G.add(J),J(Lf(this.#Y.open_shadow_root,this.#Y.adopt_styles,j8(this.#Y.attributes),j8(this.#Y.properties),j8(this.#Y.contexts),this.#Q,this.#J));return}case Tj:{let{callback:J}=Z;this.#G.delete(J);return}case Q5:{let{message:J}=Z,[K,X]=this.#X(this.#Z,J),W=this.#K(K),Y=q4(this.#W,this.#J,W);this.#V(X),this.#Z=K,this.#J=W,this.#W=Y.events,this.broadcast(Vj(Y.patch));return}case _5:{let{name:J,data:K}=Z;this.broadcast(yf(J,K));return}case fK:{let{key:J,value:K}=Z,X=S0(this.#Q,J);if(X.isOk()&&G8(X[0],K))return;this.#Q=a0(this.#Q,J,K),this.broadcast(ff(J,K));return}case m5:{this.#Z=null,this.#X=null,this.#K=null,this.#Y=null,this.#J=null,this.#W=null,this.#Q=null,this.#G.clear();return}default:return}}broadcast(Z){for(let J of this.#G)J(Z)}#N(Z){switch(Z.constructor){case UK:{let{messages:J}=Z,K=this.#Z,X=i();for(let W=J;W.head;W=W.tail){let Y=this.#N(W.head);if(Y instanceof E){K=Y[0][0],X=G1(r0.fromArray([X,Y[0][1]]));break}}return this.#V(X),this.#Z=K,this.#K(this.#Z)}case MK:{let{name:J,value:K}=Z,X=this.#I(J,K);if(X instanceof v)return this.#J;else{let[W,Y]=this.#X(this.#Z,X[0]);return this.#V(Y),this.#Z=W,this.#K(this.#Z)}}case RK:{let{name:J,value:K}=Z,X=this.#z(J,K);if(X instanceof v)return this.#J;else{let[W,Y]=this.#X(this.#Z,X[0]);return this.#V(Y),this.#Z=W,this.#K(this.#Z)}}case jK:{let{path:J,name:K,event:X}=Z,[W,Y]=CK(this.#W,J,K,X);if(this.#W=W,Y instanceof v)return this.#J;else{let[V,G]=this.#X(this.#Z,Y[0].message);return this.#V(G),this.#Z=V,this.#K(this.#Z)}}case Qj:{let{key:J,value:K}=Z,X=S0(this.#Y.contexts,J);if(X instanceof v)return this.#J;if(X=N0(K,X[0]),X instanceof v)return this.#J;let[W,Y]=this.#X(this.#Z,X[0]);return this.#V(Y),this.#Z=W,this.#K(this.#Z)}}}#I(Z,J){let K=S0(this.#Y.attributes,Z);switch(K.constructor){case E:return K[0](J);case v:return new v(void 0)}}#z(Z,J){let K=S0(this.#Y.properties,Z);switch(K.constructor){case E:return K[0](J);case v:return new v(void 0)}}#V(Z){let J=(V)=>this.send(new Q5(V)),K=(V,G)=>this.send(new _5(V,G)),X=()=>{return},W=()=>{return},Y=(V,G)=>this.send(new fK(V,G));globalThis.queueMicrotask(()=>{ly(Z,J,K,X,W,Y)})}}class Xk extends O{constructor(Z,J,K,X){super();this.init=Z,this.update=J,this.view=K,this.config=X}}class Pj extends O{constructor(Z){super();this.selector=Z}}class cZ extends O{}function Wk(Z,J,K){return new Xk(Z,J,K,Zk(e))}function Qk(Z,J,K){return H4(!W5(),new v(new cZ),()=>{return Yk(Z,J,K)})}function Ik(Z,J){return[Z,J]}var a$={handle_external_links:!1,handle_internal_links:!0},Nk=globalThis?.window?.location?.href,qj=()=>{if(!Nk)return new v(void 0);else return new E(Aj(new URL(Nk)))},Ej=(Z,J=a$)=>{document.addEventListener("click",(K)=>{let X=Hk(K.target);if(!X)return;try{let W=new URL(X.href),Y=Aj(W),V=W.host!==window.location.host||X.target==="_blank";if(!J.handle_external_links&&V)return;if(!J.handle_internal_links&&!V)return;if(K.preventDefault(),!V)window.history.pushState({},"",X.href),window.requestAnimationFrame(()=>{if(W.hash)document.getElementById(W.hash.slice(1))?.scrollIntoView();else window.scrollTo(0,0)});return Z(Y)}catch{return}}),window.addEventListener("popstate",(K)=>{K.preventDefault();let X=new URL(window.location.href),W=Aj(X);window.requestAnimationFrame(()=>{if(X.hash)document.getElementById(X.hash.slice(1))?.scrollIntoView();else window.scrollTo(0,0)}),Z(W)}),window.addEventListener("modem-push",({detail:K})=>{Z(K)}),window.addEventListener("modem-replace",({detail:K})=>{Z(K)})},Fk=(Z)=>{window.history.pushState({},"",FK(Z)),window.requestAnimationFrame(()=>{if(Z.fragment[0])document.getElementById(Z.fragment[0])?.scrollIntoView()}),window.dispatchEvent(new CustomEvent("modem-push",{detail:Z}))};var Hk=(Z)=>{if(!Z||Z.tagName==="BODY")return null;else if(Z.tagName==="A")return Z;else return Hk(Z.parentElement)},Aj=(Z)=>{return new G0(Z.protocol?new L(Z.protocol.slice(0,-1)):new b,new b,Z.hostname?new L(Z.hostname):new b,Z.port?new L(Number(Z.port)):new b,Z.pathname,Z.search?new L(Z.search.slice(1)):new b,Z.hash?new L(Z.hash.slice(1)):new b)};function Bk(Z){return F1((J)=>{return H4(!W5(),void 0,()=>{return Ej((K)=>{let W=Z(K);return J(W)})})})}function Dk(Z){if(Z==="")return new b;else return new L(Z)}var kK=new G0(new b,new b,new b,new b,"",new b,new b);function u5(Z,J,K){return F1((X)=>{return H4(!W5(),void 0,()=>{return Fk(new G0(kK.scheme,kK.userinfo,kK.host,kK.port,Z,dM(J,Dk),dM(K,Dk)))})})}class Ok extends O{constructor(Z,J){super();this.query=Z,this.module_path=J}}class Cj extends O{constructor(Z){super();this.queries=Z}}function Tk(){return new Cj($0())}function K1(Z,J,K,X){let W=new Ok(K,X);return new Cj(a0(Z.queries,J,W))}function xj(Z,J){return S0(Z.queries,J)}class hK extends O{}class vK extends O{}class Pk extends O{}class Sk extends O{}class Ak extends O{}class qk extends O{}class Ek extends O{}class Ck extends O{}class xk extends O{}class wj extends O{}class $K extends O{}function wk(Z){if(Z instanceof hK)return"GET";else if(Z instanceof vK)return"POST";else if(Z instanceof Pk)return"HEAD";else if(Z instanceof Sk)return"PUT";else if(Z instanceof Ak)return"DELETE";else if(Z instanceof qk)return"TRACE";else if(Z instanceof Ek)return"CONNECT";else if(Z instanceof Ck)return"OPTIONS";else if(Z instanceof xk)return"PATCH";else return Z[0]}function Uk(Z){if(Z instanceof wj)return"http";else return"https"}function Mk(Z){let J=a1(Z);if(J==="http")return new E(new wj);else if(J==="https")return new E(new $K);else return new v(void 0)}class pZ extends O{constructor(Z,J,K,X,W,Y,V,G){super();this.method=Z,this.headers=J,this.body=K,this.scheme=X,this.host=W,this.port=Y,this.path=V,this.query=G}}function jk(Z){return new G0(new L(Uk(Z.scheme)),new b,new L(Z.host),Z.port,Z.path,Z.query,new b)}function e$(Z){return f1((()=>{let J=Z.scheme,K=RL(J,"");return Mk(K)})(),(J)=>{return f1((()=>{let K=Z.host;return mM(K,void 0)})(),(K)=>{let X=new pZ(new hK,Q([]),"",J,K,Z.port,Z.path,Z.query);return new E(X)})})}function Uj(Z,J,K){let X=WR(Z.headers,a1(J),K);return new pZ(Z.method,X,Z.body,Z.scheme,Z.host,Z.port,Z.path,Z.query)}function Lk(Z,J){return new pZ(Z.method,Z.headers,J,Z.scheme,Z.host,Z.port,Z.path,Z.query)}function yk(Z,J){return new pZ(J,Z.headers,Z.body,Z.scheme,Z.host,Z.port,Z.path,Z.query)}function fk(Z){let K=PR(Z);return f1(K,e$)}class Mj extends O{constructor(Z,J,K){super();this.status=Z,this.headers=J,this.body=K}}class d5{constructor(Z){this.promise=Z}static wrap(Z){return Z instanceof Promise?new d5(Z):Z}static unwrap(Z){return Z instanceof d5?Z.promise:Z}}function S8(Z){return Promise.resolve(d5.wrap(Z))}function _K(Z,J){return Z.then((K)=>J(d5.unwrap(K)))}function mK(Z,J){return Z.then((K)=>d5.wrap(J(d5.unwrap(K))))}function jj(Z){return new Mj(Z.status,r0.fromArray([...Z.headers]),Z)}function Yg(Z){let J=FK(jk(Z)),K=wk(Z.method).toUpperCase(),X={headers:Xg(Z.headers),method:K};return[J,X]}function Lj(Z){let[J,K]=Yg(Z);if(K.method!=="GET"&&K.method!=="HEAD")K.body=Z.body;return new globalThis.Request(J,K)}function Xg(Z){let J=new globalThis.Headers;for(let[K,X]of Z)J.append(K.toLowerCase(),X);return J}async function uK(Z){let J;try{J=await Z.body.text()}catch(K){return new v(new yj)}return new E(Z.withFields({body:J}))}class dK extends O{constructor(Z){super();this[0]=Z}}class yj extends O{}class bk extends O{constructor(Z,J){super();this.endpoint=Z,this.headers=J}}function fj(Z,J){return new bk(Z,J)}function X1(Z,J,K){let X=h(Q([["query",c(J)],["variables",K]]));return f1((()=>{let W=fk(Z.endpoint);return I4(W,(Y)=>{return"Invalid endpoint URL"})})(),(W)=>{let Y,G=yk(W,new vK),I=Lk(G,y8(X));Y=Uj(I,"content-type","application/json");let z=Y,N=g0(Z.headers,z,(F,D)=>{return Uj(F,D[0],D[1])});return new E(N)})}function E0(Z,J){return f1((()=>{let K=t1(Z,v0);return I4(K,(X)=>{return"Failed to decode JSON response"})})(),(K)=>{let X=$("data",J,(Y)=>{return s(Y)}),W=N0(K,X);return I4(W,(Y)=>{return"Failed to decode response data: "+GK(Y)+". Response body: "+Z})})}async function kj(Z){try{let J=Lj(Z),K=new Request(J,{credentials:"include"}),X=await fetch(K),W=jj(X);return new E(W)}catch(J){return new v(new dK(J.toString()))}}var _k="src/squall_cache.gleam";class M1 extends O{}class R1 extends O{constructor(Z){super();this[0]=Z}}class Y8 extends O{constructor(Z){super();this[0]=Z}}class cK extends O{}class mk extends O{}class bj extends O{}class iZ extends O{constructor(Z,J,K){super();this.data=Z,this.timestamp=J,this.status=K}}class b1 extends O{constructor(Z,J,K,X,W,Y,V,G){super();this.entities=Z,this.optimistic_entities=J,this.optimistic_mutations=K,this.queries=X,this.pending_fetches=W,this.get_headers=Y,this.mutation_counter=V,this.endpoint=G}}function uk(Z){return new b1($0(),$0(),$0(),$0(),R5(),()=>{return Q([])},0,Z)}function pK(Z,J){return Z+":"+y8(J)}function hk(Z){let J=KK(Z);if(J instanceof E){let K=J[0][0],X=J[0][1];return YK(K)+X}else return Z}function hj(Z){let K=H0(Z),X=ZK(K,(W)=>{if(W==="data")return new v(void 0);else if(W==="results")return new v(void 0);else if(W==="edges")return new v(void 0);else if(W==="node")return new v(void 0);else if(XK(W,"s")){let V=W8(W),G=zy(W,0,V-1);return new E(hk(G))}else return new E(hk(W))});return D8(X,"Entity")}function Vg(Z){if(S0(Z,"node")instanceof E)return!0;else return!1}function Gg(Z){let J=N0(Z,L0(v0));if(J instanceof E){let K=J[0];if(K instanceof M)return!1;else{let X=K.head,W=N0(X,L8(u,v0));if(W instanceof E){let Y=W[0];return Vg(Y)}else return!1}}else return!1}function Ig(Z,J,K){let X=pK(J,K),W=S0(Z.queries,X);if(W instanceof E){let Y=W[0],V=new iZ(Y.data,Y.timestamp,new bj),G=a0(Z.queries,X,V);return new b1(Z.entities,Z.optimistic_entities,Z.optimistic_mutations,G,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}else{let Y=new iZ("",0,new bj),V=a0(Z.queries,X,Y);return new b1(Z.entities,Z.optimistic_entities,Z.optimistic_mutations,V,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}}function u0(Z,J,K){let X=pK(J,K),W=H8(Z.queries,X);return new b1(Z.entities,Z.optimistic_entities,Z.optimistic_mutations,W,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}function zg(Z,J,K,X){let W,Y=S0(Z.optimistic_entities,K);if(Y instanceof E){let I=Y[0];W=new L(I)}else{let I=S0(Z.entities,K);if(I instanceof E){let z=I[0];W=new L(z)}else W=new b}let G=X(W);return new b1(Z.entities,a0(Z.optimistic_entities,K,G),a0(Z.optimistic_mutations,J,K),Z.queries,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}function vj(Z,J){let K=S0(Z.optimistic_mutations,J);if(K instanceof E){let X=K[0];return new b1(Z.entities,H8(Z.optimistic_entities,X),H8(Z.optimistic_mutations,J),Z.queries,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}else return Z}function dk(Z){return!JR(Z.optimistic_mutations)}function C4(Z){let J=N0(Z,L8(u,v0));if(J instanceof E){let X=J[0],W=a8(X),Y=z0(W,(V)=>{let G,I;return G=V[0],I=V[1],[G,C4(I)]});return h(Y)}else{let K=N0(Z,L0(v0));if(K instanceof E){let X=K[0];return k0(X,C4)}else{let X=N0(Z,u);if(X instanceof E){let W=X[0];return c(W)}else{let W=N0(Z,l0);if(W instanceof E){let Y=W[0];return Q1(Y)}else{let Y=N0(Z,iL);if(Y instanceof E){let V=Y[0];return Cy(V)}else{let V=N0(Z,z1);if(V instanceof E){let G=V[0];return o1(G)}else return OR()}}}}}}function Ng(Z,J){let K=y8(Z),X=y8(J),W=t1(K,v0),Y=t1(X,v0);if(W instanceof E&&Y instanceof E){let V=W[0],G=Y[0],I=N0(V,L8(u,v0)),z=N0(G,L8(u,v0));if(I instanceof E&&z instanceof E){let N=I[0],F=z[0],D,B=_0(j8(N),j8(F));D=mL(B);let P=C5(D,(S)=>{let q,x=S0(F,S);if(x instanceof E)q=x;else q=S0(N,S);let U=q;if(U instanceof E){let k=U[0];return new E([S,C4(k)])}else return new v(void 0)});return h(P)}else return J}else return J}function c8(Z,J){return J4(J,Z,(K,X,W)=>{let Y=S0(K,X);if(Y instanceof E){let V=Y[0],G=Ng(V,W);return a0(K,X,G)}else return a0(K,X,W)})}function vk(Z){let J=U5(Z,":");if(J instanceof E){let K=J[0][0],X=J[0][1],W=t1(X,v0);if(W instanceof E){let Y=W[0];return new E([K,C4(Y)])}else return new E([K,OR()])}else return new v(void 0)}function Fg(Z,J,K,X,W,Y,V){let G=xj(J,K);if(G instanceof E){let I=G[0];return F1((z)=>{let N=Z.get_headers(),F=fj(Z.endpoint,N),D=X1(F,I.query,X),B;if(D instanceof E)B=D[0];else throw s8("let_assert",_k,"squall_cache",767,"create_mutation_effect","Pattern match failed, no pattern matched the value.",{value:D,start:24617,end:24701,pattern_start:24628,pattern_end:24635});let T,P=kj(B);T=mK(P,(q)=>{if(q instanceof E){let x=q[0],U=uK(x);return _K(U,(k)=>{if(k instanceof E){let w=k[0],f=Y(w.body);if(f instanceof E){let g=f[0];return z(V(W,new E(g),w.body)),S8(void 0)}else{let g=f[0];return z(V(W,new v("Parse error: "+g),w.body)),S8(void 0)}}else return z(V(W,new v("Failed to read response"),"")),S8(void 0)})}else return z(V(W,new v("Failed to fetch"),"")),S8(void 0)});let S=T;return})}else return F1((I)=>{I(V(W,new v("Query not found in registry"),""));return})}function sZ(Z,J,K,X,W,Y,V,G){let I="mutation-"+x1(Z.mutation_counter),z=zg(Z,I,W,Y),N=new b1(z.entities,z.optimistic_entities,z.optimistic_mutations,z.queries,z.pending_fetches,z.get_headers,Z.mutation_counter+1,z.endpoint),F=Fg(N,J,K,X,I,V,G);return[N,I,F]}function Hg(Z,J,K,X,W){return F1((Y)=>{let V=Z.get_headers(),G=fj(Z.endpoint,V),I=X1(G,J,X),z;if(I instanceof E)z=I[0];else throw s8("let_assert",_k,"squall_cache",1073,"create_fetch_effect","Pattern match failed, no pattern matched the value.",{value:I,start:34411,end:34480,pattern_start:34422,pattern_end:34429});let N,F=kj(z);N=mK(F,(B)=>{if(B instanceof E){let T=B[0],P=uK(T);return _K(P,(S)=>{if(S instanceof E){let q=S[0];return Y(W(K,X,new E(q.body))),S8(void 0)}else return Y(W(K,X,new v("Failed to read response"))),S8(void 0)})}else return Y(W(K,X,new v("Failed to fetch"))),S8(void 0)});let D=N;return})}function d0(Z,J,K,X){let W=Uy(Z.pending_fetches),Y=C5(W,(I)=>{let z=vk(I);if(z instanceof E){let N=z[0][0],F=z[0][1],D=xj(J,N);if(D instanceof E){let B=D[0];return new E(Hg(Z,B.query,N,F,K))}else return new v(void 0)}else return new v(void 0)}),V=g0(W,Z,(I,z)=>{let N=vk(z);if(N instanceof E){let F=N[0][0],D=N[0][1];return Ig(I,F,D)}else return I});return[new b1(V.entities,V.optimistic_entities,V.optimistic_mutations,V.queries,R5(),V.get_headers,V.mutation_counter,V.endpoint),Y]}function $k(Z,J,K){let X=a8(Z),W=z0(X,(Y)=>{let V,G;return V=Y[0],G=Y[1],[V,$j(G,J,K)]});return h(W)}function $j(Z,J,K){let X=N0(Z,L8(u,v0));if(X instanceof E){let W=X[0],Y=S0(W,"__ref");if(Y instanceof E){let V=Y[0],G=N0(V,u);if(G instanceof E){let I=G[0],z=S0(J,I);if(z instanceof E)return z[0];else{let N=S0(K,I);if(N instanceof E)return N[0];else return h(Q([["__ref",c(I)]]))}}else return $k(W,J,K)}else return $k(W,J,K)}else{let W=N0(Z,L0(v0));if(W instanceof E){let Y=W[0];return k0(Y,(V)=>{return $j(V,J,K)})}else return C4(Z)}}function gk(Z,J,K){let X=t1(Z,v0);if(X instanceof E){let W=X[0],Y=$j(W,J,K);return y8(Y)}else return Z}function a(Z,J,K,X){let W=pK(J,K),Y=S0(Z.queries,W);if(Y instanceof E){let V=Y[0],G=V.status;if(G instanceof cK){let I=gk(V.data,Z.optimistic_entities,Z.entities),z=X(I);if(z instanceof E){let N=z[0];return[Z,new Y8(N)]}else{let N=z[0];return[Z,new R1("Parse error: "+N)]}}else if(G instanceof mk){let I=gk(V.data,Z.optimistic_entities,Z.entities),z=X(I);if(z instanceof E){let N=z[0];return[Z,new Y8(N)]}else{let N=z[0];return[Z,new R1("Parse error: "+N)]}}else return[Z,new M1]}else return[new b1(Z.entities,Z.optimistic_entities,Z.optimistic_mutations,Z.queries,fZ(Z.pending_fetches,W),Z.get_headers,Z.mutation_counter,Z.endpoint),new M1]}function Dg(Z,J){let K=g0(Z,[$0(),Q([]),R5()],(Y,V)=>{let G,I,z;G=Y[0],I=Y[1],z=Y[2];let N=N0(V,L8(u,v0));if(N instanceof E){let F=N[0],D=S0(F,"node");if(D instanceof E){let B=D[0],T,P=N0(B,L8(u,v0));if(P instanceof E){let q=P[0],x=S0(q,"id");if(x instanceof E){let U=x[0],k=N0(U,u);if(k instanceof E){let w=k[0],f,g=S0(q,"__typename");if(g instanceof E){let n=g[0],r=N0(n,u);if(r instanceof E)f=r[0];else f="Node"}else f=hj(_0(J,Q(["node"])));T=new L(f+":"+w)}else T=new b}else T=new b}else T=new b;let S=T;if(S instanceof L){let q=S[0];if(N4(z,q))return Y;else{let U=nZ(F,J),k,w;return k=U[0],w=U[1],[c8(G,k),_0(I,Q([w])),fZ(z,q)]}}else{let q=nZ(F,J),x,U;return x=q[0],U=q[1],[c8(G,x),_0(I,Q([U])),z]}}else{let B=nZ(F,J),T,P;return T=B[0],P=B[1],[c8(G,T),_0(I,Q([P])),z]}}else{let F=lZ(V,J),D,B;return D=F[0],B=F[1],[c8(G,D),_0(I,Q([B])),z]}}),X,W;return X=K[0],W=K[1],[X,k0(W,(Y)=>{return Y})]}function lZ(Z,J){let K=N0(Z,L8(u,v0));if(K instanceof E){let X=K[0],W=S0(X,"id");if(W instanceof E){let Y=W[0],V=N0(Y,u);if(V instanceof E){let G=V[0],I,z=S0(X,"__typename");if(z instanceof E){let k=z[0],w=N0(k,u);if(w instanceof E)I=w[0];else I=hj(J)}else I=hj(J);let F=I+":"+G,D,B=a8(X);D=z0(B,(k)=>{let w,f;w=k[0],f=k[1];let g=_0(J,Q([w])),d=lZ(f,g),n,r;return n=d[0],r=d[1],[w,n,r]});let T=D,P=g0(T,$0(),(k,w)=>{let f;return f=w[1],c8(k,f)}),S,q=z0(T,(k)=>{let w,f;return w=k[0],f=k[2],[w,f]});return S=h(q),[a0(P,F,S),h(Q([["__ref",c(F)]]))]}else return nZ(X,J)}else return nZ(X,J)}else{let X=N0(Z,L0(v0));if(X instanceof E){let W=X[0];if(Gg(Z))return Dg(W,J);else{let V=z0(W,(z)=>{return lZ(z,J)}),G=g0(V,$0(),(z,N)=>{let F;return F=N[0],c8(z,F)}),I=z0(V,(z)=>{let N;return N=z[1],N});return[G,k0(I,(z)=>{return z})]}}else return[$0(),C4(Z)]}}function ck(Z){return lZ(Z,Q([]))}function pk(Z,J,K,X,W){let Y=pK(J,K),V=t1(X,v0);if(V instanceof E){let G=V[0],I=ck(G),z,N;z=I[0],N=I[1];let F=c8(Z.entities,z),D=y8(N),B=new iZ(D,W,new cK),T=a0(Z.queries,Y,B);return new b1(F,Z.optimistic_entities,Z.optimistic_mutations,T,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}else{let G=new iZ(X,W,new cK),I=a0(Z.queries,Y,G);return new b1(Z.entities,Z.optimistic_entities,Z.optimistic_mutations,I,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}}function nZ(Z,J){let K,X=a8(Z);K=z0(X,(z)=>{let N,F;N=z[0],F=z[1];let D=_0(J,Q([N])),B=lZ(F,D),T,P;return T=B[0],P=B[1],[N,T,P]});let W=K,Y=g0(W,$0(),(z,N)=>{let F;return F=N[1],c8(z,F)}),V,G=z0(W,(z)=>{let N,F;return N=z[0],F=z[2],[N,F]});return V=h(G),[Y,V]}function gj(Z,J,K){let X=S0(Z.optimistic_mutations,J);if(X instanceof E){let W=X[0],Y=t1(K,v0);if(Y instanceof E){let V=Y[0],G=ck(V),I;I=G[0];let z=c8(Z.entities,I);return new b1(z,H8(Z.optimistic_entities,W),H8(Z.optimistic_mutations,J),Z.queries,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}else return new b1(Z.entities,H8(Z.optimistic_entities,W),H8(Z.optimistic_mutations,J),Z.queries,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}else return Z}class nk extends O{constructor(Z){super();this.is_backfilling=Z}}function Bg(){return $("isBackfilling",z1,(Z)=>{return s(new nk(Z))})}function rZ(Z){return E0(Z,Bg())}class nK extends O{}class n8 extends O{}class A8 extends O{}class c5 extends O{}function lk(Z,J,K){let X=h(Q([])),W=u0(Z,"IsBackfilling",X),Y=a(W,"IsBackfilling",X,rZ),V;return V=Y[0],d0(V,J,K,()=>{return 0})}function sk(Z,J){if(J)if(Z instanceof n8)return new A8;else if(Z instanceof A8)return Z;else return Z;else if(Z instanceof n8)return Z;else if(Z instanceof A8)return new c5;else return Z}function p5(Z){if(Z instanceof n8)return!0;else if(Z instanceof A8)return!0;else return!1}function i8(Z,J){return uy(Z,x5(J,(K)=>{return new bZ(!1,!1,K)}),e,MR,MR,0,0)}function Og(Z){if(Z instanceof S1)return new S1(Z.kind,Z.name,Z.handler,Z.include,dy,Z.stop_propagation,Z.debounce,Z.throttle);else return Z}function f0(Z){return i8("click",s(Z))}function c0(Z){return i8("input",RZ(Q(["target","value"]),u,(J)=>{return s(Z(J))}))}function ak(Z){return i8("change",RZ(Q(["target","value"]),u,(J)=>{return s(Z(J))}))}function Tg(){let J=$(0,u,(X)=>{return $(1,VR(x5(u,(W)=>{return new E(W)}),Q([s(new v(void 0))])),(W)=>{let V=DR(W,(G)=>{return Ik(X,G)});return s(V)})}),K=L0(J);return x5(K,Dy)}function tk(Z){let J=i8("submit",RZ(Q(["detail","formData"]),Tg(),(K)=>{let W=Z(K);return s(W)}));return Og(J)}var x4=null;function ok(Z,J,K){if(x4)clearTimeout(x4);if(!Z||Z.trim()===""){K(new E(Q([])));return}x4=setTimeout(async()=>{try{let X=new URL("https://public.api.bsky.app/xrpc/app.bsky.actor.searchActorsTypeahead");X.searchParams.set("q",Z),X.searchParams.set("limit","5");let W=await fetch(X.toString());if(!W.ok){K(new v("Search failed"));return}let V=((await W.json()).actors||[]).map((G)=>new aZ(G.did||"",G.handle||"",G.displayName||"",G.avatar?new L(G.avatar):new b));K(new E(Q(V)))}catch(X){K(new v(X.message||"Search failed"))}},J)}function ek(){if(x4)clearTimeout(x4),x4=null}class aZ extends O{constructor(Z,J,K,X){super();this.did=Z,this.handle=J,this.display_name=K,this.avatar=X}}class q8 extends O{constructor(Z,J,K,X){super();this.query=Z,this.actors=J,this.highlighted_index=K,this.is_open=X}}class iK extends O{constructor(Z){super();this[0]=Z}}class w4 extends O{constructor(Z){super();this[0]=Z}}class tZ extends O{constructor(Z){super();this[0]=Z}}class lK extends O{}class sK extends O{}class oZ extends O{}class _j extends O{}function Zb(){return new q8("",Q([]),-1,!1)}function E8(Z,J){if(J instanceof iK){let K=J[0],X=F1((W)=>{return ok(K,300,(Y)=>{return W(new w4(Y))})});return[new q8(K,Z.actors,Z.highlighted_index,K!==""),X]}else if(J instanceof w4){let K=J[0];if(K instanceof E){let X=K[0];return[new q8(Z.query,X,-1,Z.is_open),i()]}else return[new q8(Z.query,Q([]),-1,Z.is_open),i()]}else if(J instanceof tZ){let K=J[0];return[new q8(K.handle,Q([]),-1,!1),i()]}else if(J instanceof lK){let K=o8(Z.actors),X;if(Z.highlighted_index<K-1)X=Z.highlighted_index+1;else X=0;let Y=X;return[new q8(Z.query,Z.actors,Y,Z.is_open),i()]}else if(J instanceof sK){let K=o8(Z.actors),X;if(Z.highlighted_index>0)X=Z.highlighted_index-1;else X=K-1;let Y=X;return[new q8(Z.query,Z.actors,Y,Z.is_open),i()]}else if(J instanceof oZ)return ek(),[new q8(Z.query,Z.actors,-1,!1),i()];else return[new q8(Z.query,Z.actors,Z.highlighted_index,Z.query!==""),i()]}function Jb(Z){if(Z.highlighted_index>=0){let K=Z.actors,X=Y4(K,Z.highlighted_index),W=gL(X);return uM(W)}else return new b}function Pg(Z,J,K){let X;if(J)X="bg-zinc-700";else X="hover:bg-zinc-700";return R(Q([H("flex items-center gap-2 px-3 py-2 cursor-pointer transition-colors "+X),i8("mousedown",s(K(Z.handle)))]),Q([(()=>{let Y=Z.avatar;if(Y instanceof L){let V=Y[0];return zf(Q([py(V),H("w-8 h-8 rounded-full flex-shrink-0"),cy("")]))}else return X0()})(),R(Q([H("flex-1 min-w-0")]),Q([(()=>{let Y=Z.display_name;if(Y==="")return X0();else{let V=Y;return R(Q([H("text-sm text-zinc-200 truncate")]),Q([C(V)]))}})(),R(Q([H("text-xs text-zinc-400 truncate")]),Q([C("@"+Z.handle)]))]))]))}function Sg(Z,J){return R(Q([H("absolute z-50 w-full mt-1 bg-zinc-800 border border-zinc-700 rounded shadow-lg max-h-60 overflow-y-auto")]),oJ(Z.actors,(K,X)=>{return Pg(K,X===Z.highlighted_index,J)}))}function eZ(Z,J,K,X,W,Y,V,G,I,z){return R(Q([H("relative")]),Q([s0(Q([x0("text"),T8(J),iy(K),i0(Z.query),V1(X),H(W),Y5(!0),j("autocomplete","off"),c0(Y),i8("blur",s(I())),i8("focus",s(z())),i8("keydown",$("key",u,(N)=>{return s(G(N))}))])),(()=>{if(Z.is_open&&!P0(Z.actors,Q([])))return Sg(Z,V);else return X0()})()]))}class j1 extends O{}class D1 extends O{}class B1 extends O{}class uj extends O{}function h1(Z,J){let K;if(Z instanceof j1)K=["bg-green-900/30","border-green-800","text-green-300","โœ“"];else if(Z instanceof D1)K=["bg-red-900/30","border-red-800","text-red-300","โœ—"];else if(Z instanceof B1)K=["bg-blue-900/30","border-blue-800","text-blue-300","โ„น"];else K=["bg-yellow-900/30","border-yellow-800","text-yellow-300","โš "];let X=K,W,Y,V,G;return W=X[0],Y=X[1],V=X[2],G=X[3],R(Q([H("mb-6 p-4 rounded border "+W+" "+Y)]),Q([R(Q([H("flex items-center gap-3")]),Q([p(Q([H("text-lg "+V)]),Q([C(G)])),p(Q([H("text-sm "+V)]),Q([C(J)]))]))]))}function dj(Z,J,K,X){let W;if(Z instanceof j1)W=["bg-green-900/30","border-green-800","text-green-300","โœ“"];else if(Z instanceof D1)W=["bg-red-900/30","border-red-800","text-red-300","โœ—"];else if(Z instanceof B1)W=["bg-blue-900/30","border-blue-800","text-blue-300","โ„น"];else W=["bg-yellow-900/30","border-yellow-800","text-yellow-300","โš "];let Y=W,V,G,I,z;return V=Y[0],G=Y[1],I=Y[2],z=Y[3],R(Q([H("mb-6 p-4 rounded border "+V+" "+G)]),Q([R(Q([H("flex items-center gap-3")]),Q([p(Q([H("text-lg "+I)]),Q([C(z)])),p(Q([H("text-sm "+I)]),Q([C(J+" "),p1(Q([m1(X),H("underline hover:no-underline")]),Q([C(K)]))]))]))]))}var n5="http://www.w3.org/2000/svg";function G5(Z){return d1(n5,"ellipse",Z,e)}function ZJ(Z){return d1(n5,"rect",Z,e)}function rK(Z,J){return d1(n5,"defs",Z,J)}function i5(Z,J){return d1(n5,"g",Z,J)}function U4(Z,J){return d1(n5,"svg",Z,J)}function M4(Z,J){return d1(n5,"linearGradient",Z,J)}function C8(Z){return d1(n5,"stop",Z,e)}function Kb(Z){return U4(Q([j("viewBox","0 0 128 128"),j("xmlns","http://www.w3.org/2000/svg"),j("overflow","visible"),H(Z)]),Q([rK(Q([]),Q([M4(Q([T8("backfill-board1"),j("x1","0%"),j("y1","0%"),j("x2","100%"),j("y2","100%")]),Q([C8(Q([j("offset","0%"),j("stop-color","#FF6347"),j("stop-opacity","1")])),C8(Q([j("offset","100%"),j("stop-color","#FF4500"),j("stop-opacity","1")]))])),M4(Q([T8("backfill-board2"),j("x1","0%"),j("y1","0%"),j("x2","100%"),j("y2","100%")]),Q([C8(Q([j("offset","0%"),j("stop-color","#00CED1"),j("stop-opacity","1")])),C8(Q([j("offset","100%"),j("stop-color","#4682B4"),j("stop-opacity","1")]))])),y0("style",Q([]),Q([C(` 6 .backfill-ellipse1 { animation: backfill-pulse 1.5s ease-in-out infinite; } 7 .backfill-ellipse2 { animation: backfill-pulse 1.5s ease-in-out infinite 0.2s; } 8 .backfill-ellipse3 { animation: backfill-pulse 1.5s ease-in-out infinite 0.4s; } ··· 10 0%, 100% { transform: scale(1); opacity: 1; } 11 50% { transform: scale(1.1); opacity: 0.8; } 12 } 13 - `)]))])),i5(Q([j("transform","translate(64, 64)")]),Q([G5(Q([H("backfill-ellipse1"),j("cx","0"),j("cy","-28"),j("rx","50"),j("ry","20"),j("fill","url(#backfill-board1)"),j("style","transform-origin: 0 -28px;")])),G5(Q([H("backfill-ellipse2"),j("cx","0"),j("cy","0"),j("rx","60"),j("ry","20"),j("fill","url(#backfill-board2)"),j("style","transform-origin: 0 0;")])),G5(Q([H("backfill-ellipse3"),j("cx","0"),j("cy","28"),j("rx","40"),j("ry","20"),j("fill","#32CD32"),j("style","transform-origin: 0 28px;")]))]))]))}var ij={};PL(ij,{icons:()=>nj,createIcons:()=>Xb,createElement:()=>tK,ZoomOut:()=>TM,ZoomIn:()=>OM,ZapOff:()=>DM,Zap:()=>BM,Youtube:()=>HM,XSquare:()=>a9,XOctagon:()=>L6,XCircle:()=>b7,X:()=>NM,Wrench:()=>zM,WrapText:()=>YZ,Worm:()=>FM,Workflow:()=>IM,WineOff:()=>VM,Wine:()=>GM,WindArrowDown:()=>WM,Wind:()=>QM,WifiZero:()=>KM,WifiSync:()=>YM,WifiPen:()=>JM,WifiOff:()=>ZM,WifiLow:()=>eU,WifiHigh:()=>oU,WifiCog:()=>tU,Wifi:()=>XM,WholeWord:()=>aU,WheatOff:()=>sU,Wheat:()=>rU,Weight:()=>lU,WebhookOff:()=>nU,Webhook:()=>iU,Webcam:()=>pU,Waypoints:()=>dU,WavesLadder:()=>uU,Waves:()=>cU,Watch:()=>mU,WashingMachine:()=>_U,Warehouse:()=>gU,WandSparkles:()=>SZ,Wand2:()=>SZ,Wand:()=>$U,Wallpaper:()=>vU,WalletMinimal:()=>PZ,WalletCards:()=>bU,Wallet2:()=>PZ,Wallet:()=>hU,Vote:()=>kU,VolumeX:()=>yU,VolumeOff:()=>LU,Volume2:()=>jU,Volume1:()=>RU,Volume:()=>fU,Volleyball:()=>MU,Voicemail:()=>UU,View:()=>wU,Videotape:()=>xU,VideoOff:()=>EU,Video:()=>CU,VibrateOff:()=>AU,Vibrate:()=>qU,Verified:()=>g4,VenusAndMars:()=>PU,Venus:()=>SU,VenetianMask:()=>TU,Vegan:()=>OU,VectorSquare:()=>BU,Vault:()=>DU,Variable:()=>FU,UtilityPole:()=>HU,UtensilsCrossed:()=>OZ,Utensils:()=>TZ,UsersRound:()=>BZ,Users2:()=>BZ,Users:()=>NU,UserX2:()=>HZ,UserX:()=>IU,UserStar:()=>GU,UserSquare2:()=>s9,UserSquare:()=>r9,UserSearch:()=>VU,UserRoundX:()=>HZ,UserRoundSearch:()=>QU,UserRoundPlus:()=>FZ,UserRoundPen:()=>WU,UserRoundMinus:()=>NZ,UserRoundCog:()=>zZ,UserRoundCheck:()=>IZ,UserRound:()=>DZ,UserPlus2:()=>FZ,UserPlus:()=>XU,UserPen:()=>YU,UserMinus2:()=>NZ,UserMinus:()=>KU,UserLock:()=>JU,UserCog2:()=>zZ,UserCog:()=>ZU,UserCircle2:()=>f7,UserCircle:()=>k7,UserCheck2:()=>IZ,UserCheck:()=>ow,User2:()=>DZ,User:()=>zU,Usb:()=>ew,UploadCloud:()=>g7,Upload:()=>aw,Unplug:()=>tw,UnlockKeyhole:()=>q6,Unlock:()=>E6,Unlink2:()=>sw,Unlink:()=>rw,University:()=>GZ,Ungroup:()=>lw,UnfoldVertical:()=>iw,UnfoldHorizontal:()=>nw,UndoDot:()=>pw,Undo2:()=>dw,Undo:()=>cw,Underline:()=>uw,UmbrellaOff:()=>_w,Umbrella:()=>mw,TypeOutline:()=>$w,Type:()=>gw,Twitter:()=>vw,Twitch:()=>bw,TvMinimalPlay:()=>kw,TvMinimal:()=>VZ,Tv2:()=>VZ,Tv:()=>hw,Turtle:()=>fw,Turntable:()=>yw,TurkishLira:()=>Lw,TruckElectric:()=>Rw,Truck:()=>jw,Trophy:()=>Mw,TriangleRight:()=>Uw,TriangleDashed:()=>xw,TriangleAlert:()=>QZ,Triangle:()=>ww,TrendingUpDown:()=>Ew,TrendingUp:()=>Cw,TrendingDown:()=>Aw,Trello:()=>qw,Trees:()=>Sw,TreePine:()=>Pw,TreePalm:()=>WZ,TreeDeciduous:()=>Tw,Trash2:()=>Bw,Trash:()=>Ow,Transgender:()=>Dw,TramFront:()=>XZ,TrainTrack:()=>Hw,TrainFrontTunnel:()=>Fw,TrainFront:()=>Nw,Train:()=>XZ,TrafficCone:()=>zw,Tractor:()=>Iw,ToyBrick:()=>Gw,TowerControl:()=>Vw,TouchpadOff:()=>Xw,Touchpad:()=>Ww,Torus:()=>Qw,Tornado:()=>Yw,ToolCase:()=>Kw,Toilet:()=>Jw,ToggleRight:()=>Zw,ToggleLeft:()=>ex,TimerReset:()=>tx,TimerOff:()=>ax,Timer:()=>ox,TicketsPlane:()=>sx,Tickets:()=>rx,TicketX:()=>ix,TicketSlash:()=>nx,TicketPlus:()=>px,TicketPercent:()=>cx,TicketMinus:()=>dx,TicketCheck:()=>ux,Ticket:()=>lx,ThumbsUp:()=>mx,ThumbsDown:()=>_x,ThermometerSun:()=>$x,ThermometerSnowflake:()=>vx,Thermometer:()=>gx,Theater:()=>hx,TextWrap:()=>YZ,TextSelection:()=>KZ,TextSelect:()=>KZ,TextSearch:()=>bx,TextQuote:()=>kx,TextInitial:()=>JZ,TextCursorInput:()=>yx,TextCursor:()=>fx,TextAlignStart:()=>B5,TextAlignJustify:()=>e9,TextAlignEnd:()=>ZZ,TextAlignCenter:()=>o9,Text:()=>B5,TestTubes:()=>jx,TestTubeDiagonal:()=>t9,TestTube2:()=>t9,TestTube:()=>Lx,TerminalSquare:()=>l9,Terminal:()=>Rx,TentTree:()=>Ux,Tent:()=>Mx,Telescope:()=>wx,Target:()=>Cx,Tangent:()=>xx,Tally5:()=>Ex,Tally4:()=>qx,Tally3:()=>Ax,Tally2:()=>Sx,Tally1:()=>Px,Tags:()=>Tx,Tag:()=>Ox,Tablets:()=>Bx,TabletSmartphone:()=>Hx,Tablet:()=>Dx,TableRowsSplit:()=>Nx,TableProperties:()=>zx,TableOfContents:()=>Ix,TableConfig:()=>z5,TableColumnsSplit:()=>Gx,TableCellsSplit:()=>Vx,TableCellsMerge:()=>Qx,Table2:()=>Wx,Table:()=>Fx,Syringe:()=>Xx,Swords:()=>Yx,Sword:()=>Kx,SwitchCamera:()=>Jx,SwissFranc:()=>Zx,SwatchBook:()=>eC,Superscript:()=>oC,Sunset:()=>tC,Sunrise:()=>aC,SunSnow:()=>sC,SunMoon:()=>lC,SunMedium:()=>iC,SunDim:()=>nC,Sun:()=>rC,Subtitles:()=>p4,Subscript:()=>pC,Strikethrough:()=>cC,StretchVertical:()=>dC,StretchHorizontal:()=>uC,Store:()=>mC,StopCircle:()=>y7,StickyNote:()=>_C,Sticker:()=>gC,Stethoscope:()=>$C,StepForward:()=>vC,StepBack:()=>hC,Stars:()=>o6,StarOff:()=>kC,StarHalf:()=>fC,Star:()=>bC,Stamp:()=>yC,Squirrel:()=>LC,SquircleDashed:()=>RC,Squircle:()=>jC,SquaresUnite:()=>MC,SquaresSubtract:()=>wC,SquaresIntersect:()=>UC,SquaresExclude:()=>xC,SquareX:()=>a9,SquareUserRound:()=>s9,SquareUser:()=>r9,SquareTerminal:()=>l9,SquareStop:()=>EC,SquareStar:()=>qC,SquareStack:()=>AC,SquareSquare:()=>SC,SquareSplitVertical:()=>i9,SquareSplitHorizontal:()=>n9,SquareSlash:()=>p9,SquareSigma:()=>c9,SquareScissors:()=>d9,SquareRoundCorner:()=>PC,SquareRadical:()=>TC,SquarePower:()=>u9,SquarePlus:()=>m9,SquarePlay:()=>_9,SquarePilcrow:()=>g9,SquarePi:()=>$9,SquarePercent:()=>v9,SquarePen:()=>x8,SquarePause:()=>OC,SquareParkingOff:()=>b9,SquareParking:()=>h9,SquareMousePointer:()=>k9,SquareMinus:()=>f9,SquareMenu:()=>y9,SquareM:()=>L9,SquareLibrary:()=>j9,SquareKanban:()=>R9,SquareGanttChart:()=>D5,SquareFunction:()=>M9,SquareEqual:()=>U9,SquareDot:()=>w9,SquareDivide:()=>x9,SquareDashedTopSolid:()=>BC,SquareDashedMousePointer:()=>E9,SquareDashedKanban:()=>q9,SquareDashedBottomCode:()=>HC,SquareDashedBottom:()=>DC,SquareDashed:()=>C9,SquareCode:()=>A9,SquareChevronUp:()=>S9,SquareChevronRight:()=>P9,SquareChevronLeft:()=>T9,SquareChevronDown:()=>O9,SquareCheckBig:()=>D9,SquareCheck:()=>B9,SquareChartGantt:()=>D5,SquareBottomDashedScissors:()=>H9,SquareAsterisk:()=>F9,SquareArrowUpRight:()=>z9,SquareArrowUpLeft:()=>I9,SquareArrowUp:()=>N9,SquareArrowRight:()=>G9,SquareArrowOutUpRight:()=>V9,SquareArrowOutUpLeft:()=>Q9,SquareArrowOutDownRight:()=>W9,SquareArrowOutDownLeft:()=>X9,SquareArrowLeft:()=>Y9,SquareArrowDownRight:()=>J9,SquareArrowDownLeft:()=>Z9,SquareArrowDown:()=>K9,SquareActivity:()=>e6,Square:()=>CC,Sprout:()=>FC,SprayCan:()=>NC,Spotlight:()=>zC,Spool:()=>IC,SplitSquareVertical:()=>i9,SplitSquareHorizontal:()=>n9,Split:()=>GC,SplinePointer:()=>QC,Spline:()=>VC,SpellCheck2:()=>XC,SpellCheck:()=>WC,Speech:()=>YC,Speaker:()=>KC,Sparkles:()=>o6,Sparkle:()=>JC,Spade:()=>ZC,Space:()=>eE,Soup:()=>oE,SortDesc:()=>f4,SortAsc:()=>h4,Sofa:()=>tE,SoapDispenserDroplet:()=>rE,Snowflake:()=>aE,Snail:()=>sE,SmilePlus:()=>iE,Smile:()=>lE,SmartphoneNfc:()=>pE,SmartphoneCharging:()=>cE,Smartphone:()=>nE,SlidersVertical:()=>t6,SlidersHorizontal:()=>dE,Sliders:()=>t6,Slice:()=>uE,SlashSquare:()=>p9,Slash:()=>mE,Slack:()=>_E,Skull:()=>gE,SkipForward:()=>$E,SkipBack:()=>vE,Siren:()=>hE,SignpostBig:()=>kE,Signpost:()=>bE,Signature:()=>fE,SignalZero:()=>LE,SignalMedium:()=>jE,SignalLow:()=>RE,SignalHigh:()=>ME,Signal:()=>yE,SigmaSquare:()=>c9,Sigma:()=>UE,SidebarOpen:()=>h6,SidebarClose:()=>k6,Sidebar:()=>v6,Shuffle:()=>wE,Shrub:()=>xE,Shrink:()=>CE,Shrimp:()=>EE,Shredder:()=>qE,ShowerHead:()=>AE,Shovel:()=>SE,ShoppingCart:()=>PE,ShoppingBasket:()=>TE,ShoppingBag:()=>OE,Shirt:()=>BE,ShipWheel:()=>HE,Ship:()=>DE,ShieldX:()=>a6,ShieldUser:()=>NE,ShieldQuestionMark:()=>r6,ShieldQuestion:()=>r6,ShieldPlus:()=>zE,ShieldOff:()=>IE,ShieldMinus:()=>GE,ShieldHalf:()=>VE,ShieldEllipsis:()=>QE,ShieldClose:()=>a6,ShieldCheck:()=>WE,ShieldBan:()=>YE,ShieldAlert:()=>XE,Shield:()=>FE,Shell:()=>JE,Sheet:()=>KE,Share2:()=>eq,Share:()=>ZE,Shapes:()=>oq,Settings2:()=>aq,Settings:()=>tq,ServerOff:()=>sq,ServerCrash:()=>lq,ServerCog:()=>nq,Server:()=>rq,SeparatorVertical:()=>iq,SeparatorHorizontal:()=>pq,SendToBack:()=>dq,SendHorizontal:()=>s6,SendHorizonal:()=>s6,Send:()=>cq,Section:()=>uq,SearchX:()=>_q,SearchSlash:()=>gq,SearchCode:()=>vq,SearchCheck:()=>$q,Search:()=>mq,ScrollText:()=>bq,Scroll:()=>hq,ScreenShareOff:()=>fq,ScreenShare:()=>kq,ScissorsSquareDashedBottom:()=>H9,ScissorsSquare:()=>d9,ScissorsLineDashed:()=>Lq,Scissors:()=>yq,School2:()=>GZ,School:()=>jq,ScatterChart:()=>Y7,ScanText:()=>Mq,ScanSearch:()=>Uq,ScanQrCode:()=>wq,ScanLine:()=>xq,ScanHeart:()=>Cq,ScanFace:()=>Eq,ScanEye:()=>qq,ScanBarcode:()=>Aq,Scan:()=>Rq,Scaling:()=>Sq,Scale3d:()=>l6,Scale3D:()=>l6,Scale:()=>Pq,SaveOff:()=>Oq,SaveAll:()=>Bq,Save:()=>Tq,SaudiRiyal:()=>Dq,SatelliteDish:()=>Fq,Satellite:()=>Hq,Sandwich:()=>Nq,Salad:()=>zq,Sailboat:()=>Iq,RussianRuble:()=>Gq,RulerDimensionLine:()=>Qq,Ruler:()=>Vq,Rss:()=>Xq,Rows4:()=>Wq,Rows3:()=>i6,Rows2:()=>n6,Rows:()=>n6,Router:()=>Yq,RouteOff:()=>Jq,Route:()=>Kq,RotateCwSquare:()=>eA,RotateCw:()=>Zq,RotateCcwSquare:()=>tA,RotateCcwKey:()=>aA,RotateCcw:()=>oA,Rotate3d:()=>p6,Rotate3D:()=>p6,Rose:()=>rA,RollerCoaster:()=>sA,RockingChair:()=>lA,Rocket:()=>iA,Ribbon:()=>nA,Rewind:()=>pA,ReplyAll:()=>dA,Reply:()=>cA,ReplaceAll:()=>mA,Replace:()=>uA,Repeat2:()=>gA,Repeat1:()=>$A,Repeat:()=>_A,RemoveFormatting:()=>vA,Regex:()=>hA,Refrigerator:()=>bA,RefreshCwOff:()=>fA,RefreshCw:()=>kA,RefreshCcwDot:()=>LA,RefreshCcw:()=>yA,RedoDot:()=>RA,Redo2:()=>MA,Redo:()=>jA,Recycle:()=>UA,RectangleVertical:()=>wA,RectangleHorizontal:()=>xA,RectangleGoggles:()=>CA,RectangleEllipsis:()=>c6,RectangleCircle:()=>EA,ReceiptTurkishLira:()=>qA,ReceiptText:()=>SA,ReceiptSwissFranc:()=>PA,ReceiptRussianRuble:()=>TA,ReceiptPoundSterling:()=>OA,ReceiptJapaneseYen:()=>BA,ReceiptIndianRupee:()=>DA,ReceiptEuro:()=>HA,ReceiptCent:()=>FA,Receipt:()=>AA,Ratio:()=>NA,Rat:()=>IA,Rainbow:()=>zA,RailSymbol:()=>GA,Radius:()=>VA,RadioTower:()=>WA,RadioReceiver:()=>XA,Radio:()=>QA,Radical:()=>YA,Radiation:()=>KA,Radar:()=>JA,Rabbit:()=>ZA,Quote:()=>eS,QrCode:()=>tS,Pyramid:()=>oS,Puzzle:()=>aS,Proportions:()=>rS,Projector:()=>sS,PrinterCheck:()=>iS,Printer:()=>lS,Presentation:()=>nS,PowerSquare:()=>u9,PowerOff:()=>cS,PowerCircle:()=>j7,Power:()=>pS,PoundSterling:()=>dS,Popsicle:()=>uS,Popcorn:()=>mS,PointerOff:()=>gS,Pointer:()=>_S,Podcast:()=>$S,PocketKnife:()=>hS,Pocket:()=>vS,PlusSquare:()=>m9,PlusCircle:()=>R7,Plus:()=>bS,PlugZap2:()=>d6,PlugZap:()=>d6,Plug2:()=>fS,Plug:()=>kS,PlaySquare:()=>_9,PlayCircle:()=>M7,Play:()=>yS,PlaneTakeoff:()=>jS,PlaneLanding:()=>RS,Plane:()=>LS,Pizza:()=>MS,Pipette:()=>wS,PinOff:()=>US,Pin:()=>xS,PillBottle:()=>ES,Pill:()=>CS,PilcrowSquare:()=>g9,PilcrowRight:()=>AS,PilcrowLeft:()=>PS,Pilcrow:()=>qS,PiggyBank:()=>SS,PieChart:()=>K7,PictureInPicture2:()=>OS,PictureInPicture:()=>TS,Pickaxe:()=>BS,Piano:()=>DS,PiSquare:()=>$9,Pi:()=>HS,PhoneOutgoing:()=>NS,PhoneOff:()=>zS,PhoneMissed:()=>IS,PhoneIncoming:()=>GS,PhoneForwarded:()=>VS,PhoneCall:()=>QS,Phone:()=>FS,PhilippinePeso:()=>WS,PersonStanding:()=>XS,PercentSquare:()=>v9,PercentDiamond:()=>c7,PercentCircle:()=>U7,Percent:()=>YS,Pentagon:()=>KS,PencilRuler:()=>ZS,PencilOff:()=>eP,PencilLine:()=>oP,Pencil:()=>JS,PenTool:()=>tP,PenSquare:()=>x8,PenOff:()=>aP,PenLine:()=>m6,PenBox:()=>x8,Pen:()=>u6,PcCase:()=>rP,PawPrint:()=>sP,PauseOctagon:()=>j6,PauseCircle:()=>w7,Pause:()=>lP,PartyPopper:()=>iP,ParkingSquareOff:()=>b9,ParkingSquare:()=>h9,ParkingMeter:()=>pP,ParkingCircleOff:()=>C7,ParkingCircle:()=>x7,Parentheses:()=>nP,Paperclip:()=>cP,PanelsTopLeft:()=>_6,PanelsTopBottom:()=>i6,PanelsRightBottom:()=>dP,PanelsLeftRight:()=>u7,PanelsLeftBottom:()=>mP,PanelTopOpen:()=>_P,PanelTopInactive:()=>g6,PanelTopDashed:()=>g6,PanelTopClose:()=>gP,PanelTopBottomDashed:()=>$P,PanelTop:()=>uP,PanelRightOpen:()=>vP,PanelRightInactive:()=>$6,PanelRightDashed:()=>$6,PanelRightClose:()=>bP,PanelRight:()=>hP,PanelLeftRightDashed:()=>kP,PanelLeftOpen:()=>h6,PanelLeftInactive:()=>b6,PanelLeftDashed:()=>b6,PanelLeftClose:()=>k6,PanelLeft:()=>v6,PanelBottomOpen:()=>yP,PanelBottomInactive:()=>f6,PanelBottomDashed:()=>f6,PanelBottomClose:()=>LP,PanelBottom:()=>fP,Panda:()=>jP,Palmtree:()=>WZ,Palette:()=>RP,PaintbrushVertical:()=>y6,Paintbrush2:()=>y6,Paintbrush:()=>MP,PaintRoller:()=>UP,PaintBucket:()=>wP,PackageX:()=>CP,PackageSearch:()=>EP,PackagePlus:()=>qP,PackageOpen:()=>AP,PackageMinus:()=>SP,PackageCheck:()=>PP,Package2:()=>TP,Package:()=>xP,Outdent:()=>F5,Origami:()=>OP,Orbit:()=>BP,Option:()=>DP,Omega:()=>HP,OctagonX:()=>L6,OctagonPause:()=>j6,OctagonMinus:()=>NP,OctagonAlert:()=>R6,Octagon:()=>FP,NutOff:()=>IP,Nut:()=>zP,NotepadTextDashed:()=>VP,NotepadText:()=>GP,NotebookText:()=>WP,NotebookTabs:()=>XP,NotebookPen:()=>YP,Notebook:()=>QP,NonBinary:()=>KP,Nfc:()=>JP,Newspaper:()=>ZP,Network:()=>eT,NavigationOff:()=>tT,Navigation2Off:()=>rT,Navigation2:()=>aT,Navigation:()=>oT,Music4:()=>lT,Music3:()=>iT,Music2:()=>nT,Music:()=>sT,MoveVertical:()=>cT,MoveUpRight:()=>uT,MoveUpLeft:()=>mT,MoveUp:()=>dT,MoveRight:()=>_T,MoveLeft:()=>gT,MoveHorizontal:()=>$T,MoveDownRight:()=>hT,MoveDownLeft:()=>bT,MoveDown:()=>vT,MoveDiagonal2:()=>fT,MoveDiagonal:()=>kT,Move3d:()=>M6,Move3D:()=>M6,Move:()=>pT,MousePointerSquareDashed:()=>E9,MousePointerClick:()=>jT,MousePointerBan:()=>RT,MousePointer2:()=>MT,MousePointer:()=>LT,MouseOff:()=>UT,Mouse:()=>yT,MountainSnow:()=>xT,Mountain:()=>wT,Motorbike:()=>CT,MoreVertical:()=>n7,MoreHorizontal:()=>i7,MoonStar:()=>qT,Moon:()=>ET,MonitorX:()=>ST,MonitorUp:()=>PT,MonitorStop:()=>TT,MonitorSpeaker:()=>OT,MonitorSmartphone:()=>BT,MonitorPlay:()=>DT,MonitorPause:()=>HT,MonitorOff:()=>FT,MonitorDown:()=>NT,MonitorDot:()=>zT,MonitorCog:()=>IT,MonitorCloud:()=>GT,MonitorCheck:()=>VT,Monitor:()=>AT,MinusSquare:()=>f9,MinusCircle:()=>E7,Minus:()=>QT,Minimize2:()=>XT,Minimize:()=>WT,MilkOff:()=>YT,Milk:()=>KT,Milestone:()=>JT,Microwave:()=>ZT,Microscope:()=>e2,Microchip:()=>o2,MicVocal:()=>U6,MicOff:()=>a2,Mic2:()=>U6,Mic:()=>t2,MessagesSquare:()=>r2,MessageSquareX:()=>l2,MessageSquareWarning:()=>i2,MessageSquareText:()=>n2,MessageSquareShare:()=>c2,MessageSquareReply:()=>p2,MessageSquareQuote:()=>d2,MessageSquarePlus:()=>u2,MessageSquareOff:()=>m2,MessageSquareMore:()=>_2,MessageSquareLock:()=>g2,MessageSquareHeart:()=>$2,MessageSquareDot:()=>v2,MessageSquareDiff:()=>h2,MessageSquareDashed:()=>b2,MessageSquareCode:()=>k2,MessageSquare:()=>s2,MessageCircleX:()=>y2,MessageCircleWarning:()=>L2,MessageCircleReply:()=>j2,MessageCircleQuestionMark:()=>w6,MessageCircleQuestion:()=>w6,MessageCirclePlus:()=>R2,MessageCircleOff:()=>M2,MessageCircleMore:()=>U2,MessageCircleHeart:()=>w2,MessageCircleDashed:()=>x2,MessageCircleCode:()=>C2,MessageCircle:()=>f2,Merge:()=>E2,MenuSquare:()=>y9,Menu:()=>q2,MemoryStick:()=>A2,Meh:()=>S2,MegaphoneOff:()=>T2,Megaphone:()=>P2,Medal:()=>O2,Maximize2:()=>D2,Maximize:()=>B2,Martini:()=>H2,MarsStroke:()=>N2,Mars:()=>F2,MapPlus:()=>z2,MapPinned:()=>G2,MapPinXInside:()=>W2,MapPinX:()=>Q2,MapPinPlusInside:()=>Y2,MapPinPlus:()=>X2,MapPinPen:()=>x6,MapPinOff:()=>K2,MapPinMinusInside:()=>J2,MapPinMinus:()=>Z2,MapPinHouse:()=>eO,MapPinCheckInside:()=>tO,MapPinCheck:()=>oO,MapPin:()=>V2,MapMinus:()=>aO,Map:()=>I2,Mails:()=>rO,Mailbox:()=>sO,MailX:()=>iO,MailWarning:()=>nO,MailSearch:()=>pO,MailQuestionMark:()=>C6,MailQuestion:()=>C6,MailPlus:()=>cO,MailOpen:()=>dO,MailMinus:()=>uO,MailCheck:()=>mO,Mail:()=>lO,Magnet:()=>_O,MSquare:()=>L9,Luggage:()=>gO,Lollipop:()=>$O,Logs:()=>vO,LogOut:()=>hO,LogIn:()=>bO,LockOpen:()=>E6,LockKeyholeOpen:()=>q6,LockKeyhole:()=>fO,Lock:()=>kO,LocationEdit:()=>x6,LocateOff:()=>LO,LocateFixed:()=>jO,Locate:()=>yO,LoaderPinwheel:()=>MO,LoaderCircle:()=>A6,Loader2:()=>A6,Loader:()=>RO,ListX:()=>wO,ListVideo:()=>xO,ListTree:()=>CO,ListTodo:()=>EO,ListStart:()=>qO,ListRestart:()=>SO,ListPlus:()=>PO,ListOrdered:()=>AO,ListMusic:()=>TO,ListMinus:()=>OO,ListIndentIncrease:()=>H5,ListIndentDecrease:()=>F5,ListFilterPlus:()=>BO,ListFilter:()=>DO,ListEnd:()=>HO,ListCollapse:()=>FO,ListChevronsUpDown:()=>NO,ListChevronsDownUp:()=>zO,ListChecks:()=>IO,ListCheck:()=>GO,List:()=>UO,Linkedin:()=>VO,Link2Off:()=>XO,Link2:()=>WO,Link:()=>QO,LineSquiggle:()=>YO,LineChart:()=>o4,LightbulbOff:()=>JO,Lightbulb:()=>KO,Ligature:()=>ZO,LifeBuoy:()=>oB,LibrarySquare:()=>j9,LibraryBig:()=>tB,Library:()=>eB,LetterText:()=>JZ,Lectern:()=>aB,LeafyGreen:()=>rB,Leaf:()=>sB,LayoutTemplate:()=>lB,LayoutPanelTop:()=>iB,LayoutPanelLeft:()=>nB,LayoutList:()=>pB,LayoutGrid:()=>cB,LayoutDashboard:()=>dB,Layout:()=>_6,Layers3:()=>S6,Layers2:()=>uB,Layers:()=>S6,Laugh:()=>mB,LassoSelect:()=>gB,Lasso:()=>_B,LaptopMinimalCheck:()=>vB,LaptopMinimal:()=>P6,Laptop2:()=>P6,Laptop:()=>$B,Languages:()=>hB,Landmark:()=>bB,LandPlot:()=>kB,LampWallUp:()=>yB,LampWallDown:()=>LB,LampFloor:()=>jB,LampDesk:()=>RB,LampCeiling:()=>MB,Lamp:()=>fB,KeyboardOff:()=>wB,KeyboardMusic:()=>xB,Keyboard:()=>UB,KeySquare:()=>EB,KeyRound:()=>qB,Key:()=>CB,Kayak:()=>AB,KanbanSquareDashed:()=>q9,KanbanSquare:()=>R9,Kanban:()=>SB,Joystick:()=>PB,JapaneseYen:()=>TB,IterationCw:()=>OB,IterationCcw:()=>DB,Italic:()=>HB,Instagram:()=>BB,InspectionPanel:()=>FB,Inspect:()=>k9,Info:()=>zB,Infinity:()=>NB,IndianRupee:()=>IB,IndentIncrease:()=>H5,IndentDecrease:()=>F5,Indent:()=>H5,Inbox:()=>GB,Import:()=>VB,Images:()=>QB,ImageUpscale:()=>XB,ImageUp:()=>YB,ImagePlus:()=>KB,ImagePlay:()=>JB,ImageOff:()=>ZB,ImageMinus:()=>eD,ImageDown:()=>oD,Image:()=>WB,IdCardLanyard:()=>tD,IdCard:()=>aD,IceCreamCone:()=>T6,IceCreamBowl:()=>O6,IceCream2:()=>O6,IceCream:()=>T6,HouseWifi:()=>sD,HousePlus:()=>rD,HousePlug:()=>iD,HouseHeart:()=>lD,House:()=>B6,Hourglass:()=>nD,Hotel:()=>pD,Hospital:()=>cD,HopOff:()=>uD,Hop:()=>dD,Home:()=>B6,History:()=>mD,Highlighter:()=>gD,Hexagon:()=>_D,HelpingHand:()=>D6,HelpCircle:()=>I5,Heater:()=>$D,HeartPulse:()=>hD,HeartPlus:()=>bD,HeartOff:()=>kD,HeartMinus:()=>fD,HeartHandshake:()=>yD,HeartCrack:()=>LD,Heart:()=>vD,Headset:()=>jD,Headphones:()=>RD,HeadphoneOff:()=>MD,Heading6:()=>wD,Heading5:()=>xD,Heading4:()=>CD,Heading3:()=>ED,Heading2:()=>qD,Heading1:()=>AD,Heading:()=>UD,HdmiPort:()=>SD,Haze:()=>PD,HatGlasses:()=>TD,Hash:()=>OD,HardHat:()=>BD,HardDriveUpload:()=>HD,HardDriveDownload:()=>FD,HardDrive:()=>DD,Handshake:()=>ND,Handbag:()=>zD,HandPlatter:()=>GD,HandMetal:()=>VD,HandHelping:()=>D6,HandHeart:()=>QD,HandGrab:()=>H6,HandFist:()=>WD,HandCoins:()=>XD,Hand:()=>ID,Hammer:()=>YD,Hamburger:()=>KD,Ham:()=>JD,Guitar:()=>ZD,Group:()=>eH,GripVertical:()=>tH,GripHorizontal:()=>aH,Grip:()=>oH,Grid3x3:()=>N5,Grid3x2:()=>rH,Grid3X3:()=>N5,Grid2x2X:()=>N6,Grid2x2Plus:()=>z6,Grid2x2Check:()=>I6,Grid2x2:()=>F6,Grid2X2X:()=>N6,Grid2X2Plus:()=>z6,Grid2X2Check:()=>I6,Grid2X2:()=>F6,Grid:()=>N5,Grape:()=>sH,GraduationCap:()=>lH,Grab:()=>H6,Gpu:()=>iH,Goal:()=>nH,GlobeLock:()=>cH,Globe2:()=>p7,Globe:()=>pH,Glasses:()=>dH,GlassWater:()=>uH,Gitlab:()=>mH,Github:()=>_H,GitPullRequestDraft:()=>$H,GitPullRequestCreateArrow:()=>bH,GitPullRequestCreate:()=>vH,GitPullRequestClosed:()=>hH,GitPullRequestArrow:()=>kH,GitPullRequest:()=>gH,GitMerge:()=>fH,GitGraph:()=>yH,GitFork:()=>LH,GitCompareArrows:()=>RH,GitCompare:()=>jH,GitCommitVertical:()=>MH,GitCommitHorizontal:()=>G6,GitCommit:()=>G6,GitBranchPlus:()=>wH,GitBranch:()=>UH,Gift:()=>xH,Ghost:()=>CH,GeorgianLari:()=>EH,Gem:()=>qH,Gavel:()=>AH,GaugeCircle:()=>q7,Gauge:()=>SH,GanttChartSquare:()=>D5,GanttChart:()=>J7,GamepadDirectional:()=>TH,Gamepad2:()=>OH,Gamepad:()=>PH,GalleryVerticalEnd:()=>DH,GalleryVertical:()=>BH,GalleryThumbnails:()=>HH,GalleryHorizontalEnd:()=>NH,GalleryHorizontal:()=>FH,FunnelX:()=>Q6,FunnelPlus:()=>zH,Funnel:()=>V6,FunctionSquare:()=>M9,Fullscreen:()=>IH,Fuel:()=>GH,Frown:()=>VH,Framer:()=>QH,Frame:()=>WH,Forward:()=>XH,FormInput:()=>c6,Forklift:()=>YH,ForkKnifeCrossed:()=>OZ,ForkKnife:()=>TZ,Footprints:()=>KH,Folders:()=>JH,FolderX:()=>eF,FolderUp:()=>oF,FolderTree:()=>tF,FolderSync:()=>aF,FolderSymlink:()=>rF,FolderSearch2:()=>lF,FolderSearch:()=>sF,FolderRoot:()=>iF,FolderPlus:()=>nF,FolderPen:()=>W6,FolderOutput:()=>pF,FolderOpenDot:()=>dF,FolderOpen:()=>cF,FolderMinus:()=>uF,FolderLock:()=>mF,FolderKey:()=>_F,FolderKanban:()=>gF,FolderInput:()=>$F,FolderHeart:()=>vF,FolderGit2:()=>kF,FolderGit:()=>hF,FolderEdit:()=>W6,FolderDown:()=>bF,FolderDot:()=>fF,FolderCog2:()=>X6,FolderCog:()=>X6,FolderCode:()=>yF,FolderClosed:()=>LF,FolderClock:()=>jF,FolderCheck:()=>RF,FolderArchive:()=>MF,Folder:()=>ZH,FoldVertical:()=>UF,FoldHorizontal:()=>wF,Focus:()=>xF,Flower2:()=>EF,Flower:()=>CF,FlipVertical2:()=>AF,FlipVertical:()=>qF,FlipHorizontal2:()=>PF,FlipHorizontal:()=>SF,FlaskRound:()=>TF,FlaskConicalOff:()=>BF,FlaskConical:()=>OF,FlashlightOff:()=>HF,Flashlight:()=>DF,FlameKindling:()=>NF,Flame:()=>FF,FlagTriangleRight:()=>IF,FlagTriangleLeft:()=>GF,FlagOff:()=>QF,Flag:()=>zF,FishSymbol:()=>WF,FishOff:()=>XF,Fish:()=>VF,FireExtinguisher:()=>YF,Fingerprint:()=>KF,FilterX:()=>Q6,Filter:()=>V6,Film:()=>JF,Files:()=>eN,FileX2:()=>tN,FileX:()=>oN,FileWarning:()=>aN,FileVolume2:()=>sN,FileVolume:()=>rN,FileVideoCamera:()=>Y6,FileVideo2:()=>Y6,FileVideo:()=>J6,FileUser:()=>lN,FileUp:()=>iN,FileType2:()=>pN,FileType:()=>nN,FileText:()=>cN,FileTerminal:()=>dN,FileSymlink:()=>uN,FileStack:()=>mN,FileSpreadsheet:()=>_N,FileSliders:()=>gN,FileSignature:()=>e7,FileSearch2:()=>vN,FileSearch:()=>$N,FileScan:()=>hN,FileQuestionMark:()=>K6,FileQuestion:()=>K6,FilePlus2:()=>bN,FilePlus:()=>kN,FilePlay:()=>J6,FilePieChart:()=>a7,FilePenLine:()=>e7,FilePen:()=>Z6,FileOutput:()=>fN,FileMusic:()=>yN,FileMinus2:()=>LN,FileMinus:()=>jN,FileLock2:()=>MN,FileLock:()=>RN,FileLineChart:()=>t7,FileKey2:()=>wN,FileKey:()=>UN,FileJson2:()=>CN,FileJson:()=>xN,FileInput:()=>EN,FileImage:()=>qN,FileHeart:()=>AN,FileEdit:()=>Z6,FileDown:()=>SN,FileDigit:()=>PN,FileDiff:()=>TN,FileCog2:()=>o7,FileCog:()=>o7,FileCode2:()=>BN,FileCode:()=>ON,FileClock:()=>DN,FileCheck2:()=>FN,FileCheck:()=>HN,FileChartPie:()=>a7,FileChartLine:()=>t7,FileChartColumnIncreasing:()=>s7,FileChartColumn:()=>r7,FileBox:()=>zN,FileBarChart2:()=>r7,FileBarChart:()=>s7,FileBadge2:()=>IN,FileBadge:()=>NN,FileAxis3d:()=>l7,FileAxis3D:()=>l7,FileAudio2:()=>VN,FileAudio:()=>GN,FileArchive:()=>QN,File:()=>ZF,Figma:()=>WN,FerrisWheel:()=>XN,Fence:()=>YN,Feather:()=>KN,FastForward:()=>JN,Fan:()=>ZN,Factory:()=>ez,Facebook:()=>oz,EyeOff:()=>rz,EyeClosed:()=>sz,Eye:()=>tz,ExternalLink:()=>az,Expand:()=>lz,EvCharger:()=>iz,Euro:()=>nz,EthernetPort:()=>pz,Eraser:()=>cz,EqualSquare:()=>U9,EqualNot:()=>uz,EqualApproximately:()=>mz,Equal:()=>dz,EllipsisVertical:()=>n7,Ellipsis:()=>i7,EggOff:()=>gz,EggFried:()=>$z,Egg:()=>_z,Edit3:()=>m6,Edit2:()=>u6,Edit:()=>x8,Eclipse:()=>vz,EarthLock:()=>bz,Earth:()=>p7,EarOff:()=>kz,Ear:()=>hz,Dumbbell:()=>fz,Drumstick:()=>yz,Drum:()=>jz,Droplets:()=>Lz,DropletOff:()=>Mz,Droplet:()=>Rz,Drone:()=>Uz,Drill:()=>wz,Dribbble:()=>xz,Drama:()=>Cz,DraftingCompass:()=>Ez,DownloadCloud:()=>$7,Download:()=>qz,DotSquare:()=>w9,Dot:()=>Az,DoorOpen:()=>Sz,DoorClosedLocked:()=>Tz,DoorClosed:()=>Pz,Donut:()=>Oz,DollarSign:()=>Bz,Dog:()=>Dz,Dock:()=>Hz,DnaOff:()=>Nz,Dna:()=>Fz,DivideSquare:()=>x9,DivideCircle:()=>A7,Divide:()=>zz,DiscAlbum:()=>Gz,Disc3:()=>Vz,Disc2:()=>Qz,Disc:()=>Iz,Diff:()=>Wz,Dices:()=>Yz,Dice6:()=>Xz,Dice5:()=>Kz,Dice4:()=>Jz,Dice3:()=>Zz,Dice2:()=>eI,Dice1:()=>oI,DiamondPlus:()=>aI,DiamondPercent:()=>c7,DiamondMinus:()=>rI,Diamond:()=>tI,Diameter:()=>sI,Dessert:()=>iI,Delete:()=>lI,DecimalsArrowRight:()=>nI,DecimalsArrowLeft:()=>cI,DatabaseZap:()=>uI,DatabaseBackup:()=>dI,Database:()=>pI,Dam:()=>mI,Cylinder:()=>_I,Currency:()=>gI,CurlyBraces:()=>c4,CupSoda:()=>$I,Cuboid:()=>vI,Crown:()=>hI,Crosshair:()=>bI,Cross:()=>kI,Crop:()=>fI,Croissant:()=>yI,CreditCard:()=>LI,CreativeCommons:()=>jI,Cpu:()=>RI,CornerUpRight:()=>MI,CornerUpLeft:()=>UI,CornerRightUp:()=>wI,CornerRightDown:()=>xI,CornerLeftUp:()=>CI,CornerLeftDown:()=>EI,CornerDownRight:()=>AI,CornerDownLeft:()=>qI,Copyright:()=>SI,Copyleft:()=>PI,CopyX:()=>OI,CopySlash:()=>BI,CopyPlus:()=>DI,CopyMinus:()=>HI,CopyCheck:()=>FI,Copy:()=>TI,CookingPot:()=>NI,Cookie:()=>zI,Contrast:()=>II,Container:()=>VI,ContactRound:()=>d7,Contact2:()=>d7,Contact:()=>GI,Construction:()=>QI,Cone:()=>WI,ConciergeBell:()=>XI,Computer:()=>YI,Component:()=>KI,Compass:()=>ZI,Command:()=>JI,Combine:()=>e3,ColumnsSettings:()=>z5,Columns4:()=>o3,Columns3Cog:()=>z5,Columns3:()=>u7,Columns2:()=>m7,Columns:()=>m7,Coins:()=>t3,Cog:()=>a3,Coffee:()=>r3,Codesandbox:()=>s3,Codepen:()=>l3,CodeXml:()=>_7,CodeSquare:()=>A9,Code2:()=>_7,Code:()=>i3,Club:()=>n3,Clover:()=>p3,Cloudy:()=>c3,CloudUpload:()=>g7,CloudSunRain:()=>m3,CloudSun:()=>u3,CloudSnow:()=>_3,CloudRainWind:()=>$3,CloudRain:()=>g3,CloudOff:()=>h3,CloudMoonRain:()=>b3,CloudMoon:()=>v3,CloudLightning:()=>k3,CloudHail:()=>f3,CloudFog:()=>y3,CloudDrizzle:()=>L3,CloudDownload:()=>$7,CloudCog:()=>j3,CloudCheck:()=>R3,CloudAlert:()=>M3,Cloud:()=>d3,ClosedCaption:()=>U3,ClockPlus:()=>x3,ClockFading:()=>C3,ClockArrowUp:()=>E3,ClockArrowDown:()=>q3,ClockAlert:()=>A3,Clock9:()=>S3,Clock8:()=>P3,Clock7:()=>T3,Clock6:()=>O3,Clock5:()=>B3,Clock4:()=>D3,Clock3:()=>H3,Clock2:()=>F3,Clock12:()=>N3,Clock11:()=>z3,Clock10:()=>I3,Clock1:()=>G3,Clock:()=>w3,ClipboardX:()=>W3,ClipboardType:()=>X3,ClipboardSignature:()=>h7,ClipboardPlus:()=>Q3,ClipboardPenLine:()=>h7,ClipboardPen:()=>v7,ClipboardPaste:()=>Y3,ClipboardMinus:()=>K3,ClipboardList:()=>J3,ClipboardEdit:()=>v7,ClipboardCopy:()=>Z3,ClipboardClock:()=>eG,ClipboardCheck:()=>oG,Clipboard:()=>V3,Clapperboard:()=>tG,Citrus:()=>aG,CircuitBoard:()=>rG,CircleX:()=>b7,CircleUserRound:()=>f7,CircleUser:()=>k7,CircleStop:()=>y7,CircleStar:()=>lG,CircleSmall:()=>iG,CircleSlashed:()=>L7,CircleSlash2:()=>L7,CircleSlash:()=>nG,CircleQuestionMark:()=>I5,CirclePower:()=>j7,CirclePoundSterling:()=>pG,CirclePlus:()=>R7,CirclePlay:()=>M7,CirclePercent:()=>U7,CirclePause:()=>w7,CircleParkingOff:()=>C7,CircleParking:()=>x7,CircleOff:()=>cG,CircleMinus:()=>E7,CircleHelp:()=>I5,CircleGauge:()=>q7,CircleFadingPlus:()=>dG,CircleFadingArrowUp:()=>uG,CircleEqual:()=>mG,CircleEllipsis:()=>_G,CircleDotDashed:()=>$G,CircleDot:()=>gG,CircleDollarSign:()=>vG,CircleDivide:()=>A7,CircleDashed:()=>hG,CircleChevronUp:()=>S7,CircleChevronRight:()=>P7,CircleChevronLeft:()=>T7,CircleChevronDown:()=>B7,CircleCheckBig:()=>D7,CircleCheck:()=>O7,CircleArrowUp:()=>H7,CircleArrowRight:()=>F7,CircleArrowOutUpRight:()=>N7,CircleArrowOutUpLeft:()=>z7,CircleArrowOutDownRight:()=>I7,CircleArrowOutDownLeft:()=>G7,CircleArrowLeft:()=>V7,CircleArrowDown:()=>Q7,CircleAlert:()=>W7,Circle:()=>sG,CigaretteOff:()=>kG,Cigarette:()=>bG,Church:()=>fG,Chromium:()=>X7,Chrome:()=>X7,ChevronsUpDown:()=>yG,ChevronsUp:()=>LG,ChevronsRightLeft:()=>RG,ChevronsRight:()=>jG,ChevronsLeftRightEllipsis:()=>wG,ChevronsLeftRight:()=>UG,ChevronsLeft:()=>MG,ChevronsDownUp:()=>CG,ChevronsDown:()=>xG,ChevronUpSquare:()=>S9,ChevronUpCircle:()=>S7,ChevronUp:()=>qG,ChevronRightSquare:()=>P9,ChevronRightCircle:()=>P7,ChevronRight:()=>AG,ChevronLeftSquare:()=>T9,ChevronLeftCircle:()=>T7,ChevronLeft:()=>EG,ChevronLast:()=>SG,ChevronFirst:()=>PG,ChevronDownSquare:()=>O9,ChevronDownCircle:()=>B7,ChevronDown:()=>TG,Cherry:()=>OG,ChefHat:()=>BG,CheckSquare2:()=>B9,CheckSquare:()=>D9,CheckLine:()=>DG,CheckCircle2:()=>O7,CheckCircle:()=>D7,CheckCheck:()=>FG,Check:()=>HG,ChartSpline:()=>NG,ChartScatter:()=>Y7,ChartPie:()=>K7,ChartNoAxesGantt:()=>J7,ChartNoAxesCombined:()=>zG,ChartNoAxesColumnIncreasing:()=>e4,ChartNoAxesColumnDecreasing:()=>IG,ChartNoAxesColumn:()=>Z7,ChartNetwork:()=>GG,ChartLine:()=>o4,ChartGantt:()=>VG,ChartColumnStacked:()=>QG,ChartColumnIncreasing:()=>a4,ChartColumnDecreasing:()=>WG,ChartColumnBig:()=>r4,ChartColumn:()=>t4,ChartCandlestick:()=>s4,ChartBarStacked:()=>XG,ChartBarIncreasing:()=>YG,ChartBarDecreasing:()=>KG,ChartBarBig:()=>i4,ChartBar:()=>l4,ChartArea:()=>n4,Cctv:()=>JG,Cat:()=>ZG,Castle:()=>eV,Cast:()=>tV,CassetteTape:()=>oV,CaseUpper:()=>aV,CaseSensitive:()=>rV,CaseLower:()=>sV,Carrot:()=>iV,CardSim:()=>lV,Caravan:()=>nV,CarTaxiFront:()=>cV,CarFront:()=>dV,Car:()=>pV,CaptionsOff:()=>uV,Captions:()=>p4,Cannabis:()=>mV,CandyOff:()=>gV,CandyCane:()=>$V,Candy:()=>_V,CandlestickChart:()=>s4,CameraOff:()=>vV,Camera:()=>hV,CalendarX2:()=>fV,CalendarX:()=>kV,CalendarSync:()=>yV,CalendarSearch:()=>LV,CalendarRange:()=>jV,CalendarPlus2:()=>MV,CalendarPlus:()=>RV,CalendarOff:()=>UV,CalendarMinus2:()=>xV,CalendarMinus:()=>wV,CalendarHeart:()=>CV,CalendarFold:()=>EV,CalendarDays:()=>qV,CalendarCog:()=>AV,CalendarClock:()=>SV,CalendarCheck2:()=>TV,CalendarCheck:()=>PV,CalendarArrowUp:()=>OV,CalendarArrowDown:()=>BV,Calendar1:()=>DV,Calendar:()=>bV,Calculator:()=>HV,CakeSlice:()=>NV,Cake:()=>FV,CableCar:()=>IV,Cable:()=>zV,BusFront:()=>VV,Bus:()=>GV,Building2:()=>WV,Building:()=>QV,BugPlay:()=>YV,BugOff:()=>KV,Bug:()=>XV,Bubbles:()=>JV,BrushCleaning:()=>eQ,Brush:()=>ZV,BringToFront:()=>oQ,BriefcaseMedical:()=>aQ,BriefcaseConveyorBelt:()=>rQ,BriefcaseBusiness:()=>sQ,Briefcase:()=>tQ,BrickWallShield:()=>iQ,BrickWallFire:()=>nQ,BrickWall:()=>lQ,BrainCog:()=>cQ,BrainCircuit:()=>dQ,Brain:()=>pQ,Brackets:()=>uQ,Braces:()=>c4,Boxes:()=>mQ,BoxSelect:()=>C9,Box:()=>_Q,BowArrow:()=>gQ,BottleWine:()=>$Q,BotOff:()=>hQ,BotMessageSquare:()=>kQ,Bot:()=>vQ,BoomBox:()=>bQ,BookmarkX:()=>yQ,BookmarkPlus:()=>LQ,BookmarkMinus:()=>jQ,BookmarkCheck:()=>RQ,Bookmark:()=>fQ,BookX:()=>UQ,BookUser:()=>wQ,BookUp2:()=>CQ,BookUp:()=>xQ,BookType:()=>EQ,BookText:()=>qQ,BookTemplate:()=>d4,BookPlus:()=>AQ,BookOpenText:()=>PQ,BookOpenCheck:()=>TQ,BookOpen:()=>SQ,BookMinus:()=>OQ,BookMarked:()=>BQ,BookLock:()=>DQ,BookKey:()=>HQ,BookImage:()=>FQ,BookHeart:()=>NQ,BookHeadphones:()=>IQ,BookDown:()=>zQ,BookDashed:()=>d4,BookCopy:()=>GQ,BookCheck:()=>VQ,BookAudio:()=>QQ,BookAlert:()=>WQ,BookA:()=>XQ,Book:()=>MQ,Bone:()=>YQ,Bomb:()=>KQ,Bolt:()=>JQ,Bold:()=>eW,BluetoothSearching:()=>ZQ,BluetoothOff:()=>tW,BluetoothConnected:()=>aW,Bluetooth:()=>oW,Blocks:()=>rW,Blinds:()=>lW,Blend:()=>iW,Bitcoin:()=>sW,Birdhouse:()=>nW,Bird:()=>pW,Biohazard:()=>cW,Binoculars:()=>dW,Binary:()=>uW,Bike:()=>mW,BicepsFlexed:()=>_W,BetweenVerticalStart:()=>gW,BetweenVerticalEnd:()=>$W,BetweenHorizontalStart:()=>u4,BetweenHorizontalEnd:()=>m4,BetweenHorizonalStart:()=>u4,BetweenHorizonalEnd:()=>m4,BellRing:()=>hW,BellPlus:()=>bW,BellOff:()=>kW,BellMinus:()=>fW,BellElectric:()=>LW,BellDot:()=>yW,Bell:()=>vW,BeerOff:()=>RW,Beer:()=>jW,Beef:()=>UW,BedSingle:()=>wW,BedDouble:()=>CW,Bed:()=>MW,BeanOff:()=>EW,Bean:()=>xW,Beaker:()=>qW,BatteryWarning:()=>SW,BatteryPlus:()=>TW,BatteryMedium:()=>PW,BatteryLow:()=>OW,BatteryFull:()=>BW,BatteryCharging:()=>DW,Battery:()=>AW,Bath:()=>HW,Baseline:()=>FW,Barrel:()=>NW,Barcode:()=>zW,BarChartHorizontalBig:()=>i4,BarChartHorizontal:()=>l4,BarChartBig:()=>r4,BarChart4:()=>a4,BarChart3:()=>t4,BarChart2:()=>Z7,BarChart:()=>e4,BanknoteX:()=>VW,BanknoteArrowUp:()=>GW,BanknoteArrowDown:()=>QW,Banknote:()=>IW,Bandage:()=>WW,Banana:()=>XW,Ban:()=>YW,BaggageClaim:()=>KW,BadgeX:()=>ZW,BadgeTurkishLira:()=>eX,BadgeSwissFranc:()=>oX,BadgeRussianRuble:()=>tX,BadgeQuestionMark:()=>_4,BadgePoundSterling:()=>aX,BadgePlus:()=>rX,BadgePercent:()=>sX,BadgeMinus:()=>lX,BadgeJapaneseYen:()=>iX,BadgeInfo:()=>nX,BadgeIndianRupee:()=>pX,BadgeHelp:()=>_4,BadgeEuro:()=>cX,BadgeDollarSign:()=>dX,BadgeCheck:()=>g4,BadgeCent:()=>uX,BadgeAlert:()=>mX,Badge:()=>JW,Backpack:()=>_X,Baby:()=>gX,Axis3d:()=>$4,Axis3D:()=>$4,Axe:()=>$X,Award:()=>vX,AudioWaveform:()=>hX,AudioLines:()=>bX,Atom:()=>kX,AtSign:()=>fX,AsteriskSquare:()=>F9,Asterisk:()=>yX,ArrowsUpFromLine:()=>LX,ArrowUpZa:()=>v4,ArrowUpZA:()=>v4,ArrowUpWideNarrow:()=>RX,ArrowUpToLine:()=>MX,ArrowUpSquare:()=>N9,ArrowUpRightSquare:()=>z9,ArrowUpRightFromSquare:()=>V9,ArrowUpRightFromCircle:()=>N7,ArrowUpRight:()=>UX,ArrowUpNarrowWide:()=>h4,ArrowUpLeftSquare:()=>I9,ArrowUpLeftFromSquare:()=>Q9,ArrowUpLeftFromCircle:()=>z7,ArrowUpLeft:()=>wX,ArrowUpFromLine:()=>xX,ArrowUpFromDot:()=>CX,ArrowUpDown:()=>EX,ArrowUpCircle:()=>H7,ArrowUpAz:()=>b4,ArrowUpAZ:()=>b4,ArrowUp10:()=>qX,ArrowUp01:()=>AX,ArrowUp:()=>jX,ArrowRightToLine:()=>PX,ArrowRightSquare:()=>G9,ArrowRightLeft:()=>TX,ArrowRightFromLine:()=>OX,ArrowRightCircle:()=>F7,ArrowRight:()=>SX,ArrowLeftToLine:()=>DX,ArrowLeftSquare:()=>Y9,ArrowLeftRight:()=>FX,ArrowLeftFromLine:()=>HX,ArrowLeftCircle:()=>V7,ArrowLeft:()=>BX,ArrowDownZa:()=>k4,ArrowDownZA:()=>k4,ArrowDownWideNarrow:()=>f4,ArrowDownUp:()=>zX,ArrowDownToLine:()=>IX,ArrowDownToDot:()=>GX,ArrowDownSquare:()=>K9,ArrowDownRightSquare:()=>J9,ArrowDownRightFromSquare:()=>W9,ArrowDownRightFromCircle:()=>I7,ArrowDownRight:()=>VX,ArrowDownNarrowWide:()=>QX,ArrowDownLeftSquare:()=>Z9,ArrowDownLeftFromSquare:()=>X9,ArrowDownLeftFromCircle:()=>G7,ArrowDownLeft:()=>WX,ArrowDownFromLine:()=>XX,ArrowDownCircle:()=>Q7,ArrowDownAz:()=>y4,ArrowDownAZ:()=>y4,ArrowDown10:()=>YX,ArrowDown01:()=>KX,ArrowDown:()=>NX,ArrowBigUpDash:()=>ZX,ArrowBigUp:()=>JX,ArrowBigRightDash:()=>oY,ArrowBigRight:()=>eY,ArrowBigLeftDash:()=>aY,ArrowBigLeft:()=>tY,ArrowBigDownDash:()=>sY,ArrowBigDown:()=>rY,Armchair:()=>lY,AreaChart:()=>n4,ArchiveX:()=>nY,ArchiveRestore:()=>pY,Archive:()=>iY,Apple:()=>cY,AppWindowMac:()=>uY,AppWindow:()=>dY,Aperture:()=>mY,Anvil:()=>_Y,Antenna:()=>gY,Annoyed:()=>$Y,Angry:()=>vY,Anchor:()=>hY,Amphora:()=>bY,Ampersands:()=>kY,Ampersand:()=>fY,Ambulance:()=>yY,AlignVerticalSpaceBetween:()=>LY,AlignVerticalSpaceAround:()=>jY,AlignVerticalJustifyStart:()=>RY,AlignVerticalJustifyEnd:()=>MY,AlignVerticalJustifyCenter:()=>UY,AlignVerticalDistributeStart:()=>wY,AlignVerticalDistributeEnd:()=>xY,AlignVerticalDistributeCenter:()=>CY,AlignStartVertical:()=>EY,AlignStartHorizontal:()=>qY,AlignRight:()=>ZZ,AlignLeft:()=>B5,AlignJustify:()=>e9,AlignHorizontalSpaceBetween:()=>AY,AlignHorizontalSpaceAround:()=>SY,AlignHorizontalJustifyStart:()=>PY,AlignHorizontalJustifyEnd:()=>TY,AlignHorizontalJustifyCenter:()=>OY,AlignHorizontalDistributeStart:()=>BY,AlignHorizontalDistributeEnd:()=>DY,AlignHorizontalDistributeCenter:()=>HY,AlignEndVertical:()=>FY,AlignEndHorizontal:()=>NY,AlignCenterVertical:()=>zY,AlignCenterHorizontal:()=>IY,AlignCenter:()=>o9,AlertTriangle:()=>QZ,AlertOctagon:()=>R6,AlertCircle:()=>W7,Album:()=>GY,AlarmSmoke:()=>VY,AlarmPlus:()=>L4,AlarmMinus:()=>j4,AlarmClockPlus:()=>L4,AlarmClockOff:()=>WY,AlarmClockMinus:()=>j4,AlarmClockCheck:()=>R4,AlarmClock:()=>QY,AlarmCheck:()=>R4,Airplay:()=>XY,AirVent:()=>YY,ActivitySquare:()=>e6,Activity:()=>KY,Accessibility:()=>JY,ALargeSmall:()=>ZY,AArrowUp:()=>eK,AArrowDown:()=>oK});var aK={xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":2,"stroke-linecap":"round","stroke-linejoin":"round"};var Yb=([Z,J,K])=>{let X=document.createElementNS("http://www.w3.org/2000/svg",Z);if(Object.keys(J).forEach((W)=>{X.setAttribute(W,String(J[W]))}),K?.length)K.forEach((W)=>{let Y=Yb(W);X.appendChild(Y)});return X},tK=(Z,J={})=>{let X={...aK,...J};return Yb(["svg",X,Z])};var qg=(Z)=>Array.from(Z.attributes).reduce((J,K)=>{return J[K.name]=K.value,J},{}),Eg=(Z)=>{if(typeof Z==="string")return Z;if(!Z||!Z.class)return"";if(Z.class&&typeof Z.class==="string")return Z.class.split(" ");if(Z.class&&Array.isArray(Z.class))return Z.class;return""},Cg=(Z)=>{return Z.flatMap(Eg).map((K)=>K.trim()).filter(Boolean).filter((K,X,W)=>W.indexOf(K)===X).join(" ")},xg=(Z)=>Z.replace(/(\w)(\w*)(_|-|\s*)/g,(J,K,X)=>K.toUpperCase()+X.toLowerCase()),pj=(Z,{nameAttr:J,icons:K,attrs:X})=>{let W=Z.getAttribute(J);if(W==null)return;let Y=xg(W),V=K[Y];if(!V)return console.warn(`${Z.outerHTML} icon name was not found in the provided icons object.`);let G=qg(Z),I={...aK,"data-lucide":W,...X,...G},z=Cg(["lucide",`lucide-${W}`,G,X]);if(z)Object.assign(I,{class:z});let N=tK(V,I);return Z.parentNode?.replaceChild(N,Z)};var nj={};PL(nj,{ZoomOut:()=>TM,ZoomIn:()=>OM,ZapOff:()=>DM,Zap:()=>BM,Youtube:()=>HM,XSquare:()=>a9,XOctagon:()=>L6,XCircle:()=>b7,X:()=>NM,Wrench:()=>zM,WrapText:()=>YZ,Worm:()=>FM,Workflow:()=>IM,WineOff:()=>VM,Wine:()=>GM,WindArrowDown:()=>WM,Wind:()=>QM,WifiZero:()=>KM,WifiSync:()=>YM,WifiPen:()=>JM,WifiOff:()=>ZM,WifiLow:()=>eU,WifiHigh:()=>oU,WifiCog:()=>tU,Wifi:()=>XM,WholeWord:()=>aU,WheatOff:()=>sU,Wheat:()=>rU,Weight:()=>lU,WebhookOff:()=>nU,Webhook:()=>iU,Webcam:()=>pU,Waypoints:()=>dU,WavesLadder:()=>uU,Waves:()=>cU,Watch:()=>mU,WashingMachine:()=>_U,Warehouse:()=>gU,WandSparkles:()=>SZ,Wand2:()=>SZ,Wand:()=>$U,Wallpaper:()=>vU,WalletMinimal:()=>PZ,WalletCards:()=>bU,Wallet2:()=>PZ,Wallet:()=>hU,Vote:()=>kU,VolumeX:()=>yU,VolumeOff:()=>LU,Volume2:()=>jU,Volume1:()=>RU,Volume:()=>fU,Volleyball:()=>MU,Voicemail:()=>UU,View:()=>wU,Videotape:()=>xU,VideoOff:()=>EU,Video:()=>CU,VibrateOff:()=>AU,Vibrate:()=>qU,Verified:()=>g4,VenusAndMars:()=>PU,Venus:()=>SU,VenetianMask:()=>TU,Vegan:()=>OU,VectorSquare:()=>BU,Vault:()=>DU,Variable:()=>FU,UtilityPole:()=>HU,UtensilsCrossed:()=>OZ,Utensils:()=>TZ,UsersRound:()=>BZ,Users2:()=>BZ,Users:()=>NU,UserX2:()=>HZ,UserX:()=>IU,UserStar:()=>GU,UserSquare2:()=>s9,UserSquare:()=>r9,UserSearch:()=>VU,UserRoundX:()=>HZ,UserRoundSearch:()=>QU,UserRoundPlus:()=>FZ,UserRoundPen:()=>WU,UserRoundMinus:()=>NZ,UserRoundCog:()=>zZ,UserRoundCheck:()=>IZ,UserRound:()=>DZ,UserPlus2:()=>FZ,UserPlus:()=>XU,UserPen:()=>YU,UserMinus2:()=>NZ,UserMinus:()=>KU,UserLock:()=>JU,UserCog2:()=>zZ,UserCog:()=>ZU,UserCircle2:()=>f7,UserCircle:()=>k7,UserCheck2:()=>IZ,UserCheck:()=>ow,User2:()=>DZ,User:()=>zU,Usb:()=>ew,UploadCloud:()=>g7,Upload:()=>aw,Unplug:()=>tw,UnlockKeyhole:()=>q6,Unlock:()=>E6,Unlink2:()=>sw,Unlink:()=>rw,University:()=>GZ,Ungroup:()=>lw,UnfoldVertical:()=>iw,UnfoldHorizontal:()=>nw,UndoDot:()=>pw,Undo2:()=>dw,Undo:()=>cw,Underline:()=>uw,UmbrellaOff:()=>_w,Umbrella:()=>mw,TypeOutline:()=>$w,Type:()=>gw,Twitter:()=>vw,Twitch:()=>bw,TvMinimalPlay:()=>kw,TvMinimal:()=>VZ,Tv2:()=>VZ,Tv:()=>hw,Turtle:()=>fw,Turntable:()=>yw,TurkishLira:()=>Lw,TruckElectric:()=>Rw,Truck:()=>jw,Trophy:()=>Mw,TriangleRight:()=>Uw,TriangleDashed:()=>xw,TriangleAlert:()=>QZ,Triangle:()=>ww,TrendingUpDown:()=>Ew,TrendingUp:()=>Cw,TrendingDown:()=>Aw,Trello:()=>qw,Trees:()=>Sw,TreePine:()=>Pw,TreePalm:()=>WZ,TreeDeciduous:()=>Tw,Trash2:()=>Bw,Trash:()=>Ow,Transgender:()=>Dw,TramFront:()=>XZ,TrainTrack:()=>Hw,TrainFrontTunnel:()=>Fw,TrainFront:()=>Nw,Train:()=>XZ,TrafficCone:()=>zw,Tractor:()=>Iw,ToyBrick:()=>Gw,TowerControl:()=>Vw,TouchpadOff:()=>Xw,Touchpad:()=>Ww,Torus:()=>Qw,Tornado:()=>Yw,ToolCase:()=>Kw,Toilet:()=>Jw,ToggleRight:()=>Zw,ToggleLeft:()=>ex,TimerReset:()=>tx,TimerOff:()=>ax,Timer:()=>ox,TicketsPlane:()=>sx,Tickets:()=>rx,TicketX:()=>ix,TicketSlash:()=>nx,TicketPlus:()=>px,TicketPercent:()=>cx,TicketMinus:()=>dx,TicketCheck:()=>ux,Ticket:()=>lx,ThumbsUp:()=>mx,ThumbsDown:()=>_x,ThermometerSun:()=>$x,ThermometerSnowflake:()=>vx,Thermometer:()=>gx,Theater:()=>hx,TextWrap:()=>YZ,TextSelection:()=>KZ,TextSelect:()=>KZ,TextSearch:()=>bx,TextQuote:()=>kx,TextInitial:()=>JZ,TextCursorInput:()=>yx,TextCursor:()=>fx,TextAlignStart:()=>B5,TextAlignJustify:()=>e9,TextAlignEnd:()=>ZZ,TextAlignCenter:()=>o9,Text:()=>B5,TestTubes:()=>jx,TestTubeDiagonal:()=>t9,TestTube2:()=>t9,TestTube:()=>Lx,TerminalSquare:()=>l9,Terminal:()=>Rx,TentTree:()=>Ux,Tent:()=>Mx,Telescope:()=>wx,Target:()=>Cx,Tangent:()=>xx,Tally5:()=>Ex,Tally4:()=>qx,Tally3:()=>Ax,Tally2:()=>Sx,Tally1:()=>Px,Tags:()=>Tx,Tag:()=>Ox,Tablets:()=>Bx,TabletSmartphone:()=>Hx,Tablet:()=>Dx,TableRowsSplit:()=>Nx,TableProperties:()=>zx,TableOfContents:()=>Ix,TableConfig:()=>z5,TableColumnsSplit:()=>Gx,TableCellsSplit:()=>Vx,TableCellsMerge:()=>Qx,Table2:()=>Wx,Table:()=>Fx,Syringe:()=>Xx,Swords:()=>Yx,Sword:()=>Kx,SwitchCamera:()=>Jx,SwissFranc:()=>Zx,SwatchBook:()=>eC,Superscript:()=>oC,Sunset:()=>tC,Sunrise:()=>aC,SunSnow:()=>sC,SunMoon:()=>lC,SunMedium:()=>iC,SunDim:()=>nC,Sun:()=>rC,Subtitles:()=>p4,Subscript:()=>pC,Strikethrough:()=>cC,StretchVertical:()=>dC,StretchHorizontal:()=>uC,Store:()=>mC,StopCircle:()=>y7,StickyNote:()=>_C,Sticker:()=>gC,Stethoscope:()=>$C,StepForward:()=>vC,StepBack:()=>hC,Stars:()=>o6,StarOff:()=>kC,StarHalf:()=>fC,Star:()=>bC,Stamp:()=>yC,Squirrel:()=>LC,SquircleDashed:()=>RC,Squircle:()=>jC,SquaresUnite:()=>MC,SquaresSubtract:()=>wC,SquaresIntersect:()=>UC,SquaresExclude:()=>xC,SquareX:()=>a9,SquareUserRound:()=>s9,SquareUser:()=>r9,SquareTerminal:()=>l9,SquareStop:()=>EC,SquareStar:()=>qC,SquareStack:()=>AC,SquareSquare:()=>SC,SquareSplitVertical:()=>i9,SquareSplitHorizontal:()=>n9,SquareSlash:()=>p9,SquareSigma:()=>c9,SquareScissors:()=>d9,SquareRoundCorner:()=>PC,SquareRadical:()=>TC,SquarePower:()=>u9,SquarePlus:()=>m9,SquarePlay:()=>_9,SquarePilcrow:()=>g9,SquarePi:()=>$9,SquarePercent:()=>v9,SquarePen:()=>x8,SquarePause:()=>OC,SquareParkingOff:()=>b9,SquareParking:()=>h9,SquareMousePointer:()=>k9,SquareMinus:()=>f9,SquareMenu:()=>y9,SquareM:()=>L9,SquareLibrary:()=>j9,SquareKanban:()=>R9,SquareGanttChart:()=>D5,SquareFunction:()=>M9,SquareEqual:()=>U9,SquareDot:()=>w9,SquareDivide:()=>x9,SquareDashedTopSolid:()=>BC,SquareDashedMousePointer:()=>E9,SquareDashedKanban:()=>q9,SquareDashedBottomCode:()=>HC,SquareDashedBottom:()=>DC,SquareDashed:()=>C9,SquareCode:()=>A9,SquareChevronUp:()=>S9,SquareChevronRight:()=>P9,SquareChevronLeft:()=>T9,SquareChevronDown:()=>O9,SquareCheckBig:()=>D9,SquareCheck:()=>B9,SquareChartGantt:()=>D5,SquareBottomDashedScissors:()=>H9,SquareAsterisk:()=>F9,SquareArrowUpRight:()=>z9,SquareArrowUpLeft:()=>I9,SquareArrowUp:()=>N9,SquareArrowRight:()=>G9,SquareArrowOutUpRight:()=>V9,SquareArrowOutUpLeft:()=>Q9,SquareArrowOutDownRight:()=>W9,SquareArrowOutDownLeft:()=>X9,SquareArrowLeft:()=>Y9,SquareArrowDownRight:()=>J9,SquareArrowDownLeft:()=>Z9,SquareArrowDown:()=>K9,SquareActivity:()=>e6,Square:()=>CC,Sprout:()=>FC,SprayCan:()=>NC,Spotlight:()=>zC,Spool:()=>IC,SplitSquareVertical:()=>i9,SplitSquareHorizontal:()=>n9,Split:()=>GC,SplinePointer:()=>QC,Spline:()=>VC,SpellCheck2:()=>XC,SpellCheck:()=>WC,Speech:()=>YC,Speaker:()=>KC,Sparkles:()=>o6,Sparkle:()=>JC,Spade:()=>ZC,Space:()=>eE,Soup:()=>oE,SortDesc:()=>f4,SortAsc:()=>h4,Sofa:()=>tE,SoapDispenserDroplet:()=>rE,Snowflake:()=>aE,Snail:()=>sE,SmilePlus:()=>iE,Smile:()=>lE,SmartphoneNfc:()=>pE,SmartphoneCharging:()=>cE,Smartphone:()=>nE,SlidersVertical:()=>t6,SlidersHorizontal:()=>dE,Sliders:()=>t6,Slice:()=>uE,SlashSquare:()=>p9,Slash:()=>mE,Slack:()=>_E,Skull:()=>gE,SkipForward:()=>$E,SkipBack:()=>vE,Siren:()=>hE,SignpostBig:()=>kE,Signpost:()=>bE,Signature:()=>fE,SignalZero:()=>LE,SignalMedium:()=>jE,SignalLow:()=>RE,SignalHigh:()=>ME,Signal:()=>yE,SigmaSquare:()=>c9,Sigma:()=>UE,SidebarOpen:()=>h6,SidebarClose:()=>k6,Sidebar:()=>v6,Shuffle:()=>wE,Shrub:()=>xE,Shrink:()=>CE,Shrimp:()=>EE,Shredder:()=>qE,ShowerHead:()=>AE,Shovel:()=>SE,ShoppingCart:()=>PE,ShoppingBasket:()=>TE,ShoppingBag:()=>OE,Shirt:()=>BE,ShipWheel:()=>HE,Ship:()=>DE,ShieldX:()=>a6,ShieldUser:()=>NE,ShieldQuestionMark:()=>r6,ShieldQuestion:()=>r6,ShieldPlus:()=>zE,ShieldOff:()=>IE,ShieldMinus:()=>GE,ShieldHalf:()=>VE,ShieldEllipsis:()=>QE,ShieldClose:()=>a6,ShieldCheck:()=>WE,ShieldBan:()=>YE,ShieldAlert:()=>XE,Shield:()=>FE,Shell:()=>JE,Sheet:()=>KE,Share2:()=>eq,Share:()=>ZE,Shapes:()=>oq,Settings2:()=>aq,Settings:()=>tq,ServerOff:()=>sq,ServerCrash:()=>lq,ServerCog:()=>nq,Server:()=>rq,SeparatorVertical:()=>iq,SeparatorHorizontal:()=>pq,SendToBack:()=>dq,SendHorizontal:()=>s6,SendHorizonal:()=>s6,Send:()=>cq,Section:()=>uq,SearchX:()=>_q,SearchSlash:()=>gq,SearchCode:()=>vq,SearchCheck:()=>$q,Search:()=>mq,ScrollText:()=>bq,Scroll:()=>hq,ScreenShareOff:()=>fq,ScreenShare:()=>kq,ScissorsSquareDashedBottom:()=>H9,ScissorsSquare:()=>d9,ScissorsLineDashed:()=>Lq,Scissors:()=>yq,School2:()=>GZ,School:()=>jq,ScatterChart:()=>Y7,ScanText:()=>Mq,ScanSearch:()=>Uq,ScanQrCode:()=>wq,ScanLine:()=>xq,ScanHeart:()=>Cq,ScanFace:()=>Eq,ScanEye:()=>qq,ScanBarcode:()=>Aq,Scan:()=>Rq,Scaling:()=>Sq,Scale3d:()=>l6,Scale3D:()=>l6,Scale:()=>Pq,SaveOff:()=>Oq,SaveAll:()=>Bq,Save:()=>Tq,SaudiRiyal:()=>Dq,SatelliteDish:()=>Fq,Satellite:()=>Hq,Sandwich:()=>Nq,Salad:()=>zq,Sailboat:()=>Iq,RussianRuble:()=>Gq,RulerDimensionLine:()=>Qq,Ruler:()=>Vq,Rss:()=>Xq,Rows4:()=>Wq,Rows3:()=>i6,Rows2:()=>n6,Rows:()=>n6,Router:()=>Yq,RouteOff:()=>Jq,Route:()=>Kq,RotateCwSquare:()=>eA,RotateCw:()=>Zq,RotateCcwSquare:()=>tA,RotateCcwKey:()=>aA,RotateCcw:()=>oA,Rotate3d:()=>p6,Rotate3D:()=>p6,Rose:()=>rA,RollerCoaster:()=>sA,RockingChair:()=>lA,Rocket:()=>iA,Ribbon:()=>nA,Rewind:()=>pA,ReplyAll:()=>dA,Reply:()=>cA,ReplaceAll:()=>mA,Replace:()=>uA,Repeat2:()=>gA,Repeat1:()=>$A,Repeat:()=>_A,RemoveFormatting:()=>vA,Regex:()=>hA,Refrigerator:()=>bA,RefreshCwOff:()=>fA,RefreshCw:()=>kA,RefreshCcwDot:()=>LA,RefreshCcw:()=>yA,RedoDot:()=>RA,Redo2:()=>MA,Redo:()=>jA,Recycle:()=>UA,RectangleVertical:()=>wA,RectangleHorizontal:()=>xA,RectangleGoggles:()=>CA,RectangleEllipsis:()=>c6,RectangleCircle:()=>EA,ReceiptTurkishLira:()=>qA,ReceiptText:()=>SA,ReceiptSwissFranc:()=>PA,ReceiptRussianRuble:()=>TA,ReceiptPoundSterling:()=>OA,ReceiptJapaneseYen:()=>BA,ReceiptIndianRupee:()=>DA,ReceiptEuro:()=>HA,ReceiptCent:()=>FA,Receipt:()=>AA,Ratio:()=>NA,Rat:()=>IA,Rainbow:()=>zA,RailSymbol:()=>GA,Radius:()=>VA,RadioTower:()=>WA,RadioReceiver:()=>XA,Radio:()=>QA,Radical:()=>YA,Radiation:()=>KA,Radar:()=>JA,Rabbit:()=>ZA,Quote:()=>eS,QrCode:()=>tS,Pyramid:()=>oS,Puzzle:()=>aS,Proportions:()=>rS,Projector:()=>sS,PrinterCheck:()=>iS,Printer:()=>lS,Presentation:()=>nS,PowerSquare:()=>u9,PowerOff:()=>cS,PowerCircle:()=>j7,Power:()=>pS,PoundSterling:()=>dS,Popsicle:()=>uS,Popcorn:()=>mS,PointerOff:()=>gS,Pointer:()=>_S,Podcast:()=>$S,PocketKnife:()=>hS,Pocket:()=>vS,PlusSquare:()=>m9,PlusCircle:()=>R7,Plus:()=>bS,PlugZap2:()=>d6,PlugZap:()=>d6,Plug2:()=>fS,Plug:()=>kS,PlaySquare:()=>_9,PlayCircle:()=>M7,Play:()=>yS,PlaneTakeoff:()=>jS,PlaneLanding:()=>RS,Plane:()=>LS,Pizza:()=>MS,Pipette:()=>wS,PinOff:()=>US,Pin:()=>xS,PillBottle:()=>ES,Pill:()=>CS,PilcrowSquare:()=>g9,PilcrowRight:()=>AS,PilcrowLeft:()=>PS,Pilcrow:()=>qS,PiggyBank:()=>SS,PieChart:()=>K7,PictureInPicture2:()=>OS,PictureInPicture:()=>TS,Pickaxe:()=>BS,Piano:()=>DS,PiSquare:()=>$9,Pi:()=>HS,PhoneOutgoing:()=>NS,PhoneOff:()=>zS,PhoneMissed:()=>IS,PhoneIncoming:()=>GS,PhoneForwarded:()=>VS,PhoneCall:()=>QS,Phone:()=>FS,PhilippinePeso:()=>WS,PersonStanding:()=>XS,PercentSquare:()=>v9,PercentDiamond:()=>c7,PercentCircle:()=>U7,Percent:()=>YS,Pentagon:()=>KS,PencilRuler:()=>ZS,PencilOff:()=>eP,PencilLine:()=>oP,Pencil:()=>JS,PenTool:()=>tP,PenSquare:()=>x8,PenOff:()=>aP,PenLine:()=>m6,PenBox:()=>x8,Pen:()=>u6,PcCase:()=>rP,PawPrint:()=>sP,PauseOctagon:()=>j6,PauseCircle:()=>w7,Pause:()=>lP,PartyPopper:()=>iP,ParkingSquareOff:()=>b9,ParkingSquare:()=>h9,ParkingMeter:()=>pP,ParkingCircleOff:()=>C7,ParkingCircle:()=>x7,Parentheses:()=>nP,Paperclip:()=>cP,PanelsTopLeft:()=>_6,PanelsTopBottom:()=>i6,PanelsRightBottom:()=>dP,PanelsLeftRight:()=>u7,PanelsLeftBottom:()=>mP,PanelTopOpen:()=>_P,PanelTopInactive:()=>g6,PanelTopDashed:()=>g6,PanelTopClose:()=>gP,PanelTopBottomDashed:()=>$P,PanelTop:()=>uP,PanelRightOpen:()=>vP,PanelRightInactive:()=>$6,PanelRightDashed:()=>$6,PanelRightClose:()=>bP,PanelRight:()=>hP,PanelLeftRightDashed:()=>kP,PanelLeftOpen:()=>h6,PanelLeftInactive:()=>b6,PanelLeftDashed:()=>b6,PanelLeftClose:()=>k6,PanelLeft:()=>v6,PanelBottomOpen:()=>yP,PanelBottomInactive:()=>f6,PanelBottomDashed:()=>f6,PanelBottomClose:()=>LP,PanelBottom:()=>fP,Panda:()=>jP,Palmtree:()=>WZ,Palette:()=>RP,PaintbrushVertical:()=>y6,Paintbrush2:()=>y6,Paintbrush:()=>MP,PaintRoller:()=>UP,PaintBucket:()=>wP,PackageX:()=>CP,PackageSearch:()=>EP,PackagePlus:()=>qP,PackageOpen:()=>AP,PackageMinus:()=>SP,PackageCheck:()=>PP,Package2:()=>TP,Package:()=>xP,Outdent:()=>F5,Origami:()=>OP,Orbit:()=>BP,Option:()=>DP,Omega:()=>HP,OctagonX:()=>L6,OctagonPause:()=>j6,OctagonMinus:()=>NP,OctagonAlert:()=>R6,Octagon:()=>FP,NutOff:()=>IP,Nut:()=>zP,NotepadTextDashed:()=>VP,NotepadText:()=>GP,NotebookText:()=>WP,NotebookTabs:()=>XP,NotebookPen:()=>YP,Notebook:()=>QP,NonBinary:()=>KP,Nfc:()=>JP,Newspaper:()=>ZP,Network:()=>eT,NavigationOff:()=>tT,Navigation2Off:()=>rT,Navigation2:()=>aT,Navigation:()=>oT,Music4:()=>lT,Music3:()=>iT,Music2:()=>nT,Music:()=>sT,MoveVertical:()=>cT,MoveUpRight:()=>uT,MoveUpLeft:()=>mT,MoveUp:()=>dT,MoveRight:()=>_T,MoveLeft:()=>gT,MoveHorizontal:()=>$T,MoveDownRight:()=>hT,MoveDownLeft:()=>bT,MoveDown:()=>vT,MoveDiagonal2:()=>fT,MoveDiagonal:()=>kT,Move3d:()=>M6,Move3D:()=>M6,Move:()=>pT,MousePointerSquareDashed:()=>E9,MousePointerClick:()=>jT,MousePointerBan:()=>RT,MousePointer2:()=>MT,MousePointer:()=>LT,MouseOff:()=>UT,Mouse:()=>yT,MountainSnow:()=>xT,Mountain:()=>wT,Motorbike:()=>CT,MoreVertical:()=>n7,MoreHorizontal:()=>i7,MoonStar:()=>qT,Moon:()=>ET,MonitorX:()=>ST,MonitorUp:()=>PT,MonitorStop:()=>TT,MonitorSpeaker:()=>OT,MonitorSmartphone:()=>BT,MonitorPlay:()=>DT,MonitorPause:()=>HT,MonitorOff:()=>FT,MonitorDown:()=>NT,MonitorDot:()=>zT,MonitorCog:()=>IT,MonitorCloud:()=>GT,MonitorCheck:()=>VT,Monitor:()=>AT,MinusSquare:()=>f9,MinusCircle:()=>E7,Minus:()=>QT,Minimize2:()=>XT,Minimize:()=>WT,MilkOff:()=>YT,Milk:()=>KT,Milestone:()=>JT,Microwave:()=>ZT,Microscope:()=>e2,Microchip:()=>o2,MicVocal:()=>U6,MicOff:()=>a2,Mic2:()=>U6,Mic:()=>t2,MessagesSquare:()=>r2,MessageSquareX:()=>l2,MessageSquareWarning:()=>i2,MessageSquareText:()=>n2,MessageSquareShare:()=>c2,MessageSquareReply:()=>p2,MessageSquareQuote:()=>d2,MessageSquarePlus:()=>u2,MessageSquareOff:()=>m2,MessageSquareMore:()=>_2,MessageSquareLock:()=>g2,MessageSquareHeart:()=>$2,MessageSquareDot:()=>v2,MessageSquareDiff:()=>h2,MessageSquareDashed:()=>b2,MessageSquareCode:()=>k2,MessageSquare:()=>s2,MessageCircleX:()=>y2,MessageCircleWarning:()=>L2,MessageCircleReply:()=>j2,MessageCircleQuestionMark:()=>w6,MessageCircleQuestion:()=>w6,MessageCirclePlus:()=>R2,MessageCircleOff:()=>M2,MessageCircleMore:()=>U2,MessageCircleHeart:()=>w2,MessageCircleDashed:()=>x2,MessageCircleCode:()=>C2,MessageCircle:()=>f2,Merge:()=>E2,MenuSquare:()=>y9,Menu:()=>q2,MemoryStick:()=>A2,Meh:()=>S2,MegaphoneOff:()=>T2,Megaphone:()=>P2,Medal:()=>O2,Maximize2:()=>D2,Maximize:()=>B2,Martini:()=>H2,MarsStroke:()=>N2,Mars:()=>F2,MapPlus:()=>z2,MapPinned:()=>G2,MapPinXInside:()=>W2,MapPinX:()=>Q2,MapPinPlusInside:()=>Y2,MapPinPlus:()=>X2,MapPinPen:()=>x6,MapPinOff:()=>K2,MapPinMinusInside:()=>J2,MapPinMinus:()=>Z2,MapPinHouse:()=>eO,MapPinCheckInside:()=>tO,MapPinCheck:()=>oO,MapPin:()=>V2,MapMinus:()=>aO,Map:()=>I2,Mails:()=>rO,Mailbox:()=>sO,MailX:()=>iO,MailWarning:()=>nO,MailSearch:()=>pO,MailQuestionMark:()=>C6,MailQuestion:()=>C6,MailPlus:()=>cO,MailOpen:()=>dO,MailMinus:()=>uO,MailCheck:()=>mO,Mail:()=>lO,Magnet:()=>_O,MSquare:()=>L9,Luggage:()=>gO,Lollipop:()=>$O,Logs:()=>vO,LogOut:()=>hO,LogIn:()=>bO,LockOpen:()=>E6,LockKeyholeOpen:()=>q6,LockKeyhole:()=>fO,Lock:()=>kO,LocationEdit:()=>x6,LocateOff:()=>LO,LocateFixed:()=>jO,Locate:()=>yO,LoaderPinwheel:()=>MO,LoaderCircle:()=>A6,Loader2:()=>A6,Loader:()=>RO,ListX:()=>wO,ListVideo:()=>xO,ListTree:()=>CO,ListTodo:()=>EO,ListStart:()=>qO,ListRestart:()=>SO,ListPlus:()=>PO,ListOrdered:()=>AO,ListMusic:()=>TO,ListMinus:()=>OO,ListIndentIncrease:()=>H5,ListIndentDecrease:()=>F5,ListFilterPlus:()=>BO,ListFilter:()=>DO,ListEnd:()=>HO,ListCollapse:()=>FO,ListChevronsUpDown:()=>NO,ListChevronsDownUp:()=>zO,ListChecks:()=>IO,ListCheck:()=>GO,List:()=>UO,Linkedin:()=>VO,Link2Off:()=>XO,Link2:()=>WO,Link:()=>QO,LineSquiggle:()=>YO,LineChart:()=>o4,LightbulbOff:()=>JO,Lightbulb:()=>KO,Ligature:()=>ZO,LifeBuoy:()=>oB,LibrarySquare:()=>j9,LibraryBig:()=>tB,Library:()=>eB,LetterText:()=>JZ,Lectern:()=>aB,LeafyGreen:()=>rB,Leaf:()=>sB,LayoutTemplate:()=>lB,LayoutPanelTop:()=>iB,LayoutPanelLeft:()=>nB,LayoutList:()=>pB,LayoutGrid:()=>cB,LayoutDashboard:()=>dB,Layout:()=>_6,Layers3:()=>S6,Layers2:()=>uB,Layers:()=>S6,Laugh:()=>mB,LassoSelect:()=>gB,Lasso:()=>_B,LaptopMinimalCheck:()=>vB,LaptopMinimal:()=>P6,Laptop2:()=>P6,Laptop:()=>$B,Languages:()=>hB,Landmark:()=>bB,LandPlot:()=>kB,LampWallUp:()=>yB,LampWallDown:()=>LB,LampFloor:()=>jB,LampDesk:()=>RB,LampCeiling:()=>MB,Lamp:()=>fB,KeyboardOff:()=>wB,KeyboardMusic:()=>xB,Keyboard:()=>UB,KeySquare:()=>EB,KeyRound:()=>qB,Key:()=>CB,Kayak:()=>AB,KanbanSquareDashed:()=>q9,KanbanSquare:()=>R9,Kanban:()=>SB,Joystick:()=>PB,JapaneseYen:()=>TB,IterationCw:()=>OB,IterationCcw:()=>DB,Italic:()=>HB,Instagram:()=>BB,InspectionPanel:()=>FB,Inspect:()=>k9,Info:()=>zB,Infinity:()=>NB,IndianRupee:()=>IB,IndentIncrease:()=>H5,IndentDecrease:()=>F5,Indent:()=>H5,Inbox:()=>GB,Import:()=>VB,Images:()=>QB,ImageUpscale:()=>XB,ImageUp:()=>YB,ImagePlus:()=>KB,ImagePlay:()=>JB,ImageOff:()=>ZB,ImageMinus:()=>eD,ImageDown:()=>oD,Image:()=>WB,IdCardLanyard:()=>tD,IdCard:()=>aD,IceCreamCone:()=>T6,IceCreamBowl:()=>O6,IceCream2:()=>O6,IceCream:()=>T6,HouseWifi:()=>sD,HousePlus:()=>rD,HousePlug:()=>iD,HouseHeart:()=>lD,House:()=>B6,Hourglass:()=>nD,Hotel:()=>pD,Hospital:()=>cD,HopOff:()=>uD,Hop:()=>dD,Home:()=>B6,History:()=>mD,Highlighter:()=>gD,Hexagon:()=>_D,HelpingHand:()=>D6,HelpCircle:()=>I5,Heater:()=>$D,HeartPulse:()=>hD,HeartPlus:()=>bD,HeartOff:()=>kD,HeartMinus:()=>fD,HeartHandshake:()=>yD,HeartCrack:()=>LD,Heart:()=>vD,Headset:()=>jD,Headphones:()=>RD,HeadphoneOff:()=>MD,Heading6:()=>wD,Heading5:()=>xD,Heading4:()=>CD,Heading3:()=>ED,Heading2:()=>qD,Heading1:()=>AD,Heading:()=>UD,HdmiPort:()=>SD,Haze:()=>PD,HatGlasses:()=>TD,Hash:()=>OD,HardHat:()=>BD,HardDriveUpload:()=>HD,HardDriveDownload:()=>FD,HardDrive:()=>DD,Handshake:()=>ND,Handbag:()=>zD,HandPlatter:()=>GD,HandMetal:()=>VD,HandHelping:()=>D6,HandHeart:()=>QD,HandGrab:()=>H6,HandFist:()=>WD,HandCoins:()=>XD,Hand:()=>ID,Hammer:()=>YD,Hamburger:()=>KD,Ham:()=>JD,Guitar:()=>ZD,Group:()=>eH,GripVertical:()=>tH,GripHorizontal:()=>aH,Grip:()=>oH,Grid3x3:()=>N5,Grid3x2:()=>rH,Grid3X3:()=>N5,Grid2x2X:()=>N6,Grid2x2Plus:()=>z6,Grid2x2Check:()=>I6,Grid2x2:()=>F6,Grid2X2X:()=>N6,Grid2X2Plus:()=>z6,Grid2X2Check:()=>I6,Grid2X2:()=>F6,Grid:()=>N5,Grape:()=>sH,GraduationCap:()=>lH,Grab:()=>H6,Gpu:()=>iH,Goal:()=>nH,GlobeLock:()=>cH,Globe2:()=>p7,Globe:()=>pH,Glasses:()=>dH,GlassWater:()=>uH,Gitlab:()=>mH,Github:()=>_H,GitPullRequestDraft:()=>$H,GitPullRequestCreateArrow:()=>bH,GitPullRequestCreate:()=>vH,GitPullRequestClosed:()=>hH,GitPullRequestArrow:()=>kH,GitPullRequest:()=>gH,GitMerge:()=>fH,GitGraph:()=>yH,GitFork:()=>LH,GitCompareArrows:()=>RH,GitCompare:()=>jH,GitCommitVertical:()=>MH,GitCommitHorizontal:()=>G6,GitCommit:()=>G6,GitBranchPlus:()=>wH,GitBranch:()=>UH,Gift:()=>xH,Ghost:()=>CH,GeorgianLari:()=>EH,Gem:()=>qH,Gavel:()=>AH,GaugeCircle:()=>q7,Gauge:()=>SH,GanttChartSquare:()=>D5,GanttChart:()=>J7,GamepadDirectional:()=>TH,Gamepad2:()=>OH,Gamepad:()=>PH,GalleryVerticalEnd:()=>DH,GalleryVertical:()=>BH,GalleryThumbnails:()=>HH,GalleryHorizontalEnd:()=>NH,GalleryHorizontal:()=>FH,FunnelX:()=>Q6,FunnelPlus:()=>zH,Funnel:()=>V6,FunctionSquare:()=>M9,Fullscreen:()=>IH,Fuel:()=>GH,Frown:()=>VH,Framer:()=>QH,Frame:()=>WH,Forward:()=>XH,FormInput:()=>c6,Forklift:()=>YH,ForkKnifeCrossed:()=>OZ,ForkKnife:()=>TZ,Footprints:()=>KH,Folders:()=>JH,FolderX:()=>eF,FolderUp:()=>oF,FolderTree:()=>tF,FolderSync:()=>aF,FolderSymlink:()=>rF,FolderSearch2:()=>lF,FolderSearch:()=>sF,FolderRoot:()=>iF,FolderPlus:()=>nF,FolderPen:()=>W6,FolderOutput:()=>pF,FolderOpenDot:()=>dF,FolderOpen:()=>cF,FolderMinus:()=>uF,FolderLock:()=>mF,FolderKey:()=>_F,FolderKanban:()=>gF,FolderInput:()=>$F,FolderHeart:()=>vF,FolderGit2:()=>kF,FolderGit:()=>hF,FolderEdit:()=>W6,FolderDown:()=>bF,FolderDot:()=>fF,FolderCog2:()=>X6,FolderCog:()=>X6,FolderCode:()=>yF,FolderClosed:()=>LF,FolderClock:()=>jF,FolderCheck:()=>RF,FolderArchive:()=>MF,Folder:()=>ZH,FoldVertical:()=>UF,FoldHorizontal:()=>wF,Focus:()=>xF,Flower2:()=>EF,Flower:()=>CF,FlipVertical2:()=>AF,FlipVertical:()=>qF,FlipHorizontal2:()=>PF,FlipHorizontal:()=>SF,FlaskRound:()=>TF,FlaskConicalOff:()=>BF,FlaskConical:()=>OF,FlashlightOff:()=>HF,Flashlight:()=>DF,FlameKindling:()=>NF,Flame:()=>FF,FlagTriangleRight:()=>IF,FlagTriangleLeft:()=>GF,FlagOff:()=>QF,Flag:()=>zF,FishSymbol:()=>WF,FishOff:()=>XF,Fish:()=>VF,FireExtinguisher:()=>YF,Fingerprint:()=>KF,FilterX:()=>Q6,Filter:()=>V6,Film:()=>JF,Files:()=>eN,FileX2:()=>tN,FileX:()=>oN,FileWarning:()=>aN,FileVolume2:()=>sN,FileVolume:()=>rN,FileVideoCamera:()=>Y6,FileVideo2:()=>Y6,FileVideo:()=>J6,FileUser:()=>lN,FileUp:()=>iN,FileType2:()=>pN,FileType:()=>nN,FileText:()=>cN,FileTerminal:()=>dN,FileSymlink:()=>uN,FileStack:()=>mN,FileSpreadsheet:()=>_N,FileSliders:()=>gN,FileSignature:()=>e7,FileSearch2:()=>vN,FileSearch:()=>$N,FileScan:()=>hN,FileQuestionMark:()=>K6,FileQuestion:()=>K6,FilePlus2:()=>bN,FilePlus:()=>kN,FilePlay:()=>J6,FilePieChart:()=>a7,FilePenLine:()=>e7,FilePen:()=>Z6,FileOutput:()=>fN,FileMusic:()=>yN,FileMinus2:()=>LN,FileMinus:()=>jN,FileLock2:()=>MN,FileLock:()=>RN,FileLineChart:()=>t7,FileKey2:()=>wN,FileKey:()=>UN,FileJson2:()=>CN,FileJson:()=>xN,FileInput:()=>EN,FileImage:()=>qN,FileHeart:()=>AN,FileEdit:()=>Z6,FileDown:()=>SN,FileDigit:()=>PN,FileDiff:()=>TN,FileCog2:()=>o7,FileCog:()=>o7,FileCode2:()=>BN,FileCode:()=>ON,FileClock:()=>DN,FileCheck2:()=>FN,FileCheck:()=>HN,FileChartPie:()=>a7,FileChartLine:()=>t7,FileChartColumnIncreasing:()=>s7,FileChartColumn:()=>r7,FileBox:()=>zN,FileBarChart2:()=>r7,FileBarChart:()=>s7,FileBadge2:()=>IN,FileBadge:()=>NN,FileAxis3d:()=>l7,FileAxis3D:()=>l7,FileAudio2:()=>VN,FileAudio:()=>GN,FileArchive:()=>QN,File:()=>ZF,Figma:()=>WN,FerrisWheel:()=>XN,Fence:()=>YN,Feather:()=>KN,FastForward:()=>JN,Fan:()=>ZN,Factory:()=>ez,Facebook:()=>oz,EyeOff:()=>rz,EyeClosed:()=>sz,Eye:()=>tz,ExternalLink:()=>az,Expand:()=>lz,EvCharger:()=>iz,Euro:()=>nz,EthernetPort:()=>pz,Eraser:()=>cz,EqualSquare:()=>U9,EqualNot:()=>uz,EqualApproximately:()=>mz,Equal:()=>dz,EllipsisVertical:()=>n7,Ellipsis:()=>i7,EggOff:()=>gz,EggFried:()=>$z,Egg:()=>_z,Edit3:()=>m6,Edit2:()=>u6,Edit:()=>x8,Eclipse:()=>vz,EarthLock:()=>bz,Earth:()=>p7,EarOff:()=>kz,Ear:()=>hz,Dumbbell:()=>fz,Drumstick:()=>yz,Drum:()=>jz,Droplets:()=>Lz,DropletOff:()=>Mz,Droplet:()=>Rz,Drone:()=>Uz,Drill:()=>wz,Dribbble:()=>xz,Drama:()=>Cz,DraftingCompass:()=>Ez,DownloadCloud:()=>$7,Download:()=>qz,DotSquare:()=>w9,Dot:()=>Az,DoorOpen:()=>Sz,DoorClosedLocked:()=>Tz,DoorClosed:()=>Pz,Donut:()=>Oz,DollarSign:()=>Bz,Dog:()=>Dz,Dock:()=>Hz,DnaOff:()=>Nz,Dna:()=>Fz,DivideSquare:()=>x9,DivideCircle:()=>A7,Divide:()=>zz,DiscAlbum:()=>Gz,Disc3:()=>Vz,Disc2:()=>Qz,Disc:()=>Iz,Diff:()=>Wz,Dices:()=>Yz,Dice6:()=>Xz,Dice5:()=>Kz,Dice4:()=>Jz,Dice3:()=>Zz,Dice2:()=>eI,Dice1:()=>oI,DiamondPlus:()=>aI,DiamondPercent:()=>c7,DiamondMinus:()=>rI,Diamond:()=>tI,Diameter:()=>sI,Dessert:()=>iI,Delete:()=>lI,DecimalsArrowRight:()=>nI,DecimalsArrowLeft:()=>cI,DatabaseZap:()=>uI,DatabaseBackup:()=>dI,Database:()=>pI,Dam:()=>mI,Cylinder:()=>_I,Currency:()=>gI,CurlyBraces:()=>c4,CupSoda:()=>$I,Cuboid:()=>vI,Crown:()=>hI,Crosshair:()=>bI,Cross:()=>kI,Crop:()=>fI,Croissant:()=>yI,CreditCard:()=>LI,CreativeCommons:()=>jI,Cpu:()=>RI,CornerUpRight:()=>MI,CornerUpLeft:()=>UI,CornerRightUp:()=>wI,CornerRightDown:()=>xI,CornerLeftUp:()=>CI,CornerLeftDown:()=>EI,CornerDownRight:()=>AI,CornerDownLeft:()=>qI,Copyright:()=>SI,Copyleft:()=>PI,CopyX:()=>OI,CopySlash:()=>BI,CopyPlus:()=>DI,CopyMinus:()=>HI,CopyCheck:()=>FI,Copy:()=>TI,CookingPot:()=>NI,Cookie:()=>zI,Contrast:()=>II,Container:()=>VI,ContactRound:()=>d7,Contact2:()=>d7,Contact:()=>GI,Construction:()=>QI,Cone:()=>WI,ConciergeBell:()=>XI,Computer:()=>YI,Component:()=>KI,Compass:()=>ZI,Command:()=>JI,Combine:()=>e3,ColumnsSettings:()=>z5,Columns4:()=>o3,Columns3Cog:()=>z5,Columns3:()=>u7,Columns2:()=>m7,Columns:()=>m7,Coins:()=>t3,Cog:()=>a3,Coffee:()=>r3,Codesandbox:()=>s3,Codepen:()=>l3,CodeXml:()=>_7,CodeSquare:()=>A9,Code2:()=>_7,Code:()=>i3,Club:()=>n3,Clover:()=>p3,Cloudy:()=>c3,CloudUpload:()=>g7,CloudSunRain:()=>m3,CloudSun:()=>u3,CloudSnow:()=>_3,CloudRainWind:()=>$3,CloudRain:()=>g3,CloudOff:()=>h3,CloudMoonRain:()=>b3,CloudMoon:()=>v3,CloudLightning:()=>k3,CloudHail:()=>f3,CloudFog:()=>y3,CloudDrizzle:()=>L3,CloudDownload:()=>$7,CloudCog:()=>j3,CloudCheck:()=>R3,CloudAlert:()=>M3,Cloud:()=>d3,ClosedCaption:()=>U3,ClockPlus:()=>x3,ClockFading:()=>C3,ClockArrowUp:()=>E3,ClockArrowDown:()=>q3,ClockAlert:()=>A3,Clock9:()=>S3,Clock8:()=>P3,Clock7:()=>T3,Clock6:()=>O3,Clock5:()=>B3,Clock4:()=>D3,Clock3:()=>H3,Clock2:()=>F3,Clock12:()=>N3,Clock11:()=>z3,Clock10:()=>I3,Clock1:()=>G3,Clock:()=>w3,ClipboardX:()=>W3,ClipboardType:()=>X3,ClipboardSignature:()=>h7,ClipboardPlus:()=>Q3,ClipboardPenLine:()=>h7,ClipboardPen:()=>v7,ClipboardPaste:()=>Y3,ClipboardMinus:()=>K3,ClipboardList:()=>J3,ClipboardEdit:()=>v7,ClipboardCopy:()=>Z3,ClipboardClock:()=>eG,ClipboardCheck:()=>oG,Clipboard:()=>V3,Clapperboard:()=>tG,Citrus:()=>aG,CircuitBoard:()=>rG,CircleX:()=>b7,CircleUserRound:()=>f7,CircleUser:()=>k7,CircleStop:()=>y7,CircleStar:()=>lG,CircleSmall:()=>iG,CircleSlashed:()=>L7,CircleSlash2:()=>L7,CircleSlash:()=>nG,CircleQuestionMark:()=>I5,CirclePower:()=>j7,CirclePoundSterling:()=>pG,CirclePlus:()=>R7,CirclePlay:()=>M7,CirclePercent:()=>U7,CirclePause:()=>w7,CircleParkingOff:()=>C7,CircleParking:()=>x7,CircleOff:()=>cG,CircleMinus:()=>E7,CircleHelp:()=>I5,CircleGauge:()=>q7,CircleFadingPlus:()=>dG,CircleFadingArrowUp:()=>uG,CircleEqual:()=>mG,CircleEllipsis:()=>_G,CircleDotDashed:()=>$G,CircleDot:()=>gG,CircleDollarSign:()=>vG,CircleDivide:()=>A7,CircleDashed:()=>hG,CircleChevronUp:()=>S7,CircleChevronRight:()=>P7,CircleChevronLeft:()=>T7,CircleChevronDown:()=>B7,CircleCheckBig:()=>D7,CircleCheck:()=>O7,CircleArrowUp:()=>H7,CircleArrowRight:()=>F7,CircleArrowOutUpRight:()=>N7,CircleArrowOutUpLeft:()=>z7,CircleArrowOutDownRight:()=>I7,CircleArrowOutDownLeft:()=>G7,CircleArrowLeft:()=>V7,CircleArrowDown:()=>Q7,CircleAlert:()=>W7,Circle:()=>sG,CigaretteOff:()=>kG,Cigarette:()=>bG,Church:()=>fG,Chromium:()=>X7,Chrome:()=>X7,ChevronsUpDown:()=>yG,ChevronsUp:()=>LG,ChevronsRightLeft:()=>RG,ChevronsRight:()=>jG,ChevronsLeftRightEllipsis:()=>wG,ChevronsLeftRight:()=>UG,ChevronsLeft:()=>MG,ChevronsDownUp:()=>CG,ChevronsDown:()=>xG,ChevronUpSquare:()=>S9,ChevronUpCircle:()=>S7,ChevronUp:()=>qG,ChevronRightSquare:()=>P9,ChevronRightCircle:()=>P7,ChevronRight:()=>AG,ChevronLeftSquare:()=>T9,ChevronLeftCircle:()=>T7,ChevronLeft:()=>EG,ChevronLast:()=>SG,ChevronFirst:()=>PG,ChevronDownSquare:()=>O9,ChevronDownCircle:()=>B7,ChevronDown:()=>TG,Cherry:()=>OG,ChefHat:()=>BG,CheckSquare2:()=>B9,CheckSquare:()=>D9,CheckLine:()=>DG,CheckCircle2:()=>O7,CheckCircle:()=>D7,CheckCheck:()=>FG,Check:()=>HG,ChartSpline:()=>NG,ChartScatter:()=>Y7,ChartPie:()=>K7,ChartNoAxesGantt:()=>J7,ChartNoAxesCombined:()=>zG,ChartNoAxesColumnIncreasing:()=>e4,ChartNoAxesColumnDecreasing:()=>IG,ChartNoAxesColumn:()=>Z7,ChartNetwork:()=>GG,ChartLine:()=>o4,ChartGantt:()=>VG,ChartColumnStacked:()=>QG,ChartColumnIncreasing:()=>a4,ChartColumnDecreasing:()=>WG,ChartColumnBig:()=>r4,ChartColumn:()=>t4,ChartCandlestick:()=>s4,ChartBarStacked:()=>XG,ChartBarIncreasing:()=>YG,ChartBarDecreasing:()=>KG,ChartBarBig:()=>i4,ChartBar:()=>l4,ChartArea:()=>n4,Cctv:()=>JG,Cat:()=>ZG,Castle:()=>eV,Cast:()=>tV,CassetteTape:()=>oV,CaseUpper:()=>aV,CaseSensitive:()=>rV,CaseLower:()=>sV,Carrot:()=>iV,CardSim:()=>lV,Caravan:()=>nV,CarTaxiFront:()=>cV,CarFront:()=>dV,Car:()=>pV,CaptionsOff:()=>uV,Captions:()=>p4,Cannabis:()=>mV,CandyOff:()=>gV,CandyCane:()=>$V,Candy:()=>_V,CandlestickChart:()=>s4,CameraOff:()=>vV,Camera:()=>hV,CalendarX2:()=>fV,CalendarX:()=>kV,CalendarSync:()=>yV,CalendarSearch:()=>LV,CalendarRange:()=>jV,CalendarPlus2:()=>MV,CalendarPlus:()=>RV,CalendarOff:()=>UV,CalendarMinus2:()=>xV,CalendarMinus:()=>wV,CalendarHeart:()=>CV,CalendarFold:()=>EV,CalendarDays:()=>qV,CalendarCog:()=>AV,CalendarClock:()=>SV,CalendarCheck2:()=>TV,CalendarCheck:()=>PV,CalendarArrowUp:()=>OV,CalendarArrowDown:()=>BV,Calendar1:()=>DV,Calendar:()=>bV,Calculator:()=>HV,CakeSlice:()=>NV,Cake:()=>FV,CableCar:()=>IV,Cable:()=>zV,BusFront:()=>VV,Bus:()=>GV,Building2:()=>WV,Building:()=>QV,BugPlay:()=>YV,BugOff:()=>KV,Bug:()=>XV,Bubbles:()=>JV,BrushCleaning:()=>eQ,Brush:()=>ZV,BringToFront:()=>oQ,BriefcaseMedical:()=>aQ,BriefcaseConveyorBelt:()=>rQ,BriefcaseBusiness:()=>sQ,Briefcase:()=>tQ,BrickWallShield:()=>iQ,BrickWallFire:()=>nQ,BrickWall:()=>lQ,BrainCog:()=>cQ,BrainCircuit:()=>dQ,Brain:()=>pQ,Brackets:()=>uQ,Braces:()=>c4,Boxes:()=>mQ,BoxSelect:()=>C9,Box:()=>_Q,BowArrow:()=>gQ,BottleWine:()=>$Q,BotOff:()=>hQ,BotMessageSquare:()=>kQ,Bot:()=>vQ,BoomBox:()=>bQ,BookmarkX:()=>yQ,BookmarkPlus:()=>LQ,BookmarkMinus:()=>jQ,BookmarkCheck:()=>RQ,Bookmark:()=>fQ,BookX:()=>UQ,BookUser:()=>wQ,BookUp2:()=>CQ,BookUp:()=>xQ,BookType:()=>EQ,BookText:()=>qQ,BookTemplate:()=>d4,BookPlus:()=>AQ,BookOpenText:()=>PQ,BookOpenCheck:()=>TQ,BookOpen:()=>SQ,BookMinus:()=>OQ,BookMarked:()=>BQ,BookLock:()=>DQ,BookKey:()=>HQ,BookImage:()=>FQ,BookHeart:()=>NQ,BookHeadphones:()=>IQ,BookDown:()=>zQ,BookDashed:()=>d4,BookCopy:()=>GQ,BookCheck:()=>VQ,BookAudio:()=>QQ,BookAlert:()=>WQ,BookA:()=>XQ,Book:()=>MQ,Bone:()=>YQ,Bomb:()=>KQ,Bolt:()=>JQ,Bold:()=>eW,BluetoothSearching:()=>ZQ,BluetoothOff:()=>tW,BluetoothConnected:()=>aW,Bluetooth:()=>oW,Blocks:()=>rW,Blinds:()=>lW,Blend:()=>iW,Bitcoin:()=>sW,Birdhouse:()=>nW,Bird:()=>pW,Biohazard:()=>cW,Binoculars:()=>dW,Binary:()=>uW,Bike:()=>mW,BicepsFlexed:()=>_W,BetweenVerticalStart:()=>gW,BetweenVerticalEnd:()=>$W,BetweenHorizontalStart:()=>u4,BetweenHorizontalEnd:()=>m4,BetweenHorizonalStart:()=>u4,BetweenHorizonalEnd:()=>m4,BellRing:()=>hW,BellPlus:()=>bW,BellOff:()=>kW,BellMinus:()=>fW,BellElectric:()=>LW,BellDot:()=>yW,Bell:()=>vW,BeerOff:()=>RW,Beer:()=>jW,Beef:()=>UW,BedSingle:()=>wW,BedDouble:()=>CW,Bed:()=>MW,BeanOff:()=>EW,Bean:()=>xW,Beaker:()=>qW,BatteryWarning:()=>SW,BatteryPlus:()=>TW,BatteryMedium:()=>PW,BatteryLow:()=>OW,BatteryFull:()=>BW,BatteryCharging:()=>DW,Battery:()=>AW,Bath:()=>HW,Baseline:()=>FW,Barrel:()=>NW,Barcode:()=>zW,BarChartHorizontalBig:()=>i4,BarChartHorizontal:()=>l4,BarChartBig:()=>r4,BarChart4:()=>a4,BarChart3:()=>t4,BarChart2:()=>Z7,BarChart:()=>e4,BanknoteX:()=>VW,BanknoteArrowUp:()=>GW,BanknoteArrowDown:()=>QW,Banknote:()=>IW,Bandage:()=>WW,Banana:()=>XW,Ban:()=>YW,BaggageClaim:()=>KW,BadgeX:()=>ZW,BadgeTurkishLira:()=>eX,BadgeSwissFranc:()=>oX,BadgeRussianRuble:()=>tX,BadgeQuestionMark:()=>_4,BadgePoundSterling:()=>aX,BadgePlus:()=>rX,BadgePercent:()=>sX,BadgeMinus:()=>lX,BadgeJapaneseYen:()=>iX,BadgeInfo:()=>nX,BadgeIndianRupee:()=>pX,BadgeHelp:()=>_4,BadgeEuro:()=>cX,BadgeDollarSign:()=>dX,BadgeCheck:()=>g4,BadgeCent:()=>uX,BadgeAlert:()=>mX,Badge:()=>JW,Backpack:()=>_X,Baby:()=>gX,Axis3d:()=>$4,Axis3D:()=>$4,Axe:()=>$X,Award:()=>vX,AudioWaveform:()=>hX,AudioLines:()=>bX,Atom:()=>kX,AtSign:()=>fX,AsteriskSquare:()=>F9,Asterisk:()=>yX,ArrowsUpFromLine:()=>LX,ArrowUpZa:()=>v4,ArrowUpZA:()=>v4,ArrowUpWideNarrow:()=>RX,ArrowUpToLine:()=>MX,ArrowUpSquare:()=>N9,ArrowUpRightSquare:()=>z9,ArrowUpRightFromSquare:()=>V9,ArrowUpRightFromCircle:()=>N7,ArrowUpRight:()=>UX,ArrowUpNarrowWide:()=>h4,ArrowUpLeftSquare:()=>I9,ArrowUpLeftFromSquare:()=>Q9,ArrowUpLeftFromCircle:()=>z7,ArrowUpLeft:()=>wX,ArrowUpFromLine:()=>xX,ArrowUpFromDot:()=>CX,ArrowUpDown:()=>EX,ArrowUpCircle:()=>H7,ArrowUpAz:()=>b4,ArrowUpAZ:()=>b4,ArrowUp10:()=>qX,ArrowUp01:()=>AX,ArrowUp:()=>jX,ArrowRightToLine:()=>PX,ArrowRightSquare:()=>G9,ArrowRightLeft:()=>TX,ArrowRightFromLine:()=>OX,ArrowRightCircle:()=>F7,ArrowRight:()=>SX,ArrowLeftToLine:()=>DX,ArrowLeftSquare:()=>Y9,ArrowLeftRight:()=>FX,ArrowLeftFromLine:()=>HX,ArrowLeftCircle:()=>V7,ArrowLeft:()=>BX,ArrowDownZa:()=>k4,ArrowDownZA:()=>k4,ArrowDownWideNarrow:()=>f4,ArrowDownUp:()=>zX,ArrowDownToLine:()=>IX,ArrowDownToDot:()=>GX,ArrowDownSquare:()=>K9,ArrowDownRightSquare:()=>J9,ArrowDownRightFromSquare:()=>W9,ArrowDownRightFromCircle:()=>I7,ArrowDownRight:()=>VX,ArrowDownNarrowWide:()=>QX,ArrowDownLeftSquare:()=>Z9,ArrowDownLeftFromSquare:()=>X9,ArrowDownLeftFromCircle:()=>G7,ArrowDownLeft:()=>WX,ArrowDownFromLine:()=>XX,ArrowDownCircle:()=>Q7,ArrowDownAz:()=>y4,ArrowDownAZ:()=>y4,ArrowDown10:()=>YX,ArrowDown01:()=>KX,ArrowDown:()=>NX,ArrowBigUpDash:()=>ZX,ArrowBigUp:()=>JX,ArrowBigRightDash:()=>oY,ArrowBigRight:()=>eY,ArrowBigLeftDash:()=>aY,ArrowBigLeft:()=>tY,ArrowBigDownDash:()=>sY,ArrowBigDown:()=>rY,Armchair:()=>lY,AreaChart:()=>n4,ArchiveX:()=>nY,ArchiveRestore:()=>pY,Archive:()=>iY,Apple:()=>cY,AppWindowMac:()=>uY,AppWindow:()=>dY,Aperture:()=>mY,Anvil:()=>_Y,Antenna:()=>gY,Annoyed:()=>$Y,Angry:()=>vY,Anchor:()=>hY,Amphora:()=>bY,Ampersands:()=>kY,Ampersand:()=>fY,Ambulance:()=>yY,AlignVerticalSpaceBetween:()=>LY,AlignVerticalSpaceAround:()=>jY,AlignVerticalJustifyStart:()=>RY,AlignVerticalJustifyEnd:()=>MY,AlignVerticalJustifyCenter:()=>UY,AlignVerticalDistributeStart:()=>wY,AlignVerticalDistributeEnd:()=>xY,AlignVerticalDistributeCenter:()=>CY,AlignStartVertical:()=>EY,AlignStartHorizontal:()=>qY,AlignRight:()=>ZZ,AlignLeft:()=>B5,AlignJustify:()=>e9,AlignHorizontalSpaceBetween:()=>AY,AlignHorizontalSpaceAround:()=>SY,AlignHorizontalJustifyStart:()=>PY,AlignHorizontalJustifyEnd:()=>TY,AlignHorizontalJustifyCenter:()=>OY,AlignHorizontalDistributeStart:()=>BY,AlignHorizontalDistributeEnd:()=>DY,AlignHorizontalDistributeCenter:()=>HY,AlignEndVertical:()=>FY,AlignEndHorizontal:()=>NY,AlignCenterVertical:()=>zY,AlignCenterHorizontal:()=>IY,AlignCenter:()=>o9,AlertTriangle:()=>QZ,AlertOctagon:()=>R6,AlertCircle:()=>W7,Album:()=>GY,AlarmSmoke:()=>VY,AlarmPlus:()=>L4,AlarmMinus:()=>j4,AlarmClockPlus:()=>L4,AlarmClockOff:()=>WY,AlarmClockMinus:()=>j4,AlarmClockCheck:()=>R4,AlarmClock:()=>QY,AlarmCheck:()=>R4,Airplay:()=>XY,AirVent:()=>YY,ActivitySquare:()=>e6,Activity:()=>KY,Accessibility:()=>JY,ALargeSmall:()=>ZY,AArrowUp:()=>eK,AArrowDown:()=>oK});var oK=[["path",{d:"m14 12 4 4 4-4"}],["path",{d:"M18 16V7"}],["path",{d:"m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16"}],["path",{d:"M3.304 13h6.392"}]];var eK=[["path",{d:"m14 11 4-4 4 4"}],["path",{d:"M18 16V7"}],["path",{d:"m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16"}],["path",{d:"M3.304 13h6.392"}]];var ZY=[["path",{d:"m15 16 2.536-7.328a1.02 1.02 1 0 1 1.928 0L22 16"}],["path",{d:"M15.697 14h5.606"}],["path",{d:"m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16"}],["path",{d:"M3.304 13h6.392"}]];var JY=[["circle",{cx:"16",cy:"4",r:"1"}],["path",{d:"m18 19 1-7-6 1"}],["path",{d:"m5 8 3-3 5.5 3-2.36 3.5"}],["path",{d:"M4.24 14.5a5 5 0 0 0 6.88 6"}],["path",{d:"M13.76 17.5a5 5 0 0 0-6.88-6"}]];var KY=[["path",{d:"M22 12h-2.48a2 2 0 0 0-1.93 1.46l-2.35 8.36a.25.25 0 0 1-.48 0L9.24 2.18a.25.25 0 0 0-.48 0l-2.35 8.36A2 2 0 0 1 4.49 12H2"}]];var YY=[["path",{d:"M18 17.5a2.5 2.5 0 1 1-4 2.03V12"}],["path",{d:"M6 12H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2"}],["path",{d:"M6 8h12"}],["path",{d:"M6.6 15.572A2 2 0 1 0 10 17v-5"}]];var XY=[["path",{d:"M5 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-1"}],["path",{d:"m12 15 5 6H7Z"}]];var R4=[["circle",{cx:"12",cy:"13",r:"8"}],["path",{d:"M5 3 2 6"}],["path",{d:"m22 6-3-3"}],["path",{d:"M6.38 18.7 4 21"}],["path",{d:"M17.64 18.67 20 21"}],["path",{d:"m9 13 2 2 4-4"}]];var j4=[["circle",{cx:"12",cy:"13",r:"8"}],["path",{d:"M5 3 2 6"}],["path",{d:"m22 6-3-3"}],["path",{d:"M6.38 18.7 4 21"}],["path",{d:"M17.64 18.67 20 21"}],["path",{d:"M9 13h6"}]];var WY=[["path",{d:"M6.87 6.87a8 8 0 1 0 11.26 11.26"}],["path",{d:"M19.9 14.25a8 8 0 0 0-9.15-9.15"}],["path",{d:"m22 6-3-3"}],["path",{d:"M6.26 18.67 4 21"}],["path",{d:"m2 2 20 20"}],["path",{d:"M4 4 2 6"}]];var L4=[["circle",{cx:"12",cy:"13",r:"8"}],["path",{d:"M5 3 2 6"}],["path",{d:"m22 6-3-3"}],["path",{d:"M6.38 18.7 4 21"}],["path",{d:"M17.64 18.67 20 21"}],["path",{d:"M12 10v6"}],["path",{d:"M9 13h6"}]];var QY=[["circle",{cx:"12",cy:"13",r:"8"}],["path",{d:"M12 9v4l2 2"}],["path",{d:"M5 3 2 6"}],["path",{d:"m22 6-3-3"}],["path",{d:"M6.38 18.7 4 21"}],["path",{d:"M17.64 18.67 20 21"}]];var VY=[["path",{d:"M11 21c0-2.5 2-2.5 2-5"}],["path",{d:"M16 21c0-2.5 2-2.5 2-5"}],["path",{d:"m19 8-.8 3a1.25 1.25 0 0 1-1.2 1H7a1.25 1.25 0 0 1-1.2-1L5 8"}],["path",{d:"M21 3a1 1 0 0 1 1 1v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4a1 1 0 0 1 1-1z"}],["path",{d:"M6 21c0-2.5 2-2.5 2-5"}]];var GY=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["polyline",{points:"11 3 11 11 14 8 17 11 17 3"}]];var IY=[["path",{d:"M2 12h20"}],["path",{d:"M10 16v4a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-4"}],["path",{d:"M10 8V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v4"}],["path",{d:"M20 16v1a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2v-1"}],["path",{d:"M14 8V7c0-1.1.9-2 2-2h2a2 2 0 0 1 2 2v1"}]];var zY=[["path",{d:"M12 2v20"}],["path",{d:"M8 10H4a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h4"}],["path",{d:"M16 10h4a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-4"}],["path",{d:"M8 20H7a2 2 0 0 1-2-2v-2c0-1.1.9-2 2-2h1"}],["path",{d:"M16 14h1a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-1"}]];var NY=[["rect",{width:"6",height:"16",x:"4",y:"2",rx:"2"}],["rect",{width:"6",height:"9",x:"14",y:"9",rx:"2"}],["path",{d:"M22 22H2"}]];var FY=[["rect",{width:"16",height:"6",x:"2",y:"4",rx:"2"}],["rect",{width:"9",height:"6",x:"9",y:"14",rx:"2"}],["path",{d:"M22 22V2"}]];var HY=[["rect",{width:"6",height:"14",x:"4",y:"5",rx:"2"}],["rect",{width:"6",height:"10",x:"14",y:"7",rx:"2"}],["path",{d:"M17 22v-5"}],["path",{d:"M17 7V2"}],["path",{d:"M7 22v-3"}],["path",{d:"M7 5V2"}]];var DY=[["rect",{width:"6",height:"14",x:"4",y:"5",rx:"2"}],["rect",{width:"6",height:"10",x:"14",y:"7",rx:"2"}],["path",{d:"M10 2v20"}],["path",{d:"M20 2v20"}]];var BY=[["rect",{width:"6",height:"14",x:"4",y:"5",rx:"2"}],["rect",{width:"6",height:"10",x:"14",y:"7",rx:"2"}],["path",{d:"M4 2v20"}],["path",{d:"M14 2v20"}]];var OY=[["rect",{width:"6",height:"14",x:"2",y:"5",rx:"2"}],["rect",{width:"6",height:"10",x:"16",y:"7",rx:"2"}],["path",{d:"M12 2v20"}]];var TY=[["rect",{width:"6",height:"14",x:"2",y:"5",rx:"2"}],["rect",{width:"6",height:"10",x:"12",y:"7",rx:"2"}],["path",{d:"M22 2v20"}]];var PY=[["rect",{width:"6",height:"14",x:"6",y:"5",rx:"2"}],["rect",{width:"6",height:"10",x:"16",y:"7",rx:"2"}],["path",{d:"M2 2v20"}]];var SY=[["rect",{width:"6",height:"10",x:"9",y:"7",rx:"2"}],["path",{d:"M4 22V2"}],["path",{d:"M20 22V2"}]];var AY=[["rect",{width:"6",height:"14",x:"3",y:"5",rx:"2"}],["rect",{width:"6",height:"10",x:"15",y:"7",rx:"2"}],["path",{d:"M3 2v20"}],["path",{d:"M21 2v20"}]];var qY=[["rect",{width:"6",height:"16",x:"4",y:"6",rx:"2"}],["rect",{width:"6",height:"9",x:"14",y:"6",rx:"2"}],["path",{d:"M22 2H2"}]];var EY=[["rect",{width:"9",height:"6",x:"6",y:"14",rx:"2"}],["rect",{width:"16",height:"6",x:"6",y:"4",rx:"2"}],["path",{d:"M2 2v20"}]];var CY=[["path",{d:"M22 17h-3"}],["path",{d:"M22 7h-5"}],["path",{d:"M5 17H2"}],["path",{d:"M7 7H2"}],["rect",{x:"5",y:"14",width:"14",height:"6",rx:"2"}],["rect",{x:"7",y:"4",width:"10",height:"6",rx:"2"}]];var xY=[["rect",{width:"14",height:"6",x:"5",y:"14",rx:"2"}],["rect",{width:"10",height:"6",x:"7",y:"4",rx:"2"}],["path",{d:"M2 20h20"}],["path",{d:"M2 10h20"}]];var wY=[["rect",{width:"14",height:"6",x:"5",y:"14",rx:"2"}],["rect",{width:"10",height:"6",x:"7",y:"4",rx:"2"}],["path",{d:"M2 14h20"}],["path",{d:"M2 4h20"}]];var UY=[["rect",{width:"14",height:"6",x:"5",y:"16",rx:"2"}],["rect",{width:"10",height:"6",x:"7",y:"2",rx:"2"}],["path",{d:"M2 12h20"}]];var MY=[["rect",{width:"14",height:"6",x:"5",y:"12",rx:"2"}],["rect",{width:"10",height:"6",x:"7",y:"2",rx:"2"}],["path",{d:"M2 22h20"}]];var RY=[["rect",{width:"14",height:"6",x:"5",y:"16",rx:"2"}],["rect",{width:"10",height:"6",x:"7",y:"6",rx:"2"}],["path",{d:"M2 2h20"}]];var jY=[["rect",{width:"10",height:"6",x:"7",y:"9",rx:"2"}],["path",{d:"M22 20H2"}],["path",{d:"M22 4H2"}]];var LY=[["rect",{width:"14",height:"6",x:"5",y:"15",rx:"2"}],["rect",{width:"10",height:"6",x:"7",y:"3",rx:"2"}],["path",{d:"M2 21h20"}],["path",{d:"M2 3h20"}]];var yY=[["path",{d:"M10 10H6"}],["path",{d:"M14 18V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v11a1 1 0 0 0 1 1h2"}],["path",{d:"M19 18h2a1 1 0 0 0 1-1v-3.28a1 1 0 0 0-.684-.948l-1.923-.641a1 1 0 0 1-.578-.502l-1.539-3.076A1 1 0 0 0 16.382 8H14"}],["path",{d:"M8 8v4"}],["path",{d:"M9 18h6"}],["circle",{cx:"17",cy:"18",r:"2"}],["circle",{cx:"7",cy:"18",r:"2"}]];var fY=[["path",{d:"M17.5 12c0 4.4-3.6 8-8 8A4.5 4.5 0 0 1 5 15.5c0-6 8-4 8-8.5a3 3 0 1 0-6 0c0 3 2.5 8.5 12 13"}],["path",{d:"M16 12h3"}]];var kY=[["path",{d:"M10 17c-5-3-7-7-7-9a2 2 0 0 1 4 0c0 2.5-5 2.5-5 6 0 1.7 1.3 3 3 3 2.8 0 5-2.2 5-5"}],["path",{d:"M22 17c-5-3-7-7-7-9a2 2 0 0 1 4 0c0 2.5-5 2.5-5 6 0 1.7 1.3 3 3 3 2.8 0 5-2.2 5-5"}]];var bY=[["path",{d:"M10 2v5.632c0 .424-.272.795-.653.982A6 6 0 0 0 6 14c.006 4 3 7 5 8"}],["path",{d:"M10 5H8a2 2 0 0 0 0 4h.68"}],["path",{d:"M14 2v5.632c0 .424.272.795.652.982A6 6 0 0 1 18 14c0 4-3 7-5 8"}],["path",{d:"M14 5h2a2 2 0 0 1 0 4h-.68"}],["path",{d:"M18 22H6"}],["path",{d:"M9 2h6"}]];var hY=[["path",{d:"M12 22V8"}],["path",{d:"M5 12H2a10 10 0 0 0 20 0h-3"}],["circle",{cx:"12",cy:"5",r:"3"}]];var vY=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M16 16s-1.5-2-4-2-4 2-4 2"}],["path",{d:"M7.5 8 10 9"}],["path",{d:"m14 9 2.5-1"}],["path",{d:"M9 10h.01"}],["path",{d:"M15 10h.01"}]];var $Y=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M8 15h8"}],["path",{d:"M8 9h2"}],["path",{d:"M14 9h2"}]];var gY=[["path",{d:"M2 12 7 2"}],["path",{d:"m7 12 5-10"}],["path",{d:"m12 12 5-10"}],["path",{d:"m17 12 5-10"}],["path",{d:"M4.5 7h15"}],["path",{d:"M12 16v6"}]];var _Y=[["path",{d:"M7 10H6a4 4 0 0 1-4-4 1 1 0 0 1 1-1h4"}],["path",{d:"M7 5a1 1 0 0 1 1-1h13a1 1 0 0 1 1 1 7 7 0 0 1-7 7H8a1 1 0 0 1-1-1z"}],["path",{d:"M9 12v5"}],["path",{d:"M15 12v5"}],["path",{d:"M5 20a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3 1 1 0 0 1-1 1H6a1 1 0 0 1-1-1"}]];var mY=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m14.31 8 5.74 9.94"}],["path",{d:"M9.69 8h11.48"}],["path",{d:"m7.38 12 5.74-9.94"}],["path",{d:"M9.69 16 3.95 6.06"}],["path",{d:"M14.31 16H2.83"}],["path",{d:"m16.62 12-5.74 9.94"}]];var uY=[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2"}],["path",{d:"M6 8h.01"}],["path",{d:"M10 8h.01"}],["path",{d:"M14 8h.01"}]];var dY=[["rect",{x:"2",y:"4",width:"20",height:"16",rx:"2"}],["path",{d:"M10 4v4"}],["path",{d:"M2 8h20"}],["path",{d:"M6 4v4"}]];var cY=[["path",{d:"M12 6.528V3a1 1 0 0 1 1-1h0"}],["path",{d:"M18.237 21A15 15 0 0 0 22 11a6 6 0 0 0-10-4.472A6 6 0 0 0 2 11a15.1 15.1 0 0 0 3.763 10 3 3 0 0 0 3.648.648 5.5 5.5 0 0 1 5.178 0A3 3 0 0 0 18.237 21"}]];var pY=[["rect",{width:"20",height:"5",x:"2",y:"3",rx:"1"}],["path",{d:"M4 8v11a2 2 0 0 0 2 2h2"}],["path",{d:"M20 8v11a2 2 0 0 1-2 2h-2"}],["path",{d:"m9 15 3-3 3 3"}],["path",{d:"M12 12v9"}]];var nY=[["rect",{width:"20",height:"5",x:"2",y:"3",rx:"1"}],["path",{d:"M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8"}],["path",{d:"m9.5 17 5-5"}],["path",{d:"m9.5 12 5 5"}]];var iY=[["rect",{width:"20",height:"5",x:"2",y:"3",rx:"1"}],["path",{d:"M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8"}],["path",{d:"M10 12h4"}]];var lY=[["path",{d:"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{d:"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{d:"M5 18v2"}],["path",{d:"M19 18v2"}]];var sY=[["path",{d:"M15 11a1 1 0 0 0 1 1h2.939a1 1 0 0 1 .75 1.811l-6.835 6.836a1.207 1.207 0 0 1-1.707 0L4.31 13.81a1 1 0 0 1 .75-1.811H8a1 1 0 0 0 1-1V9a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1z"}],["path",{d:"M9 4h6"}]];var rY=[["path",{d:"M15 11a1 1 0 0 0 1 1h2.939a1 1 0 0 1 .75 1.811l-6.835 6.836a1.207 1.207 0 0 1-1.707 0L4.31 13.81a1 1 0 0 1 .75-1.811H8a1 1 0 0 0 1-1V5a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1z"}]];var aY=[["path",{d:"M13 9a1 1 0 0 1-1-1V5.061a1 1 0 0 0-1.811-.75l-6.835 6.836a1.207 1.207 0 0 0 0 1.707l6.835 6.835a1 1 0 0 0 1.811-.75V16a1 1 0 0 1 1-1h2a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1z"}],["path",{d:"M20 9v6"}]];var tY=[["path",{d:"M13 9a1 1 0 0 1-1-1V5.061a1 1 0 0 0-1.811-.75l-6.835 6.836a1.207 1.207 0 0 0 0 1.707l6.835 6.835a1 1 0 0 0 1.811-.75V16a1 1 0 0 1 1-1h6a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1z"}]];var oY=[["path",{d:"M11 9a1 1 0 0 0 1-1V5.061a1 1 0 0 1 1.811-.75l6.836 6.836a1.207 1.207 0 0 1 0 1.707l-6.836 6.835a1 1 0 0 1-1.811-.75V16a1 1 0 0 0-1-1H9a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1z"}],["path",{d:"M4 9v6"}]];var eY=[["path",{d:"M11 9a1 1 0 0 0 1-1V5.061a1 1 0 0 1 1.811-.75l6.836 6.836a1.207 1.207 0 0 1 0 1.707l-6.836 6.835a1 1 0 0 1-1.811-.75V16a1 1 0 0 0-1-1H5a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1z"}]];var ZX=[["path",{d:"M9 13a1 1 0 0 0-1-1H5.061a1 1 0 0 1-.75-1.811l6.836-6.835a1.207 1.207 0 0 1 1.707 0l6.835 6.835a1 1 0 0 1-.75 1.811H16a1 1 0 0 0-1 1v2a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1z"}],["path",{d:"M9 20h6"}]];var JX=[["path",{d:"M9 13a1 1 0 0 0-1-1H5.061a1 1 0 0 1-.75-1.811l6.836-6.835a1.207 1.207 0 0 1 1.707 0l6.835 6.835a1 1 0 0 1-.75 1.811H16a1 1 0 0 0-1 1v6a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1z"}]];var KX=[["path",{d:"m3 16 4 4 4-4"}],["path",{d:"M7 20V4"}],["rect",{x:"15",y:"4",width:"4",height:"6",ry:"2"}],["path",{d:"M17 20v-6h-2"}],["path",{d:"M15 20h4"}]];var YX=[["path",{d:"m3 16 4 4 4-4"}],["path",{d:"M7 20V4"}],["path",{d:"M17 10V4h-2"}],["path",{d:"M15 10h4"}],["rect",{x:"15",y:"14",width:"4",height:"6",ry:"2"}]];var y4=[["path",{d:"m3 16 4 4 4-4"}],["path",{d:"M7 20V4"}],["path",{d:"M20 8h-5"}],["path",{d:"M15 10V6.5a2.5 2.5 0 0 1 5 0V10"}],["path",{d:"M15 14h5l-5 6h5"}]];var XX=[["path",{d:"M19 3H5"}],["path",{d:"M12 21V7"}],["path",{d:"m6 15 6 6 6-6"}]];var WX=[["path",{d:"M17 7 7 17"}],["path",{d:"M17 17H7V7"}]];var QX=[["path",{d:"m3 16 4 4 4-4"}],["path",{d:"M7 20V4"}],["path",{d:"M11 4h4"}],["path",{d:"M11 8h7"}],["path",{d:"M11 12h10"}]];var VX=[["path",{d:"m7 7 10 10"}],["path",{d:"M17 7v10H7"}]];var GX=[["path",{d:"M12 2v14"}],["path",{d:"m19 9-7 7-7-7"}],["circle",{cx:"12",cy:"21",r:"1"}]];var IX=[["path",{d:"M12 17V3"}],["path",{d:"m6 11 6 6 6-6"}],["path",{d:"M19 21H5"}]];var zX=[["path",{d:"m3 16 4 4 4-4"}],["path",{d:"M7 20V4"}],["path",{d:"m21 8-4-4-4 4"}],["path",{d:"M17 4v16"}]];var f4=[["path",{d:"m3 16 4 4 4-4"}],["path",{d:"M7 20V4"}],["path",{d:"M11 4h10"}],["path",{d:"M11 8h7"}],["path",{d:"M11 12h4"}]];var k4=[["path",{d:"m3 16 4 4 4-4"}],["path",{d:"M7 4v16"}],["path",{d:"M15 4h5l-5 6h5"}],["path",{d:"M15 20v-3.5a2.5 2.5 0 0 1 5 0V20"}],["path",{d:"M20 18h-5"}]];var NX=[["path",{d:"M12 5v14"}],["path",{d:"m19 12-7 7-7-7"}]];var FX=[["path",{d:"M8 3 4 7l4 4"}],["path",{d:"M4 7h16"}],["path",{d:"m16 21 4-4-4-4"}],["path",{d:"M20 17H4"}]];var HX=[["path",{d:"m9 6-6 6 6 6"}],["path",{d:"M3 12h14"}],["path",{d:"M21 19V5"}]];var DX=[["path",{d:"M3 19V5"}],["path",{d:"m13 6-6 6 6 6"}],["path",{d:"M7 12h14"}]];var BX=[["path",{d:"m12 19-7-7 7-7"}],["path",{d:"M19 12H5"}]];var OX=[["path",{d:"M3 5v14"}],["path",{d:"M21 12H7"}],["path",{d:"m15 18 6-6-6-6"}]];var TX=[["path",{d:"m16 3 4 4-4 4"}],["path",{d:"M20 7H4"}],["path",{d:"m8 21-4-4 4-4"}],["path",{d:"M4 17h16"}]];var PX=[["path",{d:"M17 12H3"}],["path",{d:"m11 18 6-6-6-6"}],["path",{d:"M21 5v14"}]];var SX=[["path",{d:"M5 12h14"}],["path",{d:"m12 5 7 7-7 7"}]];var AX=[["path",{d:"m3 8 4-4 4 4"}],["path",{d:"M7 4v16"}],["rect",{x:"15",y:"4",width:"4",height:"6",ry:"2"}],["path",{d:"M17 20v-6h-2"}],["path",{d:"M15 20h4"}]];var qX=[["path",{d:"m3 8 4-4 4 4"}],["path",{d:"M7 4v16"}],["path",{d:"M17 10V4h-2"}],["path",{d:"M15 10h4"}],["rect",{x:"15",y:"14",width:"4",height:"6",ry:"2"}]];var b4=[["path",{d:"m3 8 4-4 4 4"}],["path",{d:"M7 4v16"}],["path",{d:"M20 8h-5"}],["path",{d:"M15 10V6.5a2.5 2.5 0 0 1 5 0V10"}],["path",{d:"M15 14h5l-5 6h5"}]];var EX=[["path",{d:"m21 16-4 4-4-4"}],["path",{d:"M17 20V4"}],["path",{d:"m3 8 4-4 4 4"}],["path",{d:"M7 4v16"}]];var CX=[["path",{d:"m5 9 7-7 7 7"}],["path",{d:"M12 16V2"}],["circle",{cx:"12",cy:"21",r:"1"}]];var xX=[["path",{d:"m18 9-6-6-6 6"}],["path",{d:"M12 3v14"}],["path",{d:"M5 21h14"}]];var wX=[["path",{d:"M7 17V7h10"}],["path",{d:"M17 17 7 7"}]];var h4=[["path",{d:"m3 8 4-4 4 4"}],["path",{d:"M7 4v16"}],["path",{d:"M11 12h4"}],["path",{d:"M11 16h7"}],["path",{d:"M11 20h10"}]];var UX=[["path",{d:"M7 7h10v10"}],["path",{d:"M7 17 17 7"}]];var MX=[["path",{d:"M5 3h14"}],["path",{d:"m18 13-6-6-6 6"}],["path",{d:"M12 7v14"}]];var RX=[["path",{d:"m3 8 4-4 4 4"}],["path",{d:"M7 4v16"}],["path",{d:"M11 12h10"}],["path",{d:"M11 16h7"}],["path",{d:"M11 20h4"}]];var v4=[["path",{d:"m3 8 4-4 4 4"}],["path",{d:"M7 4v16"}],["path",{d:"M15 4h5l-5 6h5"}],["path",{d:"M15 20v-3.5a2.5 2.5 0 0 1 5 0V20"}],["path",{d:"M20 18h-5"}]];var jX=[["path",{d:"m5 12 7-7 7 7"}],["path",{d:"M12 19V5"}]];var LX=[["path",{d:"m4 6 3-3 3 3"}],["path",{d:"M7 17V3"}],["path",{d:"m14 6 3-3 3 3"}],["path",{d:"M17 17V3"}],["path",{d:"M4 21h16"}]];var yX=[["path",{d:"M12 6v12"}],["path",{d:"M17.196 9 6.804 15"}],["path",{d:"m6.804 9 10.392 6"}]];var fX=[["circle",{cx:"12",cy:"12",r:"4"}],["path",{d:"M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-4 8"}]];var kX=[["circle",{cx:"12",cy:"12",r:"1"}],["path",{d:"M20.2 20.2c2.04-2.03.02-7.36-4.5-11.9-4.54-4.52-9.87-6.54-11.9-4.5-2.04 2.03-.02 7.36 4.5 11.9 4.54 4.52 9.87 6.54 11.9 4.5Z"}],["path",{d:"M15.7 15.7c4.52-4.54 6.54-9.87 4.5-11.9-2.03-2.04-7.36-.02-11.9 4.5-4.52 4.54-6.54 9.87-4.5 11.9 2.03 2.04 7.36.02 11.9-4.5Z"}]];var bX=[["path",{d:"M2 10v3"}],["path",{d:"M6 6v11"}],["path",{d:"M10 3v18"}],["path",{d:"M14 8v7"}],["path",{d:"M18 5v13"}],["path",{d:"M22 10v3"}]];var hX=[["path",{d:"M2 13a2 2 0 0 0 2-2V7a2 2 0 0 1 4 0v13a2 2 0 0 0 4 0V4a2 2 0 0 1 4 0v13a2 2 0 0 0 4 0v-4a2 2 0 0 1 2-2"}]];var vX=[["path",{d:"m15.477 12.89 1.515 8.526a.5.5 0 0 1-.81.47l-3.58-2.687a1 1 0 0 0-1.197 0l-3.586 2.686a.5.5 0 0 1-.81-.469l1.514-8.526"}],["circle",{cx:"12",cy:"8",r:"6"}]];var $X=[["path",{d:"m14 12-8.381 8.38a1 1 0 0 1-3.001-3L11 9"}],["path",{d:"M15 15.5a.5.5 0 0 0 .5.5A6.5 6.5 0 0 0 22 9.5a.5.5 0 0 0-.5-.5h-1.672a2 2 0 0 1-1.414-.586l-5.062-5.062a1.205 1.205 0 0 0-1.704 0L9.352 5.648a1.205 1.205 0 0 0 0 1.704l5.062 5.062A2 2 0 0 1 15 13.828z"}]];var $4=[["path",{d:"M13.5 10.5 15 9"}],["path",{d:"M4 4v15a1 1 0 0 0 1 1h15"}],["path",{d:"M4.293 19.707 6 18"}],["path",{d:"m9 15 1.5-1.5"}]];var gX=[["path",{d:"M10 16c.5.3 1.2.5 2 .5s1.5-.2 2-.5"}],["path",{d:"M15 12h.01"}],["path",{d:"M19.38 6.813A9 9 0 0 1 20.8 10.2a2 2 0 0 1 0 3.6 9 9 0 0 1-17.6 0 2 2 0 0 1 0-3.6A9 9 0 0 1 12 3c2 0 3.5 1.1 3.5 2.5s-.9 2.5-2 2.5c-.8 0-1.5-.4-1.5-1"}],["path",{d:"M9 12h.01"}]];var _X=[["path",{d:"M4 10a4 4 0 0 1 4-4h8a4 4 0 0 1 4 4v10a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2z"}],["path",{d:"M8 10h8"}],["path",{d:"M8 18h8"}],["path",{d:"M8 22v-6a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v6"}],["path",{d:"M9 6V4a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v2"}]];var mX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16"}]];var uX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"M12 7v10"}],["path",{d:"M15.4 10a4 4 0 1 0 0 4"}]];var g4=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"m9 12 2 2 4-4"}]];var dX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8"}],["path",{d:"M12 18V6"}]];var cX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"M7 12h5"}],["path",{d:"M15 9.4a4 4 0 1 0 0 5.2"}]];var pX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"M8 8h8"}],["path",{d:"M8 12h8"}],["path",{d:"m13 17-5-1h1a4 4 0 0 0 0-8"}]];var nX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["line",{x1:"12",x2:"12",y1:"16",y2:"12"}],["line",{x1:"12",x2:"12.01",y1:"8",y2:"8"}]];var iX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"m9 8 3 3v7"}],["path",{d:"m12 11 3-3"}],["path",{d:"M9 12h6"}],["path",{d:"M9 16h6"}]];var lX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["line",{x1:"8",x2:"16",y1:"12",y2:"12"}]];var sX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"m15 9-6 6"}],["path",{d:"M9 9h.01"}],["path",{d:"M15 15h.01"}]];var rX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["line",{x1:"12",x2:"12",y1:"8",y2:"16"}],["line",{x1:"8",x2:"16",y1:"12",y2:"12"}]];var aX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"M8 12h4"}],["path",{d:"M10 16V9.5a2.5 2.5 0 0 1 5 0"}],["path",{d:"M8 16h7"}]];var _4=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"}],["line",{x1:"12",x2:"12.01",y1:"17",y2:"17"}]];var tX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"M9 16h5"}],["path",{d:"M9 12h5a2 2 0 1 0 0-4h-3v9"}]];var oX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"M11 17V8h4"}],["path",{d:"M11 12h3"}],["path",{d:"M9 16h4"}]];var eX=[["path",{d:"M11 7v10a5 5 0 0 0 5-5"}],["path",{d:"m15 8-6 3"}],["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76"}]];var ZW=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["line",{x1:"15",x2:"9",y1:"9",y2:"15"}],["line",{x1:"9",x2:"15",y1:"9",y2:"15"}]];var JW=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}]];var KW=[["path",{d:"M22 18H6a2 2 0 0 1-2-2V7a2 2 0 0 0-2-2"}],["path",{d:"M17 14V4a2 2 0 0 0-2-2h-1a2 2 0 0 0-2 2v10"}],["rect",{width:"13",height:"8",x:"8",y:"6",rx:"1"}],["circle",{cx:"18",cy:"20",r:"2"}],["circle",{cx:"9",cy:"20",r:"2"}]];var YW=[["path",{d:"M4.929 4.929 19.07 19.071"}],["circle",{cx:"12",cy:"12",r:"10"}]];var XW=[["path",{d:"M4 13c3.5-2 8-2 10 2a5.5 5.5 0 0 1 8 5"}],["path",{d:"M5.15 17.89c5.52-1.52 8.65-6.89 7-12C11.55 4 11.5 2 13 2c3.22 0 5 5.5 5 8 0 6.5-4.2 12-10.49 12C5.11 22 2 22 2 20c0-1.5 1.14-1.55 3.15-2.11Z"}]];var WW=[["path",{d:"M10 10.01h.01"}],["path",{d:"M10 14.01h.01"}],["path",{d:"M14 10.01h.01"}],["path",{d:"M14 14.01h.01"}],["path",{d:"M18 6v11.5"}],["path",{d:"M6 6v12"}],["rect",{x:"2",y:"6",width:"20",height:"12",rx:"2"}]];var QW=[["path",{d:"M12 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5"}],["path",{d:"m16 19 3 3 3-3"}],["path",{d:"M18 12h.01"}],["path",{d:"M19 16v6"}],["path",{d:"M6 12h.01"}],["circle",{cx:"12",cy:"12",r:"2"}]];var VW=[["path",{d:"M13 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5"}],["path",{d:"m17 17 5 5"}],["path",{d:"M18 12h.01"}],["path",{d:"m22 17-5 5"}],["path",{d:"M6 12h.01"}],["circle",{cx:"12",cy:"12",r:"2"}]];var GW=[["path",{d:"M12 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5"}],["path",{d:"M18 12h.01"}],["path",{d:"M19 22v-6"}],["path",{d:"m22 19-3-3-3 3"}],["path",{d:"M6 12h.01"}],["circle",{cx:"12",cy:"12",r:"2"}]];var IW=[["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2"}],["circle",{cx:"12",cy:"12",r:"2"}],["path",{d:"M6 12h.01M18 12h.01"}]];var zW=[["path",{d:"M3 5v14"}],["path",{d:"M8 5v14"}],["path",{d:"M12 5v14"}],["path",{d:"M17 5v14"}],["path",{d:"M21 5v14"}]];var NW=[["path",{d:"M10 3a41 41 0 0 0 0 18"}],["path",{d:"M14 3a41 41 0 0 1 0 18"}],["path",{d:"M17 3a2 2 0 0 1 1.68.92 15.25 15.25 0 0 1 0 16.16A2 2 0 0 1 17 21H7a2 2 0 0 1-1.68-.92 15.25 15.25 0 0 1 0-16.16A2 2 0 0 1 7 3z"}],["path",{d:"M3.84 17h16.32"}],["path",{d:"M3.84 7h16.32"}]];var FW=[["path",{d:"M4 20h16"}],["path",{d:"m6 16 6-12 6 12"}],["path",{d:"M8 12h8"}]];var HW=[["path",{d:"M10 4 8 6"}],["path",{d:"M17 19v2"}],["path",{d:"M2 12h20"}],["path",{d:"M7 19v2"}],["path",{d:"M9 5 7.621 3.621A2.121 2.121 0 0 0 4 5v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-5"}]];var DW=[["path",{d:"m11 7-3 5h4l-3 5"}],["path",{d:"M14.856 6H16a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2.935"}],["path",{d:"M22 14v-4"}],["path",{d:"M5.14 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2.936"}]];var BW=[["path",{d:"M10 10v4"}],["path",{d:"M14 10v4"}],["path",{d:"M22 14v-4"}],["path",{d:"M6 10v4"}],["rect",{x:"2",y:"6",width:"16",height:"12",rx:"2"}]];var OW=[["path",{d:"M22 14v-4"}],["path",{d:"M6 14v-4"}],["rect",{x:"2",y:"6",width:"16",height:"12",rx:"2"}]];var TW=[["path",{d:"M10 9v6"}],["path",{d:"M12.543 6H16a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-3.605"}],["path",{d:"M22 14v-4"}],["path",{d:"M7 12h6"}],["path",{d:"M7.606 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3.606"}]];var PW=[["path",{d:"M10 14v-4"}],["path",{d:"M22 14v-4"}],["path",{d:"M6 14v-4"}],["rect",{x:"2",y:"6",width:"16",height:"12",rx:"2"}]];var SW=[["path",{d:"M10 17h.01"}],["path",{d:"M10 7v6"}],["path",{d:"M14 6h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2"}],["path",{d:"M22 14v-4"}],["path",{d:"M6 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2"}]];var AW=[["path",{d:"M 22 14 L 22 10"}],["rect",{x:"2",y:"6",width:"16",height:"12",rx:"2"}]];var qW=[["path",{d:"M4.5 3h15"}],["path",{d:"M6 3v16a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V3"}],["path",{d:"M6 14h12"}]];var EW=[["path",{d:"M9 9c-.64.64-1.521.954-2.402 1.165A6 6 0 0 0 8 22a13.96 13.96 0 0 0 9.9-4.1"}],["path",{d:"M10.75 5.093A6 6 0 0 1 22 8c0 2.411-.61 4.68-1.683 6.66"}],["path",{d:"M5.341 10.62a4 4 0 0 0 6.487 1.208M10.62 5.341a4.015 4.015 0 0 1 2.039 2.04"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var CW=[["path",{d:"M2 20v-8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v8"}],["path",{d:"M4 10V6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v4"}],["path",{d:"M12 4v6"}],["path",{d:"M2 18h20"}]];var xW=[["path",{d:"M10.165 6.598C9.954 7.478 9.64 8.36 9 9c-.64.64-1.521.954-2.402 1.165A6 6 0 0 0 8 22c7.732 0 14-6.268 14-14a6 6 0 0 0-11.835-1.402Z"}],["path",{d:"M5.341 10.62a4 4 0 1 0 5.279-5.28"}]];var wW=[["path",{d:"M3 20v-8a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v8"}],["path",{d:"M5 10V6a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v4"}],["path",{d:"M3 18h18"}]];var UW=[["path",{d:"M16.4 13.7A6.5 6.5 0 1 0 6.28 6.6c-1.1 3.13-.78 3.9-3.18 6.08A3 3 0 0 0 5 18c4 0 8.4-1.8 11.4-4.3"}],["path",{d:"m18.5 6 2.19 4.5a6.48 6.48 0 0 1-2.29 7.2C15.4 20.2 11 22 7 22a3 3 0 0 1-2.68-1.66L2.4 16.5"}],["circle",{cx:"12.5",cy:"8.5",r:"2.5"}]];var MW=[["path",{d:"M2 4v16"}],["path",{d:"M2 8h18a2 2 0 0 1 2 2v10"}],["path",{d:"M2 17h20"}],["path",{d:"M6 8v9"}]];var RW=[["path",{d:"M13 13v5"}],["path",{d:"M17 11.47V8"}],["path",{d:"M17 11h1a3 3 0 0 1 2.745 4.211"}],["path",{d:"m2 2 20 20"}],["path",{d:"M5 8v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2v-3"}],["path",{d:"M7.536 7.535C6.766 7.649 6.154 8 5.5 8a2.5 2.5 0 0 1-1.768-4.268"}],["path",{d:"M8.727 3.204C9.306 2.767 9.885 2 11 2c1.56 0 2 1.5 3 1.5s1.72-.5 2.5-.5a1 1 0 1 1 0 5c-.78 0-1.5-.5-2.5-.5a3.149 3.149 0 0 0-.842.12"}],["path",{d:"M9 14.6V18"}]];var jW=[["path",{d:"M17 11h1a3 3 0 0 1 0 6h-1"}],["path",{d:"M9 12v6"}],["path",{d:"M13 12v6"}],["path",{d:"M14 7.5c-1 0-1.44.5-3 .5s-2-.5-3-.5-1.72.5-2.5.5a2.5 2.5 0 0 1 0-5c.78 0 1.57.5 2.5.5S9.44 2 11 2s2 1.5 3 1.5 1.72-.5 2.5-.5a2.5 2.5 0 0 1 0 5c-.78 0-1.5-.5-2.5-.5Z"}],["path",{d:"M5 8v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V8"}]];var LW=[["path",{d:"M18.518 17.347A7 7 0 0 1 14 19"}],["path",{d:"M18.8 4A11 11 0 0 1 20 9"}],["path",{d:"M9 9h.01"}],["circle",{cx:"20",cy:"16",r:"2"}],["circle",{cx:"9",cy:"9",r:"7"}],["rect",{x:"4",y:"16",width:"10",height:"6",rx:"2"}]];var yW=[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0"}],["path",{d:"M13.916 2.314A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.74 7.327A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673 9 9 0 0 1-.585-.665"}],["circle",{cx:"18",cy:"8",r:"3"}]];var fW=[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0"}],["path",{d:"M15 8h6"}],["path",{d:"M16.243 3.757A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673A9.4 9.4 0 0 1 18.667 12"}]];var kW=[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0"}],["path",{d:"M17 17H4a1 1 0 0 1-.74-1.673C4.59 13.956 6 12.499 6 8a6 6 0 0 1 .258-1.742"}],["path",{d:"m2 2 20 20"}],["path",{d:"M8.668 3.01A6 6 0 0 1 18 8c0 2.687.77 4.653 1.707 6.05"}]];var bW=[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0"}],["path",{d:"M15 8h6"}],["path",{d:"M18 5v6"}],["path",{d:"M20.002 14.464a9 9 0 0 0 .738.863A1 1 0 0 1 20 17H4a1 1 0 0 1-.74-1.673C4.59 13.956 6 12.499 6 8a6 6 0 0 1 8.75-5.332"}]];var hW=[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0"}],["path",{d:"M22 8c0-2.3-.8-4.3-2-6"}],["path",{d:"M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326"}],["path",{d:"M4 2C2.8 3.7 2 5.7 2 8"}]];var vW=[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0"}],["path",{d:"M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326"}]];var m4=[["rect",{width:"13",height:"7",x:"3",y:"3",rx:"1"}],["path",{d:"m22 15-3-3 3-3"}],["rect",{width:"13",height:"7",x:"3",y:"14",rx:"1"}]];var u4=[["rect",{width:"13",height:"7",x:"8",y:"3",rx:"1"}],["path",{d:"m2 9 3 3-3 3"}],["rect",{width:"13",height:"7",x:"8",y:"14",rx:"1"}]];var $W=[["rect",{width:"7",height:"13",x:"3",y:"3",rx:"1"}],["path",{d:"m9 22 3-3 3 3"}],["rect",{width:"7",height:"13",x:"14",y:"3",rx:"1"}]];var gW=[["rect",{width:"7",height:"13",x:"3",y:"8",rx:"1"}],["path",{d:"m15 2-3 3-3-3"}],["rect",{width:"7",height:"13",x:"14",y:"8",rx:"1"}]];var _W=[["path",{d:"M12.409 13.017A5 5 0 0 1 22 15c0 3.866-4 7-9 7-4.077 0-8.153-.82-10.371-2.462-.426-.316-.631-.832-.62-1.362C2.118 12.723 2.627 2 10 2a3 3 0 0 1 3 3 2 2 0 0 1-2 2c-1.105 0-1.64-.444-2-1"}],["path",{d:"M15 14a5 5 0 0 0-7.584 2"}],["path",{d:"M9.964 6.825C8.019 7.977 9.5 13 8 15"}]];var mW=[["circle",{cx:"18.5",cy:"17.5",r:"3.5"}],["circle",{cx:"5.5",cy:"17.5",r:"3.5"}],["circle",{cx:"15",cy:"5",r:"1"}],["path",{d:"M12 17.5V14l-3-3 4-3 2 3h2"}]];var uW=[["rect",{x:"14",y:"14",width:"4",height:"6",rx:"2"}],["rect",{x:"6",y:"4",width:"4",height:"6",rx:"2"}],["path",{d:"M6 20h4"}],["path",{d:"M14 10h4"}],["path",{d:"M6 14h2v6"}],["path",{d:"M14 4h2v6"}]];var dW=[["path",{d:"M10 10h4"}],["path",{d:"M19 7V4a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1v3"}],["path",{d:"M20 21a2 2 0 0 0 2-2v-3.851c0-1.39-2-2.962-2-4.829V8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v11a2 2 0 0 0 2 2z"}],["path",{d:"M 22 16 L 2 16"}],["path",{d:"M4 21a2 2 0 0 1-2-2v-3.851c0-1.39 2-2.962 2-4.829V8a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v11a2 2 0 0 1-2 2z"}],["path",{d:"M9 7V4a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v3"}]];var cW=[["circle",{cx:"12",cy:"11.9",r:"2"}],["path",{d:"M6.7 3.4c-.9 2.5 0 5.2 2.2 6.7C6.5 9 3.7 9.6 2 11.6"}],["path",{d:"m8.9 10.1 1.4.8"}],["path",{d:"M17.3 3.4c.9 2.5 0 5.2-2.2 6.7 2.4-1.2 5.2-.6 6.9 1.5"}],["path",{d:"m15.1 10.1-1.4.8"}],["path",{d:"M16.7 20.8c-2.6-.4-4.6-2.6-4.7-5.3-.2 2.6-2.1 4.8-4.7 5.2"}],["path",{d:"M12 13.9v1.6"}],["path",{d:"M13.5 5.4c-1-.2-2-.2-3 0"}],["path",{d:"M17 16.4c.7-.7 1.2-1.6 1.5-2.5"}],["path",{d:"M5.5 13.9c.3.9.8 1.8 1.5 2.5"}]];var pW=[["path",{d:"M16 7h.01"}],["path",{d:"M3.4 18H12a8 8 0 0 0 8-8V7a4 4 0 0 0-7.28-2.3L2 20"}],["path",{d:"m20 7 2 .5-2 .5"}],["path",{d:"M10 18v3"}],["path",{d:"M14 17.75V21"}],["path",{d:"M7 18a6 6 0 0 0 3.84-10.61"}]];var nW=[["path",{d:"M12 18v4"}],["path",{d:"m17 18 1.956-11.468"}],["path",{d:"m3 8 7.82-5.615a2 2 0 0 1 2.36 0L21 8"}],["path",{d:"M4 18h16"}],["path",{d:"M7 18 5.044 6.532"}],["circle",{cx:"12",cy:"10",r:"2"}]];var iW=[["circle",{cx:"9",cy:"9",r:"7"}],["circle",{cx:"15",cy:"15",r:"7"}]];var lW=[["path",{d:"M3 3h18"}],["path",{d:"M20 7H8"}],["path",{d:"M20 11H8"}],["path",{d:"M10 19h10"}],["path",{d:"M8 15h12"}],["path",{d:"M4 3v14"}],["circle",{cx:"4",cy:"19",r:"2"}]];var sW=[["path",{d:"M11.767 19.089c4.924.868 6.14-6.025 1.216-6.894m-1.216 6.894L5.86 18.047m5.908 1.042-.347 1.97m1.563-8.864c4.924.869 6.14-6.025 1.215-6.893m-1.215 6.893-3.94-.694m5.155-6.2L8.29 4.26m5.908 1.042.348-1.97M7.48 20.364l3.126-17.727"}]];var rW=[["path",{d:"M10 22V7a1 1 0 0 0-1-1H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-5a1 1 0 0 0-1-1H2"}],["rect",{x:"14",y:"2",width:"8",height:"8",rx:"1"}]];var aW=[["path",{d:"m7 7 10 10-5 5V2l5 5L7 17"}],["line",{x1:"18",x2:"21",y1:"12",y2:"12"}],["line",{x1:"3",x2:"6",y1:"12",y2:"12"}]];var tW=[["path",{d:"m17 17-5 5V12l-5 5"}],["path",{d:"m2 2 20 20"}],["path",{d:"M14.5 9.5 17 7l-5-5v4.5"}]];var oW=[["path",{d:"m7 7 10 10-5 5V2l5 5L7 17"}]];var eW=[["path",{d:"M6 12h9a4 4 0 0 1 0 8H7a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h7a4 4 0 0 1 0 8"}]];var ZQ=[["path",{d:"m7 7 10 10-5 5V2l5 5L7 17"}],["path",{d:"M20.83 14.83a4 4 0 0 0 0-5.66"}],["path",{d:"M18 12h.01"}]];var JQ=[["path",{d:"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"}],["circle",{cx:"12",cy:"12",r:"4"}]];var KQ=[["circle",{cx:"11",cy:"13",r:"9"}],["path",{d:"M14.35 4.65 16.3 2.7a2.41 2.41 0 0 1 3.4 0l1.6 1.6a2.4 2.4 0 0 1 0 3.4l-1.95 1.95"}],["path",{d:"m22 2-1.5 1.5"}]];var YQ=[["path",{d:"M17 10c.7-.7 1.69 0 2.5 0a2.5 2.5 0 1 0 0-5 .5.5 0 0 1-.5-.5 2.5 2.5 0 1 0-5 0c0 .81.7 1.8 0 2.5l-7 7c-.7.7-1.69 0-2.5 0a2.5 2.5 0 0 0 0 5c.28 0 .5.22.5.5a2.5 2.5 0 1 0 5 0c0-.81-.7-1.8 0-2.5Z"}]];var XQ=[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"m8 13 4-7 4 7"}],["path",{d:"M9.1 11h5.7"}]];var WQ=[["path",{d:"M12 13h.01"}],["path",{d:"M12 6v3"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}]];var QQ=[["path",{d:"M12 6v7"}],["path",{d:"M16 8v3"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"M8 8v3"}]];var VQ=[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"m9 9.5 2 2 4-4"}]];var GQ=[["path",{d:"M5 7a2 2 0 0 0-2 2v11"}],["path",{d:"M5.803 18H5a2 2 0 0 0 0 4h9.5a.5.5 0 0 0 .5-.5V21"}],["path",{d:"M9 15V4a2 2 0 0 1 2-2h9.5a.5.5 0 0 1 .5.5v14a.5.5 0 0 1-.5.5H11a2 2 0 0 1 0-4h10"}]];var d4=[["path",{d:"M12 17h1.5"}],["path",{d:"M12 22h1.5"}],["path",{d:"M12 2h1.5"}],["path",{d:"M17.5 22H19a1 1 0 0 0 1-1"}],["path",{d:"M17.5 2H19a1 1 0 0 1 1 1v1.5"}],["path",{d:"M20 14v3h-2.5"}],["path",{d:"M20 8.5V10"}],["path",{d:"M4 10V8.5"}],["path",{d:"M4 19.5V14"}],["path",{d:"M4 4.5A2.5 2.5 0 0 1 6.5 2H8"}],["path",{d:"M8 22H6.5a1 1 0 0 1 0-5H8"}]];var IQ=[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"M8 12v-2a4 4 0 0 1 8 0v2"}],["circle",{cx:"15",cy:"12",r:"1"}],["circle",{cx:"9",cy:"12",r:"1"}]];var zQ=[["path",{d:"M12 13V7"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"m9 10 3 3 3-3"}]];var NQ=[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"M8.62 9.8A2.25 2.25 0 1 1 12 6.836a2.25 2.25 0 1 1 3.38 2.966l-2.626 2.856a.998.998 0 0 1-1.507 0z"}]];var FQ=[["path",{d:"m20 13.7-2.1-2.1a2 2 0 0 0-2.8 0L9.7 17"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["circle",{cx:"10",cy:"8",r:"2"}]];var HQ=[["path",{d:"m19 3 1 1"}],["path",{d:"m20 2-4.5 4.5"}],["path",{d:"M20 7.898V21a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2h7.844"}],["circle",{cx:"14",cy:"8",r:"2"}]];var DQ=[["path",{d:"M18 6V4a2 2 0 1 0-4 0v2"}],["path",{d:"M20 15v6a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H10"}],["rect",{x:"12",y:"6",width:"8",height:"5",rx:"1"}]];var BQ=[["path",{d:"M10 2v8l3-3 3 3V2"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}]];var OQ=[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"M9 10h6"}]];var TQ=[["path",{d:"M12 21V7"}],["path",{d:"m16 12 2 2 4-4"}],["path",{d:"M22 6V4a1 1 0 0 0-1-1h-5a4 4 0 0 0-4 4 4 4 0 0 0-4-4H3a1 1 0 0 0-1 1v13a1 1 0 0 0 1 1h6a3 3 0 0 1 3 3 3 3 0 0 1 3-3h6a1 1 0 0 0 1-1v-1.3"}]];var PQ=[["path",{d:"M12 7v14"}],["path",{d:"M16 12h2"}],["path",{d:"M16 8h2"}],["path",{d:"M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z"}],["path",{d:"M6 12h2"}],["path",{d:"M6 8h2"}]];var SQ=[["path",{d:"M12 7v14"}],["path",{d:"M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z"}]];var AQ=[["path",{d:"M12 7v6"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"M9 10h6"}]];var qQ=[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"M8 11h8"}],["path",{d:"M8 7h6"}]];var EQ=[["path",{d:"M10 13h4"}],["path",{d:"M12 6v7"}],["path",{d:"M16 8V6H8v2"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}]];var CQ=[["path",{d:"M12 13V7"}],["path",{d:"M18 2h1a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2"}],["path",{d:"m9 10 3-3 3 3"}],["path",{d:"m9 5 3-3 3 3"}]];var xQ=[["path",{d:"M12 13V7"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"m9 10 3-3 3 3"}]];var wQ=[["path",{d:"M15 13a3 3 0 1 0-6 0"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["circle",{cx:"12",cy:"8",r:"2"}]];var UQ=[["path",{d:"m14.5 7-5 5"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"m9.5 7 5 5"}]];var MQ=[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}]];var RQ=[["path",{d:"m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2Z"}],["path",{d:"m9 10 2 2 4-4"}]];var jQ=[["path",{d:"m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z"}],["line",{x1:"15",x2:"9",y1:"10",y2:"10"}]];var LQ=[["path",{d:"m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z"}],["line",{x1:"12",x2:"12",y1:"7",y2:"13"}],["line",{x1:"15",x2:"9",y1:"10",y2:"10"}]];var yQ=[["path",{d:"m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2Z"}],["path",{d:"m14.5 7.5-5 5"}],["path",{d:"m9.5 7.5 5 5"}]];var fQ=[["path",{d:"m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z"}]];var kQ=[["path",{d:"M12 6V2H8"}],["path",{d:"M15 11v2"}],["path",{d:"M2 12h2"}],["path",{d:"M20 12h2"}],["path",{d:"M20 16a2 2 0 0 1-2 2H8.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 4 20.286V8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2z"}],["path",{d:"M9 11v2"}]];var bQ=[["path",{d:"M4 9V5a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v4"}],["path",{d:"M8 8v1"}],["path",{d:"M12 8v1"}],["path",{d:"M16 8v1"}],["rect",{width:"20",height:"12",x:"2",y:"9",rx:"2"}],["circle",{cx:"8",cy:"15",r:"2"}],["circle",{cx:"16",cy:"15",r:"2"}]];var hQ=[["path",{d:"M13.67 8H18a2 2 0 0 1 2 2v4.33"}],["path",{d:"M2 14h2"}],["path",{d:"M20 14h2"}],["path",{d:"M22 22 2 2"}],["path",{d:"M8 8H6a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 1.414-.586"}],["path",{d:"M9 13v2"}],["path",{d:"M9.67 4H12v2.33"}]];var vQ=[["path",{d:"M12 8V4H8"}],["rect",{width:"16",height:"12",x:"4",y:"8",rx:"2"}],["path",{d:"M2 14h2"}],["path",{d:"M20 14h2"}],["path",{d:"M15 13v2"}],["path",{d:"M9 13v2"}]];var $Q=[["path",{d:"M10 3a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a6 6 0 0 0 1.2 3.6l.6.8A6 6 0 0 1 17 13v8a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1v-8a6 6 0 0 1 1.2-3.6l.6-.8A6 6 0 0 0 10 5z"}],["path",{d:"M17 13h-4a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h4"}]];var gQ=[["path",{d:"M17 3h4v4"}],["path",{d:"M18.575 11.082a13 13 0 0 1 1.048 9.027 1.17 1.17 0 0 1-1.914.597L14 17"}],["path",{d:"M7 10 3.29 6.29a1.17 1.17 0 0 1 .6-1.91 13 13 0 0 1 9.03 1.05"}],["path",{d:"M7 14a1.7 1.7 0 0 0-1.207.5l-2.646 2.646A.5.5 0 0 0 3.5 18H5a1 1 0 0 1 1 1v1.5a.5.5 0 0 0 .854.354L9.5 18.207A1.7 1.7 0 0 0 10 17v-2a1 1 0 0 0-1-1z"}],["path",{d:"M9.707 14.293 21 3"}]];var _Q=[["path",{d:"M21 8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16Z"}],["path",{d:"m3.3 7 8.7 5 8.7-5"}],["path",{d:"M12 22V12"}]];var mQ=[["path",{d:"M2.97 12.92A2 2 0 0 0 2 14.63v3.24a2 2 0 0 0 .97 1.71l3 1.8a2 2 0 0 0 2.06 0L12 19v-5.5l-5-3-4.03 2.42Z"}],["path",{d:"m7 16.5-4.74-2.85"}],["path",{d:"m7 16.5 5-3"}],["path",{d:"M7 16.5v5.17"}],["path",{d:"M12 13.5V19l3.97 2.38a2 2 0 0 0 2.06 0l3-1.8a2 2 0 0 0 .97-1.71v-3.24a2 2 0 0 0-.97-1.71L17 10.5l-5 3Z"}],["path",{d:"m17 16.5-5-3"}],["path",{d:"m17 16.5 4.74-2.85"}],["path",{d:"M17 16.5v5.17"}],["path",{d:"M7.97 4.42A2 2 0 0 0 7 6.13v4.37l5 3 5-3V6.13a2 2 0 0 0-.97-1.71l-3-1.8a2 2 0 0 0-2.06 0l-3 1.8Z"}],["path",{d:"M12 8 7.26 5.15"}],["path",{d:"m12 8 4.74-2.85"}],["path",{d:"M12 13.5V8"}]];var c4=[["path",{d:"M8 3H7a2 2 0 0 0-2 2v5a2 2 0 0 1-2 2 2 2 0 0 1 2 2v5c0 1.1.9 2 2 2h1"}],["path",{d:"M16 21h1a2 2 0 0 0 2-2v-5c0-1.1.9-2 2-2a2 2 0 0 1-2-2V5a2 2 0 0 0-2-2h-1"}]];var uQ=[["path",{d:"M16 3h3a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1h-3"}],["path",{d:"M8 21H5a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h3"}]];var dQ=[["path",{d:"M12 5a3 3 0 1 0-5.997.125 4 4 0 0 0-2.526 5.77 4 4 0 0 0 .556 6.588A4 4 0 1 0 12 18Z"}],["path",{d:"M9 13a4.5 4.5 0 0 0 3-4"}],["path",{d:"M6.003 5.125A3 3 0 0 0 6.401 6.5"}],["path",{d:"M3.477 10.896a4 4 0 0 1 .585-.396"}],["path",{d:"M6 18a4 4 0 0 1-1.967-.516"}],["path",{d:"M12 13h4"}],["path",{d:"M12 18h6a2 2 0 0 1 2 2v1"}],["path",{d:"M12 8h8"}],["path",{d:"M16 8V5a2 2 0 0 1 2-2"}],["circle",{cx:"16",cy:"13",r:".5"}],["circle",{cx:"18",cy:"3",r:".5"}],["circle",{cx:"20",cy:"21",r:".5"}],["circle",{cx:"20",cy:"8",r:".5"}]];var cQ=[["path",{d:"m10.852 14.772-.383.923"}],["path",{d:"m10.852 9.228-.383-.923"}],["path",{d:"m13.148 14.772.382.924"}],["path",{d:"m13.531 8.305-.383.923"}],["path",{d:"m14.772 10.852.923-.383"}],["path",{d:"m14.772 13.148.923.383"}],["path",{d:"M17.598 6.5A3 3 0 1 0 12 5a3 3 0 0 0-5.63-1.446 3 3 0 0 0-.368 1.571 4 4 0 0 0-2.525 5.771"}],["path",{d:"M17.998 5.125a4 4 0 0 1 2.525 5.771"}],["path",{d:"M19.505 10.294a4 4 0 0 1-1.5 7.706"}],["path",{d:"M4.032 17.483A4 4 0 0 0 11.464 20c.18-.311.892-.311 1.072 0a4 4 0 0 0 7.432-2.516"}],["path",{d:"M4.5 10.291A4 4 0 0 0 6 18"}],["path",{d:"M6.002 5.125a3 3 0 0 0 .4 1.375"}],["path",{d:"m9.228 10.852-.923-.383"}],["path",{d:"m9.228 13.148-.923.383"}],["circle",{cx:"12",cy:"12",r:"3"}]];var pQ=[["path",{d:"M12 18V5"}],["path",{d:"M15 13a4.17 4.17 0 0 1-3-4 4.17 4.17 0 0 1-3 4"}],["path",{d:"M17.598 6.5A3 3 0 1 0 12 5a3 3 0 1 0-5.598 1.5"}],["path",{d:"M17.997 5.125a4 4 0 0 1 2.526 5.77"}],["path",{d:"M18 18a4 4 0 0 0 2-7.464"}],["path",{d:"M19.967 17.483A4 4 0 1 1 12 18a4 4 0 1 1-7.967-.517"}],["path",{d:"M6 18a4 4 0 0 1-2-7.464"}],["path",{d:"M6.003 5.125a4 4 0 0 0-2.526 5.77"}]];var nQ=[["path",{d:"M16 3v2.107"}],["path",{d:"M17 9c1 3 2.5 3.5 3.5 4.5A5 5 0 0 1 22 17a5 5 0 0 1-10 0c0-.3 0-.6.1-.9a2 2 0 1 0 3.3-2C13 11.5 16 9 17 9"}],["path",{d:"M21 8.274V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h3.938"}],["path",{d:"M3 15h5.253"}],["path",{d:"M3 9h8.228"}],["path",{d:"M8 15v6"}],["path",{d:"M8 3v6"}]];var iQ=[["path",{d:"M12 9v1.258"}],["path",{d:"M16 3v5.46"}],["path",{d:"M21 9.118V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h5.75"}],["path",{d:"M22 17.5c0 2.499-1.75 3.749-3.83 4.474a.5.5 0 0 1-.335-.005c-2.085-.72-3.835-1.97-3.835-4.47V14a.5.5 0 0 1 .5-.499c1 0 2.25-.6 3.12-1.36a.6.6 0 0 1 .76-.001c.875.765 2.12 1.36 3.12 1.36a.5.5 0 0 1 .5.5z"}],["path",{d:"M3 15h7"}],["path",{d:"M3 9h12.142"}],["path",{d:"M8 15v6"}],["path",{d:"M8 3v6"}]];var lQ=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M12 9v6"}],["path",{d:"M16 15v6"}],["path",{d:"M16 3v6"}],["path",{d:"M3 15h18"}],["path",{d:"M3 9h18"}],["path",{d:"M8 15v6"}],["path",{d:"M8 3v6"}]];var sQ=[["path",{d:"M12 12h.01"}],["path",{d:"M16 6V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2"}],["path",{d:"M22 13a18.15 18.15 0 0 1-20 0"}],["rect",{width:"20",height:"14",x:"2",y:"6",rx:"2"}]];var rQ=[["path",{d:"M10 20v2"}],["path",{d:"M14 20v2"}],["path",{d:"M18 20v2"}],["path",{d:"M21 20H3"}],["path",{d:"M6 20v2"}],["path",{d:"M8 16V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v12"}],["rect",{x:"4",y:"6",width:"16",height:"10",rx:"2"}]];var aQ=[["path",{d:"M12 11v4"}],["path",{d:"M14 13h-4"}],["path",{d:"M16 6V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2"}],["path",{d:"M18 6v14"}],["path",{d:"M6 6v14"}],["rect",{width:"20",height:"14",x:"2",y:"6",rx:"2"}]];var tQ=[["path",{d:"M16 20V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"}],["rect",{width:"20",height:"14",x:"2",y:"6",rx:"2"}]];var oQ=[["rect",{x:"8",y:"8",width:"8",height:"8",rx:"2"}],["path",{d:"M4 10a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2"}],["path",{d:"M14 20a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2"}]];var eQ=[["path",{d:"m16 22-1-4"}],["path",{d:"M19 13.99a1 1 0 0 0 1-1V12a2 2 0 0 0-2-2h-3a1 1 0 0 1-1-1V4a2 2 0 0 0-4 0v5a1 1 0 0 1-1 1H6a2 2 0 0 0-2 2v.99a1 1 0 0 0 1 1"}],["path",{d:"M5 14h14l1.973 6.767A1 1 0 0 1 20 22H4a1 1 0 0 1-.973-1.233z"}],["path",{d:"m8 22 1-4"}]];var ZV=[["path",{d:"m11 10 3 3"}],["path",{d:"M6.5 21A3.5 3.5 0 1 0 3 17.5a2.62 2.62 0 0 1-.708 1.792A1 1 0 0 0 3 21z"}],["path",{d:"M9.969 17.031 21.378 5.624a1 1 0 0 0-3.002-3.002L6.967 14.031"}]];var JV=[["path",{d:"M7.2 14.8a2 2 0 0 1 2 2"}],["circle",{cx:"18.5",cy:"8.5",r:"3.5"}],["circle",{cx:"7.5",cy:"16.5",r:"5.5"}],["circle",{cx:"7.5",cy:"4.5",r:"2.5"}]];var KV=[["path",{d:"M12 20v-8"}],["path",{d:"M14.12 3.88 16 2"}],["path",{d:"M15 7.13V6a3 3 0 0 0-5.14-2.1L8 2"}],["path",{d:"M18 12.34V11a4 4 0 0 0-4-4h-1.3"}],["path",{d:"m2 2 20 20"}],["path",{d:"M21 5a4 4 0 0 1-3.55 3.97"}],["path",{d:"M22 13h-3.34"}],["path",{d:"M3 21a4 4 0 0 1 3.81-4"}],["path",{d:"M6 13H2"}],["path",{d:"M7.7 7.7A4 4 0 0 0 6 11v3a6 6 0 0 0 11.13 3.13"}]];var YV=[["path",{d:"M10 19.655A6 6 0 0 1 6 14v-3a4 4 0 0 1 4-4h4a4 4 0 0 1 4 3.97"}],["path",{d:"M14 15.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997a1 1 0 0 1-1.517-.86z"}],["path",{d:"M14.12 3.88 16 2"}],["path",{d:"M21 5a4 4 0 0 1-3.55 3.97"}],["path",{d:"M3 21a4 4 0 0 1 3.81-4"}],["path",{d:"M3 5a4 4 0 0 0 3.55 3.97"}],["path",{d:"M6 13H2"}],["path",{d:"m8 2 1.88 1.88"}],["path",{d:"M9 7.13V6a3 3 0 1 1 6 0v1.13"}]];var XV=[["path",{d:"M12 20v-9"}],["path",{d:"M14 7a4 4 0 0 1 4 4v3a6 6 0 0 1-12 0v-3a4 4 0 0 1 4-4z"}],["path",{d:"M14.12 3.88 16 2"}],["path",{d:"M21 21a4 4 0 0 0-3.81-4"}],["path",{d:"M21 5a4 4 0 0 1-3.55 3.97"}],["path",{d:"M22 13h-4"}],["path",{d:"M3 21a4 4 0 0 1 3.81-4"}],["path",{d:"M3 5a4 4 0 0 0 3.55 3.97"}],["path",{d:"M6 13H2"}],["path",{d:"m8 2 1.88 1.88"}],["path",{d:"M9 7.13V6a3 3 0 1 1 6 0v1.13"}]];var WV=[["path",{d:"M10 12h4"}],["path",{d:"M10 8h4"}],["path",{d:"M14 21v-3a2 2 0 0 0-4 0v3"}],["path",{d:"M6 10H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-2"}],["path",{d:"M6 21V5a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v16"}]];var QV=[["path",{d:"M12 10h.01"}],["path",{d:"M12 14h.01"}],["path",{d:"M12 6h.01"}],["path",{d:"M16 10h.01"}],["path",{d:"M16 14h.01"}],["path",{d:"M16 6h.01"}],["path",{d:"M8 10h.01"}],["path",{d:"M8 14h.01"}],["path",{d:"M8 6h.01"}],["path",{d:"M9 22v-3a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v3"}],["rect",{x:"4",y:"2",width:"16",height:"20",rx:"2"}]];var VV=[["path",{d:"M4 6 2 7"}],["path",{d:"M10 6h4"}],["path",{d:"m22 7-2-1"}],["rect",{width:"16",height:"16",x:"4",y:"3",rx:"2"}],["path",{d:"M4 11h16"}],["path",{d:"M8 15h.01"}],["path",{d:"M16 15h.01"}],["path",{d:"M6 19v2"}],["path",{d:"M18 21v-2"}]];var GV=[["path",{d:"M8 6v6"}],["path",{d:"M15 6v6"}],["path",{d:"M2 12h19.6"}],["path",{d:"M18 18h3s.5-1.7.8-2.8c.1-.4.2-.8.2-1.2 0-.4-.1-.8-.2-1.2l-1.4-5C20.1 6.8 19.1 6 18 6H4a2 2 0 0 0-2 2v10h3"}],["circle",{cx:"7",cy:"18",r:"2"}],["path",{d:"M9 18h5"}],["circle",{cx:"16",cy:"18",r:"2"}]];var IV=[["path",{d:"M10 3h.01"}],["path",{d:"M14 2h.01"}],["path",{d:"m2 9 20-5"}],["path",{d:"M12 12V6.5"}],["rect",{width:"16",height:"10",x:"4",y:"12",rx:"3"}],["path",{d:"M9 12v5"}],["path",{d:"M15 12v5"}],["path",{d:"M4 17h16"}]];var zV=[["path",{d:"M17 19a1 1 0 0 1-1-1v-2a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v2a1 1 0 0 1-1 1z"}],["path",{d:"M17 21v-2"}],["path",{d:"M19 14V6.5a1 1 0 0 0-7 0v11a1 1 0 0 1-7 0V10"}],["path",{d:"M21 21v-2"}],["path",{d:"M3 5V3"}],["path",{d:"M4 10a2 2 0 0 1-2-2V6a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v2a2 2 0 0 1-2 2z"}],["path",{d:"M7 5V3"}]];var NV=[["path",{d:"M16 13H3"}],["path",{d:"M16 17H3"}],["path",{d:"m7.2 7.9-3.388 2.5A2 2 0 0 0 3 12.01V20a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1v-8.654c0-2-2.44-6.026-6.44-8.026a1 1 0 0 0-1.082.057L10.4 5.6"}],["circle",{cx:"9",cy:"7",r:"2"}]];var FV=[["path",{d:"M20 21v-8a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v8"}],["path",{d:"M4 16s.5-1 2-1 2.5 2 4 2 2.5-2 4-2 2.5 2 4 2 2-1 2-1"}],["path",{d:"M2 21h20"}],["path",{d:"M7 8v3"}],["path",{d:"M12 8v3"}],["path",{d:"M17 8v3"}],["path",{d:"M7 4h.01"}],["path",{d:"M12 4h.01"}],["path",{d:"M17 4h.01"}]];var HV=[["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2"}],["line",{x1:"8",x2:"16",y1:"6",y2:"6"}],["line",{x1:"16",x2:"16",y1:"14",y2:"18"}],["path",{d:"M16 10h.01"}],["path",{d:"M12 10h.01"}],["path",{d:"M8 10h.01"}],["path",{d:"M12 14h.01"}],["path",{d:"M8 14h.01"}],["path",{d:"M12 18h.01"}],["path",{d:"M8 18h.01"}]];var DV=[["path",{d:"M11 14h1v4"}],["path",{d:"M16 2v4"}],["path",{d:"M3 10h18"}],["path",{d:"M8 2v4"}],["rect",{x:"3",y:"4",width:"18",height:"18",rx:"2"}]];var BV=[["path",{d:"m14 18 4 4 4-4"}],["path",{d:"M16 2v4"}],["path",{d:"M18 14v8"}],["path",{d:"M21 11.354V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7.343"}],["path",{d:"M3 10h18"}],["path",{d:"M8 2v4"}]];var OV=[["path",{d:"m14 18 4-4 4 4"}],["path",{d:"M16 2v4"}],["path",{d:"M18 22v-8"}],["path",{d:"M21 11.343V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h9"}],["path",{d:"M3 10h18"}],["path",{d:"M8 2v4"}]];var TV=[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["path",{d:"M21 14V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8"}],["path",{d:"M3 10h18"}],["path",{d:"m16 20 2 2 4-4"}]];var PV=[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2"}],["path",{d:"M3 10h18"}],["path",{d:"m9 16 2 2 4-4"}]];var SV=[["path",{d:"M16 14v2.2l1.6 1"}],["path",{d:"M16 2v4"}],["path",{d:"M21 7.5V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h3.5"}],["path",{d:"M3 10h5"}],["path",{d:"M8 2v4"}],["circle",{cx:"16",cy:"16",r:"6"}]];var AV=[["path",{d:"m15.228 16.852-.923-.383"}],["path",{d:"m15.228 19.148-.923.383"}],["path",{d:"M16 2v4"}],["path",{d:"m16.47 14.305.382.923"}],["path",{d:"m16.852 20.772-.383.924"}],["path",{d:"m19.148 15.228.383-.923"}],["path",{d:"m19.53 21.696-.382-.924"}],["path",{d:"m20.772 16.852.924-.383"}],["path",{d:"m20.772 19.148.924.383"}],["path",{d:"M21 10.592V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6"}],["path",{d:"M3 10h18"}],["path",{d:"M8 2v4"}],["circle",{cx:"18",cy:"18",r:"3"}]];var qV=[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2"}],["path",{d:"M3 10h18"}],["path",{d:"M8 14h.01"}],["path",{d:"M12 14h.01"}],["path",{d:"M16 14h.01"}],["path",{d:"M8 18h.01"}],["path",{d:"M12 18h.01"}],["path",{d:"M16 18h.01"}]];var EV=[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["path",{d:"M21 17V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h11Z"}],["path",{d:"M3 10h18"}],["path",{d:"M15 22v-4a2 2 0 0 1 2-2h4"}]];var CV=[["path",{d:"M12.127 22H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v5.125"}],["path",{d:"M14.62 18.8A2.25 2.25 0 1 1 18 15.836a2.25 2.25 0 1 1 3.38 2.966l-2.626 2.856a.998.998 0 0 1-1.507 0z"}],["path",{d:"M16 2v4"}],["path",{d:"M3 10h18"}],["path",{d:"M8 2v4"}]];var xV=[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2"}],["path",{d:"M3 10h18"}],["path",{d:"M10 16h4"}]];var wV=[["path",{d:"M16 19h6"}],["path",{d:"M16 2v4"}],["path",{d:"M21 15V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8.5"}],["path",{d:"M3 10h18"}],["path",{d:"M8 2v4"}]];var UV=[["path",{d:"M4.2 4.2A2 2 0 0 0 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 1.82-1.18"}],["path",{d:"M21 15.5V6a2 2 0 0 0-2-2H9.5"}],["path",{d:"M16 2v4"}],["path",{d:"M3 10h7"}],["path",{d:"M21 10h-5.5"}],["path",{d:"m2 2 20 20"}]];var MV=[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2"}],["path",{d:"M3 10h18"}],["path",{d:"M10 16h4"}],["path",{d:"M12 14v4"}]];var RV=[["path",{d:"M16 19h6"}],["path",{d:"M16 2v4"}],["path",{d:"M19 16v6"}],["path",{d:"M21 12.598V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8.5"}],["path",{d:"M3 10h18"}],["path",{d:"M8 2v4"}]];var jV=[["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2"}],["path",{d:"M16 2v4"}],["path",{d:"M3 10h18"}],["path",{d:"M8 2v4"}],["path",{d:"M17 14h-6"}],["path",{d:"M13 18H7"}],["path",{d:"M7 14h.01"}],["path",{d:"M17 18h.01"}]];var LV=[["path",{d:"M16 2v4"}],["path",{d:"M21 11.75V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7.25"}],["path",{d:"m22 22-1.875-1.875"}],["path",{d:"M3 10h18"}],["path",{d:"M8 2v4"}],["circle",{cx:"18",cy:"18",r:"3"}]];var yV=[["path",{d:"M11 10v4h4"}],["path",{d:"m11 14 1.535-1.605a5 5 0 0 1 8 1.5"}],["path",{d:"M16 2v4"}],["path",{d:"m21 18-1.535 1.605a5 5 0 0 1-8-1.5"}],["path",{d:"M21 22v-4h-4"}],["path",{d:"M21 8.5V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h4.3"}],["path",{d:"M3 10h4"}],["path",{d:"M8 2v4"}]];var fV=[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["path",{d:"M21 13V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8"}],["path",{d:"M3 10h18"}],["path",{d:"m17 22 5-5"}],["path",{d:"m17 17 5 5"}]];var kV=[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2"}],["path",{d:"M3 10h18"}],["path",{d:"m14 14-4 4"}],["path",{d:"m10 14 4 4"}]];var bV=[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2"}],["path",{d:"M3 10h18"}]];var hV=[["path",{d:"M13.997 4a2 2 0 0 1 1.76 1.05l.486.9A2 2 0 0 0 18.003 7H20a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h1.997a2 2 0 0 0 1.759-1.048l.489-.904A2 2 0 0 1 10.004 4z"}],["circle",{cx:"12",cy:"13",r:"3"}]];var vV=[["path",{d:"M14.564 14.558a3 3 0 1 1-4.122-4.121"}],["path",{d:"m2 2 20 20"}],["path",{d:"M20 20H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h1.997a2 2 0 0 0 .819-.175"}],["path",{d:"M9.695 4.024A2 2 0 0 1 10.004 4h3.993a2 2 0 0 1 1.76 1.05l.486.9A2 2 0 0 0 18.003 7H20a2 2 0 0 1 2 2v7.344"}]];var $V=[["path",{d:"M5.7 21a2 2 0 0 1-3.5-2l8.6-14a6 6 0 0 1 10.4 6 2 2 0 1 1-3.464-2 2 2 0 1 0-3.464-2Z"}],["path",{d:"M17.75 7 15 2.1"}],["path",{d:"M10.9 4.8 13 9"}],["path",{d:"m7.9 9.7 2 4.4"}],["path",{d:"M4.9 14.7 7 18.9"}]];var gV=[["path",{d:"M10 10v7.9"}],["path",{d:"M11.802 6.145a5 5 0 0 1 6.053 6.053"}],["path",{d:"M14 6.1v2.243"}],["path",{d:"m15.5 15.571-.964.964a5 5 0 0 1-7.071 0 5 5 0 0 1 0-7.07l.964-.965"}],["path",{d:"M16 7V3a1 1 0 0 1 1.707-.707 2.5 2.5 0 0 0 2.152.717 1 1 0 0 1 1.131 1.131 2.5 2.5 0 0 0 .717 2.152A1 1 0 0 1 21 8h-4"}],["path",{d:"m2 2 20 20"}],["path",{d:"M8 17v4a1 1 0 0 1-1.707.707 2.5 2.5 0 0 0-2.152-.717 1 1 0 0 1-1.131-1.131 2.5 2.5 0 0 0-.717-2.152A1 1 0 0 1 3 16h4"}]];var _V=[["path",{d:"M10 7v10.9"}],["path",{d:"M14 6.1V17"}],["path",{d:"M16 7V3a1 1 0 0 1 1.707-.707 2.5 2.5 0 0 0 2.152.717 1 1 0 0 1 1.131 1.131 2.5 2.5 0 0 0 .717 2.152A1 1 0 0 1 21 8h-4"}],["path",{d:"M16.536 7.465a5 5 0 0 0-7.072 0l-2 2a5 5 0 0 0 0 7.07 5 5 0 0 0 7.072 0l2-2a5 5 0 0 0 0-7.07"}],["path",{d:"M8 17v4a1 1 0 0 1-1.707.707 2.5 2.5 0 0 0-2.152-.717 1 1 0 0 1-1.131-1.131 2.5 2.5 0 0 0-.717-2.152A1 1 0 0 1 3 16h4"}]];var mV=[["path",{d:"M12 22v-4"}],["path",{d:"M7 12c-1.5 0-4.5 1.5-5 3 3.5 1.5 6 1 6 1-1.5 1.5-2 3.5-2 5 2.5 0 4.5-1.5 6-3 1.5 1.5 3.5 3 6 3 0-1.5-.5-3.5-2-5 0 0 2.5.5 6-1-.5-1.5-3.5-3-5-3 1.5-1 4-4 4-6-2.5 0-5.5 1.5-7 3 0-2.5-.5-5-2-7-1.5 2-2 4.5-2 7-1.5-1.5-4.5-3-7-3 0 2 2.5 5 4 6"}]];var uV=[["path",{d:"M10.5 5H19a2 2 0 0 1 2 2v8.5"}],["path",{d:"M17 11h-.5"}],["path",{d:"M19 19H5a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2"}],["path",{d:"m2 2 20 20"}],["path",{d:"M7 11h4"}],["path",{d:"M7 15h2.5"}]];var p4=[["rect",{width:"18",height:"14",x:"3",y:"5",rx:"2",ry:"2"}],["path",{d:"M7 15h4M15 15h2M7 11h2M13 11h4"}]];var dV=[["path",{d:"m21 8-2 2-1.5-3.7A2 2 0 0 0 15.646 5H8.4a2 2 0 0 0-1.903 1.257L5 10 3 8"}],["path",{d:"M7 14h.01"}],["path",{d:"M17 14h.01"}],["rect",{width:"18",height:"8",x:"3",y:"10",rx:"2"}],["path",{d:"M5 18v2"}],["path",{d:"M19 18v2"}]];var cV=[["path",{d:"M10 2h4"}],["path",{d:"m21 8-2 2-1.5-3.7A2 2 0 0 0 15.646 5H8.4a2 2 0 0 0-1.903 1.257L5 10 3 8"}],["path",{d:"M7 14h.01"}],["path",{d:"M17 14h.01"}],["rect",{width:"18",height:"8",x:"3",y:"10",rx:"2"}],["path",{d:"M5 18v2"}],["path",{d:"M19 18v2"}]];var pV=[["path",{d:"M19 17h2c.6 0 1-.4 1-1v-3c0-.9-.7-1.7-1.5-1.9C18.7 10.6 16 10 16 10s-1.3-1.4-2.2-2.3c-.5-.4-1.1-.7-1.8-.7H5c-.6 0-1.1.4-1.4.9l-1.4 2.9A3.7 3.7 0 0 0 2 12v4c0 .6.4 1 1 1h2"}],["circle",{cx:"7",cy:"17",r:"2"}],["path",{d:"M9 17h6"}],["circle",{cx:"17",cy:"17",r:"2"}]];var nV=[["path",{d:"M18 19V9a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v8a2 2 0 0 0 2 2h2"}],["path",{d:"M2 9h3a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H2"}],["path",{d:"M22 17v1a1 1 0 0 1-1 1H10v-9a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v9"}],["circle",{cx:"8",cy:"19",r:"2"}]];var iV=[["path",{d:"M2.27 21.7s9.87-3.5 12.73-6.36a4.5 4.5 0 0 0-6.36-6.37C5.77 11.84 2.27 21.7 2.27 21.7zM8.64 14l-2.05-2.04M15.34 15l-2.46-2.46"}],["path",{d:"M22 9s-1.33-2-3.5-2C16.86 7 15 9 15 9s1.33 2 3.5 2S22 9 22 9z"}],["path",{d:"M15 2s-2 1.33-2 3.5S15 9 15 9s2-1.84 2-3.5C17 3.33 15 2 15 2z"}]];var lV=[["path",{d:"M12 14v4"}],["path",{d:"M14.172 2a2 2 0 0 1 1.414.586l3.828 3.828A2 2 0 0 1 20 7.828V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2z"}],["path",{d:"M8 14h8"}],["rect",{x:"8",y:"10",width:"8",height:"8",rx:"1"}]];var sV=[["path",{d:"M10 9v7"}],["path",{d:"M14 6v10"}],["circle",{cx:"17.5",cy:"12.5",r:"3.5"}],["circle",{cx:"6.5",cy:"12.5",r:"3.5"}]];var rV=[["path",{d:"m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16"}],["path",{d:"M22 9v7"}],["path",{d:"M3.304 13h6.392"}],["circle",{cx:"18.5",cy:"12.5",r:"3.5"}]];var aV=[["path",{d:"M15 11h4.5a1 1 0 0 1 0 5h-4a.5.5 0 0 1-.5-.5v-9a.5.5 0 0 1 .5-.5h3a1 1 0 0 1 0 5"}],["path",{d:"m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16"}],["path",{d:"M3.304 13h6.392"}]];var tV=[["path",{d:"M2 8V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6"}],["path",{d:"M2 12a9 9 0 0 1 8 8"}],["path",{d:"M2 16a5 5 0 0 1 4 4"}],["line",{x1:"2",x2:"2.01",y1:"20",y2:"20"}]];var oV=[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2"}],["circle",{cx:"8",cy:"10",r:"2"}],["path",{d:"M8 12h8"}],["circle",{cx:"16",cy:"10",r:"2"}],["path",{d:"m6 20 .7-2.9A1.4 1.4 0 0 1 8.1 16h7.8a1.4 1.4 0 0 1 1.4 1l.7 3"}]];var eV=[["path",{d:"M10 5V3"}],["path",{d:"M14 5V3"}],["path",{d:"M15 21v-3a3 3 0 0 0-6 0v3"}],["path",{d:"M18 3v8"}],["path",{d:"M18 5H6"}],["path",{d:"M22 11H2"}],["path",{d:"M22 9v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9"}],["path",{d:"M6 3v8"}]];var ZG=[["path",{d:"M12 5c.67 0 1.35.09 2 .26 1.78-2 5.03-2.84 6.42-2.26 1.4.58-.42 7-.42 7 .57 1.07 1 2.24 1 3.44C21 17.9 16.97 21 12 21s-9-3-9-7.56c0-1.25.5-2.4 1-3.44 0 0-1.89-6.42-.5-7 1.39-.58 4.72.23 6.5 2.23A9.04 9.04 0 0 1 12 5Z"}],["path",{d:"M8 14v.5"}],["path",{d:"M16 14v.5"}],["path",{d:"M11.25 16.25h1.5L12 17l-.75-.75Z"}]];var JG=[["path",{d:"M16.75 12h3.632a1 1 0 0 1 .894 1.447l-2.034 4.069a1 1 0 0 1-1.708.134l-2.124-2.97"}],["path",{d:"M17.106 9.053a1 1 0 0 1 .447 1.341l-3.106 6.211a1 1 0 0 1-1.342.447L3.61 12.3a2.92 2.92 0 0 1-1.3-3.91L3.69 5.6a2.92 2.92 0 0 1 3.92-1.3z"}],["path",{d:"M2 19h3.76a2 2 0 0 0 1.8-1.1L9 15"}],["path",{d:"M2 21v-4"}],["path",{d:"M7 9h.01"}]];var n4=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M7 11.207a.5.5 0 0 1 .146-.353l2-2a.5.5 0 0 1 .708 0l3.292 3.292a.5.5 0 0 0 .708 0l4.292-4.292a.5.5 0 0 1 .854.353V16a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1z"}]];var i4=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["rect",{x:"7",y:"13",width:"9",height:"4",rx:"1"}],["rect",{x:"7",y:"5",width:"12",height:"4",rx:"1"}]];var KG=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M7 11h8"}],["path",{d:"M7 16h3"}],["path",{d:"M7 6h12"}]];var YG=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M7 11h8"}],["path",{d:"M7 16h12"}],["path",{d:"M7 6h3"}]];var XG=[["path",{d:"M11 13v4"}],["path",{d:"M15 5v4"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["rect",{x:"7",y:"13",width:"9",height:"4",rx:"1"}],["rect",{x:"7",y:"5",width:"12",height:"4",rx:"1"}]];var l4=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M7 16h8"}],["path",{d:"M7 11h12"}],["path",{d:"M7 6h3"}]];var s4=[["path",{d:"M9 5v4"}],["rect",{width:"4",height:"6",x:"7",y:"9",rx:"1"}],["path",{d:"M9 15v2"}],["path",{d:"M17 3v2"}],["rect",{width:"4",height:"8",x:"15",y:"5",rx:"1"}],["path",{d:"M17 13v3"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}]];var r4=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["rect",{x:"15",y:"5",width:"4",height:"12",rx:"1"}],["rect",{x:"7",y:"8",width:"4",height:"9",rx:"1"}]];var WG=[["path",{d:"M13 17V9"}],["path",{d:"M18 17v-3"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M8 17V5"}]];var a4=[["path",{d:"M13 17V9"}],["path",{d:"M18 17V5"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M8 17v-3"}]];var QG=[["path",{d:"M11 13H7"}],["path",{d:"M19 9h-4"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["rect",{x:"15",y:"5",width:"4",height:"12",rx:"1"}],["rect",{x:"7",y:"8",width:"4",height:"9",rx:"1"}]];var t4=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M18 17V9"}],["path",{d:"M13 17V5"}],["path",{d:"M8 17v-3"}]];var VG=[["path",{d:"M10 6h8"}],["path",{d:"M12 16h6"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M8 11h7"}]];var o4=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"m19 9-5 5-4-4-3 3"}]];var GG=[["path",{d:"m13.11 7.664 1.78 2.672"}],["path",{d:"m14.162 12.788-3.324 1.424"}],["path",{d:"m20 4-6.06 1.515"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["circle",{cx:"12",cy:"6",r:"2"}],["circle",{cx:"16",cy:"12",r:"2"}],["circle",{cx:"9",cy:"15",r:"2"}]];var IG=[["path",{d:"M5 21V3"}],["path",{d:"M12 21V9"}],["path",{d:"M19 21v-6"}]];var e4=[["path",{d:"M5 21v-6"}],["path",{d:"M12 21V9"}],["path",{d:"M19 21V3"}]];var Z7=[["path",{d:"M5 21v-6"}],["path",{d:"M12 21V3"}],["path",{d:"M19 21V9"}]];var J7=[["path",{d:"M6 5h12"}],["path",{d:"M4 12h10"}],["path",{d:"M12 19h8"}]];var zG=[["path",{d:"M12 16v5"}],["path",{d:"M16 14v7"}],["path",{d:"M20 10v11"}],["path",{d:"m22 3-8.646 8.646a.5.5 0 0 1-.708 0L9.354 8.354a.5.5 0 0 0-.707 0L2 15"}],["path",{d:"M4 18v3"}],["path",{d:"M8 14v7"}]];var K7=[["path",{d:"M21 12c.552 0 1.005-.449.95-.998a10 10 0 0 0-8.953-8.951c-.55-.055-.998.398-.998.95v8a1 1 0 0 0 1 1z"}],["path",{d:"M21.21 15.89A10 10 0 1 1 8 2.83"}]];var Y7=[["circle",{cx:"7.5",cy:"7.5",r:".5",fill:"currentColor"}],["circle",{cx:"18.5",cy:"5.5",r:".5",fill:"currentColor"}],["circle",{cx:"11.5",cy:"11.5",r:".5",fill:"currentColor"}],["circle",{cx:"7.5",cy:"16.5",r:".5",fill:"currentColor"}],["circle",{cx:"17.5",cy:"14.5",r:".5",fill:"currentColor"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}]];var NG=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M7 16c.5-2 1.5-7 4-7 2 0 2 3 4 3 2.5 0 4.5-5 5-7"}]];var FG=[["path",{d:"M18 6 7 17l-5-5"}],["path",{d:"m22 10-7.5 7.5L13 16"}]];var HG=[["path",{d:"M20 6 9 17l-5-5"}]];var DG=[["path",{d:"M20 4L9 15"}],["path",{d:"M21 19L3 19"}],["path",{d:"M9 15L4 10"}]];var BG=[["path",{d:"M17 21a1 1 0 0 0 1-1v-5.35c0-.457.316-.844.727-1.041a4 4 0 0 0-2.134-7.589 5 5 0 0 0-9.186 0 4 4 0 0 0-2.134 7.588c.411.198.727.585.727 1.041V20a1 1 0 0 0 1 1Z"}],["path",{d:"M6 17h12"}]];var OG=[["path",{d:"M2 17a5 5 0 0 0 10 0c0-2.76-2.5-5-5-3-2.5-2-5 .24-5 3Z"}],["path",{d:"M12 17a5 5 0 0 0 10 0c0-2.76-2.5-5-5-3-2.5-2-5 .24-5 3Z"}],["path",{d:"M7 14c3.22-2.91 4.29-8.75 5-12 1.66 2.38 4.94 9 5 12"}],["path",{d:"M22 9c-4.29 0-7.14-2.33-10-7 5.71 0 10 4.67 10 7Z"}]];var TG=[["path",{d:"m6 9 6 6 6-6"}]];var PG=[["path",{d:"m17 18-6-6 6-6"}],["path",{d:"M7 6v12"}]];var SG=[["path",{d:"m7 18 6-6-6-6"}],["path",{d:"M17 6v12"}]];var AG=[["path",{d:"m9 18 6-6-6-6"}]];var qG=[["path",{d:"m18 15-6-6-6 6"}]];var EG=[["path",{d:"m15 18-6-6 6-6"}]];var CG=[["path",{d:"m7 20 5-5 5 5"}],["path",{d:"m7 4 5 5 5-5"}]];var xG=[["path",{d:"m7 6 5 5 5-5"}],["path",{d:"m7 13 5 5 5-5"}]];var wG=[["path",{d:"M12 12h.01"}],["path",{d:"M16 12h.01"}],["path",{d:"m17 7 5 5-5 5"}],["path",{d:"m7 7-5 5 5 5"}],["path",{d:"M8 12h.01"}]];var UG=[["path",{d:"m9 7-5 5 5 5"}],["path",{d:"m15 7 5 5-5 5"}]];var MG=[["path",{d:"m11 17-5-5 5-5"}],["path",{d:"m18 17-5-5 5-5"}]];var RG=[["path",{d:"m20 17-5-5 5-5"}],["path",{d:"m4 17 5-5-5-5"}]];var jG=[["path",{d:"m6 17 5-5-5-5"}],["path",{d:"m13 17 5-5-5-5"}]];var LG=[["path",{d:"m17 11-5-5-5 5"}],["path",{d:"m17 18-5-5-5 5"}]];var yG=[["path",{d:"m7 15 5 5 5-5"}],["path",{d:"m7 9 5-5 5 5"}]];var fG=[["path",{d:"M10 9h4"}],["path",{d:"M12 7v5"}],["path",{d:"M14 21v-3a2 2 0 0 0-4 0v3"}],["path",{d:"m18 9 3.52 2.147a1 1 0 0 1 .48.854V19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-6.999a1 1 0 0 1 .48-.854L6 9"}],["path",{d:"M6 21V7a1 1 0 0 1 .376-.782l5-3.999a1 1 0 0 1 1.249.001l5 4A1 1 0 0 1 18 7v14"}]];var X7=[["path",{d:"M10.88 21.94 15.46 14"}],["path",{d:"M21.17 8H12"}],["path",{d:"M3.95 6.06 8.54 14"}],["circle",{cx:"12",cy:"12",r:"10"}],["circle",{cx:"12",cy:"12",r:"4"}]];var kG=[["path",{d:"M12 12H3a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h13"}],["path",{d:"M18 8c0-2.5-2-2.5-2-5"}],["path",{d:"m2 2 20 20"}],["path",{d:"M21 12a1 1 0 0 1 1 1v2a1 1 0 0 1-.5.866"}],["path",{d:"M22 8c0-2.5-2-2.5-2-5"}],["path",{d:"M7 12v4"}]];var bG=[["path",{d:"M17 12H3a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h14"}],["path",{d:"M18 8c0-2.5-2-2.5-2-5"}],["path",{d:"M21 16a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1"}],["path",{d:"M22 8c0-2.5-2-2.5-2-5"}],["path",{d:"M7 12v4"}]];var W7=[["circle",{cx:"12",cy:"12",r:"10"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16"}]];var Q7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 8v8"}],["path",{d:"m8 12 4 4 4-4"}]];var V7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m12 8-4 4 4 4"}],["path",{d:"M16 12H8"}]];var G7=[["path",{d:"M2 12a10 10 0 1 1 10 10"}],["path",{d:"m2 22 10-10"}],["path",{d:"M8 22H2v-6"}]];var I7=[["path",{d:"M12 22a10 10 0 1 1 10-10"}],["path",{d:"M22 22 12 12"}],["path",{d:"M22 16v6h-6"}]];var z7=[["path",{d:"M2 8V2h6"}],["path",{d:"m2 2 10 10"}],["path",{d:"M12 2A10 10 0 1 1 2 12"}]];var N7=[["path",{d:"M22 12A10 10 0 1 1 12 2"}],["path",{d:"M22 2 12 12"}],["path",{d:"M16 2h6v6"}]];var F7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m12 16 4-4-4-4"}],["path",{d:"M8 12h8"}]];var H7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m16 12-4-4-4 4"}],["path",{d:"M12 16V8"}]];var D7=[["path",{d:"M21.801 10A10 10 0 1 1 17 3.335"}],["path",{d:"m9 11 3 3L22 4"}]];var B7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m16 10-4 4-4-4"}]];var O7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m9 12 2 2 4-4"}]];var T7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m14 16-4-4 4-4"}]];var P7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m10 8 4 4-4 4"}]];var S7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m8 14 4-4 4 4"}]];var hG=[["path",{d:"M10.1 2.182a10 10 0 0 1 3.8 0"}],["path",{d:"M13.9 21.818a10 10 0 0 1-3.8 0"}],["path",{d:"M17.609 3.721a10 10 0 0 1 2.69 2.7"}],["path",{d:"M2.182 13.9a10 10 0 0 1 0-3.8"}],["path",{d:"M20.279 17.609a10 10 0 0 1-2.7 2.69"}],["path",{d:"M21.818 10.1a10 10 0 0 1 0 3.8"}],["path",{d:"M3.721 6.391a10 10 0 0 1 2.7-2.69"}],["path",{d:"M6.391 20.279a10 10 0 0 1-2.69-2.7"}]];var A7=[["line",{x1:"8",x2:"16",y1:"12",y2:"12"}],["line",{x1:"12",x2:"12",y1:"16",y2:"16"}],["line",{x1:"12",x2:"12",y1:"8",y2:"8"}],["circle",{cx:"12",cy:"12",r:"10"}]];var vG=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8"}],["path",{d:"M12 18V6"}]];var $G=[["path",{d:"M10.1 2.18a9.93 9.93 0 0 1 3.8 0"}],["path",{d:"M17.6 3.71a9.95 9.95 0 0 1 2.69 2.7"}],["path",{d:"M21.82 10.1a9.93 9.93 0 0 1 0 3.8"}],["path",{d:"M20.29 17.6a9.95 9.95 0 0 1-2.7 2.69"}],["path",{d:"M13.9 21.82a9.94 9.94 0 0 1-3.8 0"}],["path",{d:"M6.4 20.29a9.95 9.95 0 0 1-2.69-2.7"}],["path",{d:"M2.18 13.9a9.93 9.93 0 0 1 0-3.8"}],["path",{d:"M3.71 6.4a9.95 9.95 0 0 1 2.7-2.69"}],["circle",{cx:"12",cy:"12",r:"1"}]];var gG=[["circle",{cx:"12",cy:"12",r:"10"}],["circle",{cx:"12",cy:"12",r:"1"}]];var _G=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M17 12h.01"}],["path",{d:"M12 12h.01"}],["path",{d:"M7 12h.01"}]];var mG=[["path",{d:"M7 10h10"}],["path",{d:"M7 14h10"}],["circle",{cx:"12",cy:"12",r:"10"}]];var uG=[["path",{d:"M12 2a10 10 0 0 1 7.38 16.75"}],["path",{d:"m16 12-4-4-4 4"}],["path",{d:"M12 16V8"}],["path",{d:"M2.5 8.875a10 10 0 0 0-.5 3"}],["path",{d:"M2.83 16a10 10 0 0 0 2.43 3.4"}],["path",{d:"M4.636 5.235a10 10 0 0 1 .891-.857"}],["path",{d:"M8.644 21.42a10 10 0 0 0 7.631-.38"}]];var dG=[["path",{d:"M12 2a10 10 0 0 1 7.38 16.75"}],["path",{d:"M12 8v8"}],["path",{d:"M16 12H8"}],["path",{d:"M2.5 8.875a10 10 0 0 0-.5 3"}],["path",{d:"M2.83 16a10 10 0 0 0 2.43 3.4"}],["path",{d:"M4.636 5.235a10 10 0 0 1 .891-.857"}],["path",{d:"M8.644 21.42a10 10 0 0 0 7.631-.38"}]];var q7=[["path",{d:"M15.6 2.7a10 10 0 1 0 5.7 5.7"}],["circle",{cx:"12",cy:"12",r:"2"}],["path",{d:"M13.4 10.6 19 5"}]];var E7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M8 12h8"}]];var cG=[["path",{d:"m2 2 20 20"}],["path",{d:"M8.35 2.69A10 10 0 0 1 21.3 15.65"}],["path",{d:"M19.08 19.08A10 10 0 1 1 4.92 4.92"}]];var C7=[["path",{d:"M12.656 7H13a3 3 0 0 1 2.984 3.307"}],["path",{d:"M13 13H9"}],["path",{d:"M19.071 19.071A1 1 0 0 1 4.93 4.93"}],["path",{d:"m2 2 20 20"}],["path",{d:"M8.357 2.687a10 10 0 0 1 12.956 12.956"}],["path",{d:"M9 17V9"}]];var x7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M9 17V7h4a3 3 0 0 1 0 6H9"}]];var w7=[["circle",{cx:"12",cy:"12",r:"10"}],["line",{x1:"10",x2:"10",y1:"15",y2:"9"}],["line",{x1:"14",x2:"14",y1:"15",y2:"9"}]];var U7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m15 9-6 6"}],["path",{d:"M9 9h.01"}],["path",{d:"M15 15h.01"}]];var M7=[["path",{d:"M9 9.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997A1 1 0 0 1 9 14.996z"}],["circle",{cx:"12",cy:"12",r:"10"}]];var R7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M8 12h8"}],["path",{d:"M12 8v8"}]];var pG=[["path",{d:"M10 16V9.5a1 1 0 0 1 5 0"}],["path",{d:"M8 12h4"}],["path",{d:"M8 16h7"}],["circle",{cx:"12",cy:"12",r:"10"}]];var j7=[["path",{d:"M12 7v4"}],["path",{d:"M7.998 9.003a5 5 0 1 0 8-.005"}],["circle",{cx:"12",cy:"12",r:"10"}]];var I5=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"}],["path",{d:"M12 17h.01"}]];var L7=[["path",{d:"M22 2 2 22"}],["circle",{cx:"12",cy:"12",r:"10"}]];var nG=[["circle",{cx:"12",cy:"12",r:"10"}],["line",{x1:"9",x2:"15",y1:"15",y2:"9"}]];var iG=[["circle",{cx:"12",cy:"12",r:"6"}]];var lG=[["path",{d:"M11.051 7.616a1 1 0 0 1 1.909.024l.737 1.452a1 1 0 0 0 .737.535l1.634.256a1 1 0 0 1 .588 1.806l-1.172 1.168a1 1 0 0 0-.282.866l.259 1.613a1 1 0 0 1-1.541 1.134l-1.465-.75a1 1 0 0 0-.912 0l-1.465.75a1 1 0 0 1-1.539-1.133l.258-1.613a1 1 0 0 0-.282-.867l-1.156-1.152a1 1 0 0 1 .572-1.822l1.633-.256a1 1 0 0 0 .737-.535z"}],["circle",{cx:"12",cy:"12",r:"10"}]];var y7=[["circle",{cx:"12",cy:"12",r:"10"}],["rect",{x:"9",y:"9",width:"6",height:"6",rx:"1"}]];var f7=[["path",{d:"M18 20a6 6 0 0 0-12 0"}],["circle",{cx:"12",cy:"10",r:"4"}],["circle",{cx:"12",cy:"12",r:"10"}]];var k7=[["circle",{cx:"12",cy:"12",r:"10"}],["circle",{cx:"12",cy:"10",r:"3"}],["path",{d:"M7 20.662V19a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v1.662"}]];var b7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m15 9-6 6"}],["path",{d:"m9 9 6 6"}]];var sG=[["circle",{cx:"12",cy:"12",r:"10"}]];var rG=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M11 9h4a2 2 0 0 0 2-2V3"}],["circle",{cx:"9",cy:"9",r:"2"}],["path",{d:"M7 21v-4a2 2 0 0 1 2-2h4"}],["circle",{cx:"15",cy:"15",r:"2"}]];var aG=[["path",{d:"M21.66 17.67a1.08 1.08 0 0 1-.04 1.6A12 12 0 0 1 4.73 2.38a1.1 1.1 0 0 1 1.61-.04z"}],["path",{d:"M19.65 15.66A8 8 0 0 1 8.35 4.34"}],["path",{d:"m14 10-5.5 5.5"}],["path",{d:"M14 17.85V10H6.15"}]];var tG=[["path",{d:"M20.2 6 3 11l-.9-2.4c-.3-1.1.3-2.2 1.3-2.5l13.5-4c1.1-.3 2.2.3 2.5 1.3Z"}],["path",{d:"m6.2 5.3 3.1 3.9"}],["path",{d:"m12.4 3.4 3.1 4"}],["path",{d:"M3 11h18v8a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2Z"}]];var oG=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"}],["path",{d:"m9 14 2 2 4-4"}]];var eG=[["path",{d:"M16 14v2.2l1.6 1"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v.832"}],["path",{d:"M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h2"}],["circle",{cx:"16",cy:"16",r:"6"}],["rect",{x:"8",y:"2",width:"8",height:"4",rx:"1"}]];var Z3=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1"}],["path",{d:"M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-2"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v4"}],["path",{d:"M21 14H11"}],["path",{d:"m15 10-4 4 4 4"}]];var J3=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"}],["path",{d:"M12 11h4"}],["path",{d:"M12 16h4"}],["path",{d:"M8 11h.01"}],["path",{d:"M8 16h.01"}]];var K3=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"}],["path",{d:"M9 14h6"}]];var Y3=[["path",{d:"M11 14h10"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v1.344"}],["path",{d:"m17 18 4-4-4-4"}],["path",{d:"M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 1.793-1.113"}],["rect",{x:"8",y:"2",width:"8",height:"4",rx:"1"}]];var h7=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1"}],["path",{d:"M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-.5"}],["path",{d:"M16 4h2a2 2 0 0 1 1.73 1"}],["path",{d:"M8 18h1"}],["path",{d:"M21.378 12.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}]];var v7=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-5.5"}],["path",{d:"M4 13.5V6a2 2 0 0 1 2-2h2"}],["path",{d:"M13.378 15.626a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}]];var X3=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"}],["path",{d:"M9 12v-1h6v1"}],["path",{d:"M11 17h2"}],["path",{d:"M12 11v6"}]];var W3=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"}],["path",{d:"m15 11-6 6"}],["path",{d:"m9 11 6 6"}]];var Q3=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"}],["path",{d:"M9 14h6"}],["path",{d:"M12 17v-6"}]];var V3=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"}]];var G3=[["path",{d:"M12 6v6l2-4"}],["circle",{cx:"12",cy:"12",r:"10"}]];var I3=[["path",{d:"M12 6v6l-4-2"}],["circle",{cx:"12",cy:"12",r:"10"}]];var z3=[["path",{d:"M12 6v6l-2-4"}],["circle",{cx:"12",cy:"12",r:"10"}]];var N3=[["path",{d:"M12 6v6"}],["circle",{cx:"12",cy:"12",r:"10"}]];var F3=[["path",{d:"M12 6v6l4-2"}],["circle",{cx:"12",cy:"12",r:"10"}]];var H3=[["path",{d:"M12 6v6h4"}],["circle",{cx:"12",cy:"12",r:"10"}]];var D3=[["path",{d:"M12 6v6l4 2"}],["circle",{cx:"12",cy:"12",r:"10"}]];var B3=[["path",{d:"M12 6v6l2 4"}],["circle",{cx:"12",cy:"12",r:"10"}]];var O3=[["path",{d:"M12 6v10"}],["circle",{cx:"12",cy:"12",r:"10"}]];var T3=[["path",{d:"M12 6v6l-2 4"}],["circle",{cx:"12",cy:"12",r:"10"}]];var P3=[["path",{d:"M12 6v6l-4 2"}],["circle",{cx:"12",cy:"12",r:"10"}]];var S3=[["path",{d:"M12 6v6H8"}],["circle",{cx:"12",cy:"12",r:"10"}]];var A3=[["path",{d:"M12 6v6l4 2"}],["path",{d:"M20 12v5"}],["path",{d:"M20 21h.01"}],["path",{d:"M21.25 8.2A10 10 0 1 0 16 21.16"}]];var q3=[["path",{d:"M12 6v6l2 1"}],["path",{d:"M12.337 21.994a10 10 0 1 1 9.588-8.767"}],["path",{d:"m14 18 4 4 4-4"}],["path",{d:"M18 14v8"}]];var E3=[["path",{d:"M12 6v6l1.56.78"}],["path",{d:"M13.227 21.925a10 10 0 1 1 8.767-9.588"}],["path",{d:"m14 18 4-4 4 4"}],["path",{d:"M18 22v-8"}]];var C3=[["path",{d:"M12 2a10 10 0 0 1 7.38 16.75"}],["path",{d:"M12 6v6l4 2"}],["path",{d:"M2.5 8.875a10 10 0 0 0-.5 3"}],["path",{d:"M2.83 16a10 10 0 0 0 2.43 3.4"}],["path",{d:"M4.636 5.235a10 10 0 0 1 .891-.857"}],["path",{d:"M8.644 21.42a10 10 0 0 0 7.631-.38"}]];var x3=[["path",{d:"M12 6v6l3.644 1.822"}],["path",{d:"M16 19h6"}],["path",{d:"M19 16v6"}],["path",{d:"M21.92 13.267a10 10 0 1 0-8.653 8.653"}]];var w3=[["path",{d:"M12 6v6l4 2"}],["circle",{cx:"12",cy:"12",r:"10"}]];var U3=[["path",{d:"M10 9.17a3 3 0 1 0 0 5.66"}],["path",{d:"M17 9.17a3 3 0 1 0 0 5.66"}],["rect",{x:"2",y:"5",width:"20",height:"14",rx:"2"}]];var M3=[["path",{d:"M12 12v4"}],["path",{d:"M12 20h.01"}],["path",{d:"M17 18h.5a1 1 0 0 0 0-9h-1.79A7 7 0 1 0 7 17.708"}]];var R3=[["path",{d:"m17 15-5.5 5.5L9 18"}],["path",{d:"M5 17.743A7 7 0 1 1 15.71 10h1.79a4.5 4.5 0 0 1 1.5 8.742"}]];var j3=[["path",{d:"m10.852 19.772-.383.924"}],["path",{d:"m13.148 14.228.383-.923"}],["path",{d:"M13.148 19.772a3 3 0 1 0-2.296-5.544l-.383-.923"}],["path",{d:"m13.53 20.696-.382-.924a3 3 0 1 1-2.296-5.544"}],["path",{d:"m14.772 15.852.923-.383"}],["path",{d:"m14.772 18.148.923.383"}],["path",{d:"M4.2 15.1a7 7 0 1 1 9.93-9.858A7 7 0 0 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.2"}],["path",{d:"m9.228 15.852-.923-.383"}],["path",{d:"m9.228 18.148-.923.383"}]];var $7=[["path",{d:"M12 13v8l-4-4"}],["path",{d:"m12 21 4-4"}],["path",{d:"M4.393 15.269A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.436 8.284"}]];var L3=[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"}],["path",{d:"M8 19v1"}],["path",{d:"M8 14v1"}],["path",{d:"M16 19v1"}],["path",{d:"M16 14v1"}],["path",{d:"M12 21v1"}],["path",{d:"M12 16v1"}]];var y3=[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"}],["path",{d:"M16 17H7"}],["path",{d:"M17 21H9"}]];var f3=[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"}],["path",{d:"M16 14v2"}],["path",{d:"M8 14v2"}],["path",{d:"M16 20h.01"}],["path",{d:"M8 20h.01"}],["path",{d:"M12 16v2"}],["path",{d:"M12 22h.01"}]];var k3=[["path",{d:"M6 16.326A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 .5 8.973"}],["path",{d:"m13 12-3 5h4l-3 5"}]];var b3=[["path",{d:"M11 20v2"}],["path",{d:"M18.376 14.512a6 6 0 0 0 3.461-4.127c.148-.625-.659-.97-1.248-.714a4 4 0 0 1-5.259-5.26c.255-.589-.09-1.395-.716-1.248a6 6 0 0 0-4.594 5.36"}],["path",{d:"M3 20a5 5 0 1 1 8.9-4H13a3 3 0 0 1 2 5.24"}],["path",{d:"M7 19v2"}]];var h3=[["path",{d:"m2 2 20 20"}],["path",{d:"M5.782 5.782A7 7 0 0 0 9 19h8.5a4.5 4.5 0 0 0 1.307-.193"}],["path",{d:"M21.532 16.5A4.5 4.5 0 0 0 17.5 10h-1.79A7.008 7.008 0 0 0 10 5.07"}]];var v3=[["path",{d:"M13 16a3 3 0 0 1 0 6H7a5 5 0 1 1 4.9-6z"}],["path",{d:"M18.376 14.512a6 6 0 0 0 3.461-4.127c.148-.625-.659-.97-1.248-.714a4 4 0 0 1-5.259-5.26c.255-.589-.09-1.395-.716-1.248a6 6 0 0 0-4.594 5.36"}]];var $3=[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"}],["path",{d:"m9.2 22 3-7"}],["path",{d:"m9 13-3 7"}],["path",{d:"m17 13-3 7"}]];var g3=[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"}],["path",{d:"M16 14v6"}],["path",{d:"M8 14v6"}],["path",{d:"M12 16v6"}]];var _3=[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"}],["path",{d:"M8 15h.01"}],["path",{d:"M8 19h.01"}],["path",{d:"M12 17h.01"}],["path",{d:"M12 21h.01"}],["path",{d:"M16 15h.01"}],["path",{d:"M16 19h.01"}]];var m3=[["path",{d:"M12 2v2"}],["path",{d:"m4.93 4.93 1.41 1.41"}],["path",{d:"M20 12h2"}],["path",{d:"m19.07 4.93-1.41 1.41"}],["path",{d:"M15.947 12.65a4 4 0 0 0-5.925-4.128"}],["path",{d:"M3 20a5 5 0 1 1 8.9-4H13a3 3 0 0 1 2 5.24"}],["path",{d:"M11 20v2"}],["path",{d:"M7 19v2"}]];var u3=[["path",{d:"M12 2v2"}],["path",{d:"m4.93 4.93 1.41 1.41"}],["path",{d:"M20 12h2"}],["path",{d:"m19.07 4.93-1.41 1.41"}],["path",{d:"M15.947 12.65a4 4 0 0 0-5.925-4.128"}],["path",{d:"M13 22H7a5 5 0 1 1 4.9-6H13a3 3 0 0 1 0 6Z"}]];var g7=[["path",{d:"M12 13v8"}],["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"}],["path",{d:"m8 17 4-4 4 4"}]];var d3=[["path",{d:"M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z"}]];var c3=[["path",{d:"M17.5 21H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z"}],["path",{d:"M22 10a3 3 0 0 0-3-3h-2.207a5.502 5.502 0 0 0-10.702.5"}]];var p3=[["path",{d:"M16.17 7.83 2 22"}],["path",{d:"M4.02 12a2.827 2.827 0 1 1 3.81-4.17A2.827 2.827 0 1 1 12 4.02a2.827 2.827 0 1 1 4.17 3.81A2.827 2.827 0 1 1 19.98 12a2.827 2.827 0 1 1-3.81 4.17A2.827 2.827 0 1 1 12 19.98a2.827 2.827 0 1 1-4.17-3.81A1 1 0 1 1 4 12"}],["path",{d:"m7.83 7.83 8.34 8.34"}]];var n3=[["path",{d:"M17.28 9.05a5.5 5.5 0 1 0-10.56 0A5.5 5.5 0 1 0 12 17.66a5.5 5.5 0 1 0 5.28-8.6Z"}],["path",{d:"M12 17.66L12 22"}]];var _7=[["path",{d:"m18 16 4-4-4-4"}],["path",{d:"m6 8-4 4 4 4"}],["path",{d:"m14.5 4-5 16"}]];var i3=[["path",{d:"m16 18 6-6-6-6"}],["path",{d:"m8 6-6 6 6 6"}]];var l3=[["polygon",{points:"12 2 22 8.5 22 15.5 12 22 2 15.5 2 8.5 12 2"}],["line",{x1:"12",x2:"12",y1:"22",y2:"15.5"}],["polyline",{points:"22 8.5 12 15.5 2 8.5"}],["polyline",{points:"2 15.5 12 8.5 22 15.5"}],["line",{x1:"12",x2:"12",y1:"2",y2:"8.5"}]];var s3=[["path",{d:"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"}],["polyline",{points:"7.5 4.21 12 6.81 16.5 4.21"}],["polyline",{points:"7.5 19.79 7.5 14.6 3 12"}],["polyline",{points:"21 12 16.5 14.6 16.5 19.79"}],["polyline",{points:"3.27 6.96 12 12.01 20.73 6.96"}],["line",{x1:"12",x2:"12",y1:"22.08",y2:"12"}]];var r3=[["path",{d:"M10 2v2"}],["path",{d:"M14 2v2"}],["path",{d:"M16 8a1 1 0 0 1 1 1v8a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V9a1 1 0 0 1 1-1h14a4 4 0 1 1 0 8h-1"}],["path",{d:"M6 2v2"}]];var a3=[["path",{d:"M11 10.27 7 3.34"}],["path",{d:"m11 13.73-4 6.93"}],["path",{d:"M12 22v-2"}],["path",{d:"M12 2v2"}],["path",{d:"M14 12h8"}],["path",{d:"m17 20.66-1-1.73"}],["path",{d:"m17 3.34-1 1.73"}],["path",{d:"M2 12h2"}],["path",{d:"m20.66 17-1.73-1"}],["path",{d:"m20.66 7-1.73 1"}],["path",{d:"m3.34 17 1.73-1"}],["path",{d:"m3.34 7 1.73 1"}],["circle",{cx:"12",cy:"12",r:"2"}],["circle",{cx:"12",cy:"12",r:"8"}]];var t3=[["circle",{cx:"8",cy:"8",r:"6"}],["path",{d:"M18.09 10.37A6 6 0 1 1 10.34 18"}],["path",{d:"M7 6h1v4"}],["path",{d:"m16.71 13.88.7.71-2.82 2.82"}]];var m7=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M12 3v18"}]];var z5=[["path",{d:"M10.5 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v5.5"}],["path",{d:"m14.3 19.6 1-.4"}],["path",{d:"M15 3v7.5"}],["path",{d:"m15.2 16.9-.9-.3"}],["path",{d:"m16.6 21.7.3-.9"}],["path",{d:"m16.8 15.3-.4-1"}],["path",{d:"m19.1 15.2.3-.9"}],["path",{d:"m19.6 21.7-.4-1"}],["path",{d:"m20.7 16.8 1-.4"}],["path",{d:"m21.7 19.4-.9-.3"}],["path",{d:"M9 3v18"}],["circle",{cx:"18",cy:"18",r:"3"}]];var u7=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 3v18"}],["path",{d:"M15 3v18"}]];var o3=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M7.5 3v18"}],["path",{d:"M12 3v18"}],["path",{d:"M16.5 3v18"}]];var e3=[["path",{d:"M14 3a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1"}],["path",{d:"M19 3a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1"}],["path",{d:"m7 15 3 3"}],["path",{d:"m7 21 3-3H5a2 2 0 0 1-2-2v-2"}],["rect",{x:"14",y:"14",width:"7",height:"7",rx:"1"}],["rect",{x:"3",y:"3",width:"7",height:"7",rx:"1"}]];var ZI=[["path",{d:"m16.24 7.76-1.804 5.411a2 2 0 0 1-1.265 1.265L7.76 16.24l1.804-5.411a2 2 0 0 1 1.265-1.265z"}],["circle",{cx:"12",cy:"12",r:"10"}]];var JI=[["path",{d:"M15 6v12a3 3 0 1 0 3-3H6a3 3 0 1 0 3 3V6a3 3 0 1 0-3 3h12a3 3 0 1 0-3-3"}]];var KI=[["path",{d:"M15.536 11.293a1 1 0 0 0 0 1.414l2.376 2.377a1 1 0 0 0 1.414 0l2.377-2.377a1 1 0 0 0 0-1.414l-2.377-2.377a1 1 0 0 0-1.414 0z"}],["path",{d:"M2.297 11.293a1 1 0 0 0 0 1.414l2.377 2.377a1 1 0 0 0 1.414 0l2.377-2.377a1 1 0 0 0 0-1.414L6.088 8.916a1 1 0 0 0-1.414 0z"}],["path",{d:"M8.916 17.912a1 1 0 0 0 0 1.415l2.377 2.376a1 1 0 0 0 1.414 0l2.377-2.376a1 1 0 0 0 0-1.415l-2.377-2.376a1 1 0 0 0-1.414 0z"}],["path",{d:"M8.916 4.674a1 1 0 0 0 0 1.414l2.377 2.376a1 1 0 0 0 1.414 0l2.377-2.376a1 1 0 0 0 0-1.414l-2.377-2.377a1 1 0 0 0-1.414 0z"}]];var YI=[["rect",{width:"14",height:"8",x:"5",y:"2",rx:"2"}],["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2"}],["path",{d:"M6 18h2"}],["path",{d:"M12 18h6"}]];var XI=[["path",{d:"M3 20a1 1 0 0 1-1-1v-1a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1Z"}],["path",{d:"M20 16a8 8 0 1 0-16 0"}],["path",{d:"M12 4v4"}],["path",{d:"M10 4h4"}]];var WI=[["path",{d:"m20.9 18.55-8-15.98a1 1 0 0 0-1.8 0l-8 15.98"}],["ellipse",{cx:"12",cy:"19",rx:"9",ry:"3"}]];var QI=[["rect",{x:"2",y:"6",width:"20",height:"8",rx:"1"}],["path",{d:"M17 14v7"}],["path",{d:"M7 14v7"}],["path",{d:"M17 3v3"}],["path",{d:"M7 3v3"}],["path",{d:"M10 14 2.3 6.3"}],["path",{d:"m14 6 7.7 7.7"}],["path",{d:"m8 6 8 8"}]];var d7=[["path",{d:"M16 2v2"}],["path",{d:"M17.915 22a6 6 0 0 0-12 0"}],["path",{d:"M8 2v2"}],["circle",{cx:"12",cy:"12",r:"4"}],["rect",{x:"3",y:"4",width:"18",height:"18",rx:"2"}]];var VI=[["path",{d:"M22 7.7c0-.6-.4-1.2-.8-1.5l-6.3-3.9a1.72 1.72 0 0 0-1.7 0l-10.3 6c-.5.2-.9.8-.9 1.4v6.6c0 .5.4 1.2.8 1.5l6.3 3.9a1.72 1.72 0 0 0 1.7 0l10.3-6c.5-.3.9-1 .9-1.5Z"}],["path",{d:"M10 21.9V14L2.1 9.1"}],["path",{d:"m10 14 11.9-6.9"}],["path",{d:"M14 19.8v-8.1"}],["path",{d:"M18 17.5V9.4"}]];var GI=[["path",{d:"M16 2v2"}],["path",{d:"M7 22v-2a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v2"}],["path",{d:"M8 2v2"}],["circle",{cx:"12",cy:"11",r:"3"}],["rect",{x:"3",y:"4",width:"18",height:"18",rx:"2"}]];var II=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 18a6 6 0 0 0 0-12v12z"}]];var zI=[["path",{d:"M12 2a10 10 0 1 0 10 10 4 4 0 0 1-5-5 4 4 0 0 1-5-5"}],["path",{d:"M8.5 8.5v.01"}],["path",{d:"M16 15.5v.01"}],["path",{d:"M12 12v.01"}],["path",{d:"M11 17v.01"}],["path",{d:"M7 14v.01"}]];var NI=[["path",{d:"M2 12h20"}],["path",{d:"M20 12v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-8"}],["path",{d:"m4 8 16-4"}],["path",{d:"m8.86 6.78-.45-1.81a2 2 0 0 1 1.45-2.43l1.94-.48a2 2 0 0 1 2.43 1.46l.45 1.8"}]];var FI=[["path",{d:"m12 15 2 2 4-4"}],["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2"}]];var HI=[["line",{x1:"12",x2:"18",y1:"15",y2:"15"}],["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2"}]];var DI=[["line",{x1:"15",x2:"15",y1:"12",y2:"18"}],["line",{x1:"12",x2:"18",y1:"15",y2:"15"}],["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2"}]];var BI=[["line",{x1:"12",x2:"18",y1:"18",y2:"12"}],["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2"}]];var OI=[["line",{x1:"12",x2:"18",y1:"12",y2:"18"}],["line",{x1:"12",x2:"18",y1:"18",y2:"12"}],["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2"}]];var TI=[["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2"}]];var PI=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M9.17 14.83a4 4 0 1 0 0-5.66"}]];var SI=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M14.83 14.83a4 4 0 1 1 0-5.66"}]];var AI=[["path",{d:"m15 10 5 5-5 5"}],["path",{d:"M4 4v7a4 4 0 0 0 4 4h12"}]];var qI=[["path",{d:"M20 4v7a4 4 0 0 1-4 4H4"}],["path",{d:"m9 10-5 5 5 5"}]];var EI=[["path",{d:"m14 15-5 5-5-5"}],["path",{d:"M20 4h-7a4 4 0 0 0-4 4v12"}]];var CI=[["path",{d:"M14 9 9 4 4 9"}],["path",{d:"M20 20h-7a4 4 0 0 1-4-4V4"}]];var xI=[["path",{d:"m10 15 5 5 5-5"}],["path",{d:"M4 4h7a4 4 0 0 1 4 4v12"}]];var wI=[["path",{d:"m10 9 5-5 5 5"}],["path",{d:"M4 20h7a4 4 0 0 0 4-4V4"}]];var UI=[["path",{d:"M20 20v-7a4 4 0 0 0-4-4H4"}],["path",{d:"M9 14 4 9l5-5"}]];var MI=[["path",{d:"m15 14 5-5-5-5"}],["path",{d:"M4 20v-7a4 4 0 0 1 4-4h12"}]];var RI=[["path",{d:"M12 20v2"}],["path",{d:"M12 2v2"}],["path",{d:"M17 20v2"}],["path",{d:"M17 2v2"}],["path",{d:"M2 12h2"}],["path",{d:"M2 17h2"}],["path",{d:"M2 7h2"}],["path",{d:"M20 12h2"}],["path",{d:"M20 17h2"}],["path",{d:"M20 7h2"}],["path",{d:"M7 20v2"}],["path",{d:"M7 2v2"}],["rect",{x:"4",y:"4",width:"16",height:"16",rx:"2"}],["rect",{x:"8",y:"8",width:"8",height:"8",rx:"1"}]];var jI=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M10 9.3a2.8 2.8 0 0 0-3.5 1 3.1 3.1 0 0 0 0 3.4 2.7 2.7 0 0 0 3.5 1"}],["path",{d:"M17 9.3a2.8 2.8 0 0 0-3.5 1 3.1 3.1 0 0 0 0 3.4 2.7 2.7 0 0 0 3.5 1"}]];var LI=[["rect",{width:"20",height:"14",x:"2",y:"5",rx:"2"}],["line",{x1:"2",x2:"22",y1:"10",y2:"10"}]];var yI=[["path",{d:"M10.2 18H4.774a1.5 1.5 0 0 1-1.352-.97 11 11 0 0 1 .132-6.487"}],["path",{d:"M18 10.2V4.774a1.5 1.5 0 0 0-.97-1.352 11 11 0 0 0-6.486.132"}],["path",{d:"M18 5a4 3 0 0 1 4 3 2 2 0 0 1-2 2 10 10 0 0 0-5.139 1.42"}],["path",{d:"M5 18a3 4 0 0 0 3 4 2 2 0 0 0 2-2 10 10 0 0 1 1.42-5.14"}],["path",{d:"M8.709 2.554a10 10 0 0 0-6.155 6.155 1.5 1.5 0 0 0 .676 1.626l9.807 5.42a2 2 0 0 0 2.718-2.718l-5.42-9.807a1.5 1.5 0 0 0-1.626-.676"}]];var fI=[["path",{d:"M6 2v14a2 2 0 0 0 2 2h14"}],["path",{d:"M18 22V8a2 2 0 0 0-2-2H2"}]];var kI=[["path",{d:"M4 9a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h4a1 1 0 0 1 1 1v4a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-4a1 1 0 0 1 1-1h4a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2h-4a1 1 0 0 1-1-1V4a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v4a1 1 0 0 1-1 1z"}]];var bI=[["circle",{cx:"12",cy:"12",r:"10"}],["line",{x1:"22",x2:"18",y1:"12",y2:"12"}],["line",{x1:"6",x2:"2",y1:"12",y2:"12"}],["line",{x1:"12",x2:"12",y1:"6",y2:"2"}],["line",{x1:"12",x2:"12",y1:"22",y2:"18"}]];var hI=[["path",{d:"M11.562 3.266a.5.5 0 0 1 .876 0L15.39 8.87a1 1 0 0 0 1.516.294L21.183 5.5a.5.5 0 0 1 .798.519l-2.834 10.246a1 1 0 0 1-.956.734H5.81a1 1 0 0 1-.957-.734L2.02 6.02a.5.5 0 0 1 .798-.519l4.276 3.664a1 1 0 0 0 1.516-.294z"}],["path",{d:"M5 21h14"}]];var vI=[["path",{d:"m21.12 6.4-6.05-4.06a2 2 0 0 0-2.17-.05L2.95 8.41a2 2 0 0 0-.95 1.7v5.82a2 2 0 0 0 .88 1.66l6.05 4.07a2 2 0 0 0 2.17.05l9.95-6.12a2 2 0 0 0 .95-1.7V8.06a2 2 0 0 0-.88-1.66Z"}],["path",{d:"M10 22v-8L2.25 9.15"}],["path",{d:"m10 14 11.77-6.87"}]];var $I=[["path",{d:"m6 8 1.75 12.28a2 2 0 0 0 2 1.72h4.54a2 2 0 0 0 2-1.72L18 8"}],["path",{d:"M5 8h14"}],["path",{d:"M7 15a6.47 6.47 0 0 1 5 0 6.47 6.47 0 0 0 5 0"}],["path",{d:"m12 8 1-6h2"}]];var gI=[["circle",{cx:"12",cy:"12",r:"8"}],["line",{x1:"3",x2:"6",y1:"3",y2:"6"}],["line",{x1:"21",x2:"18",y1:"3",y2:"6"}],["line",{x1:"3",x2:"6",y1:"21",y2:"18"}],["line",{x1:"21",x2:"18",y1:"21",y2:"18"}]];var _I=[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3"}],["path",{d:"M3 5v14a9 3 0 0 0 18 0V5"}]];var mI=[["path",{d:"M11 11.31c1.17.56 1.54 1.69 3.5 1.69 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"}],["path",{d:"M11.75 18c.35.5 1.45 1 2.75 1 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"}],["path",{d:"M2 10h4"}],["path",{d:"M2 14h4"}],["path",{d:"M2 18h4"}],["path",{d:"M2 6h4"}],["path",{d:"M7 3a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1L10 4a1 1 0 0 0-1-1z"}]];var uI=[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3"}],["path",{d:"M3 5V19A9 3 0 0 0 15 21.84"}],["path",{d:"M21 5V8"}],["path",{d:"M21 12L18 17H22L19 22"}],["path",{d:"M3 12A9 3 0 0 0 14.59 14.87"}]];var dI=[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3"}],["path",{d:"M3 12a9 3 0 0 0 5 2.69"}],["path",{d:"M21 9.3V5"}],["path",{d:"M3 5v14a9 3 0 0 0 6.47 2.88"}],["path",{d:"M12 12v4h4"}],["path",{d:"M13 20a5 5 0 0 0 9-3 4.5 4.5 0 0 0-4.5-4.5c-1.33 0-2.54.54-3.41 1.41L12 16"}]];var cI=[["path",{d:"m13 21-3-3 3-3"}],["path",{d:"M20 18H10"}],["path",{d:"M3 11h.01"}],["rect",{x:"6",y:"3",width:"5",height:"8",rx:"2.5"}]];var pI=[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3"}],["path",{d:"M3 5V19A9 3 0 0 0 21 19V5"}],["path",{d:"M3 12A9 3 0 0 0 21 12"}]];var nI=[["path",{d:"M10 18h10"}],["path",{d:"m17 21 3-3-3-3"}],["path",{d:"M3 11h.01"}],["rect",{x:"15",y:"3",width:"5",height:"8",rx:"2.5"}],["rect",{x:"6",y:"3",width:"5",height:"8",rx:"2.5"}]];var iI=[["path",{d:"M10.162 3.167A10 10 0 0 0 2 13a2 2 0 0 0 4 0v-1a2 2 0 0 1 4 0v4a2 2 0 0 0 4 0v-4a2 2 0 0 1 4 0v1a2 2 0 0 0 4-.006 10 10 0 0 0-8.161-9.826"}],["path",{d:"M20.804 14.869a9 9 0 0 1-17.608 0"}],["circle",{cx:"12",cy:"4",r:"2"}]];var lI=[["path",{d:"M10 5a2 2 0 0 0-1.344.519l-6.328 5.74a1 1 0 0 0 0 1.481l6.328 5.741A2 2 0 0 0 10 19h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2z"}],["path",{d:"m12 9 6 6"}],["path",{d:"m18 9-6 6"}]];var sI=[["circle",{cx:"19",cy:"19",r:"2"}],["circle",{cx:"5",cy:"5",r:"2"}],["path",{d:"M6.48 3.66a10 10 0 0 1 13.86 13.86"}],["path",{d:"m6.41 6.41 11.18 11.18"}],["path",{d:"M3.66 6.48a10 10 0 0 0 13.86 13.86"}]];var rI=[["path",{d:"M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41L13.7 2.71a2.41 2.41 0 0 0-3.41 0z"}],["path",{d:"M8 12h8"}]];var c7=[["path",{d:"M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41L13.7 2.71a2.41 2.41 0 0 0-3.41 0Z"}],["path",{d:"M9.2 9.2h.01"}],["path",{d:"m14.5 9.5-5 5"}],["path",{d:"M14.7 14.8h.01"}]];var aI=[["path",{d:"M12 8v8"}],["path",{d:"M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41L13.7 2.71a2.41 2.41 0 0 0-3.41 0z"}],["path",{d:"M8 12h8"}]];var tI=[["path",{d:"M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41l-7.59-7.59a2.41 2.41 0 0 0-3.41 0Z"}]];var oI=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["path",{d:"M12 12h.01"}]];var eI=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["path",{d:"M15 9h.01"}],["path",{d:"M9 15h.01"}]];var Zz=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["path",{d:"M16 8h.01"}],["path",{d:"M12 12h.01"}],["path",{d:"M8 16h.01"}]];var Jz=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["path",{d:"M16 8h.01"}],["path",{d:"M8 8h.01"}],["path",{d:"M8 16h.01"}],["path",{d:"M16 16h.01"}]];var Kz=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["path",{d:"M16 8h.01"}],["path",{d:"M8 8h.01"}],["path",{d:"M8 16h.01"}],["path",{d:"M16 16h.01"}],["path",{d:"M12 12h.01"}]];var Yz=[["rect",{width:"12",height:"12",x:"2",y:"10",rx:"2",ry:"2"}],["path",{d:"m17.92 14 3.5-3.5a2.24 2.24 0 0 0 0-3l-5-4.92a2.24 2.24 0 0 0-3 0L10 6"}],["path",{d:"M6 18h.01"}],["path",{d:"M10 14h.01"}],["path",{d:"M15 6h.01"}],["path",{d:"M18 9h.01"}]];var Xz=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["path",{d:"M16 8h.01"}],["path",{d:"M16 12h.01"}],["path",{d:"M16 16h.01"}],["path",{d:"M8 8h.01"}],["path",{d:"M8 12h.01"}],["path",{d:"M8 16h.01"}]];var Wz=[["path",{d:"M12 3v14"}],["path",{d:"M5 10h14"}],["path",{d:"M5 21h14"}]];var Qz=[["circle",{cx:"12",cy:"12",r:"10"}],["circle",{cx:"12",cy:"12",r:"4"}],["path",{d:"M12 12h.01"}]];var Vz=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M6 12c0-1.7.7-3.2 1.8-4.2"}],["circle",{cx:"12",cy:"12",r:"2"}],["path",{d:"M18 12c0 1.7-.7 3.2-1.8 4.2"}]];var Gz=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["circle",{cx:"12",cy:"12",r:"5"}],["path",{d:"M12 12h.01"}]];var Iz=[["circle",{cx:"12",cy:"12",r:"10"}],["circle",{cx:"12",cy:"12",r:"2"}]];var zz=[["circle",{cx:"12",cy:"6",r:"1"}],["line",{x1:"5",x2:"19",y1:"12",y2:"12"}],["circle",{cx:"12",cy:"18",r:"1"}]];var Nz=[["path",{d:"M15 2c-1.35 1.5-2.092 3-2.5 4.5L14 8"}],["path",{d:"m17 6-2.891-2.891"}],["path",{d:"M2 15c3.333-3 6.667-3 10-3"}],["path",{d:"m2 2 20 20"}],["path",{d:"m20 9 .891.891"}],["path",{d:"M22 9c-1.5 1.35-3 2.092-4.5 2.5l-1-1"}],["path",{d:"M3.109 14.109 4 15"}],["path",{d:"m6.5 12.5 1 1"}],["path",{d:"m7 18 2.891 2.891"}],["path",{d:"M9 22c1.35-1.5 2.092-3 2.5-4.5L10 16"}]];var Fz=[["path",{d:"m10 16 1.5 1.5"}],["path",{d:"m14 8-1.5-1.5"}],["path",{d:"M15 2c-1.798 1.998-2.518 3.995-2.807 5.993"}],["path",{d:"m16.5 10.5 1 1"}],["path",{d:"m17 6-2.891-2.891"}],["path",{d:"M2 15c6.667-6 13.333 0 20-6"}],["path",{d:"m20 9 .891.891"}],["path",{d:"M3.109 14.109 4 15"}],["path",{d:"m6.5 12.5 1 1"}],["path",{d:"m7 18 2.891 2.891"}],["path",{d:"M9 22c1.798-1.998 2.518-3.995 2.807-5.993"}]];var Hz=[["path",{d:"M2 8h20"}],["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2"}],["path",{d:"M6 16h12"}]];var Dz=[["path",{d:"M11.25 16.25h1.5L12 17z"}],["path",{d:"M16 14v.5"}],["path",{d:"M4.42 11.247A13.152 13.152 0 0 0 4 14.556C4 18.728 7.582 21 12 21s8-2.272 8-6.444a11.702 11.702 0 0 0-.493-3.309"}],["path",{d:"M8 14v.5"}],["path",{d:"M8.5 8.5c-.384 1.05-1.083 2.028-2.344 2.5-1.931.722-3.576-.297-3.656-1-.113-.994 1.177-6.53 4-7 1.923-.321 3.651.845 3.651 2.235A7.497 7.497 0 0 1 14 5.277c0-1.39 1.844-2.598 3.767-2.277 2.823.47 4.113 6.006 4 7-.08.703-1.725 1.722-3.656 1-1.261-.472-1.855-1.45-2.239-2.5"}]];var Bz=[["line",{x1:"12",x2:"12",y1:"2",y2:"22"}],["path",{d:"M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"}]];var Oz=[["path",{d:"M20.5 10a2.5 2.5 0 0 1-2.4-3H18a2.95 2.95 0 0 1-2.6-4.4 10 10 0 1 0 6.3 7.1c-.3.2-.8.3-1.2.3"}],["circle",{cx:"12",cy:"12",r:"3"}]];var Tz=[["path",{d:"M10 12h.01"}],["path",{d:"M18 9V6a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v14"}],["path",{d:"M2 20h8"}],["path",{d:"M20 17v-2a2 2 0 1 0-4 0v2"}],["rect",{x:"14",y:"17",width:"8",height:"5",rx:"1"}]];var Pz=[["path",{d:"M10 12h.01"}],["path",{d:"M18 20V6a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v14"}],["path",{d:"M2 20h20"}]];var Sz=[["path",{d:"M11 20H2"}],["path",{d:"M11 4.562v16.157a1 1 0 0 0 1.242.97L19 20V5.562a2 2 0 0 0-1.515-1.94l-4-1A2 2 0 0 0 11 4.561z"}],["path",{d:"M11 4H8a2 2 0 0 0-2 2v14"}],["path",{d:"M14 12h.01"}],["path",{d:"M22 20h-3"}]];var Az=[["circle",{cx:"12.1",cy:"12.1",r:"1"}]];var qz=[["path",{d:"M12 15V3"}],["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"}],["path",{d:"m7 10 5 5 5-5"}]];var Ez=[["path",{d:"m12.99 6.74 1.93 3.44"}],["path",{d:"M19.136 12a10 10 0 0 1-14.271 0"}],["path",{d:"m21 21-2.16-3.84"}],["path",{d:"m3 21 8.02-14.26"}],["circle",{cx:"12",cy:"5",r:"2"}]];var Cz=[["path",{d:"M10 11h.01"}],["path",{d:"M14 6h.01"}],["path",{d:"M18 6h.01"}],["path",{d:"M6.5 13.1h.01"}],["path",{d:"M22 5c0 9-4 12-6 12s-6-3-6-12c0-2 2-3 6-3s6 1 6 3"}],["path",{d:"M17.4 9.9c-.8.8-2 .8-2.8 0"}],["path",{d:"M10.1 7.1C9 7.2 7.7 7.7 6 8.6c-3.5 2-4.7 3.9-3.7 5.6 4.5 7.8 9.5 8.4 11.2 7.4.9-.5 1.9-2.1 1.9-4.7"}],["path",{d:"M9.1 16.5c.3-1.1 1.4-1.7 2.4-1.4"}]];var xz=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M19.13 5.09C15.22 9.14 10 10.44 2.25 10.94"}],["path",{d:"M21.75 12.84c-6.62-1.41-12.14 1-16.38 6.32"}],["path",{d:"M8.56 2.75c4.37 6 6 9.42 8 17.72"}]];var wz=[["path",{d:"M10 18a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H5a3 3 0 0 1-3-3 1 1 0 0 1 1-1z"}],["path",{d:"M13 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1l-.81 3.242a1 1 0 0 1-.97.758H8"}],["path",{d:"M14 4h3a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-3"}],["path",{d:"M18 6h4"}],["path",{d:"m5 10-2 8"}],["path",{d:"m7 18 2-8"}]];var Uz=[["path",{d:"M10 10 7 7"}],["path",{d:"m10 14-3 3"}],["path",{d:"m14 10 3-3"}],["path",{d:"m14 14 3 3"}],["path",{d:"M14.205 4.139a4 4 0 1 1 5.439 5.863"}],["path",{d:"M19.637 14a4 4 0 1 1-5.432 5.868"}],["path",{d:"M4.367 10a4 4 0 1 1 5.438-5.862"}],["path",{d:"M9.795 19.862a4 4 0 1 1-5.429-5.873"}],["rect",{x:"10",y:"8",width:"4",height:"8",rx:"1"}]];var Mz=[["path",{d:"M18.715 13.186C18.29 11.858 17.384 10.607 16 9.5c-2-1.6-3.5-4-4-6.5a10.7 10.7 0 0 1-.884 2.586"}],["path",{d:"m2 2 20 20"}],["path",{d:"M8.795 8.797A11 11 0 0 1 8 9.5C6 11.1 5 13 5 15a7 7 0 0 0 13.222 3.208"}]];var Rz=[["path",{d:"M12 22a7 7 0 0 0 7-7c0-2-1-3.9-3-5.5s-3.5-4-4-6.5c-.5 2.5-2 4.9-4 6.5C6 11.1 5 13 5 15a7 7 0 0 0 7 7z"}]];var jz=[["path",{d:"m2 2 8 8"}],["path",{d:"m22 2-8 8"}],["ellipse",{cx:"12",cy:"9",rx:"10",ry:"5"}],["path",{d:"M7 13.4v7.9"}],["path",{d:"M12 14v8"}],["path",{d:"M17 13.4v7.9"}],["path",{d:"M2 9v8a10 5 0 0 0 20 0V9"}]];var Lz=[["path",{d:"M7 16.3c2.2 0 4-1.83 4-4.05 0-1.16-.57-2.26-1.71-3.19S7.29 6.75 7 5.3c-.29 1.45-1.14 2.84-2.29 3.76S3 11.1 3 12.25c0 2.22 1.8 4.05 4 4.05z"}],["path",{d:"M12.56 6.6A10.97 10.97 0 0 0 14 3.02c.5 2.5 2 4.9 4 6.5s3 3.5 3 5.5a6.98 6.98 0 0 1-11.91 4.97"}]];var yz=[["path",{d:"M15.4 15.63a7.875 6 135 1 1 6.23-6.23 4.5 3.43 135 0 0-6.23 6.23"}],["path",{d:"m8.29 12.71-2.6 2.6a2.5 2.5 0 1 0-1.65 4.65A2.5 2.5 0 1 0 8.7 18.3l2.59-2.59"}]];var fz=[["path",{d:"M17.596 12.768a2 2 0 1 0 2.829-2.829l-1.768-1.767a2 2 0 0 0 2.828-2.829l-2.828-2.828a2 2 0 0 0-2.829 2.828l-1.767-1.768a2 2 0 1 0-2.829 2.829z"}],["path",{d:"m2.5 21.5 1.4-1.4"}],["path",{d:"m20.1 3.9 1.4-1.4"}],["path",{d:"M5.343 21.485a2 2 0 1 0 2.829-2.828l1.767 1.768a2 2 0 1 0 2.829-2.829l-6.364-6.364a2 2 0 1 0-2.829 2.829l1.768 1.767a2 2 0 0 0-2.828 2.829z"}],["path",{d:"m9.6 14.4 4.8-4.8"}]];var kz=[["path",{d:"M6 18.5a3.5 3.5 0 1 0 7 0c0-1.57.92-2.52 2.04-3.46"}],["path",{d:"M6 8.5c0-.75.13-1.47.36-2.14"}],["path",{d:"M8.8 3.15A6.5 6.5 0 0 1 19 8.5c0 1.63-.44 2.81-1.09 3.76"}],["path",{d:"M12.5 6A2.5 2.5 0 0 1 15 8.5M10 13a2 2 0 0 0 1.82-1.18"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var bz=[["path",{d:"M7 3.34V5a3 3 0 0 0 3 3"}],["path",{d:"M11 21.95V18a2 2 0 0 0-2-2 2 2 0 0 1-2-2v-1a2 2 0 0 0-2-2H2.05"}],["path",{d:"M21.54 15H17a2 2 0 0 0-2 2v4.54"}],["path",{d:"M12 2a10 10 0 1 0 9.54 13"}],["path",{d:"M20 6V4a2 2 0 1 0-4 0v2"}],["rect",{width:"8",height:"5",x:"14",y:"6",rx:"1"}]];var hz=[["path",{d:"M6 8.5a6.5 6.5 0 1 1 13 0c0 6-6 6-6 10a3.5 3.5 0 1 1-7 0"}],["path",{d:"M15 8.5a2.5 2.5 0 0 0-5 0v1a2 2 0 1 1 0 4"}]];var p7=[["path",{d:"M21.54 15H17a2 2 0 0 0-2 2v4.54"}],["path",{d:"M7 3.34V5a3 3 0 0 0 3 3a2 2 0 0 1 2 2c0 1.1.9 2 2 2a2 2 0 0 0 2-2c0-1.1.9-2 2-2h3.17"}],["path",{d:"M11 21.95V18a2 2 0 0 0-2-2a2 2 0 0 1-2-2v-1a2 2 0 0 0-2-2H2.05"}],["circle",{cx:"12",cy:"12",r:"10"}]];var vz=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 2a7 7 0 1 0 10 10"}]];var $z=[["circle",{cx:"11.5",cy:"12.5",r:"3.5"}],["path",{d:"M3 8c0-3.5 2.5-6 6.5-6 5 0 4.83 3 7.5 5s5 2 5 6c0 4.5-2.5 6.5-7 6.5-2.5 0-2.5 2.5-6 2.5s-7-2-7-5.5c0-3 1.5-3 1.5-5C3.5 10 3 9 3 8Z"}]];var gz=[["path",{d:"m2 2 20 20"}],["path",{d:"M20 14.347V14c0-6-4-12-8-12-1.078 0-2.157.436-3.157 1.19"}],["path",{d:"M6.206 6.21C4.871 8.4 4 11.2 4 14a8 8 0 0 0 14.568 4.568"}]];var _z=[["path",{d:"M12 2C8 2 4 8 4 14a8 8 0 0 0 16 0c0-6-4-12-8-12"}]];var n7=[["circle",{cx:"12",cy:"12",r:"1"}],["circle",{cx:"12",cy:"5",r:"1"}],["circle",{cx:"12",cy:"19",r:"1"}]];var i7=[["circle",{cx:"12",cy:"12",r:"1"}],["circle",{cx:"19",cy:"12",r:"1"}],["circle",{cx:"5",cy:"12",r:"1"}]];var mz=[["path",{d:"M5 15a6.5 6.5 0 0 1 7 0 6.5 6.5 0 0 0 7 0"}],["path",{d:"M5 9a6.5 6.5 0 0 1 7 0 6.5 6.5 0 0 0 7 0"}]];var uz=[["line",{x1:"5",x2:"19",y1:"9",y2:"9"}],["line",{x1:"5",x2:"19",y1:"15",y2:"15"}],["line",{x1:"19",x2:"5",y1:"5",y2:"19"}]];var dz=[["line",{x1:"5",x2:"19",y1:"9",y2:"9"}],["line",{x1:"5",x2:"19",y1:"15",y2:"15"}]];var cz=[["path",{d:"M21 21H8a2 2 0 0 1-1.42-.587l-3.994-3.999a2 2 0 0 1 0-2.828l10-10a2 2 0 0 1 2.829 0l5.999 6a2 2 0 0 1 0 2.828L12.834 21"}],["path",{d:"m5.082 11.09 8.828 8.828"}]];var pz=[["path",{d:"m15 20 3-3h2a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h2l3 3z"}],["path",{d:"M6 8v1"}],["path",{d:"M10 8v1"}],["path",{d:"M14 8v1"}],["path",{d:"M18 8v1"}]];var nz=[["path",{d:"M4 10h12"}],["path",{d:"M4 14h9"}],["path",{d:"M19 6a7.7 7.7 0 0 0-5.2-2A7.9 7.9 0 0 0 6 12c0 4.4 3.5 8 7.8 8 2 0 3.8-.8 5.2-2"}]];var iz=[["path",{d:"M14 13h2a2 2 0 0 1 2 2v2a2 2 0 0 0 4 0v-6.998a2 2 0 0 0-.59-1.42L18 5"}],["path",{d:"M14 21V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v16"}],["path",{d:"M2 21h13"}],["path",{d:"M3 7h11"}],["path",{d:"m9 11-2 3h3l-2 3"}]];var lz=[["path",{d:"m15 15 6 6"}],["path",{d:"m15 9 6-6"}],["path",{d:"M21 16v5h-5"}],["path",{d:"M21 8V3h-5"}],["path",{d:"M3 16v5h5"}],["path",{d:"m3 21 6-6"}],["path",{d:"M3 8V3h5"}],["path",{d:"M9 9 3 3"}]];var sz=[["path",{d:"m15 18-.722-3.25"}],["path",{d:"M2 8a10.645 10.645 0 0 0 20 0"}],["path",{d:"m20 15-1.726-2.05"}],["path",{d:"m4 15 1.726-2.05"}],["path",{d:"m9 18 .722-3.25"}]];var rz=[["path",{d:"M10.733 5.076a10.744 10.744 0 0 1 11.205 6.575 1 1 0 0 1 0 .696 10.747 10.747 0 0 1-1.444 2.49"}],["path",{d:"M14.084 14.158a3 3 0 0 1-4.242-4.242"}],["path",{d:"M17.479 17.499a10.75 10.75 0 0 1-15.417-5.151 1 1 0 0 1 0-.696 10.75 10.75 0 0 1 4.446-5.143"}],["path",{d:"m2 2 20 20"}]];var az=[["path",{d:"M15 3h6v6"}],["path",{d:"M10 14 21 3"}],["path",{d:"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"}]];var tz=[["path",{d:"M2.062 12.348a1 1 0 0 1 0-.696 10.75 10.75 0 0 1 19.876 0 1 1 0 0 1 0 .696 10.75 10.75 0 0 1-19.876 0"}],["circle",{cx:"12",cy:"12",r:"3"}]];var oz=[["path",{d:"M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z"}]];var ez=[["path",{d:"M12 16h.01"}],["path",{d:"M16 16h.01"}],["path",{d:"M3 19a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V8.5a.5.5 0 0 0-.769-.422l-4.462 2.844A.5.5 0 0 1 15 10.5v-2a.5.5 0 0 0-.769-.422L9.77 10.922A.5.5 0 0 1 9 10.5V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2z"}],["path",{d:"M8 16h.01"}]];var ZN=[["path",{d:"M10.827 16.379a6.082 6.082 0 0 1-8.618-7.002l5.412 1.45a6.082 6.082 0 0 1 7.002-8.618l-1.45 5.412a6.082 6.082 0 0 1 8.618 7.002l-5.412-1.45a6.082 6.082 0 0 1-7.002 8.618l1.45-5.412Z"}],["path",{d:"M12 12v.01"}]];var JN=[["path",{d:"M12 6a2 2 0 0 1 3.414-1.414l6 6a2 2 0 0 1 0 2.828l-6 6A2 2 0 0 1 12 18z"}],["path",{d:"M2 6a2 2 0 0 1 3.414-1.414l6 6a2 2 0 0 1 0 2.828l-6 6A2 2 0 0 1 2 18z"}]];var KN=[["path",{d:"M12.67 19a2 2 0 0 0 1.416-.588l6.154-6.172a6 6 0 0 0-8.49-8.49L5.586 9.914A2 2 0 0 0 5 11.328V18a1 1 0 0 0 1 1z"}],["path",{d:"M16 8 2 22"}],["path",{d:"M17.5 15H9"}]];var YN=[["path",{d:"M4 3 2 5v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z"}],["path",{d:"M6 8h4"}],["path",{d:"M6 18h4"}],["path",{d:"m12 3-2 2v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z"}],["path",{d:"M14 8h4"}],["path",{d:"M14 18h4"}],["path",{d:"m20 3-2 2v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z"}]];var XN=[["circle",{cx:"12",cy:"12",r:"2"}],["path",{d:"M12 2v4"}],["path",{d:"m6.8 15-3.5 2"}],["path",{d:"m20.7 7-3.5 2"}],["path",{d:"M6.8 9 3.3 7"}],["path",{d:"m20.7 17-3.5-2"}],["path",{d:"m9 22 3-8 3 8"}],["path",{d:"M8 22h8"}],["path",{d:"M18 18.7a9 9 0 1 0-12 0"}]];var WN=[["path",{d:"M5 5.5A3.5 3.5 0 0 1 8.5 2H12v7H8.5A3.5 3.5 0 0 1 5 5.5z"}],["path",{d:"M12 2h3.5a3.5 3.5 0 1 1 0 7H12V2z"}],["path",{d:"M12 12.5a3.5 3.5 0 1 1 7 0 3.5 3.5 0 1 1-7 0z"}],["path",{d:"M5 19.5A3.5 3.5 0 0 1 8.5 16H12v3.5a3.5 3.5 0 1 1-7 0z"}],["path",{d:"M5 12.5A3.5 3.5 0 0 1 8.5 9H12v7H8.5A3.5 3.5 0 0 1 5 12.5z"}]];var QN=[["path",{d:"M10 12v-1"}],["path",{d:"M10 18v-2"}],["path",{d:"M10 7V6"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M15.5 22H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v16a2 2 0 0 0 .274 1.01"}],["circle",{cx:"10",cy:"20",r:"2"}]];var VN=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v2"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["circle",{cx:"3",cy:"17",r:"1"}],["path",{d:"M2 17v-3a4 4 0 0 1 8 0v3"}],["circle",{cx:"9",cy:"17",r:"1"}]];var GN=[["path",{d:"M17.5 22h.5a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M2 19a2 2 0 1 1 4 0v1a2 2 0 1 1-4 0v-4a6 6 0 0 1 12 0v4a2 2 0 1 1-4 0v-1a2 2 0 1 1 4 0"}]];var IN=[["path",{d:"m13.69 12.479 1.29 4.88a.5.5 0 0 1-.697.591l-1.844-.849a1 1 0 0 0-.88.001l-1.846.85a.5.5 0 0 1-.693-.593l1.29-4.88"}],["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z"}],["circle",{cx:"12",cy:"10",r:"3"}]];var l7=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"m8 18 4-4"}],["path",{d:"M8 10v8h8"}]];var zN=[["path",{d:"M14.5 22H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M3 13.1a2 2 0 0 0-1 1.76v3.24a2 2 0 0 0 .97 1.78L6 21.7a2 2 0 0 0 2.03.01L11 19.9a2 2 0 0 0 1-1.76V14.9a2 2 0 0 0-.97-1.78L8 11.3a2 2 0 0 0-2.03-.01Z"}],["path",{d:"M7 17v5"}],["path",{d:"M11.7 14.2 7 17l-4.7-2.8"}]];var NN=[["path",{d:"M12 22h6a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3.072"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"m6.69 16.479 1.29 4.88a.5.5 0 0 1-.698.591l-1.843-.849a1 1 0 0 0-.88.001l-1.846.85a.5.5 0 0 1-.693-.593l1.29-4.88"}],["circle",{cx:"5",cy:"14",r:"3"}]];var s7=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M8 18v-2"}],["path",{d:"M12 18v-4"}],["path",{d:"M16 18v-6"}]];var r7=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M8 18v-1"}],["path",{d:"M12 18v-6"}],["path",{d:"M16 18v-3"}]];var a7=[["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M16 22h2a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3.5"}],["path",{d:"M4.017 11.512a6 6 0 1 0 8.466 8.475"}],["path",{d:"M9 16a1 1 0 0 1-1-1v-4c0-.552.45-1.008.995-.917a6 6 0 0 1 4.922 4.922c.091.544-.365.995-.917.995z"}]];var t7=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"m16 13-3.5 3.5-2-2L8 17"}]];var FN=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"m3 15 2 2 4-4"}]];var HN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"m9 15 2 2 4-4"}]];var DN=[["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M16 22h2a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3"}],["path",{d:"M8 14v2.2l1.6 1"}],["circle",{cx:"8",cy:"16",r:"6"}]];var BN=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"m5 12-3 3 3 3"}],["path",{d:"m9 18 3-3-3-3"}]];var ON=[["path",{d:"M10 12.5 8 15l2 2.5"}],["path",{d:"m14 12.5 2 2.5-2 2.5"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z"}]];var o7=[["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"m2.305 15.53.923-.382"}],["path",{d:"m3.228 12.852-.924-.383"}],["path",{d:"M4.677 21.5a2 2 0 0 0 1.313.5H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v2.5"}],["path",{d:"m4.852 11.228-.383-.923"}],["path",{d:"m4.852 16.772-.383.924"}],["path",{d:"m7.148 11.228.383-.923"}],["path",{d:"m7.53 17.696-.382-.924"}],["path",{d:"m8.772 12.852.923-.383"}],["path",{d:"m8.772 15.148.923.383"}],["circle",{cx:"6",cy:"14",r:"3"}]];var TN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M9 10h6"}],["path",{d:"M12 13V7"}],["path",{d:"M9 17h6"}]];var PN=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["rect",{width:"4",height:"6",x:"2",y:"12",rx:"2"}],["path",{d:"M10 12h2v6"}],["path",{d:"M10 18h4"}]];var SN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M12 18v-6"}],["path",{d:"m9 15 3 3 3-3"}]];var AN=[["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M2.62 13.8A2.25 2.25 0 1 1 6 10.836a2.25 2.25 0 1 1 3.38 2.966l-2.626 2.856a.998.998 0 0 1-1.507 0z"}],["path",{d:"M4 6.005V4a2 2 0 0 1 2-2h9l5 5v13a2 2 0 0 1-2 2H6a2 2 0 0 1-1.9-1.376"}]];var qN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["circle",{cx:"10",cy:"12",r:"2"}],["path",{d:"m20 17-1.296-1.296a2.41 2.41 0 0 0-3.408 0L9 22"}]];var EN=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M2 15h10"}],["path",{d:"m9 18 3-3-3-3"}]];var CN=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M4 12a1 1 0 0 0-1 1v1a1 1 0 0 1-1 1 1 1 0 0 1 1 1v1a1 1 0 0 0 1 1"}],["path",{d:"M8 18a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-1a1 1 0 0 0-1-1"}]];var xN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M10 12a1 1 0 0 0-1 1v1a1 1 0 0 1-1 1 1 1 0 0 1 1 1v1a1 1 0 0 0 1 1"}],["path",{d:"M14 18a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-1a1 1 0 0 0-1-1"}]];var wN=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v6"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["circle",{cx:"4",cy:"16",r:"2"}],["path",{d:"m10 10-4.5 4.5"}],["path",{d:"m9 11 1 1"}]];var UN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["circle",{cx:"10",cy:"16",r:"2"}],["path",{d:"m16 10-4.5 4.5"}],["path",{d:"m15 11 1 1"}]];var MN=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v1"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["rect",{width:"8",height:"5",x:"2",y:"13",rx:"1"}],["path",{d:"M8 13v-2a2 2 0 1 0-4 0v2"}]];var RN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["rect",{width:"8",height:"6",x:"8",y:"12",rx:"1"}],["path",{d:"M10 12v-2a2 2 0 1 1 4 0v2"}]];var jN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M9 15h6"}]];var LN=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M3 15h6"}]];var yN=[["path",{d:"M10.5 22H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v8.4"}],["path",{d:"M8 18v-7.7L16 9v7"}],["circle",{cx:"14",cy:"16",r:"2"}],["circle",{cx:"6",cy:"18",r:"2"}]];var fN=[["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M4 7V4a2 2 0 0 1 2-2 2 2 0 0 0-2 2"}],["path",{d:"M4.063 20.999a2 2 0 0 0 2 1L18 22a2 2 0 0 0 2-2V7l-5-5H6"}],["path",{d:"m5 11-3 3"}],["path",{d:"m5 17-3-3h10"}]];var e7=[["path",{d:"m18 5-2.414-2.414A2 2 0 0 0 14.172 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2"}],["path",{d:"M21.378 12.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}],["path",{d:"M8 18h1"}]];var Z6=[["path",{d:"M12.5 22H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v9.5"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M13.378 15.626a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}]];var J6=[["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z"}],["path",{d:"M15.033 13.44a.647.647 0 0 1 0 1.12l-4.065 2.352a.645.645 0 0 1-.968-.56v-4.704a.645.645 0 0 1 .967-.56z"}]];var kN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M9 15h6"}],["path",{d:"M12 18v-6"}]];var bN=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M3 15h6"}],["path",{d:"M6 12v6"}]];var K6=[["path",{d:"M12 17h.01"}],["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z"}],["path",{d:"M9.1 9a3 3 0 0 1 5.82 1c0 2-3 3-3 3"}]];var hN=[["path",{d:"M20 10V7l-5-5H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M16 14a2 2 0 0 0-2 2"}],["path",{d:"M20 14a2 2 0 0 1 2 2"}],["path",{d:"M20 22a2 2 0 0 0 2-2"}],["path",{d:"M16 22a2 2 0 0 1-2-2"}]];var vN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["circle",{cx:"11.5",cy:"14.5",r:"2.5"}],["path",{d:"M13.3 16.3 15 18"}]];var $N=[["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M4.268 21a2 2 0 0 0 1.727 1H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3"}],["path",{d:"m9 18-1.5-1.5"}],["circle",{cx:"5",cy:"14",r:"3"}]];var gN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M8 12h8"}],["path",{d:"M10 11v2"}],["path",{d:"M8 17h8"}],["path",{d:"M14 16v2"}]];var _N=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M8 13h2"}],["path",{d:"M14 13h2"}],["path",{d:"M8 17h2"}],["path",{d:"M14 17h2"}]];var mN=[["path",{d:"M11 21a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-8a1 1 0 0 1 1-1"}],["path",{d:"M16 16a1 1 0 0 1-1 1H9a1 1 0 0 1-1-1V8a1 1 0 0 1 1-1"}],["path",{d:"M21 6a2 2 0 0 0-.586-1.414l-2-2A2 2 0 0 0 17 2h-3a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1z"}]];var uN=[["path",{d:"m10 18 3-3-3-3"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M4 11V4a2 2 0 0 1 2-2h9l5 5v13a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h7"}]];var dN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"m8 16 2-2-2-2"}],["path",{d:"M12 18h4"}]];var cN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M10 9H8"}],["path",{d:"M16 13H8"}],["path",{d:"M16 17H8"}]];var pN=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M2 13v-1h6v1"}],["path",{d:"M5 12v6"}],["path",{d:"M4 18h2"}]];var nN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M9 13v-1h6v1"}],["path",{d:"M12 12v6"}],["path",{d:"M11 18h2"}]];var iN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M12 12v6"}],["path",{d:"m15 15-3-3-3 3"}]];var lN=[["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M15 18a3 3 0 1 0-6 0"}],["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z"}],["circle",{cx:"12",cy:"13",r:"2"}]];var Y6=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["rect",{width:"8",height:"6",x:"2",y:"12",rx:"1"}],["path",{d:"m10 13.843 3.033-1.755a.645.645 0 0 1 .967.56v4.704a.645.645 0 0 1-.967.56L10 16.157"}]];var sN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M8 15h.01"}],["path",{d:"M11.5 13.5a2.5 2.5 0 0 1 0 3"}],["path",{d:"M15 12a5 5 0 0 1 0 6"}]];var rN=[["path",{d:"M11 11a5 5 0 0 1 0 6"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M4 6.765V4a2 2 0 0 1 2-2h9l5 5v13a2 2 0 0 1-2 2H6a2 2 0 0 1-.93-.23"}],["path",{d:"M7 10.51a.5.5 0 0 0-.826-.38l-1.893 1.628A1 1 0 0 1 3.63 12H2.5a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5h1.129a1 1 0 0 1 .652.242l1.893 1.63a.5.5 0 0 0 .826-.38z"}]];var aN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M12 9v4"}],["path",{d:"M12 17h.01"}]];var tN=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"m8 12.5-5 5"}],["path",{d:"m3 12.5 5 5"}]];var oN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"m14.5 12.5-5 5"}],["path",{d:"m9.5 12.5 5 5"}]];var eN=[["path",{d:"M15 2a2 2 0 0 1 1.414.586l4 4A2 2 0 0 1 21 8v7a2 2 0 0 1-2 2h-8a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2z"}],["path",{d:"M15 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M5 7a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h8a2 2 0 0 0 1.732-1"}]];var ZF=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}]];var JF=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M7 3v18"}],["path",{d:"M3 7.5h4"}],["path",{d:"M3 12h18"}],["path",{d:"M3 16.5h4"}],["path",{d:"M17 3v18"}],["path",{d:"M17 7.5h4"}],["path",{d:"M17 16.5h4"}]];var KF=[["path",{d:"M12 10a2 2 0 0 0-2 2c0 1.02-.1 2.51-.26 4"}],["path",{d:"M14 13.12c0 2.38 0 6.38-1 8.88"}],["path",{d:"M17.29 21.02c.12-.6.43-2.3.5-3.02"}],["path",{d:"M2 12a10 10 0 0 1 18-6"}],["path",{d:"M2 16h.01"}],["path",{d:"M21.8 16c.2-2 .131-5.354 0-6"}],["path",{d:"M5 19.5C5.5 18 6 15 6 12a6 6 0 0 1 .34-2"}],["path",{d:"M8.65 22c.21-.66.45-1.32.57-2"}],["path",{d:"M9 6.8a6 6 0 0 1 9 5.2v2"}]];var YF=[["path",{d:"M15 6.5V3a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1v3.5"}],["path",{d:"M9 18h8"}],["path",{d:"M18 3h-3"}],["path",{d:"M11 3a6 6 0 0 0-6 6v11"}],["path",{d:"M5 13h4"}],["path",{d:"M17 10a4 4 0 0 0-8 0v10a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2Z"}]];var XF=[["path",{d:"M18 12.47v.03m0-.5v.47m-.475 5.056A6.744 6.744 0 0 1 15 18c-3.56 0-7.56-2.53-8.5-6 .348-1.28 1.114-2.433 2.121-3.38m3.444-2.088A8.802 8.802 0 0 1 15 6c3.56 0 6.06 2.54 7 6-.309 1.14-.786 2.177-1.413 3.058"}],["path",{d:"M7 10.67C7 8 5.58 5.97 2.73 5.5c-1 1.5-1 5 .23 6.5-1.24 1.5-1.24 5-.23 6.5C5.58 18.03 7 16 7 13.33m7.48-4.372A9.77 9.77 0 0 1 16 6.07m0 11.86a9.77 9.77 0 0 1-1.728-3.618"}],["path",{d:"m16.01 17.93-.23 1.4A2 2 0 0 1 13.8 21H9.5a5.96 5.96 0 0 0 1.49-3.98M8.53 3h5.27a2 2 0 0 1 1.98 1.67l.23 1.4M2 2l20 20"}]];var WF=[["path",{d:"M2 16s9-15 20-4C11 23 2 8 2 8"}]];var QF=[["path",{d:"M16 16c-3 0-5-2-8-2a6 6 0 0 0-4 1.528"}],["path",{d:"m2 2 20 20"}],["path",{d:"M4 22V4"}],["path",{d:"M7.656 2H8c3 0 5 2 7.333 2q2 0 3.067-.8A1 1 0 0 1 20 4v10.347"}]];var VF=[["path",{d:"M6.5 12c.94-3.46 4.94-6 8.5-6 3.56 0 6.06 2.54 7 6-.94 3.47-3.44 6-7 6s-7.56-2.53-8.5-6Z"}],["path",{d:"M18 12v.5"}],["path",{d:"M16 17.93a9.77 9.77 0 0 1 0-11.86"}],["path",{d:"M7 10.67C7 8 5.58 5.97 2.73 5.5c-1 1.5-1 5 .23 6.5-1.24 1.5-1.24 5-.23 6.5C5.58 18.03 7 16 7 13.33"}],["path",{d:"M10.46 7.26C10.2 5.88 9.17 4.24 8 3h5.8a2 2 0 0 1 1.98 1.67l.23 1.4"}],["path",{d:"m16.01 17.93-.23 1.4A2 2 0 0 1 13.8 21H9.5a5.96 5.96 0 0 0 1.49-3.98"}]];var GF=[["path",{d:"M18 22V2.8a.8.8 0 0 0-1.17-.71L5.45 7.78a.8.8 0 0 0 0 1.44L18 15.5"}]];var IF=[["path",{d:"M6 22V2.8a.8.8 0 0 1 1.17-.71l11.38 5.69a.8.8 0 0 1 0 1.44L6 15.5"}]];var zF=[["path",{d:"M4 22V4a1 1 0 0 1 .4-.8A6 6 0 0 1 8 2c3 0 5 2 7.333 2q2 0 3.067-.8A1 1 0 0 1 20 4v10a1 1 0 0 1-.4.8A6 6 0 0 1 16 16c-3 0-5-2-8-2a6 6 0 0 0-4 1.528"}]];var NF=[["path",{d:"M12 2c1 3 2.5 3.5 3.5 4.5A5 5 0 0 1 17 10a5 5 0 1 1-10 0c0-.3 0-.6.1-.9a2 2 0 1 0 3.3-2C8 4.5 11 2 12 2Z"}],["path",{d:"m5 22 14-4"}],["path",{d:"m5 18 14 4"}]];var FF=[["path",{d:"M12 3q1 4 4 6.5t3 5.5a1 1 0 0 1-14 0 5 5 0 0 1 1-3 1 1 0 0 0 5 0c0-2-1.5-3-1.5-5q0-2 2.5-4"}]];var HF=[["path",{d:"M16 16v4a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2V10c0-2-2-2-2-4"}],["path",{d:"M7 2h11v4c0 2-2 2-2 4v1"}],["line",{x1:"11",x2:"18",y1:"6",y2:"6"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var DF=[["path",{d:"M18 6c0 2-2 2-2 4v10a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2V10c0-2-2-2-2-4V2h12z"}],["line",{x1:"6",x2:"18",y1:"6",y2:"6"}],["line",{x1:"12",x2:"12",y1:"12",y2:"12"}]];var BF=[["path",{d:"M10 2v2.343"}],["path",{d:"M14 2v6.343"}],["path",{d:"m2 2 20 20"}],["path",{d:"M20 20a2 2 0 0 1-2 2H6a2 2 0 0 1-1.755-2.96l5.227-9.563"}],["path",{d:"M6.453 15H15"}],["path",{d:"M8.5 2h7"}]];var OF=[["path",{d:"M14 2v6a2 2 0 0 0 .245.96l5.51 10.08A2 2 0 0 1 18 22H6a2 2 0 0 1-1.755-2.96l5.51-10.08A2 2 0 0 0 10 8V2"}],["path",{d:"M6.453 15h11.094"}],["path",{d:"M8.5 2h7"}]];var TF=[["path",{d:"M10 2v6.292a7 7 0 1 0 4 0V2"}],["path",{d:"M5 15h14"}],["path",{d:"M8.5 2h7"}]];var PF=[["path",{d:"m3 7 5 5-5 5V7"}],["path",{d:"m21 7-5 5 5 5V7"}],["path",{d:"M12 20v2"}],["path",{d:"M12 14v2"}],["path",{d:"M12 8v2"}],["path",{d:"M12 2v2"}]];var SF=[["path",{d:"M8 3H5a2 2 0 0 0-2 2v14c0 1.1.9 2 2 2h3"}],["path",{d:"M16 3h3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-3"}],["path",{d:"M12 20v2"}],["path",{d:"M12 14v2"}],["path",{d:"M12 8v2"}],["path",{d:"M12 2v2"}]];var AF=[["path",{d:"m17 3-5 5-5-5h10"}],["path",{d:"m17 21-5-5-5 5h10"}],["path",{d:"M4 12H2"}],["path",{d:"M10 12H8"}],["path",{d:"M16 12h-2"}],["path",{d:"M22 12h-2"}]];var qF=[["path",{d:"M21 8V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v3"}],["path",{d:"M21 16v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-3"}],["path",{d:"M4 12H2"}],["path",{d:"M10 12H8"}],["path",{d:"M16 12h-2"}],["path",{d:"M22 12h-2"}]];var EF=[["path",{d:"M12 5a3 3 0 1 1 3 3m-3-3a3 3 0 1 0-3 3m3-3v1M9 8a3 3 0 1 0 3 3M9 8h1m5 0a3 3 0 1 1-3 3m3-3h-1m-2 3v-1"}],["circle",{cx:"12",cy:"8",r:"2"}],["path",{d:"M12 10v12"}],["path",{d:"M12 22c4.2 0 7-1.667 7-5-4.2 0-7 1.667-7 5Z"}],["path",{d:"M12 22c-4.2 0-7-1.667-7-5 4.2 0 7 1.667 7 5Z"}]];var CF=[["circle",{cx:"12",cy:"12",r:"3"}],["path",{d:"M12 16.5A4.5 4.5 0 1 1 7.5 12 4.5 4.5 0 1 1 12 7.5a4.5 4.5 0 1 1 4.5 4.5 4.5 4.5 0 1 1-4.5 4.5"}],["path",{d:"M12 7.5V9"}],["path",{d:"M7.5 12H9"}],["path",{d:"M16.5 12H15"}],["path",{d:"M12 16.5V15"}],["path",{d:"m8 8 1.88 1.88"}],["path",{d:"M14.12 9.88 16 8"}],["path",{d:"m8 16 1.88-1.88"}],["path",{d:"M14.12 14.12 16 16"}]];var xF=[["circle",{cx:"12",cy:"12",r:"3"}],["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}]];var wF=[["path",{d:"M2 12h6"}],["path",{d:"M22 12h-6"}],["path",{d:"M12 2v2"}],["path",{d:"M12 8v2"}],["path",{d:"M12 14v2"}],["path",{d:"M12 20v2"}],["path",{d:"m19 9-3 3 3 3"}],["path",{d:"m5 15 3-3-3-3"}]];var UF=[["path",{d:"M12 22v-6"}],["path",{d:"M12 8V2"}],["path",{d:"M4 12H2"}],["path",{d:"M10 12H8"}],["path",{d:"M16 12h-2"}],["path",{d:"M22 12h-2"}],["path",{d:"m15 19-3-3-3 3"}],["path",{d:"m15 5-3 3-3-3"}]];var MF=[["circle",{cx:"15",cy:"19",r:"2"}],["path",{d:"M20.9 19.8A2 2 0 0 0 22 18V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2h5.1"}],["path",{d:"M15 11v-1"}],["path",{d:"M15 17v-2"}]];var RF=[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"}],["path",{d:"m9 13 2 2 4-4"}]];var jF=[["path",{d:"M16 14v2.2l1.6 1"}],["path",{d:"M7 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2"}],["circle",{cx:"16",cy:"16",r:"6"}]];var LF=[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"}],["path",{d:"M2 10h20"}]];var yF=[["path",{d:"M10 10.5 8 13l2 2.5"}],["path",{d:"m14 10.5 2 2.5-2 2.5"}],["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2z"}]];var X6=[["path",{d:"M10.3 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.98a2 2 0 0 1 1.69.9l.66 1.2A2 2 0 0 0 12 6h8a2 2 0 0 1 2 2v3.3"}],["path",{d:"m14.305 19.53.923-.382"}],["path",{d:"m15.228 16.852-.923-.383"}],["path",{d:"m16.852 15.228-.383-.923"}],["path",{d:"m16.852 20.772-.383.924"}],["path",{d:"m19.148 15.228.383-.923"}],["path",{d:"m19.53 21.696-.382-.924"}],["path",{d:"m20.772 16.852.924-.383"}],["path",{d:"m20.772 19.148.924.383"}],["circle",{cx:"18",cy:"18",r:"3"}]];var fF=[["path",{d:"M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z"}],["circle",{cx:"12",cy:"13",r:"1"}]];var kF=[["path",{d:"M9 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v5"}],["circle",{cx:"13",cy:"12",r:"2"}],["path",{d:"M18 19c-2.8 0-5-2.2-5-5v8"}],["circle",{cx:"20",cy:"19",r:"2"}]];var bF=[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"}],["path",{d:"M12 10v6"}],["path",{d:"m15 13-3 3-3-3"}]];var hF=[["circle",{cx:"12",cy:"13",r:"2"}],["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"}],["path",{d:"M14 13h3"}],["path",{d:"M7 13h3"}]];var vF=[["path",{d:"M10.638 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v3.417"}],["path",{d:"M14.62 18.8A2.25 2.25 0 1 1 18 15.836a2.25 2.25 0 1 1 3.38 2.966l-2.626 2.856a.998.998 0 0 1-1.507 0z"}]];var $F=[["path",{d:"M2 9V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-1"}],["path",{d:"M2 13h10"}],["path",{d:"m9 16 3-3-3-3"}]];var gF=[["path",{d:"M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z"}],["path",{d:"M8 10v4"}],["path",{d:"M12 10v2"}],["path",{d:"M16 10v6"}]];var _F=[["circle",{cx:"16",cy:"20",r:"2"}],["path",{d:"M10 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v2"}],["path",{d:"m22 14-4.5 4.5"}],["path",{d:"m21 15 1 1"}]];var mF=[["rect",{width:"8",height:"5",x:"14",y:"17",rx:"1"}],["path",{d:"M10 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v2.5"}],["path",{d:"M20 17v-2a2 2 0 1 0-4 0v2"}]];var uF=[["path",{d:"M9 13h6"}],["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"}]];var dF=[["path",{d:"m6 14 1.45-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.55 6a2 2 0 0 1-1.94 1.5H4a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h3.93a2 2 0 0 1 1.66.9l.82 1.2a2 2 0 0 0 1.66.9H18a2 2 0 0 1 2 2v2"}],["circle",{cx:"14",cy:"15",r:"1"}]];var cF=[["path",{d:"m6 14 1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2"}]];var pF=[["path",{d:"M2 7.5V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-1.5"}],["path",{d:"M2 13h10"}],["path",{d:"m5 10-3 3 3 3"}]];var W6=[["path",{d:"M2 11.5V5a2 2 0 0 1 2-2h3.9c.7 0 1.3.3 1.7.9l.8 1.2c.4.6 1 .9 1.7.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-9.5"}],["path",{d:"M11.378 13.626a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}]];var nF=[["path",{d:"M12 10v6"}],["path",{d:"M9 13h6"}],["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"}]];var iF=[["path",{d:"M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z"}],["circle",{cx:"12",cy:"13",r:"2"}],["path",{d:"M12 15v5"}]];var lF=[["circle",{cx:"11.5",cy:"12.5",r:"2.5"}],["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"}],["path",{d:"M13.3 14.3 15 16"}]];var sF=[["path",{d:"M10.7 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v4.1"}],["path",{d:"m21 21-1.9-1.9"}],["circle",{cx:"17",cy:"17",r:"3"}]];var rF=[["path",{d:"M2 9.35V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h7"}],["path",{d:"m8 16 3-3-3-3"}]];var aF=[["path",{d:"M9 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v.5"}],["path",{d:"M12 10v4h4"}],["path",{d:"m12 14 1.535-1.605a5 5 0 0 1 8 1.5"}],["path",{d:"M22 22v-4h-4"}],["path",{d:"m22 18-1.535 1.605a5 5 0 0 1-8-1.5"}]];var tF=[["path",{d:"M20 10a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1h-2.5a1 1 0 0 1-.8-.4l-.9-1.2A1 1 0 0 0 15 3h-2a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1Z"}],["path",{d:"M20 21a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1h-2.9a1 1 0 0 1-.88-.55l-.42-.85a1 1 0 0 0-.92-.6H13a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1Z"}],["path",{d:"M3 5a2 2 0 0 0 2 2h3"}],["path",{d:"M3 3v13a2 2 0 0 0 2 2h3"}]];var oF=[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"}],["path",{d:"M12 10v6"}],["path",{d:"m9 13 3-3 3 3"}]];var eF=[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"}],["path",{d:"m9.5 10.5 5 5"}],["path",{d:"m14.5 10.5-5 5"}]];var ZH=[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"}]];var JH=[["path",{d:"M20 5a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2H9a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h2.5a1.5 1.5 0 0 1 1.2.6l.6.8a1.5 1.5 0 0 0 1.2.6z"}],["path",{d:"M3 8.268a2 2 0 0 0-1 1.738V19a2 2 0 0 0 2 2h11a2 2 0 0 0 1.732-1"}]];var KH=[["path",{d:"M4 16v-2.38C4 11.5 2.97 10.5 3 8c.03-2.72 1.49-6 4.5-6C9.37 2 10 3.8 10 5.5c0 3.11-2 5.66-2 8.68V16a2 2 0 1 1-4 0Z"}],["path",{d:"M20 20v-2.38c0-2.12 1.03-3.12 1-5.62-.03-2.72-1.49-6-4.5-6C14.63 6 14 7.8 14 9.5c0 3.11 2 5.66 2 8.68V20a2 2 0 1 0 4 0Z"}],["path",{d:"M16 17h4"}],["path",{d:"M4 13h4"}]];var YH=[["path",{d:"M12 12H5a2 2 0 0 0-2 2v5"}],["circle",{cx:"13",cy:"19",r:"2"}],["circle",{cx:"5",cy:"19",r:"2"}],["path",{d:"M8 19h3m5-17v17h6M6 12V7c0-1.1.9-2 2-2h3l5 5"}]];var XH=[["path",{d:"m15 17 5-5-5-5"}],["path",{d:"M4 18v-2a4 4 0 0 1 4-4h12"}]];var WH=[["line",{x1:"22",x2:"2",y1:"6",y2:"6"}],["line",{x1:"22",x2:"2",y1:"18",y2:"18"}],["line",{x1:"6",x2:"6",y1:"2",y2:"22"}],["line",{x1:"18",x2:"18",y1:"2",y2:"22"}]];var QH=[["path",{d:"M5 16V9h14V2H5l14 14h-7m-7 0 7 7v-7m-7 0h7"}]];var VH=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M16 16s-1.5-2-4-2-4 2-4 2"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9"}]];var GH=[["path",{d:"M14 13h2a2 2 0 0 1 2 2v2a2 2 0 0 0 4 0v-6.998a2 2 0 0 0-.59-1.42L18 5"}],["path",{d:"M14 21V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v16"}],["path",{d:"M2 21h13"}],["path",{d:"M3 9h11"}]];var IH=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["rect",{width:"10",height:"8",x:"7",y:"8",rx:"1"}]];var zH=[["path",{d:"M13.354 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14v6a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341l1.218-1.348"}],["path",{d:"M16 6h6"}],["path",{d:"M19 3v6"}]];var Q6=[["path",{d:"M12.531 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14v6a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341l.427-.473"}],["path",{d:"m16.5 3.5 5 5"}],["path",{d:"m21.5 3.5-5 5"}]];var V6=[["path",{d:"M10 20a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341L21.74 4.67A1 1 0 0 0 21 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14z"}]];var NH=[["path",{d:"M2 7v10"}],["path",{d:"M6 5v14"}],["rect",{width:"12",height:"18",x:"10",y:"3",rx:"2"}]];var FH=[["path",{d:"M2 3v18"}],["rect",{width:"12",height:"18",x:"6",y:"3",rx:"2"}],["path",{d:"M22 3v18"}]];var HH=[["rect",{width:"18",height:"14",x:"3",y:"3",rx:"2"}],["path",{d:"M4 21h1"}],["path",{d:"M9 21h1"}],["path",{d:"M14 21h1"}],["path",{d:"M19 21h1"}]];var DH=[["path",{d:"M7 2h10"}],["path",{d:"M5 6h14"}],["rect",{width:"18",height:"12",x:"3",y:"10",rx:"2"}]];var BH=[["path",{d:"M3 2h18"}],["rect",{width:"18",height:"12",x:"3",y:"6",rx:"2"}],["path",{d:"M3 22h18"}]];var OH=[["line",{x1:"6",x2:"10",y1:"11",y2:"11"}],["line",{x1:"8",x2:"8",y1:"9",y2:"13"}],["line",{x1:"15",x2:"15.01",y1:"12",y2:"12"}],["line",{x1:"18",x2:"18.01",y1:"10",y2:"10"}],["path",{d:"M17.32 5H6.68a4 4 0 0 0-3.978 3.59c-.006.052-.01.101-.017.152C2.604 9.416 2 14.456 2 16a3 3 0 0 0 3 3c1 0 1.5-.5 2-1l1.414-1.414A2 2 0 0 1 9.828 16h4.344a2 2 0 0 1 1.414.586L17 18c.5.5 1 1 2 1a3 3 0 0 0 3-3c0-1.545-.604-6.584-.685-7.258-.007-.05-.011-.1-.017-.151A4 4 0 0 0 17.32 5z"}]];var TH=[["path",{d:"M11.146 15.854a1.207 1.207 0 0 1 1.708 0l1.56 1.56A2 2 0 0 1 15 18.828V21a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1v-2.172a2 2 0 0 1 .586-1.414z"}],["path",{d:"M18.828 15a2 2 0 0 1-1.414-.586l-1.56-1.56a1.207 1.207 0 0 1 0-1.708l1.56-1.56A2 2 0 0 1 18.828 9H21a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1z"}],["path",{d:"M6.586 14.414A2 2 0 0 1 5.172 15H3a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h2.172a2 2 0 0 1 1.414.586l1.56 1.56a1.207 1.207 0 0 1 0 1.708z"}],["path",{d:"M9 3a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v2.172a2 2 0 0 1-.586 1.414l-1.56 1.56a1.207 1.207 0 0 1-1.708 0l-1.56-1.56A2 2 0 0 1 9 5.172z"}]];var PH=[["line",{x1:"6",x2:"10",y1:"12",y2:"12"}],["line",{x1:"8",x2:"8",y1:"10",y2:"14"}],["line",{x1:"15",x2:"15.01",y1:"13",y2:"13"}],["line",{x1:"18",x2:"18.01",y1:"11",y2:"11"}],["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2"}]];var SH=[["path",{d:"m12 14 4-4"}],["path",{d:"M3.34 19a10 10 0 1 1 17.32 0"}]];var AH=[["path",{d:"m14 13-8.381 8.38a1 1 0 0 1-3.001-3l8.384-8.381"}],["path",{d:"m16 16 6-6"}],["path",{d:"m21.5 10.5-8-8"}],["path",{d:"m8 8 6-6"}],["path",{d:"m8.5 7.5 8 8"}]];var qH=[["path",{d:"M10.5 3 8 9l4 13 4-13-2.5-6"}],["path",{d:"M17 3a2 2 0 0 1 1.6.8l3 4a2 2 0 0 1 .013 2.382l-7.99 10.986a2 2 0 0 1-3.247 0l-7.99-10.986A2 2 0 0 1 2.4 7.8l2.998-3.997A2 2 0 0 1 7 3z"}],["path",{d:"M2 9h20"}]];var EH=[["path",{d:"M11.5 21a7.5 7.5 0 1 1 7.35-9"}],["path",{d:"M13 12V3"}],["path",{d:"M4 21h16"}],["path",{d:"M9 12V3"}]];var CH=[["path",{d:"M9 10h.01"}],["path",{d:"M15 10h.01"}],["path",{d:"M12 2a8 8 0 0 0-8 8v12l3-3 2.5 2.5L12 19l2.5 2.5L17 19l3 3V10a8 8 0 0 0-8-8z"}]];var xH=[["rect",{x:"3",y:"8",width:"18",height:"4",rx:"1"}],["path",{d:"M12 8v13"}],["path",{d:"M19 12v7a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-7"}],["path",{d:"M7.5 8a2.5 2.5 0 0 1 0-5A4.8 8 0 0 1 12 8a4.8 8 0 0 1 4.5-5 2.5 2.5 0 0 1 0 5"}]];var wH=[["path",{d:"M6 3v12"}],["path",{d:"M18 9a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"}],["path",{d:"M6 21a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"}],["path",{d:"M15 6a9 9 0 0 0-9 9"}],["path",{d:"M18 15v6"}],["path",{d:"M21 18h-6"}]];var UH=[["line",{x1:"6",x2:"6",y1:"3",y2:"15"}],["circle",{cx:"18",cy:"6",r:"3"}],["circle",{cx:"6",cy:"18",r:"3"}],["path",{d:"M18 9a9 9 0 0 1-9 9"}]];var G6=[["circle",{cx:"12",cy:"12",r:"3"}],["line",{x1:"3",x2:"9",y1:"12",y2:"12"}],["line",{x1:"15",x2:"21",y1:"12",y2:"12"}]];var MH=[["path",{d:"M12 3v6"}],["circle",{cx:"12",cy:"12",r:"3"}],["path",{d:"M12 15v6"}]];var RH=[["circle",{cx:"5",cy:"6",r:"3"}],["path",{d:"M12 6h5a2 2 0 0 1 2 2v7"}],["path",{d:"m15 9-3-3 3-3"}],["circle",{cx:"19",cy:"18",r:"3"}],["path",{d:"M12 18H7a2 2 0 0 1-2-2V9"}],["path",{d:"m9 15 3 3-3 3"}]];var jH=[["circle",{cx:"18",cy:"18",r:"3"}],["circle",{cx:"6",cy:"6",r:"3"}],["path",{d:"M13 6h3a2 2 0 0 1 2 2v7"}],["path",{d:"M11 18H8a2 2 0 0 1-2-2V9"}]];var LH=[["circle",{cx:"12",cy:"18",r:"3"}],["circle",{cx:"6",cy:"6",r:"3"}],["circle",{cx:"18",cy:"6",r:"3"}],["path",{d:"M18 9v2c0 .6-.4 1-1 1H7c-.6 0-1-.4-1-1V9"}],["path",{d:"M12 12v3"}]];var yH=[["circle",{cx:"5",cy:"6",r:"3"}],["path",{d:"M5 9v6"}],["circle",{cx:"5",cy:"18",r:"3"}],["path",{d:"M12 3v18"}],["circle",{cx:"19",cy:"6",r:"3"}],["path",{d:"M16 15.7A9 9 0 0 0 19 9"}]];var fH=[["circle",{cx:"18",cy:"18",r:"3"}],["circle",{cx:"6",cy:"6",r:"3"}],["path",{d:"M6 21V9a9 9 0 0 0 9 9"}]];var kH=[["circle",{cx:"5",cy:"6",r:"3"}],["path",{d:"M5 9v12"}],["circle",{cx:"19",cy:"18",r:"3"}],["path",{d:"m15 9-3-3 3-3"}],["path",{d:"M12 6h5a2 2 0 0 1 2 2v7"}]];var bH=[["circle",{cx:"5",cy:"6",r:"3"}],["path",{d:"M5 9v12"}],["path",{d:"m15 9-3-3 3-3"}],["path",{d:"M12 6h5a2 2 0 0 1 2 2v3"}],["path",{d:"M19 15v6"}],["path",{d:"M22 18h-6"}]];var hH=[["circle",{cx:"6",cy:"6",r:"3"}],["path",{d:"M6 9v12"}],["path",{d:"m21 3-6 6"}],["path",{d:"m21 9-6-6"}],["path",{d:"M18 11.5V15"}],["circle",{cx:"18",cy:"18",r:"3"}]];var vH=[["circle",{cx:"6",cy:"6",r:"3"}],["path",{d:"M6 9v12"}],["path",{d:"M13 6h3a2 2 0 0 1 2 2v3"}],["path",{d:"M18 15v6"}],["path",{d:"M21 18h-6"}]];var $H=[["circle",{cx:"18",cy:"18",r:"3"}],["circle",{cx:"6",cy:"6",r:"3"}],["path",{d:"M18 6V5"}],["path",{d:"M18 11v-1"}],["line",{x1:"6",x2:"6",y1:"9",y2:"21"}]];var gH=[["circle",{cx:"18",cy:"18",r:"3"}],["circle",{cx:"6",cy:"6",r:"3"}],["path",{d:"M13 6h3a2 2 0 0 1 2 2v7"}],["line",{x1:"6",x2:"6",y1:"9",y2:"21"}]];var _H=[["path",{d:"M15 22v-4a4.8 4.8 0 0 0-1-3.5c3 0 6-2 6-5.5.08-1.25-.27-2.48-1-3.5.28-1.15.28-2.35 0-3.5 0 0-1 0-3 1.5-2.64-.5-5.36-.5-8 0C6 2 5 2 5 2c-.3 1.15-.3 2.35 0 3.5A5.403 5.403 0 0 0 4 9c0 3.5 3 5.5 6 5.5-.39.49-.68 1.05-.85 1.65-.17.6-.22 1.23-.15 1.85v4"}],["path",{d:"M9 18c-4.51 2-5-2-7-2"}]];var mH=[["path",{d:"m22 13.29-3.33-10a.42.42 0 0 0-.14-.18.38.38 0 0 0-.22-.11.39.39 0 0 0-.23.07.42.42 0 0 0-.14.18l-2.26 6.67H8.32L6.1 3.26a.42.42 0 0 0-.1-.18.38.38 0 0 0-.26-.08.39.39 0 0 0-.23.07.42.42 0 0 0-.14.18L2 13.29a.74.74 0 0 0 .27.83L12 21l9.69-6.88a.71.71 0 0 0 .31-.83Z"}]];var uH=[["path",{d:"M5.116 4.104A1 1 0 0 1 6.11 3h11.78a1 1 0 0 1 .994 1.105L17.19 20.21A2 2 0 0 1 15.2 22H8.8a2 2 0 0 1-2-1.79z"}],["path",{d:"M6 12a5 5 0 0 1 6 0 5 5 0 0 0 6 0"}]];var dH=[["circle",{cx:"6",cy:"15",r:"4"}],["circle",{cx:"18",cy:"15",r:"4"}],["path",{d:"M14 15a2 2 0 0 0-2-2 2 2 0 0 0-2 2"}],["path",{d:"M2.5 13 5 7c.7-1.3 1.4-2 3-2"}],["path",{d:"M21.5 13 19 7c-.7-1.3-1.5-2-3-2"}]];var cH=[["path",{d:"M15.686 15A14.5 14.5 0 0 1 12 22a14.5 14.5 0 0 1 0-20 10 10 0 1 0 9.542 13"}],["path",{d:"M2 12h8.5"}],["path",{d:"M20 6V4a2 2 0 1 0-4 0v2"}],["rect",{width:"8",height:"5",x:"14",y:"6",rx:"1"}]];var pH=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20"}],["path",{d:"M2 12h20"}]];var nH=[["path",{d:"M12 13V2l8 4-8 4"}],["path",{d:"M20.561 10.222a9 9 0 1 1-12.55-5.29"}],["path",{d:"M8.002 9.997a5 5 0 1 0 8.9 2.02"}]];var iH=[["path",{d:"M2 21V3"}],["path",{d:"M2 5h18a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2.26"}],["path",{d:"M7 17v3a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1v-3"}],["circle",{cx:"16",cy:"11",r:"2"}],["circle",{cx:"8",cy:"11",r:"2"}]];var lH=[["path",{d:"M21.42 10.922a1 1 0 0 0-.019-1.838L12.83 5.18a2 2 0 0 0-1.66 0L2.6 9.08a1 1 0 0 0 0 1.832l8.57 3.908a2 2 0 0 0 1.66 0z"}],["path",{d:"M22 10v6"}],["path",{d:"M6 12.5V16a6 3 0 0 0 12 0v-3.5"}]];var sH=[["path",{d:"M22 5V2l-5.89 5.89"}],["circle",{cx:"16.6",cy:"15.89",r:"3"}],["circle",{cx:"8.11",cy:"7.4",r:"3"}],["circle",{cx:"12.35",cy:"11.65",r:"3"}],["circle",{cx:"13.91",cy:"5.85",r:"3"}],["circle",{cx:"18.15",cy:"10.09",r:"3"}],["circle",{cx:"6.56",cy:"13.2",r:"3"}],["circle",{cx:"10.8",cy:"17.44",r:"3"}],["circle",{cx:"5",cy:"19",r:"3"}]];var I6=[["path",{d:"M12 3v17a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6a1 1 0 0 1-1 1H3"}],["path",{d:"m16 19 2 2 4-4"}]];var z6=[["path",{d:"M12 3v17a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6a1 1 0 0 1-1 1H3"}],["path",{d:"M16 19h6"}],["path",{d:"M19 22v-6"}]];var N6=[["path",{d:"M12 3v17a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6a1 1 0 0 1-1 1H3"}],["path",{d:"m16 16 5 5"}],["path",{d:"m16 21 5-5"}]];var F6=[["path",{d:"M12 3v18"}],["path",{d:"M3 12h18"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]];var rH=[["path",{d:"M15 3v18"}],["path",{d:"M3 12h18"}],["path",{d:"M9 3v18"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]];var N5=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 9h18"}],["path",{d:"M3 15h18"}],["path",{d:"M9 3v18"}],["path",{d:"M15 3v18"}]];var aH=[["circle",{cx:"12",cy:"9",r:"1"}],["circle",{cx:"19",cy:"9",r:"1"}],["circle",{cx:"5",cy:"9",r:"1"}],["circle",{cx:"12",cy:"15",r:"1"}],["circle",{cx:"19",cy:"15",r:"1"}],["circle",{cx:"5",cy:"15",r:"1"}]];var tH=[["circle",{cx:"9",cy:"12",r:"1"}],["circle",{cx:"9",cy:"5",r:"1"}],["circle",{cx:"9",cy:"19",r:"1"}],["circle",{cx:"15",cy:"12",r:"1"}],["circle",{cx:"15",cy:"5",r:"1"}],["circle",{cx:"15",cy:"19",r:"1"}]];var oH=[["circle",{cx:"12",cy:"5",r:"1"}],["circle",{cx:"19",cy:"5",r:"1"}],["circle",{cx:"5",cy:"5",r:"1"}],["circle",{cx:"12",cy:"12",r:"1"}],["circle",{cx:"19",cy:"12",r:"1"}],["circle",{cx:"5",cy:"12",r:"1"}],["circle",{cx:"12",cy:"19",r:"1"}],["circle",{cx:"19",cy:"19",r:"1"}],["circle",{cx:"5",cy:"19",r:"1"}]];var eH=[["path",{d:"M3 7V5c0-1.1.9-2 2-2h2"}],["path",{d:"M17 3h2c1.1 0 2 .9 2 2v2"}],["path",{d:"M21 17v2c0 1.1-.9 2-2 2h-2"}],["path",{d:"M7 21H5c-1.1 0-2-.9-2-2v-2"}],["rect",{width:"7",height:"5",x:"7",y:"7",rx:"1"}],["rect",{width:"7",height:"5",x:"10",y:"12",rx:"1"}]];var ZD=[["path",{d:"m11.9 12.1 4.514-4.514"}],["path",{d:"M20.1 2.3a1 1 0 0 0-1.4 0l-1.114 1.114A2 2 0 0 0 17 4.828v1.344a2 2 0 0 1-.586 1.414A2 2 0 0 1 17.828 7h1.344a2 2 0 0 0 1.414-.586L21.7 5.3a1 1 0 0 0 0-1.4z"}],["path",{d:"m6 16 2 2"}],["path",{d:"M8.23 9.85A3 3 0 0 1 11 8a5 5 0 0 1 5 5 3 3 0 0 1-1.85 2.77l-.92.38A2 2 0 0 0 12 18a4 4 0 0 1-4 4 6 6 0 0 1-6-6 4 4 0 0 1 4-4 2 2 0 0 0 1.85-1.23z"}]];var JD=[["path",{d:"M13.144 21.144A7.274 10.445 45 1 0 2.856 10.856"}],["path",{d:"M13.144 21.144A7.274 4.365 45 0 0 2.856 10.856a7.274 4.365 45 0 0 10.288 10.288"}],["path",{d:"M16.565 10.435 18.6 8.4a2.501 2.501 0 1 0 1.65-4.65 2.5 2.5 0 1 0-4.66 1.66l-2.024 2.025"}],["path",{d:"m8.5 16.5-1-1"}]];var KD=[["path",{d:"M12 16H4a2 2 0 1 1 0-4h16a2 2 0 1 1 0 4h-4.25"}],["path",{d:"M5 12a2 2 0 0 1-2-2 9 7 0 0 1 18 0 2 2 0 0 1-2 2"}],["path",{d:"M5 16a2 2 0 0 0-2 2 3 3 0 0 0 3 3h12a3 3 0 0 0 3-3 2 2 0 0 0-2-2q0 0 0 0"}],["path",{d:"m6.67 12 6.13 4.6a2 2 0 0 0 2.8-.4l3.15-4.2"}]];var YD=[["path",{d:"m15 12-9.373 9.373a1 1 0 0 1-3.001-3L12 9"}],["path",{d:"m18 15 4-4"}],["path",{d:"m21.5 11.5-1.914-1.914A2 2 0 0 1 19 8.172v-.344a2 2 0 0 0-.586-1.414l-1.657-1.657A6 6 0 0 0 12.516 3H9l1.243 1.243A6 6 0 0 1 12 8.485V10l2 2h1.172a2 2 0 0 1 1.414.586L18.5 14.5"}]];var XD=[["path",{d:"M11 15h2a2 2 0 1 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 17"}],["path",{d:"m7 21 1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a2 2 0 0 0-2.75-2.91l-4.2 3.9"}],["path",{d:"m2 16 6 6"}],["circle",{cx:"16",cy:"9",r:"2.9"}],["circle",{cx:"6",cy:"5",r:"3"}]];var WD=[["path",{d:"M12.035 17.012a3 3 0 0 0-3-3l-.311-.002a.72.72 0 0 1-.505-1.229l1.195-1.195A2 2 0 0 1 10.828 11H12a2 2 0 0 0 0-4H9.243a3 3 0 0 0-2.122.879l-2.707 2.707A4.83 4.83 0 0 0 3 14a8 8 0 0 0 8 8h2a8 8 0 0 0 8-8V7a2 2 0 1 0-4 0v2a2 2 0 1 0 4 0"}],["path",{d:"M13.888 9.662A2 2 0 0 0 17 8V5A2 2 0 1 0 13 5"}],["path",{d:"M9 5A2 2 0 1 0 5 5V10"}],["path",{d:"M9 7V4A2 2 0 1 1 13 4V7.268"}]];var QD=[["path",{d:"M11 14h2a2 2 0 0 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 16"}],["path",{d:"m14.45 13.39 5.05-4.694C20.196 8 21 6.85 21 5.75a2.75 2.75 0 0 0-4.797-1.837.276.276 0 0 1-.406 0A2.75 2.75 0 0 0 11 5.75c0 1.2.802 2.248 1.5 2.946L16 11.95"}],["path",{d:"m2 15 6 6"}],["path",{d:"m7 20 1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a1 1 0 0 0-2.75-2.91"}]];var H6=[["path",{d:"M18 11.5V9a2 2 0 0 0-2-2a2 2 0 0 0-2 2v1.4"}],["path",{d:"M14 10V8a2 2 0 0 0-2-2a2 2 0 0 0-2 2v2"}],["path",{d:"M10 9.9V9a2 2 0 0 0-2-2a2 2 0 0 0-2 2v5"}],["path",{d:"M6 14a2 2 0 0 0-2-2a2 2 0 0 0-2 2"}],["path",{d:"M18 11a2 2 0 1 1 4 0v3a8 8 0 0 1-8 8h-4a8 8 0 0 1-8-8 2 2 0 1 1 4 0"}]];var D6=[["path",{d:"M11 12h2a2 2 0 1 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 14"}],["path",{d:"m7 18 1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a2 2 0 0 0-2.75-2.91l-4.2 3.9"}],["path",{d:"m2 13 6 6"}]];var VD=[["path",{d:"M18 12.5V10a2 2 0 0 0-2-2a2 2 0 0 0-2 2v1.4"}],["path",{d:"M14 11V9a2 2 0 1 0-4 0v2"}],["path",{d:"M10 10.5V5a2 2 0 1 0-4 0v9"}],["path",{d:"m7 15-1.76-1.76a2 2 0 0 0-2.83 2.82l3.6 3.6C7.5 21.14 9.2 22 12 22h2a8 8 0 0 0 8-8V7a2 2 0 1 0-4 0v5"}]];var GD=[["path",{d:"M12 3V2"}],["path",{d:"m15.4 17.4 3.2-2.8a2 2 0 1 1 2.8 2.9l-3.6 3.3c-.7.8-1.7 1.2-2.8 1.2h-4c-1.1 0-2.1-.4-2.8-1.2l-1.302-1.464A1 1 0 0 0 6.151 19H5"}],["path",{d:"M2 14h12a2 2 0 0 1 0 4h-2"}],["path",{d:"M4 10h16"}],["path",{d:"M5 10a7 7 0 0 1 14 0"}],["path",{d:"M5 14v6a1 1 0 0 1-1 1H2"}]];var ID=[["path",{d:"M18 11V6a2 2 0 0 0-2-2a2 2 0 0 0-2 2"}],["path",{d:"M14 10V4a2 2 0 0 0-2-2a2 2 0 0 0-2 2v2"}],["path",{d:"M10 10.5V6a2 2 0 0 0-2-2a2 2 0 0 0-2 2v8"}],["path",{d:"M18 8a2 2 0 1 1 4 0v6a8 8 0 0 1-8 8h-2c-2.8 0-4.5-.86-5.99-2.34l-3.6-3.6a2 2 0 0 1 2.83-2.82L7 15"}]];var zD=[["path",{d:"M2.048 18.566A2 2 0 0 0 4 21h16a2 2 0 0 0 1.952-2.434l-2-9A2 2 0 0 0 18 8H6a2 2 0 0 0-1.952 1.566z"}],["path",{d:"M8 11V6a4 4 0 0 1 8 0v5"}]];var ND=[["path",{d:"m11 17 2 2a1 1 0 1 0 3-3"}],["path",{d:"m14 14 2.5 2.5a1 1 0 1 0 3-3l-3.88-3.88a3 3 0 0 0-4.24 0l-.88.88a1 1 0 1 1-3-3l2.81-2.81a5.79 5.79 0 0 1 7.06-.87l.47.28a2 2 0 0 0 1.42.25L21 4"}],["path",{d:"m21 3 1 11h-2"}],["path",{d:"M3 3 2 14l6.5 6.5a1 1 0 1 0 3-3"}],["path",{d:"M3 4h8"}]];var FD=[["path",{d:"M12 2v8"}],["path",{d:"m16 6-4 4-4-4"}],["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2"}],["path",{d:"M6 18h.01"}],["path",{d:"M10 18h.01"}]];var HD=[["path",{d:"m16 6-4-4-4 4"}],["path",{d:"M12 2v8"}],["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2"}],["path",{d:"M6 18h.01"}],["path",{d:"M10 18h.01"}]];var DD=[["line",{x1:"22",x2:"2",y1:"12",y2:"12"}],["path",{d:"M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"}],["line",{x1:"6",x2:"6.01",y1:"16",y2:"16"}],["line",{x1:"10",x2:"10.01",y1:"16",y2:"16"}]];var BD=[["path",{d:"M10 10V5a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v5"}],["path",{d:"M14 6a6 6 0 0 1 6 6v3"}],["path",{d:"M4 15v-3a6 6 0 0 1 6-6"}],["rect",{x:"2",y:"15",width:"20",height:"4",rx:"1"}]];var OD=[["line",{x1:"4",x2:"20",y1:"9",y2:"9"}],["line",{x1:"4",x2:"20",y1:"15",y2:"15"}],["line",{x1:"10",x2:"8",y1:"3",y2:"21"}],["line",{x1:"16",x2:"14",y1:"3",y2:"21"}]];var TD=[["path",{d:"M14 18a2 2 0 0 0-4 0"}],["path",{d:"m19 11-2.11-6.657a2 2 0 0 0-2.752-1.148l-1.276.61A2 2 0 0 1 12 4H8.5a2 2 0 0 0-1.925 1.456L5 11"}],["path",{d:"M2 11h20"}],["circle",{cx:"17",cy:"18",r:"3"}],["circle",{cx:"7",cy:"18",r:"3"}]];var PD=[["path",{d:"m5.2 6.2 1.4 1.4"}],["path",{d:"M2 13h2"}],["path",{d:"M20 13h2"}],["path",{d:"m17.4 7.6 1.4-1.4"}],["path",{d:"M22 17H2"}],["path",{d:"M22 21H2"}],["path",{d:"M16 13a4 4 0 0 0-8 0"}],["path",{d:"M12 5V2.5"}]];var SD=[["path",{d:"M22 9a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h1l2 2h12l2-2h1a1 1 0 0 0 1-1Z"}],["path",{d:"M7.5 12h9"}]];var AD=[["path",{d:"M4 12h8"}],["path",{d:"M4 18V6"}],["path",{d:"M12 18V6"}],["path",{d:"m17 12 3-2v8"}]];var qD=[["path",{d:"M4 12h8"}],["path",{d:"M4 18V6"}],["path",{d:"M12 18V6"}],["path",{d:"M21 18h-4c0-4 4-3 4-6 0-1.5-2-2.5-4-1"}]];var ED=[["path",{d:"M4 12h8"}],["path",{d:"M4 18V6"}],["path",{d:"M12 18V6"}],["path",{d:"M17.5 10.5c1.7-1 3.5 0 3.5 1.5a2 2 0 0 1-2 2"}],["path",{d:"M17 17.5c2 1.5 4 .3 4-1.5a2 2 0 0 0-2-2"}]];var CD=[["path",{d:"M12 18V6"}],["path",{d:"M17 10v3a1 1 0 0 0 1 1h3"}],["path",{d:"M21 10v8"}],["path",{d:"M4 12h8"}],["path",{d:"M4 18V6"}]];var xD=[["path",{d:"M4 12h8"}],["path",{d:"M4 18V6"}],["path",{d:"M12 18V6"}],["path",{d:"M17 13v-3h4"}],["path",{d:"M17 17.7c.4.2.8.3 1.3.3 1.5 0 2.7-1.1 2.7-2.5S19.8 13 18.3 13H17"}]];var wD=[["path",{d:"M4 12h8"}],["path",{d:"M4 18V6"}],["path",{d:"M12 18V6"}],["circle",{cx:"19",cy:"16",r:"2"}],["path",{d:"M20 10c-2 2-3 3.5-3 6"}]];var UD=[["path",{d:"M6 12h12"}],["path",{d:"M6 20V4"}],["path",{d:"M18 20V4"}]];var MD=[["path",{d:"M21 14h-1.343"}],["path",{d:"M9.128 3.47A9 9 0 0 1 21 12v3.343"}],["path",{d:"m2 2 20 20"}],["path",{d:"M20.414 20.414A2 2 0 0 1 19 21h-1a2 2 0 0 1-2-2v-3"}],["path",{d:"M3 14h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-7a9 9 0 0 1 2.636-6.364"}]];var RD=[["path",{d:"M3 14h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-7a9 9 0 0 1 18 0v7a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3"}]];var jD=[["path",{d:"M3 11h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-5Zm0 0a9 9 0 1 1 18 0m0 0v5a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3Z"}],["path",{d:"M21 16v2a4 4 0 0 1-4 4h-5"}]];var LD=[["path",{d:"M12.409 5.824c-.702.792-1.15 1.496-1.415 2.166l2.153 2.156a.5.5 0 0 1 0 .707l-2.293 2.293a.5.5 0 0 0 0 .707L12 15"}],["path",{d:"M13.508 20.313a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5a5.5 5.5 0 0 1 9.591-3.677.6.6 0 0 0 .818.001A5.5 5.5 0 0 1 22 9.5c0 2.29-1.5 4-3 5.5z"}]];var yD=[["path",{d:"M19.414 14.414C21 12.828 22 11.5 22 9.5a5.5 5.5 0 0 0-9.591-3.676.6.6 0 0 1-.818.001A5.5 5.5 0 0 0 2 9.5c0 2.3 1.5 4 3 5.5l5.535 5.362a2 2 0 0 0 2.879.052 2.12 2.12 0 0 0-.004-3 2.124 2.124 0 1 0 3-3 2.124 2.124 0 0 0 3.004 0 2 2 0 0 0 0-2.828l-1.881-1.882a2.41 2.41 0 0 0-3.409 0l-1.71 1.71a2 2 0 0 1-2.828 0 2 2 0 0 1 0-2.828l2.823-2.762"}]];var fD=[["path",{d:"m14.876 18.99-1.368 1.323a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5a5.5 5.5 0 0 1 9.591-3.676.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5a5.2 5.2 0 0 1-.244 1.572"}],["path",{d:"M15 15h6"}]];var kD=[["path",{d:"M10.5 4.893a5.5 5.5 0 0 1 1.091.931.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5c0 1.872-1.002 3.356-2.187 4.655"}],["path",{d:"m16.967 16.967-3.459 3.346a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5a5.5 5.5 0 0 1 2.747-4.761"}],["path",{d:"m2 2 20 20"}]];var bD=[["path",{d:"m14.479 19.374-.971.939a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5a5.5 5.5 0 0 1 9.591-3.676.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5a5.2 5.2 0 0 1-.219 1.49"}],["path",{d:"M15 15h6"}],["path",{d:"M18 12v6"}]];var hD=[["path",{d:"M2 9.5a5.5 5.5 0 0 1 9.591-3.676.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5c0 2.29-1.5 4-3 5.5l-5.492 5.313a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5"}],["path",{d:"M3.22 13H9.5l.5-1 2 4.5 2-7 1.5 3.5h5.27"}]];var vD=[["path",{d:"M2 9.5a5.5 5.5 0 0 1 9.591-3.676.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5c0 2.29-1.5 4-3 5.5l-5.492 5.313a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5"}]];var $D=[["path",{d:"M11 8c2-3-2-3 0-6"}],["path",{d:"M15.5 8c2-3-2-3 0-6"}],["path",{d:"M6 10h.01"}],["path",{d:"M6 14h.01"}],["path",{d:"M10 16v-4"}],["path",{d:"M14 16v-4"}],["path",{d:"M18 16v-4"}],["path",{d:"M20 6a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3"}],["path",{d:"M5 20v2"}],["path",{d:"M19 20v2"}]];var gD=[["path",{d:"m9 11-6 6v3h9l3-3"}],["path",{d:"m22 12-4.6 4.6a2 2 0 0 1-2.8 0l-5.2-5.2a2 2 0 0 1 0-2.8L14 4"}]];var _D=[["path",{d:"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"}]];var mD=[["path",{d:"M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8"}],["path",{d:"M3 3v5h5"}],["path",{d:"M12 7v5l4 2"}]];var uD=[["path",{d:"M10.82 16.12c1.69.6 3.91.79 5.18.85.28.01.53-.09.7-.27"}],["path",{d:"M11.14 20.57c.52.24 2.44 1.12 4.08 1.37.46.06.86-.25.9-.71.12-1.52-.3-3.43-.5-4.28"}],["path",{d:"M16.13 21.05c1.65.63 3.68.84 4.87.91a.9.9 0 0 0 .7-.26"}],["path",{d:"M17.99 5.52a20.83 20.83 0 0 1 3.15 4.5.8.8 0 0 1-.68 1.13c-1.17.1-2.5.02-3.9-.25"}],["path",{d:"M20.57 11.14c.24.52 1.12 2.44 1.37 4.08.04.3-.08.59-.31.75"}],["path",{d:"M4.93 4.93a10 10 0 0 0-.67 13.4c.35.43.96.4 1.17-.12.69-1.71 1.07-5.07 1.07-6.71 1.34.45 3.1.9 4.88.62a.85.85 0 0 0 .48-.24"}],["path",{d:"M5.52 17.99c1.05.95 2.91 2.42 4.5 3.15a.8.8 0 0 0 1.13-.68c.2-2.34-.33-5.3-1.57-8.28"}],["path",{d:"M8.35 2.68a10 10 0 0 1 9.98 1.58c.43.35.4.96-.12 1.17-1.5.6-4.3.98-6.07 1.05"}],["path",{d:"m2 2 20 20"}]];var dD=[["path",{d:"M10.82 16.12c1.69.6 3.91.79 5.18.85.55.03 1-.42.97-.97-.06-1.27-.26-3.5-.85-5.18"}],["path",{d:"M11.5 6.5c1.64 0 5-.38 6.71-1.07.52-.2.55-.82.12-1.17A10 10 0 0 0 4.26 18.33c.35.43.96.4 1.17-.12.69-1.71 1.07-5.07 1.07-6.71 1.34.45 3.1.9 4.88.62a.88.88 0 0 0 .73-.74c.3-2.14-.15-3.5-.61-4.88"}],["path",{d:"M15.62 16.95c.2.85.62 2.76.5 4.28a.77.77 0 0 1-.9.7 16.64 16.64 0 0 1-4.08-1.36"}],["path",{d:"M16.13 21.05c1.65.63 3.68.84 4.87.91a.9.9 0 0 0 .96-.96 17.68 17.68 0 0 0-.9-4.87"}],["path",{d:"M16.94 15.62c.86.2 2.77.62 4.29.5a.77.77 0 0 0 .7-.9 16.64 16.64 0 0 0-1.36-4.08"}],["path",{d:"M17.99 5.52a20.82 20.82 0 0 1 3.15 4.5.8.8 0 0 1-.68 1.13c-2.33.2-5.3-.32-8.27-1.57"}],["path",{d:"M4.93 4.93 3 3a.7.7 0 0 1 0-1"}],["path",{d:"M9.58 12.18c1.24 2.98 1.77 5.95 1.57 8.28a.8.8 0 0 1-1.13.68 20.82 20.82 0 0 1-4.5-3.15"}]];var cD=[["path",{d:"M12 7v4"}],["path",{d:"M14 21v-3a2 2 0 0 0-4 0v3"}],["path",{d:"M14 9h-4"}],["path",{d:"M18 11h2a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-9a2 2 0 0 1 2-2h2"}],["path",{d:"M18 21V5a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16"}]];var pD=[["path",{d:"M10 22v-6.57"}],["path",{d:"M12 11h.01"}],["path",{d:"M12 7h.01"}],["path",{d:"M14 15.43V22"}],["path",{d:"M15 16a5 5 0 0 0-6 0"}],["path",{d:"M16 11h.01"}],["path",{d:"M16 7h.01"}],["path",{d:"M8 11h.01"}],["path",{d:"M8 7h.01"}],["rect",{x:"4",y:"2",width:"16",height:"20",rx:"2"}]];var nD=[["path",{d:"M5 22h14"}],["path",{d:"M5 2h14"}],["path",{d:"M17 22v-4.172a2 2 0 0 0-.586-1.414L12 12l-4.414 4.414A2 2 0 0 0 7 17.828V22"}],["path",{d:"M7 2v4.172a2 2 0 0 0 .586 1.414L12 12l4.414-4.414A2 2 0 0 0 17 6.172V2"}]];var iD=[["path",{d:"M10 12V8.964"}],["path",{d:"M14 12V8.964"}],["path",{d:"M15 12a1 1 0 0 1 1 1v2a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2v-2a1 1 0 0 1 1-1z"}],["path",{d:"M8.5 21H5a2 2 0 0 1-2-2v-9a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2h-5a2 2 0 0 1-2-2v-2"}]];var lD=[["path",{d:"M8.62 13.8A2.25 2.25 0 1 1 12 10.836a2.25 2.25 0 1 1 3.38 2.966l-2.626 2.856a.998.998 0 0 1-1.507 0z"}],["path",{d:"M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"}]];var sD=[["path",{d:"M9.5 13.866a4 4 0 0 1 5 .01"}],["path",{d:"M12 17h.01"}],["path",{d:"M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"}],["path",{d:"M7 10.754a8 8 0 0 1 10 0"}]];var rD=[["path",{d:"M12.35 21H5a2 2 0 0 1-2-2v-9a2 2 0 0 1 .71-1.53l7-6a2 2 0 0 1 2.58 0l7 6A2 2 0 0 1 21 10v2.35"}],["path",{d:"M14.8 12.4A1 1 0 0 0 14 12h-4a1 1 0 0 0-1 1v8"}],["path",{d:"M15 18h6"}],["path",{d:"M18 15v6"}]];var B6=[["path",{d:"M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8"}],["path",{d:"M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"}]];var O6=[["path",{d:"M12 17c5 0 8-2.69 8-6H4c0 3.31 3 6 8 6m-4 4h8m-4-3v3M5.14 11a3.5 3.5 0 1 1 6.71 0"}],["path",{d:"M12.14 11a3.5 3.5 0 1 1 6.71 0"}],["path",{d:"M15.5 6.5a3.5 3.5 0 1 0-7 0"}]];var T6=[["path",{d:"m7 11 4.08 10.35a1 1 0 0 0 1.84 0L17 11"}],["path",{d:"M17 7A5 5 0 0 0 7 7"}],["path",{d:"M17 7a2 2 0 0 1 0 4H7a2 2 0 0 1 0-4"}]];var aD=[["path",{d:"M16 10h2"}],["path",{d:"M16 14h2"}],["path",{d:"M6.17 15a3 3 0 0 1 5.66 0"}],["circle",{cx:"9",cy:"11",r:"2"}],["rect",{x:"2",y:"5",width:"20",height:"14",rx:"2"}]];var tD=[["path",{d:"M13.5 8h-3"}],["path",{d:"m15 2-1 2h3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h3"}],["path",{d:"M16.899 22A5 5 0 0 0 7.1 22"}],["path",{d:"m9 2 3 6"}],["circle",{cx:"12",cy:"15",r:"3"}]];var oD=[["path",{d:"M10.3 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10l-3.1-3.1a2 2 0 0 0-2.814.014L6 21"}],["path",{d:"m14 19 3 3v-5.5"}],["path",{d:"m17 22 3-3"}],["circle",{cx:"9",cy:"9",r:"2"}]];var eD=[["path",{d:"M21 9v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7"}],["line",{x1:"16",x2:"22",y1:"5",y2:"5"}],["circle",{cx:"9",cy:"9",r:"2"}],["path",{d:"m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21"}]];var ZB=[["line",{x1:"2",x2:"22",y1:"2",y2:"22"}],["path",{d:"M10.41 10.41a2 2 0 1 1-2.83-2.83"}],["line",{x1:"13.5",x2:"6",y1:"13.5",y2:"21"}],["line",{x1:"18",x2:"21",y1:"12",y2:"15"}],["path",{d:"M3.59 3.59A1.99 1.99 0 0 0 3 5v14a2 2 0 0 0 2 2h14c.55 0 1.052-.22 1.41-.59"}],["path",{d:"M21 15V5a2 2 0 0 0-2-2H9"}]];var JB=[["path",{d:"M15 15.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997a1 1 0 0 1-1.517-.86z"}],["path",{d:"M21 12.17V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6"}],["path",{d:"m6 21 5-5"}],["circle",{cx:"9",cy:"9",r:"2"}]];var KB=[["path",{d:"M16 5h6"}],["path",{d:"M19 2v6"}],["path",{d:"M21 11.5V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7.5"}],["path",{d:"m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21"}],["circle",{cx:"9",cy:"9",r:"2"}]];var YB=[["path",{d:"M10.3 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10l-3.1-3.1a2 2 0 0 0-2.814.014L6 21"}],["path",{d:"m14 19.5 3-3 3 3"}],["path",{d:"M17 22v-5.5"}],["circle",{cx:"9",cy:"9",r:"2"}]];var XB=[["path",{d:"M16 3h5v5"}],["path",{d:"M17 21h2a2 2 0 0 0 2-2"}],["path",{d:"M21 12v3"}],["path",{d:"m21 3-5 5"}],["path",{d:"M3 7V5a2 2 0 0 1 2-2"}],["path",{d:"m5 21 4.144-4.144a1.21 1.21 0 0 1 1.712 0L13 19"}],["path",{d:"M9 3h3"}],["rect",{x:"3",y:"11",width:"10",height:"10",rx:"1"}]];var WB=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["circle",{cx:"9",cy:"9",r:"2"}],["path",{d:"m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21"}]];var QB=[["path",{d:"m22 11-1.296-1.296a2.4 2.4 0 0 0-3.408 0L11 16"}],["path",{d:"M4 8a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2"}],["circle",{cx:"13",cy:"7",r:"1",fill:"currentColor"}],["rect",{x:"8",y:"2",width:"14",height:"14",rx:"2"}]];var VB=[["path",{d:"M12 3v12"}],["path",{d:"m8 11 4 4 4-4"}],["path",{d:"M8 5H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-4"}]];var GB=[["polyline",{points:"22 12 16 12 14 15 10 15 8 12 2 12"}],["path",{d:"M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"}]];var IB=[["path",{d:"M6 3h12"}],["path",{d:"M6 8h12"}],["path",{d:"m6 13 8.5 8"}],["path",{d:"M6 13h3"}],["path",{d:"M9 13c6.667 0 6.667-10 0-10"}]];var zB=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 16v-4"}],["path",{d:"M12 8h.01"}]];var NB=[["path",{d:"M6 16c5 0 7-8 12-8a4 4 0 0 1 0 8c-5 0-7-8-12-8a4 4 0 1 0 0 8"}]];var FB=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M7 7h.01"}],["path",{d:"M17 7h.01"}],["path",{d:"M7 17h.01"}],["path",{d:"M17 17h.01"}]];var HB=[["line",{x1:"19",x2:"10",y1:"4",y2:"4"}],["line",{x1:"14",x2:"5",y1:"20",y2:"20"}],["line",{x1:"15",x2:"9",y1:"4",y2:"20"}]];var DB=[["path",{d:"m16 14 4 4-4 4"}],["path",{d:"M20 10a8 8 0 1 0-8 8h8"}]];var BB=[["rect",{width:"20",height:"20",x:"2",y:"2",rx:"5",ry:"5"}],["path",{d:"M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"}],["line",{x1:"17.5",x2:"17.51",y1:"6.5",y2:"6.5"}]];var OB=[["path",{d:"M4 10a8 8 0 1 1 8 8H4"}],["path",{d:"m8 22-4-4 4-4"}]];var TB=[["path",{d:"M12 9.5V21m0-11.5L6 3m6 6.5L18 3"}],["path",{d:"M6 15h12"}],["path",{d:"M6 11h12"}]];var PB=[["path",{d:"M21 17a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-2Z"}],["path",{d:"M6 15v-2"}],["path",{d:"M12 15V9"}],["circle",{cx:"12",cy:"6",r:"3"}]];var SB=[["path",{d:"M5 3v14"}],["path",{d:"M12 3v8"}],["path",{d:"M19 3v18"}]];var AB=[["path",{d:"M18 17a1 1 0 0 0-1 1v1a2 2 0 1 0 2-2z"}],["path",{d:"M20.97 3.61a.45.45 0 0 0-.58-.58C10.2 6.6 6.6 10.2 3.03 20.39a.45.45 0 0 0 .58.58C13.8 17.4 17.4 13.8 20.97 3.61"}],["path",{d:"m6.707 6.707 10.586 10.586"}],["path",{d:"M7 5a2 2 0 1 0-2 2h1a1 1 0 0 0 1-1z"}]];var qB=[["path",{d:"M2.586 17.414A2 2 0 0 0 2 18.828V21a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h1a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h.172a2 2 0 0 0 1.414-.586l.814-.814a6.5 6.5 0 1 0-4-4z"}],["circle",{cx:"16.5",cy:"7.5",r:".5",fill:"currentColor"}]];var EB=[["path",{d:"M12.4 2.7a2.5 2.5 0 0 1 3.4 0l5.5 5.5a2.5 2.5 0 0 1 0 3.4l-3.7 3.7a2.5 2.5 0 0 1-3.4 0L8.7 9.8a2.5 2.5 0 0 1 0-3.4z"}],["path",{d:"m14 7 3 3"}],["path",{d:"m9.4 10.6-6.814 6.814A2 2 0 0 0 2 18.828V21a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h1a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h.172a2 2 0 0 0 1.414-.586l.814-.814"}]];var CB=[["path",{d:"m15.5 7.5 2.3 2.3a1 1 0 0 0 1.4 0l2.1-2.1a1 1 0 0 0 0-1.4L19 4"}],["path",{d:"m21 2-9.6 9.6"}],["circle",{cx:"7.5",cy:"15.5",r:"5.5"}]];var xB=[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2"}],["path",{d:"M6 8h4"}],["path",{d:"M14 8h.01"}],["path",{d:"M18 8h.01"}],["path",{d:"M2 12h20"}],["path",{d:"M6 12v4"}],["path",{d:"M10 12v4"}],["path",{d:"M14 12v4"}],["path",{d:"M18 12v4"}]];var wB=[["path",{d:"M 20 4 A2 2 0 0 1 22 6"}],["path",{d:"M 22 6 L 22 16.41"}],["path",{d:"M 7 16 L 16 16"}],["path",{d:"M 9.69 4 L 20 4"}],["path",{d:"M14 8h.01"}],["path",{d:"M18 8h.01"}],["path",{d:"m2 2 20 20"}],["path",{d:"M20 20H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2"}],["path",{d:"M6 8h.01"}],["path",{d:"M8 12h.01"}]];var UB=[["path",{d:"M10 8h.01"}],["path",{d:"M12 12h.01"}],["path",{d:"M14 8h.01"}],["path",{d:"M16 12h.01"}],["path",{d:"M18 8h.01"}],["path",{d:"M6 8h.01"}],["path",{d:"M7 16h10"}],["path",{d:"M8 12h.01"}],["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2"}]];var MB=[["path",{d:"M12 2v5"}],["path",{d:"M14.829 15.998a3 3 0 1 1-5.658 0"}],["path",{d:"M20.92 14.606A1 1 0 0 1 20 16H4a1 1 0 0 1-.92-1.394l3-7A1 1 0 0 1 7 7h10a1 1 0 0 1 .92.606z"}]];var RB=[["path",{d:"M10.293 2.293a1 1 0 0 1 1.414 0l2.5 2.5 5.994 1.227a1 1 0 0 1 .506 1.687l-7 7a1 1 0 0 1-1.687-.506l-1.227-5.994-2.5-2.5a1 1 0 0 1 0-1.414z"}],["path",{d:"m14.207 4.793-3.414 3.414"}],["path",{d:"M3 20a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1z"}],["path",{d:"m9.086 6.5-4.793 4.793a1 1 0 0 0-.18 1.17L7 18"}]];var jB=[["path",{d:"M12 10v12"}],["path",{d:"M17.929 7.629A1 1 0 0 1 17 9H7a1 1 0 0 1-.928-1.371l2-5A1 1 0 0 1 9 2h6a1 1 0 0 1 .928.629z"}],["path",{d:"M9 22h6"}]];var LB=[["path",{d:"M19.929 18.629A1 1 0 0 1 19 20H9a1 1 0 0 1-.928-1.371l2-5A1 1 0 0 1 11 13h6a1 1 0 0 1 .928.629z"}],["path",{d:"M6 3a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H5a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1z"}],["path",{d:"M8 6h4a2 2 0 0 1 2 2v5"}]];var yB=[["path",{d:"M19.929 9.629A1 1 0 0 1 19 11H9a1 1 0 0 1-.928-1.371l2-5A1 1 0 0 1 11 4h6a1 1 0 0 1 .928.629z"}],["path",{d:"M6 15a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H5a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1z"}],["path",{d:"M8 18h4a2 2 0 0 0 2-2v-5"}]];var fB=[["path",{d:"M12 12v6"}],["path",{d:"M4.077 10.615A1 1 0 0 0 5 12h14a1 1 0 0 0 .923-1.385l-3.077-7.384A2 2 0 0 0 15 2H9a2 2 0 0 0-1.846 1.23Z"}],["path",{d:"M8 20a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H9a1 1 0 0 1-1-1z"}]];var kB=[["path",{d:"m12 8 6-3-6-3v10"}],["path",{d:"m8 11.99-5.5 3.14a1 1 0 0 0 0 1.74l8.5 4.86a2 2 0 0 0 2 0l8.5-4.86a1 1 0 0 0 0-1.74L16 12"}],["path",{d:"m6.49 12.85 11.02 6.3"}],["path",{d:"M17.51 12.85 6.5 19.15"}]];var bB=[["path",{d:"M10 18v-7"}],["path",{d:"M11.12 2.198a2 2 0 0 1 1.76.006l7.866 3.847c.476.233.31.949-.22.949H3.474c-.53 0-.695-.716-.22-.949z"}],["path",{d:"M14 18v-7"}],["path",{d:"M18 18v-7"}],["path",{d:"M3 22h18"}],["path",{d:"M6 18v-7"}]];var hB=[["path",{d:"m5 8 6 6"}],["path",{d:"m4 14 6-6 2-3"}],["path",{d:"M2 5h12"}],["path",{d:"M7 2h1"}],["path",{d:"m22 22-5-10-5 10"}],["path",{d:"M14 18h6"}]];var vB=[["path",{d:"M2 20h20"}],["path",{d:"m9 10 2 2 4-4"}],["rect",{x:"3",y:"4",width:"18",height:"12",rx:"2"}]];var P6=[["rect",{width:"18",height:"12",x:"3",y:"4",rx:"2",ry:"2"}],["line",{x1:"2",x2:"22",y1:"20",y2:"20"}]];var $B=[["path",{d:"M18 5a2 2 0 0 1 2 2v8.526a2 2 0 0 0 .212.897l1.068 2.127a1 1 0 0 1-.9 1.45H3.62a1 1 0 0 1-.9-1.45l1.068-2.127A2 2 0 0 0 4 15.526V7a2 2 0 0 1 2-2z"}],["path",{d:"M20.054 15.987H3.946"}]];var gB=[["path",{d:"M7 22a5 5 0 0 1-2-4"}],["path",{d:"M7 16.93c.96.43 1.96.74 2.99.91"}],["path",{d:"M3.34 14A6.8 6.8 0 0 1 2 10c0-4.42 4.48-8 10-8s10 3.58 10 8a7.19 7.19 0 0 1-.33 2"}],["path",{d:"M5 18a2 2 0 1 0 0-4 2 2 0 0 0 0 4z"}],["path",{d:"M14.33 22h-.09a.35.35 0 0 1-.24-.32v-10a.34.34 0 0 1 .33-.34c.08 0 .15.03.21.08l7.34 6a.33.33 0 0 1-.21.59h-4.49l-2.57 3.85a.35.35 0 0 1-.28.14z"}]];var _B=[["path",{d:"M3.704 14.467A10 8 0 0 1 2 10a10 8 0 0 1 20 0 10 8 0 0 1-10 8 10 8 0 0 1-5.181-1.158"}],["path",{d:"M7 22a5 5 0 0 1-2-3.994"}],["circle",{cx:"5",cy:"16",r:"2"}]];var mB=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M18 13a6 6 0 0 1-6 5 6 6 0 0 1-6-5h12Z"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9"}]];var uB=[["path",{d:"M13 13.74a2 2 0 0 1-2 0L2.5 8.87a1 1 0 0 1 0-1.74L11 2.26a2 2 0 0 1 2 0l8.5 4.87a1 1 0 0 1 0 1.74z"}],["path",{d:"m20 14.285 1.5.845a1 1 0 0 1 0 1.74L13 21.74a2 2 0 0 1-2 0l-8.5-4.87a1 1 0 0 1 0-1.74l1.5-.845"}]];var S6=[["path",{d:"M12.83 2.18a2 2 0 0 0-1.66 0L2.6 6.08a1 1 0 0 0 0 1.83l8.58 3.91a2 2 0 0 0 1.66 0l8.58-3.9a1 1 0 0 0 0-1.83z"}],["path",{d:"M2 12a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 12"}],["path",{d:"M2 17a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 17"}]];var dB=[["rect",{width:"7",height:"9",x:"3",y:"3",rx:"1"}],["rect",{width:"7",height:"5",x:"14",y:"3",rx:"1"}],["rect",{width:"7",height:"9",x:"14",y:"12",rx:"1"}],["rect",{width:"7",height:"5",x:"3",y:"16",rx:"1"}]];var cB=[["rect",{width:"7",height:"7",x:"3",y:"3",rx:"1"}],["rect",{width:"7",height:"7",x:"14",y:"3",rx:"1"}],["rect",{width:"7",height:"7",x:"14",y:"14",rx:"1"}],["rect",{width:"7",height:"7",x:"3",y:"14",rx:"1"}]];var pB=[["rect",{width:"7",height:"7",x:"3",y:"3",rx:"1"}],["rect",{width:"7",height:"7",x:"3",y:"14",rx:"1"}],["path",{d:"M14 4h7"}],["path",{d:"M14 9h7"}],["path",{d:"M14 15h7"}],["path",{d:"M14 20h7"}]];var nB=[["rect",{width:"7",height:"18",x:"3",y:"3",rx:"1"}],["rect",{width:"7",height:"7",x:"14",y:"3",rx:"1"}],["rect",{width:"7",height:"7",x:"14",y:"14",rx:"1"}]];var iB=[["rect",{width:"18",height:"7",x:"3",y:"3",rx:"1"}],["rect",{width:"7",height:"7",x:"3",y:"14",rx:"1"}],["rect",{width:"7",height:"7",x:"14",y:"14",rx:"1"}]];var lB=[["rect",{width:"18",height:"7",x:"3",y:"3",rx:"1"}],["rect",{width:"9",height:"7",x:"3",y:"14",rx:"1"}],["rect",{width:"5",height:"7",x:"16",y:"14",rx:"1"}]];var sB=[["path",{d:"M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.5-4.78 10-10 10Z"}],["path",{d:"M2 21c0-3 1.85-5.36 5.08-6C9.5 14.52 12 13 13 12"}]];var rB=[["path",{d:"M2 22c1.25-.987 2.27-1.975 3.9-2.2a5.56 5.56 0 0 1 3.8 1.5 4 4 0 0 0 6.187-2.353 3.5 3.5 0 0 0 3.69-5.116A3.5 3.5 0 0 0 20.95 8 3.5 3.5 0 1 0 16 3.05a3.5 3.5 0 0 0-5.831 1.373 3.5 3.5 0 0 0-5.116 3.69 4 4 0 0 0-2.348 6.155C3.499 15.42 4.409 16.712 4.2 18.1 3.926 19.743 3.014 20.732 2 22"}],["path",{d:"M2 22 17 7"}]];var aB=[["path",{d:"M16 12h3a2 2 0 0 0 1.902-1.38l1.056-3.333A1 1 0 0 0 21 6H3a1 1 0 0 0-.958 1.287l1.056 3.334A2 2 0 0 0 5 12h3"}],["path",{d:"M18 6V3a1 1 0 0 0-1-1h-3"}],["rect",{width:"8",height:"12",x:"8",y:"10",rx:"1"}]];var tB=[["rect",{width:"8",height:"18",x:"3",y:"3",rx:"1"}],["path",{d:"M7 3v18"}],["path",{d:"M20.4 18.9c.2.5-.1 1.1-.6 1.3l-1.9.7c-.5.2-1.1-.1-1.3-.6L11.1 5.1c-.2-.5.1-1.1.6-1.3l1.9-.7c.5-.2 1.1.1 1.3.6Z"}]];var oB=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m4.93 4.93 4.24 4.24"}],["path",{d:"m14.83 9.17 4.24-4.24"}],["path",{d:"m14.83 14.83 4.24 4.24"}],["path",{d:"m9.17 14.83-4.24 4.24"}],["circle",{cx:"12",cy:"12",r:"4"}]];var eB=[["path",{d:"m16 6 4 14"}],["path",{d:"M12 6v14"}],["path",{d:"M8 8v12"}],["path",{d:"M4 4v16"}]];var ZO=[["path",{d:"M14 12h2v8"}],["path",{d:"M14 20h4"}],["path",{d:"M6 12h4"}],["path",{d:"M6 20h4"}],["path",{d:"M8 20V8a4 4 0 0 1 7.464-2"}]];var JO=[["path",{d:"M16.8 11.2c.8-.9 1.2-2 1.2-3.2a6 6 0 0 0-9.3-5"}],["path",{d:"m2 2 20 20"}],["path",{d:"M6.3 6.3a4.67 4.67 0 0 0 1.2 5.2c.7.7 1.3 1.5 1.5 2.5"}],["path",{d:"M9 18h6"}],["path",{d:"M10 22h4"}]];var KO=[["path",{d:"M15 14c.2-1 .7-1.7 1.5-2.5 1-.9 1.5-2.2 1.5-3.5A6 6 0 0 0 6 8c0 1 .2 2.2 1.5 3.5.7.7 1.3 1.5 1.5 2.5"}],["path",{d:"M9 18h6"}],["path",{d:"M10 22h4"}]];var YO=[["path",{d:"M7 3.5c5-2 7 2.5 3 4C1.5 10 2 15 5 16c5 2 9-10 14-7s.5 13.5-4 12c-5-2.5.5-11 6-2"}]];var XO=[["path",{d:"M9 17H7A5 5 0 0 1 7 7"}],["path",{d:"M15 7h2a5 5 0 0 1 4 8"}],["line",{x1:"8",x2:"12",y1:"12",y2:"12"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var WO=[["path",{d:"M9 17H7A5 5 0 0 1 7 7h2"}],["path",{d:"M15 7h2a5 5 0 1 1 0 10h-2"}],["line",{x1:"8",x2:"16",y1:"12",y2:"12"}]];var QO=[["path",{d:"M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"}],["path",{d:"M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"}]];var VO=[["path",{d:"M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"}],["rect",{width:"4",height:"12",x:"2",y:"9"}],["circle",{cx:"4",cy:"4",r:"2"}]];var GO=[["path",{d:"M16 5H3"}],["path",{d:"M16 12H3"}],["path",{d:"M11 19H3"}],["path",{d:"m15 18 2 2 4-4"}]];var IO=[["path",{d:"M13 5h8"}],["path",{d:"M13 12h8"}],["path",{d:"M13 19h8"}],["path",{d:"m3 17 2 2 4-4"}],["path",{d:"m3 7 2 2 4-4"}]];var zO=[["path",{d:"M3 5h8"}],["path",{d:"M3 12h8"}],["path",{d:"M3 19h8"}],["path",{d:"m15 5 3 3 3-3"}],["path",{d:"m15 19 3-3 3 3"}]];var NO=[["path",{d:"M3 5h8"}],["path",{d:"M3 12h8"}],["path",{d:"M3 19h8"}],["path",{d:"m15 8 3-3 3 3"}],["path",{d:"m15 16 3 3 3-3"}]];var FO=[["path",{d:"M10 5h11"}],["path",{d:"M10 12h11"}],["path",{d:"M10 19h11"}],["path",{d:"m3 10 3-3-3-3"}],["path",{d:"m3 20 3-3-3-3"}]];var HO=[["path",{d:"M16 5H3"}],["path",{d:"M16 12H3"}],["path",{d:"M9 19H3"}],["path",{d:"m16 16-3 3 3 3"}],["path",{d:"M21 5v12a2 2 0 0 1-2 2h-6"}]];var DO=[["path",{d:"M2 5h20"}],["path",{d:"M6 12h12"}],["path",{d:"M9 19h6"}]];var BO=[["path",{d:"M12 5H2"}],["path",{d:"M6 12h12"}],["path",{d:"M9 19h6"}],["path",{d:"M16 5h6"}],["path",{d:"M19 8V2"}]];var F5=[["path",{d:"M21 5H11"}],["path",{d:"M21 12H11"}],["path",{d:"M21 19H11"}],["path",{d:"m7 8-4 4 4 4"}]];var H5=[["path",{d:"M21 5H11"}],["path",{d:"M21 12H11"}],["path",{d:"M21 19H11"}],["path",{d:"m3 8 4 4-4 4"}]];var OO=[["path",{d:"M16 5H3"}],["path",{d:"M11 12H3"}],["path",{d:"M16 19H3"}],["path",{d:"M21 12h-6"}]];var TO=[["path",{d:"M16 5H3"}],["path",{d:"M11 12H3"}],["path",{d:"M11 19H3"}],["path",{d:"M21 16V5"}],["circle",{cx:"18",cy:"16",r:"3"}]];var PO=[["path",{d:"M16 5H3"}],["path",{d:"M11 12H3"}],["path",{d:"M16 19H3"}],["path",{d:"M18 9v6"}],["path",{d:"M21 12h-6"}]];var SO=[["path",{d:"M21 5H3"}],["path",{d:"M7 12H3"}],["path",{d:"M7 19H3"}],["path",{d:"M12 18a5 5 0 0 0 9-3 4.5 4.5 0 0 0-4.5-4.5c-1.33 0-2.54.54-3.41 1.41L11 14"}],["path",{d:"M11 10v4h4"}]];var AO=[["path",{d:"M11 5h10"}],["path",{d:"M11 12h10"}],["path",{d:"M11 19h10"}],["path",{d:"M4 4h1v5"}],["path",{d:"M4 9h2"}],["path",{d:"M6.5 20H3.4c0-1 2.6-1.925 2.6-3.5a1.5 1.5 0 0 0-2.6-1.02"}]];var qO=[["path",{d:"M3 5h6"}],["path",{d:"M3 12h13"}],["path",{d:"M3 19h13"}],["path",{d:"m16 8-3-3 3-3"}],["path",{d:"M21 19V7a2 2 0 0 0-2-2h-6"}]];var EO=[["path",{d:"M13 5h8"}],["path",{d:"M13 12h8"}],["path",{d:"M13 19h8"}],["path",{d:"m3 17 2 2 4-4"}],["rect",{x:"3",y:"4",width:"6",height:"6",rx:"1"}]];var CO=[["path",{d:"M8 5h13"}],["path",{d:"M13 12h8"}],["path",{d:"M13 19h8"}],["path",{d:"M3 10a2 2 0 0 0 2 2h3"}],["path",{d:"M3 5v12a2 2 0 0 0 2 2h3"}]];var xO=[["path",{d:"M21 5H3"}],["path",{d:"M10 12H3"}],["path",{d:"M10 19H3"}],["path",{d:"M15 12.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997a1 1 0 0 1-1.517-.86z"}]];var wO=[["path",{d:"M16 5H3"}],["path",{d:"M11 12H3"}],["path",{d:"M16 19H3"}],["path",{d:"m15.5 9.5 5 5"}],["path",{d:"m20.5 9.5-5 5"}]];var UO=[["path",{d:"M3 5h.01"}],["path",{d:"M3 12h.01"}],["path",{d:"M3 19h.01"}],["path",{d:"M8 5h13"}],["path",{d:"M8 12h13"}],["path",{d:"M8 19h13"}]];var A6=[["path",{d:"M21 12a9 9 0 1 1-6.219-8.56"}]];var MO=[["path",{d:"M22 12a1 1 0 0 1-10 0 1 1 0 0 0-10 0"}],["path",{d:"M7 20.7a1 1 0 1 1 5-8.7 1 1 0 1 0 5-8.6"}],["path",{d:"M7 3.3a1 1 0 1 1 5 8.6 1 1 0 1 0 5 8.6"}],["circle",{cx:"12",cy:"12",r:"10"}]];var RO=[["path",{d:"M12 2v4"}],["path",{d:"m16.2 7.8 2.9-2.9"}],["path",{d:"M18 12h4"}],["path",{d:"m16.2 16.2 2.9 2.9"}],["path",{d:"M12 18v4"}],["path",{d:"m4.9 19.1 2.9-2.9"}],["path",{d:"M2 12h4"}],["path",{d:"m4.9 4.9 2.9 2.9"}]];var jO=[["line",{x1:"2",x2:"5",y1:"12",y2:"12"}],["line",{x1:"19",x2:"22",y1:"12",y2:"12"}],["line",{x1:"12",x2:"12",y1:"2",y2:"5"}],["line",{x1:"12",x2:"12",y1:"19",y2:"22"}],["circle",{cx:"12",cy:"12",r:"7"}],["circle",{cx:"12",cy:"12",r:"3"}]];var LO=[["path",{d:"M12 19v3"}],["path",{d:"M12 2v3"}],["path",{d:"M18.89 13.24a7 7 0 0 0-8.13-8.13"}],["path",{d:"M19 12h3"}],["path",{d:"M2 12h3"}],["path",{d:"m2 2 20 20"}],["path",{d:"M7.05 7.05a7 7 0 0 0 9.9 9.9"}]];var yO=[["line",{x1:"2",x2:"5",y1:"12",y2:"12"}],["line",{x1:"19",x2:"22",y1:"12",y2:"12"}],["line",{x1:"12",x2:"12",y1:"2",y2:"5"}],["line",{x1:"12",x2:"12",y1:"19",y2:"22"}],["circle",{cx:"12",cy:"12",r:"7"}]];var q6=[["circle",{cx:"12",cy:"16",r:"1"}],["rect",{width:"18",height:"12",x:"3",y:"10",rx:"2"}],["path",{d:"M7 10V7a5 5 0 0 1 9.33-2.5"}]];var fO=[["circle",{cx:"12",cy:"16",r:"1"}],["rect",{x:"3",y:"10",width:"18",height:"12",rx:"2"}],["path",{d:"M7 10V7a5 5 0 0 1 10 0v3"}]];var E6=[["rect",{width:"18",height:"11",x:"3",y:"11",rx:"2",ry:"2"}],["path",{d:"M7 11V7a5 5 0 0 1 9.9-1"}]];var kO=[["rect",{width:"18",height:"11",x:"3",y:"11",rx:"2",ry:"2"}],["path",{d:"M7 11V7a5 5 0 0 1 10 0v4"}]];var bO=[["path",{d:"m10 17 5-5-5-5"}],["path",{d:"M15 12H3"}],["path",{d:"M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4"}]];var hO=[["path",{d:"m16 17 5-5-5-5"}],["path",{d:"M21 12H9"}],["path",{d:"M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"}]];var vO=[["path",{d:"M3 5h1"}],["path",{d:"M3 12h1"}],["path",{d:"M3 19h1"}],["path",{d:"M8 5h1"}],["path",{d:"M8 12h1"}],["path",{d:"M8 19h1"}],["path",{d:"M13 5h8"}],["path",{d:"M13 12h8"}],["path",{d:"M13 19h8"}]];var $O=[["circle",{cx:"11",cy:"11",r:"8"}],["path",{d:"m21 21-4.3-4.3"}],["path",{d:"M11 11a2 2 0 0 0 4 0 4 4 0 0 0-8 0 6 6 0 0 0 12 0"}]];var gO=[["path",{d:"M6 20a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2"}],["path",{d:"M8 18V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v14"}],["path",{d:"M10 20h4"}],["circle",{cx:"16",cy:"20",r:"2"}],["circle",{cx:"8",cy:"20",r:"2"}]];var _O=[["path",{d:"m12 15 4 4"}],["path",{d:"M2.352 10.648a1.205 1.205 0 0 0 0 1.704l2.296 2.296a1.205 1.205 0 0 0 1.704 0l6.029-6.029a1 1 0 1 1 3 3l-6.029 6.029a1.205 1.205 0 0 0 0 1.704l2.296 2.296a1.205 1.205 0 0 0 1.704 0l6.365-6.367A1 1 0 0 0 8.716 4.282z"}],["path",{d:"m5 8 4 4"}]];var mO=[["path",{d:"M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"}],["path",{d:"m16 19 2 2 4-4"}]];var uO=[["path",{d:"M22 15V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"}],["path",{d:"M16 19h6"}]];var dO=[["path",{d:"M21.2 8.4c.5.38.8.97.8 1.6v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V10a2 2 0 0 1 .8-1.6l8-6a2 2 0 0 1 2.4 0l8 6Z"}],["path",{d:"m22 10-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 10"}]];var cO=[["path",{d:"M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"}],["path",{d:"M19 16v6"}],["path",{d:"M16 19h6"}]];var C6=[["path",{d:"M22 10.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h12.5"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"}],["path",{d:"M18 15.28c.2-.4.5-.8.9-1a2.1 2.1 0 0 1 2.6.4c.3.4.5.8.5 1.3 0 1.3-2 2-2 2"}],["path",{d:"M20 22v.01"}]];var pO=[["path",{d:"M22 12.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h7.5"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"}],["path",{d:"M18 21a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z"}],["circle",{cx:"18",cy:"18",r:"3"}],["path",{d:"m22 22-1.5-1.5"}]];var nO=[["path",{d:"M22 10.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h12.5"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"}],["path",{d:"M20 14v4"}],["path",{d:"M20 22v.01"}]];var iO=[["path",{d:"M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h9"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"}],["path",{d:"m17 17 4 4"}],["path",{d:"m21 17-4 4"}]];var lO=[["path",{d:"m22 7-8.991 5.727a2 2 0 0 1-2.009 0L2 7"}],["rect",{x:"2",y:"4",width:"20",height:"16",rx:"2"}]];var sO=[["path",{d:"M22 17a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9.5C2 7 4 5 6.5 5H18c2.2 0 4 1.8 4 4v8Z"}],["polyline",{points:"15,9 18,9 18,11"}],["path",{d:"M6.5 5C9 5 11 7 11 9.5V17a2 2 0 0 1-2 2"}],["line",{x1:"6",x2:"7",y1:"10",y2:"10"}]];var rO=[["path",{d:"M17 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 1-1.732"}],["path",{d:"m22 5.5-6.419 4.179a2 2 0 0 1-2.162 0L7 5.5"}],["rect",{x:"7",y:"3",width:"15",height:"12",rx:"2"}]];var aO=[["path",{d:"m11 19-1.106-.552a2 2 0 0 0-1.788 0l-3.659 1.83A1 1 0 0 1 3 19.381V6.618a1 1 0 0 1 .553-.894l4.553-2.277a2 2 0 0 1 1.788 0l4.212 2.106a2 2 0 0 0 1.788 0l3.659-1.83A1 1 0 0 1 21 4.619V14"}],["path",{d:"M15 5.764V14"}],["path",{d:"M21 18h-6"}],["path",{d:"M9 3.236v15"}]];var tO=[["path",{d:"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"}],["path",{d:"m9 10 2 2 4-4"}]];var oO=[["path",{d:"M19.43 12.935c.357-.967.57-1.955.57-2.935a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 32.197 32.197 0 0 0 .813-.728"}],["circle",{cx:"12",cy:"10",r:"3"}],["path",{d:"m16 18 2 2 4-4"}]];var eO=[["path",{d:"M15 22a1 1 0 0 1-1-1v-4a1 1 0 0 1 .445-.832l3-2a1 1 0 0 1 1.11 0l3 2A1 1 0 0 1 22 17v4a1 1 0 0 1-1 1z"}],["path",{d:"M18 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 .601.2"}],["path",{d:"M18 22v-3"}],["circle",{cx:"10",cy:"10",r:"3"}]];var Z2=[["path",{d:"M18.977 14C19.6 12.701 20 11.343 20 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 32 32 0 0 0 .824-.738"}],["circle",{cx:"12",cy:"10",r:"3"}],["path",{d:"M16 18h6"}]];var J2=[["path",{d:"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"}],["path",{d:"M9 10h6"}]];var K2=[["path",{d:"M12.75 7.09a3 3 0 0 1 2.16 2.16"}],["path",{d:"M17.072 17.072c-1.634 2.17-3.527 3.912-4.471 4.727a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 1.432-4.568"}],["path",{d:"m2 2 20 20"}],["path",{d:"M8.475 2.818A8 8 0 0 1 20 10c0 1.183-.31 2.377-.81 3.533"}],["path",{d:"M9.13 9.13a3 3 0 0 0 3.74 3.74"}]];var x6=[["path",{d:"M17.97 9.304A8 8 0 0 0 2 10c0 4.69 4.887 9.562 7.022 11.468"}],["path",{d:"M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}],["circle",{cx:"10",cy:"10",r:"3"}]];var Y2=[["path",{d:"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"}],["path",{d:"M12 7v6"}],["path",{d:"M9 10h6"}]];var X2=[["path",{d:"M19.914 11.105A7.298 7.298 0 0 0 20 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 32 32 0 0 0 .824-.738"}],["circle",{cx:"12",cy:"10",r:"3"}],["path",{d:"M16 18h6"}],["path",{d:"M19 15v6"}]];var W2=[["path",{d:"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"}],["path",{d:"m14.5 7.5-5 5"}],["path",{d:"m9.5 7.5 5 5"}]];var Q2=[["path",{d:"M19.752 11.901A7.78 7.78 0 0 0 20 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 19 19 0 0 0 .09-.077"}],["circle",{cx:"12",cy:"10",r:"3"}],["path",{d:"m21.5 15.5-5 5"}],["path",{d:"m21.5 20.5-5-5"}]];var V2=[["path",{d:"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"}],["circle",{cx:"12",cy:"10",r:"3"}]];var G2=[["path",{d:"M18 8c0 3.613-3.869 7.429-5.393 8.795a1 1 0 0 1-1.214 0C9.87 15.429 6 11.613 6 8a6 6 0 0 1 12 0"}],["circle",{cx:"12",cy:"8",r:"2"}],["path",{d:"M8.714 14h-3.71a1 1 0 0 0-.948.683l-2.004 6A1 1 0 0 0 3 22h18a1 1 0 0 0 .948-1.316l-2-6a1 1 0 0 0-.949-.684h-3.712"}]];var I2=[["path",{d:"M14.106 5.553a2 2 0 0 0 1.788 0l3.659-1.83A1 1 0 0 1 21 4.619v12.764a1 1 0 0 1-.553.894l-4.553 2.277a2 2 0 0 1-1.788 0l-4.212-2.106a2 2 0 0 0-1.788 0l-3.659 1.83A1 1 0 0 1 3 19.381V6.618a1 1 0 0 1 .553-.894l4.553-2.277a2 2 0 0 1 1.788 0z"}],["path",{d:"M15 5.764v15"}],["path",{d:"M9 3.236v15"}]];var z2=[["path",{d:"m11 19-1.106-.552a2 2 0 0 0-1.788 0l-3.659 1.83A1 1 0 0 1 3 19.381V6.618a1 1 0 0 1 .553-.894l4.553-2.277a2 2 0 0 1 1.788 0l4.212 2.106a2 2 0 0 0 1.788 0l3.659-1.83A1 1 0 0 1 21 4.619V12"}],["path",{d:"M15 5.764V12"}],["path",{d:"M18 15v6"}],["path",{d:"M21 18h-6"}],["path",{d:"M9 3.236v15"}]];var N2=[["path",{d:"m14 6 4 4"}],["path",{d:"M17 3h4v4"}],["path",{d:"m21 3-7.75 7.75"}],["circle",{cx:"9",cy:"15",r:"6"}]];var F2=[["path",{d:"M16 3h5v5"}],["path",{d:"m21 3-6.75 6.75"}],["circle",{cx:"10",cy:"14",r:"6"}]];var H2=[["path",{d:"M8 22h8"}],["path",{d:"M12 11v11"}],["path",{d:"m19 3-7 8-7-8Z"}]];var D2=[["path",{d:"M15 3h6v6"}],["path",{d:"m21 3-7 7"}],["path",{d:"m3 21 7-7"}],["path",{d:"M9 21H3v-6"}]];var B2=[["path",{d:"M8 3H5a2 2 0 0 0-2 2v3"}],["path",{d:"M21 8V5a2 2 0 0 0-2-2h-3"}],["path",{d:"M3 16v3a2 2 0 0 0 2 2h3"}],["path",{d:"M16 21h3a2 2 0 0 0 2-2v-3"}]];var O2=[["path",{d:"M7.21 15 2.66 7.14a2 2 0 0 1 .13-2.2L4.4 2.8A2 2 0 0 1 6 2h12a2 2 0 0 1 1.6.8l1.6 2.14a2 2 0 0 1 .14 2.2L16.79 15"}],["path",{d:"M11 12 5.12 2.2"}],["path",{d:"m13 12 5.88-9.8"}],["path",{d:"M8 7h8"}],["circle",{cx:"12",cy:"17",r:"5"}],["path",{d:"M12 18v-2h-.5"}]];var T2=[["path",{d:"M11.636 6A13 13 0 0 0 19.4 3.2 1 1 0 0 1 21 4v11.344"}],["path",{d:"M14.378 14.357A13 13 0 0 0 11 14H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h1"}],["path",{d:"m2 2 20 20"}],["path",{d:"M6 14a12 12 0 0 0 2.4 7.2 2 2 0 0 0 3.2-2.4A8 8 0 0 1 10 14"}],["path",{d:"M8 8v6"}]];var P2=[["path",{d:"M11 6a13 13 0 0 0 8.4-2.8A1 1 0 0 1 21 4v12a1 1 0 0 1-1.6.8A13 13 0 0 0 11 14H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2z"}],["path",{d:"M6 14a12 12 0 0 0 2.4 7.2 2 2 0 0 0 3.2-2.4A8 8 0 0 1 10 14"}],["path",{d:"M8 6v8"}]];var S2=[["circle",{cx:"12",cy:"12",r:"10"}],["line",{x1:"8",x2:"16",y1:"15",y2:"15"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9"}]];var A2=[["path",{d:"M6 19v-3"}],["path",{d:"M10 19v-3"}],["path",{d:"M14 19v-3"}],["path",{d:"M18 19v-3"}],["path",{d:"M8 11V9"}],["path",{d:"M16 11V9"}],["path",{d:"M12 11V9"}],["path",{d:"M2 15h20"}],["path",{d:"M2 7a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v1.1a2 2 0 0 0 0 3.837V17a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-5.1a2 2 0 0 0 0-3.837Z"}]];var q2=[["path",{d:"M4 5h16"}],["path",{d:"M4 12h16"}],["path",{d:"M4 19h16"}]];var E2=[["path",{d:"m8 6 4-4 4 4"}],["path",{d:"M12 2v10.3a4 4 0 0 1-1.172 2.872L4 22"}],["path",{d:"m20 22-5-5"}]];var C2=[["path",{d:"m10 9-3 3 3 3"}],["path",{d:"m14 15 3-3-3-3"}],["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}]];var x2=[["path",{d:"M10.1 2.182a10 10 0 0 1 3.8 0"}],["path",{d:"M13.9 21.818a10 10 0 0 1-3.8 0"}],["path",{d:"M17.609 3.72a10 10 0 0 1 2.69 2.7"}],["path",{d:"M2.182 13.9a10 10 0 0 1 0-3.8"}],["path",{d:"M20.28 17.61a10 10 0 0 1-2.7 2.69"}],["path",{d:"M21.818 10.1a10 10 0 0 1 0 3.8"}],["path",{d:"M3.721 6.391a10 10 0 0 1 2.7-2.69"}],["path",{d:"m6.163 21.117-2.906.85a1 1 0 0 1-1.236-1.169l.965-2.98"}]];var w2=[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}],["path",{d:"M7.828 13.07A3 3 0 0 1 12 8.764a3 3 0 0 1 5.004 2.224 3 3 0 0 1-.832 2.083l-3.447 3.62a1 1 0 0 1-1.45-.001z"}]];var U2=[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}],["path",{d:"M8 12h.01"}],["path",{d:"M12 12h.01"}],["path",{d:"M16 12h.01"}]];var M2=[["path",{d:"m2 2 20 20"}],["path",{d:"M4.93 4.929a10 10 0 0 0-1.938 11.412 2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 0 0 11.302-1.989"}],["path",{d:"M8.35 2.69A10 10 0 0 1 21.3 15.65"}]];var R2=[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}],["path",{d:"M8 12h8"}],["path",{d:"M12 8v8"}]];var w6=[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}],["path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"}],["path",{d:"M12 17h.01"}]];var j2=[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}],["path",{d:"m10 15-3-3 3-3"}],["path",{d:"M7 12h8a2 2 0 0 1 2 2v1"}]];var L2=[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}],["path",{d:"M12 8v4"}],["path",{d:"M12 16h.01"}]];var y2=[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}],["path",{d:"m15 9-6 6"}],["path",{d:"m9 9 6 6"}]];var f2=[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}]];var k2=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"m10 8-3 3 3 3"}],["path",{d:"m14 14 3-3-3-3"}]];var b2=[["path",{d:"M12 19h.01"}],["path",{d:"M12 3h.01"}],["path",{d:"M16 19h.01"}],["path",{d:"M16 3h.01"}],["path",{d:"M2 13h.01"}],["path",{d:"M2 17v4.286a.71.71 0 0 0 1.212.502l2.202-2.202A2 2 0 0 1 6.828 19H8"}],["path",{d:"M2 5a2 2 0 0 1 2-2"}],["path",{d:"M2 9h.01"}],["path",{d:"M20 3a2 2 0 0 1 2 2"}],["path",{d:"M22 13h.01"}],["path",{d:"M22 17a2 2 0 0 1-2 2"}],["path",{d:"M22 9h.01"}],["path",{d:"M8 3h.01"}]];var h2=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"M10 15h4"}],["path",{d:"M10 9h4"}],["path",{d:"M12 7v4"}]];var v2=[["path",{d:"M12.7 3H4a2 2 0 0 0-2 2v16.286a.71.71 0 0 0 1.212.502l2.202-2.202A2 2 0 0 1 6.828 19H20a2 2 0 0 0 2-2v-4.7"}],["circle",{cx:"19",cy:"6",r:"3"}]];var $2=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"M7.5 9.5c0 .687.265 1.383.697 1.844l3.009 3.264a1.14 1.14 0 0 0 .407.314 1 1 0 0 0 .783-.004 1.14 1.14 0 0 0 .398-.31l3.008-3.264A2.77 2.77 0 0 0 16.5 9.5 2.5 2.5 0 0 0 12 8a2.5 2.5 0 0 0-4.5 1.5"}]];var g2=[["path",{d:"M22 8.5V5a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v16.286a.71.71 0 0 0 1.212.502l2.202-2.202A2 2 0 0 1 6.828 19H10"}],["path",{d:"M20 15v-2a2 2 0 0 0-4 0v2"}],["rect",{x:"14",y:"15",width:"8",height:"5",rx:"1"}]];var _2=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"M12 11h.01"}],["path",{d:"M16 11h.01"}],["path",{d:"M8 11h.01"}]];var m2=[["path",{d:"M19 19H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.7.7 0 0 1 2 21.286V5a2 2 0 0 1 1.184-1.826"}],["path",{d:"m2 2 20 20"}],["path",{d:"M8.656 3H20a2 2 0 0 1 2 2v11.344"}]];var u2=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"M12 8v6"}],["path",{d:"M9 11h6"}]];var d2=[["path",{d:"M14 14a2 2 0 0 0 2-2V8h-2"}],["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"M8 14a2 2 0 0 0 2-2V8H8"}]];var c2=[["path",{d:"M12 3H4a2 2 0 0 0-2 2v16.286a.71.71 0 0 0 1.212.502l2.202-2.202A2 2 0 0 1 6.828 19H20a2 2 0 0 0 2-2v-4"}],["path",{d:"M16 3h6v6"}],["path",{d:"m16 9 6-6"}]];var p2=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"m10 8-3 3 3 3"}],["path",{d:"M17 14v-1a2 2 0 0 0-2-2H7"}]];var n2=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"M7 11h10"}],["path",{d:"M7 15h6"}],["path",{d:"M7 7h8"}]];var i2=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"M12 15h.01"}],["path",{d:"M12 7v4"}]];var l2=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"m14.5 8.5-5 5"}],["path",{d:"m9.5 8.5 5 5"}]];var s2=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}]];var r2=[["path",{d:"M16 10a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 14.286V4a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z"}],["path",{d:"M20 9a2 2 0 0 1 2 2v10.286a.71.71 0 0 1-1.212.502l-2.202-2.202A2 2 0 0 0 17.172 19H10a2 2 0 0 1-2-2v-1"}]];var a2=[["path",{d:"M12 19v3"}],["path",{d:"M15 9.34V5a3 3 0 0 0-5.68-1.33"}],["path",{d:"M16.95 16.95A7 7 0 0 1 5 12v-2"}],["path",{d:"M18.89 13.23A7 7 0 0 0 19 12v-2"}],["path",{d:"m2 2 20 20"}],["path",{d:"M9 9v3a3 3 0 0 0 5.12 2.12"}]];var U6=[["path",{d:"m11 7.601-5.994 8.19a1 1 0 0 0 .1 1.298l.817.818a1 1 0 0 0 1.314.087L15.09 12"}],["path",{d:"M16.5 21.174C15.5 20.5 14.372 20 13 20c-2.058 0-3.928 2.356-6 2-2.072-.356-2.775-3.369-1.5-4.5"}],["circle",{cx:"16",cy:"7",r:"5"}]];var t2=[["path",{d:"M12 19v3"}],["path",{d:"M19 10v2a7 7 0 0 1-14 0v-2"}],["rect",{x:"9",y:"2",width:"6",height:"13",rx:"3"}]];var o2=[["path",{d:"M18 12h2"}],["path",{d:"M18 16h2"}],["path",{d:"M18 20h2"}],["path",{d:"M18 4h2"}],["path",{d:"M18 8h2"}],["path",{d:"M4 12h2"}],["path",{d:"M4 16h2"}],["path",{d:"M4 20h2"}],["path",{d:"M4 4h2"}],["path",{d:"M4 8h2"}],["path",{d:"M8 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2h-1.5c-.276 0-.494.227-.562.495a2 2 0 0 1-3.876 0C9.994 2.227 9.776 2 9.5 2z"}]];var e2=[["path",{d:"M6 18h8"}],["path",{d:"M3 22h18"}],["path",{d:"M14 22a7 7 0 1 0 0-14h-1"}],["path",{d:"M9 14h2"}],["path",{d:"M9 12a2 2 0 0 1-2-2V6h6v4a2 2 0 0 1-2 2Z"}],["path",{d:"M12 6V3a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v3"}]];var ZT=[["rect",{width:"20",height:"15",x:"2",y:"4",rx:"2"}],["rect",{width:"8",height:"7",x:"6",y:"8",rx:"1"}],["path",{d:"M18 8v7"}],["path",{d:"M6 19v2"}],["path",{d:"M18 19v2"}]];var JT=[["path",{d:"M12 13v8"}],["path",{d:"M12 3v3"}],["path",{d:"M4 6a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h13a2 2 0 0 0 1.152-.365l3.424-2.317a1 1 0 0 0 0-1.635l-3.424-2.318A2 2 0 0 0 17 6z"}]];var KT=[["path",{d:"M8 2h8"}],["path",{d:"M9 2v2.789a4 4 0 0 1-.672 2.219l-.656.984A4 4 0 0 0 7 10.212V20a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-9.789a4 4 0 0 0-.672-2.219l-.656-.984A4 4 0 0 1 15 4.788V2"}],["path",{d:"M7 15a6.472 6.472 0 0 1 5 0 6.47 6.47 0 0 0 5 0"}]];var YT=[["path",{d:"M8 2h8"}],["path",{d:"M9 2v1.343M15 2v2.789a4 4 0 0 0 .672 2.219l.656.984a4 4 0 0 1 .672 2.22v1.131M7.8 7.8l-.128.192A4 4 0 0 0 7 10.212V20a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-3"}],["path",{d:"M7 15a6.47 6.47 0 0 1 5 0 6.472 6.472 0 0 0 3.435.435"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var XT=[["path",{d:"m14 10 7-7"}],["path",{d:"M20 10h-6V4"}],["path",{d:"m3 21 7-7"}],["path",{d:"M4 14h6v6"}]];var WT=[["path",{d:"M8 3v3a2 2 0 0 1-2 2H3"}],["path",{d:"M21 8h-3a2 2 0 0 1-2-2V3"}],["path",{d:"M3 16h3a2 2 0 0 1 2 2v3"}],["path",{d:"M16 21v-3a2 2 0 0 1 2-2h3"}]];var QT=[["path",{d:"M5 12h14"}]];var VT=[["path",{d:"m9 10 2 2 4-4"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2"}],["path",{d:"M12 17v4"}],["path",{d:"M8 21h8"}]];var GT=[["path",{d:"M11 13a3 3 0 1 1 2.83-4H14a2 2 0 0 1 0 4z"}],["path",{d:"M12 17v4"}],["path",{d:"M8 21h8"}],["rect",{x:"2",y:"3",width:"20",height:"14",rx:"2"}]];var IT=[["path",{d:"M12 17v4"}],["path",{d:"m14.305 7.53.923-.382"}],["path",{d:"m15.228 4.852-.923-.383"}],["path",{d:"m16.852 3.228-.383-.924"}],["path",{d:"m16.852 8.772-.383.923"}],["path",{d:"m19.148 3.228.383-.924"}],["path",{d:"m19.53 9.696-.382-.924"}],["path",{d:"m20.772 4.852.924-.383"}],["path",{d:"m20.772 7.148.924.383"}],["path",{d:"M22 13v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7"}],["path",{d:"M8 21h8"}],["circle",{cx:"18",cy:"6",r:"3"}]];var zT=[["path",{d:"M12 17v4"}],["path",{d:"M22 12.307V15a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h8.693"}],["path",{d:"M8 21h8"}],["circle",{cx:"19",cy:"6",r:"3"}]];var NT=[["path",{d:"M12 13V7"}],["path",{d:"m15 10-3 3-3-3"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2"}],["path",{d:"M12 17v4"}],["path",{d:"M8 21h8"}]];var FT=[["path",{d:"M17 17H4a2 2 0 0 1-2-2V5c0-1.5 1-2 1-2"}],["path",{d:"M22 15V5a2 2 0 0 0-2-2H9"}],["path",{d:"M8 21h8"}],["path",{d:"M12 17v4"}],["path",{d:"m2 2 20 20"}]];var HT=[["path",{d:"M10 13V7"}],["path",{d:"M14 13V7"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2"}],["path",{d:"M12 17v4"}],["path",{d:"M8 21h8"}]];var DT=[["path",{d:"M15.033 9.44a.647.647 0 0 1 0 1.12l-4.065 2.352a.645.645 0 0 1-.968-.56V7.648a.645.645 0 0 1 .967-.56z"}],["path",{d:"M12 17v4"}],["path",{d:"M8 21h8"}],["rect",{x:"2",y:"3",width:"20",height:"14",rx:"2"}]];var BT=[["path",{d:"M18 8V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h8"}],["path",{d:"M10 19v-3.96 3.15"}],["path",{d:"M7 19h5"}],["rect",{width:"6",height:"10",x:"16",y:"12",rx:"2"}]];var OT=[["path",{d:"M5.5 20H8"}],["path",{d:"M17 9h.01"}],["rect",{width:"10",height:"16",x:"12",y:"4",rx:"2"}],["path",{d:"M8 6H4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h4"}],["circle",{cx:"17",cy:"15",r:"1"}]];var TT=[["path",{d:"M12 17v4"}],["path",{d:"M8 21h8"}],["rect",{x:"2",y:"3",width:"20",height:"14",rx:"2"}],["rect",{x:"9",y:"7",width:"6",height:"6",rx:"1"}]];var PT=[["path",{d:"m9 10 3-3 3 3"}],["path",{d:"M12 13V7"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2"}],["path",{d:"M12 17v4"}],["path",{d:"M8 21h8"}]];var ST=[["path",{d:"m14.5 12.5-5-5"}],["path",{d:"m9.5 12.5 5-5"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2"}],["path",{d:"M12 17v4"}],["path",{d:"M8 21h8"}]];var AT=[["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2"}],["line",{x1:"8",x2:"16",y1:"21",y2:"21"}],["line",{x1:"12",x2:"12",y1:"17",y2:"21"}]];var qT=[["path",{d:"M18 5h4"}],["path",{d:"M20 3v4"}],["path",{d:"M20.985 12.486a9 9 0 1 1-9.473-9.472c.405-.022.617.46.402.803a6 6 0 0 0 8.268 8.268c.344-.215.825-.004.803.401"}]];var ET=[["path",{d:"M20.985 12.486a9 9 0 1 1-9.473-9.472c.405-.022.617.46.402.803a6 6 0 0 0 8.268 8.268c.344-.215.825-.004.803.401"}]];var CT=[["path",{d:"m18 14-1-3"}],["path",{d:"m3 9 6 2a2 2 0 0 1 2-2h2a2 2 0 0 1 1.99 1.81"}],["path",{d:"M8 17h3a1 1 0 0 0 1-1 6 6 0 0 1 6-6 1 1 0 0 0 1-1v-.75A5 5 0 0 0 17 5"}],["circle",{cx:"19",cy:"17",r:"3"}],["circle",{cx:"5",cy:"17",r:"3"}]];var xT=[["path",{d:"m8 3 4 8 5-5 5 15H2L8 3z"}],["path",{d:"M4.14 15.08c2.62-1.57 5.24-1.43 7.86.42 2.74 1.94 5.49 2 8.23.19"}]];var wT=[["path",{d:"m8 3 4 8 5-5 5 15H2L8 3z"}]];var UT=[["path",{d:"M12 6v.343"}],["path",{d:"M18.218 18.218A7 7 0 0 1 5 15V9a7 7 0 0 1 .782-3.218"}],["path",{d:"M19 13.343V9A7 7 0 0 0 8.56 2.902"}],["path",{d:"M22 22 2 2"}]];var MT=[["path",{d:"M4.037 4.688a.495.495 0 0 1 .651-.651l16 6.5a.5.5 0 0 1-.063.947l-6.124 1.58a2 2 0 0 0-1.438 1.435l-1.579 6.126a.5.5 0 0 1-.947.063z"}]];var RT=[["path",{d:"M2.034 2.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.944L8.204 7.545a1 1 0 0 0-.66.66l-1.066 3.443a.5.5 0 0 1-.944.033z"}],["circle",{cx:"16",cy:"16",r:"6"}],["path",{d:"m11.8 11.8 8.4 8.4"}]];var jT=[["path",{d:"M14 4.1 12 6"}],["path",{d:"m5.1 8-2.9-.8"}],["path",{d:"m6 12-1.9 2"}],["path",{d:"M7.2 2.2 8 5.1"}],["path",{d:"M9.037 9.69a.498.498 0 0 1 .653-.653l11 4.5a.5.5 0 0 1-.074.949l-4.349 1.041a1 1 0 0 0-.74.739l-1.04 4.35a.5.5 0 0 1-.95.074z"}]];var LT=[["path",{d:"M12.586 12.586 19 19"}],["path",{d:"M3.688 3.037a.497.497 0 0 0-.651.651l6.5 15.999a.501.501 0 0 0 .947-.062l1.569-6.083a2 2 0 0 1 1.448-1.479l6.124-1.579a.5.5 0 0 0 .063-.947z"}]];var yT=[["rect",{x:"5",y:"2",width:"14",height:"20",rx:"7"}],["path",{d:"M12 6v4"}]];var M6=[["path",{d:"M5 3v16h16"}],["path",{d:"m5 19 6-6"}],["path",{d:"m2 6 3-3 3 3"}],["path",{d:"m18 16 3 3-3 3"}]];var fT=[["path",{d:"M19 13v6h-6"}],["path",{d:"M5 11V5h6"}],["path",{d:"m5 5 14 14"}]];var kT=[["path",{d:"M11 19H5v-6"}],["path",{d:"M13 5h6v6"}],["path",{d:"M19 5 5 19"}]];var bT=[["path",{d:"M11 19H5V13"}],["path",{d:"M19 5L5 19"}]];var hT=[["path",{d:"M19 13V19H13"}],["path",{d:"M5 5L19 19"}]];var vT=[["path",{d:"M8 18L12 22L16 18"}],["path",{d:"M12 2V22"}]];var $T=[["path",{d:"m18 8 4 4-4 4"}],["path",{d:"M2 12h20"}],["path",{d:"m6 8-4 4 4 4"}]];var gT=[["path",{d:"M6 8L2 12L6 16"}],["path",{d:"M2 12H22"}]];var _T=[["path",{d:"M18 8L22 12L18 16"}],["path",{d:"M2 12H22"}]];var mT=[["path",{d:"M5 11V5H11"}],["path",{d:"M5 5L19 19"}]];var uT=[["path",{d:"M13 5H19V11"}],["path",{d:"M19 5L5 19"}]];var dT=[["path",{d:"M8 6L12 2L16 6"}],["path",{d:"M12 2V22"}]];var cT=[["path",{d:"M12 2v20"}],["path",{d:"m8 18 4 4 4-4"}],["path",{d:"m8 6 4-4 4 4"}]];var pT=[["path",{d:"M12 2v20"}],["path",{d:"m15 19-3 3-3-3"}],["path",{d:"m19 9 3 3-3 3"}],["path",{d:"M2 12h20"}],["path",{d:"m5 9-3 3 3 3"}],["path",{d:"m9 5 3-3 3 3"}]];var nT=[["circle",{cx:"8",cy:"18",r:"4"}],["path",{d:"M12 18V2l7 4"}]];var iT=[["circle",{cx:"12",cy:"18",r:"4"}],["path",{d:"M16 18V2"}]];var lT=[["path",{d:"M9 18V5l12-2v13"}],["path",{d:"m9 9 12-2"}],["circle",{cx:"6",cy:"18",r:"3"}],["circle",{cx:"18",cy:"16",r:"3"}]];var sT=[["path",{d:"M9 18V5l12-2v13"}],["circle",{cx:"6",cy:"18",r:"3"}],["circle",{cx:"18",cy:"16",r:"3"}]];var rT=[["path",{d:"M9.31 9.31 5 21l7-4 7 4-1.17-3.17"}],["path",{d:"M14.53 8.88 12 2l-1.17 3.17"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var aT=[["polygon",{points:"12 2 19 21 12 17 5 21 12 2"}]];var tT=[["path",{d:"M8.43 8.43 3 11l8 2 2 8 2.57-5.43"}],["path",{d:"M17.39 11.73 22 2l-9.73 4.61"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var oT=[["polygon",{points:"3 11 22 2 13 21 11 13 3 11"}]];var eT=[["rect",{x:"16",y:"16",width:"6",height:"6",rx:"1"}],["rect",{x:"2",y:"16",width:"6",height:"6",rx:"1"}],["rect",{x:"9",y:"2",width:"6",height:"6",rx:"1"}],["path",{d:"M5 16v-3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v3"}],["path",{d:"M12 12V8"}]];var ZP=[["path",{d:"M15 18h-5"}],["path",{d:"M18 14h-8"}],["path",{d:"M4 22h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16a2 2 0 0 1-4 0v-9a2 2 0 0 1 2-2h2"}],["rect",{width:"8",height:"4",x:"10",y:"6",rx:"1"}]];var JP=[["path",{d:"M6 8.32a7.43 7.43 0 0 1 0 7.36"}],["path",{d:"M9.46 6.21a11.76 11.76 0 0 1 0 11.58"}],["path",{d:"M12.91 4.1a15.91 15.91 0 0 1 .01 15.8"}],["path",{d:"M16.37 2a20.16 20.16 0 0 1 0 20"}]];var KP=[["path",{d:"M12 2v10"}],["path",{d:"m8.5 4 7 4"}],["path",{d:"m8.5 8 7-4"}],["circle",{cx:"12",cy:"17",r:"5"}]];var YP=[["path",{d:"M13.4 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-7.4"}],["path",{d:"M2 6h4"}],["path",{d:"M2 10h4"}],["path",{d:"M2 14h4"}],["path",{d:"M2 18h4"}],["path",{d:"M21.378 5.626a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}]];var XP=[["path",{d:"M2 6h4"}],["path",{d:"M2 10h4"}],["path",{d:"M2 14h4"}],["path",{d:"M2 18h4"}],["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2"}],["path",{d:"M15 2v20"}],["path",{d:"M15 7h5"}],["path",{d:"M15 12h5"}],["path",{d:"M15 17h5"}]];var WP=[["path",{d:"M2 6h4"}],["path",{d:"M2 10h4"}],["path",{d:"M2 14h4"}],["path",{d:"M2 18h4"}],["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2"}],["path",{d:"M9.5 8h5"}],["path",{d:"M9.5 12H16"}],["path",{d:"M9.5 16H14"}]];var QP=[["path",{d:"M2 6h4"}],["path",{d:"M2 10h4"}],["path",{d:"M2 14h4"}],["path",{d:"M2 18h4"}],["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2"}],["path",{d:"M16 2v20"}]];var VP=[["path",{d:"M8 2v4"}],["path",{d:"M12 2v4"}],["path",{d:"M16 2v4"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v2"}],["path",{d:"M20 12v2"}],["path",{d:"M20 18v2a2 2 0 0 1-2 2h-1"}],["path",{d:"M13 22h-2"}],["path",{d:"M7 22H6a2 2 0 0 1-2-2v-2"}],["path",{d:"M4 14v-2"}],["path",{d:"M4 8V6a2 2 0 0 1 2-2h2"}],["path",{d:"M8 10h6"}],["path",{d:"M8 14h8"}],["path",{d:"M8 18h5"}]];var GP=[["path",{d:"M8 2v4"}],["path",{d:"M12 2v4"}],["path",{d:"M16 2v4"}],["rect",{width:"16",height:"18",x:"4",y:"4",rx:"2"}],["path",{d:"M8 10h6"}],["path",{d:"M8 14h8"}],["path",{d:"M8 18h5"}]];var IP=[["path",{d:"M12 4V2"}],["path",{d:"M5 10v4a7.004 7.004 0 0 0 5.277 6.787c.412.104.802.292 1.102.592L12 22l.621-.621c.3-.3.69-.488 1.102-.592a7.01 7.01 0 0 0 4.125-2.939"}],["path",{d:"M19 10v3.343"}],["path",{d:"M12 12c-1.349-.573-1.905-1.005-2.5-2-.546.902-1.048 1.353-2.5 2-1.018-.644-1.46-1.08-2-2-1.028.71-1.69.918-3 1 1.081-1.048 1.757-2.03 2-3 .194-.776.84-1.551 1.79-2.21m11.654 5.997c.887-.457 1.28-.891 1.556-1.787 1.032.916 1.683 1.157 3 1-1.297-1.036-1.758-2.03-2-3-.5-2-4-4-8-4-.74 0-1.461.068-2.15.192"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var zP=[["path",{d:"M12 4V2"}],["path",{d:"M5 10v4a7.004 7.004 0 0 0 5.277 6.787c.412.104.802.292 1.102.592L12 22l.621-.621c.3-.3.69-.488 1.102-.592A7.003 7.003 0 0 0 19 14v-4"}],["path",{d:"M12 4C8 4 4.5 6 4 8c-.243.97-.919 1.952-2 3 1.31-.082 1.972-.29 3-1 .54.92.982 1.356 2 2 1.452-.647 1.954-1.098 2.5-2 .595.995 1.151 1.427 2.5 2 1.31-.621 1.862-1.058 2.5-2 .629.977 1.162 1.423 2.5 2 1.209-.548 1.68-.967 2-2 1.032.916 1.683 1.157 3 1-1.297-1.036-1.758-2.03-2-3-.5-2-4-4-8-4Z"}]];var R6=[["path",{d:"M12 16h.01"}],["path",{d:"M12 8v4"}],["path",{d:"M15.312 2a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586l-4.688-4.688A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2z"}]];var NP=[["path",{d:"M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z"}],["path",{d:"M8 12h8"}]];var j6=[["path",{d:"M10 15V9"}],["path",{d:"M14 15V9"}],["path",{d:"M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z"}]];var L6=[["path",{d:"m15 9-6 6"}],["path",{d:"M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z"}],["path",{d:"m9 9 6 6"}]];var FP=[["path",{d:"M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z"}]];var HP=[["path",{d:"M3 20h4.5a.5.5 0 0 0 .5-.5v-.282a.52.52 0 0 0-.247-.437 8 8 0 1 1 8.494-.001.52.52 0 0 0-.247.438v.282a.5.5 0 0 0 .5.5H21"}]];var DP=[["path",{d:"M3 3h6l6 18h6"}],["path",{d:"M14 3h7"}]];var BP=[["path",{d:"M20.341 6.484A10 10 0 0 1 10.266 21.85"}],["path",{d:"M3.659 17.516A10 10 0 0 1 13.74 2.152"}],["circle",{cx:"12",cy:"12",r:"3"}],["circle",{cx:"19",cy:"5",r:"2"}],["circle",{cx:"5",cy:"19",r:"2"}]];var OP=[["path",{d:"M12 12V4a1 1 0 0 1 1-1h6.297a1 1 0 0 1 .651 1.759l-4.696 4.025"}],["path",{d:"m12 21-7.414-7.414A2 2 0 0 1 4 12.172V6.415a1.002 1.002 0 0 1 1.707-.707L20 20.009"}],["path",{d:"m12.214 3.381 8.414 14.966a1 1 0 0 1-.167 1.199l-1.168 1.163a1 1 0 0 1-.706.291H6.351a1 1 0 0 1-.625-.219L3.25 18.8a1 1 0 0 1 .631-1.781l4.165.027"}]];var TP=[["path",{d:"M12 3v6"}],["path",{d:"M16.76 3a2 2 0 0 1 1.8 1.1l2.23 4.479a2 2 0 0 1 .21.891V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V9.472a2 2 0 0 1 .211-.894L5.45 4.1A2 2 0 0 1 7.24 3z"}],["path",{d:"M3.054 9.013h17.893"}]];var PP=[["path",{d:"m16 16 2 2 4-4"}],["path",{d:"M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14"}],["path",{d:"m7.5 4.27 9 5.15"}],["polyline",{points:"3.29 7 12 12 20.71 7"}],["line",{x1:"12",x2:"12",y1:"22",y2:"12"}]];var SP=[["path",{d:"M16 16h6"}],["path",{d:"M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14"}],["path",{d:"m7.5 4.27 9 5.15"}],["polyline",{points:"3.29 7 12 12 20.71 7"}],["line",{x1:"12",x2:"12",y1:"22",y2:"12"}]];var AP=[["path",{d:"M12 22v-9"}],["path",{d:"M15.17 2.21a1.67 1.67 0 0 1 1.63 0L21 4.57a1.93 1.93 0 0 1 0 3.36L8.82 14.79a1.655 1.655 0 0 1-1.64 0L3 12.43a1.93 1.93 0 0 1 0-3.36z"}],["path",{d:"M20 13v3.87a2.06 2.06 0 0 1-1.11 1.83l-6 3.08a1.93 1.93 0 0 1-1.78 0l-6-3.08A2.06 2.06 0 0 1 4 16.87V13"}],["path",{d:"M21 12.43a1.93 1.93 0 0 0 0-3.36L8.83 2.2a1.64 1.64 0 0 0-1.63 0L3 4.57a1.93 1.93 0 0 0 0 3.36l12.18 6.86a1.636 1.636 0 0 0 1.63 0z"}]];var qP=[["path",{d:"M16 16h6"}],["path",{d:"M19 13v6"}],["path",{d:"M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14"}],["path",{d:"m7.5 4.27 9 5.15"}],["polyline",{points:"3.29 7 12 12 20.71 7"}],["line",{x1:"12",x2:"12",y1:"22",y2:"12"}]];var EP=[["path",{d:"M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14"}],["path",{d:"m7.5 4.27 9 5.15"}],["polyline",{points:"3.29 7 12 12 20.71 7"}],["line",{x1:"12",x2:"12",y1:"22",y2:"12"}],["circle",{cx:"18.5",cy:"15.5",r:"2.5"}],["path",{d:"M20.27 17.27 22 19"}]];var CP=[["path",{d:"M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14"}],["path",{d:"m7.5 4.27 9 5.15"}],["polyline",{points:"3.29 7 12 12 20.71 7"}],["line",{x1:"12",x2:"12",y1:"22",y2:"12"}],["path",{d:"m17 13 5 5m-5 0 5-5"}]];var xP=[["path",{d:"M11 21.73a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73z"}],["path",{d:"M12 22V12"}],["polyline",{points:"3.29 7 12 12 20.71 7"}],["path",{d:"m7.5 4.27 9 5.15"}]];var wP=[["path",{d:"m19 11-8-8-8.6 8.6a2 2 0 0 0 0 2.8l5.2 5.2c.8.8 2 .8 2.8 0L19 11Z"}],["path",{d:"m5 2 5 5"}],["path",{d:"M2 13h15"}],["path",{d:"M22 20a2 2 0 1 1-4 0c0-1.6 1.7-2.4 2-4 .3 1.6 2 2.4 2 4Z"}]];var UP=[["rect",{width:"16",height:"6",x:"2",y:"2",rx:"2"}],["path",{d:"M10 16v-2a2 2 0 0 1 2-2h8a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2"}],["rect",{width:"4",height:"6",x:"8",y:"16",rx:"1"}]];var y6=[["path",{d:"M10 2v2"}],["path",{d:"M14 2v4"}],["path",{d:"M17 2a1 1 0 0 1 1 1v9H6V3a1 1 0 0 1 1-1z"}],["path",{d:"M6 12a1 1 0 0 0-1 1v1a2 2 0 0 0 2 2h2a1 1 0 0 1 1 1v2.9a2 2 0 1 0 4 0V17a1 1 0 0 1 1-1h2a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1"}]];var MP=[["path",{d:"m14.622 17.897-10.68-2.913"}],["path",{d:"M18.376 2.622a1 1 0 1 1 3.002 3.002L17.36 9.643a.5.5 0 0 0 0 .707l.944.944a2.41 2.41 0 0 1 0 3.408l-.944.944a.5.5 0 0 1-.707 0L8.354 7.348a.5.5 0 0 1 0-.707l.944-.944a2.41 2.41 0 0 1 3.408 0l.944.944a.5.5 0 0 0 .707 0z"}],["path",{d:"M9 8c-1.804 2.71-3.97 3.46-6.583 3.948a.507.507 0 0 0-.302.819l7.32 8.883a1 1 0 0 0 1.185.204C12.735 20.405 16 16.792 16 15"}]];var RP=[["path",{d:"M12 22a1 1 0 0 1 0-20 10 9 0 0 1 10 9 5 5 0 0 1-5 5h-2.25a1.75 1.75 0 0 0-1.4 2.8l.3.4a1.75 1.75 0 0 1-1.4 2.8z"}],["circle",{cx:"13.5",cy:"6.5",r:".5",fill:"currentColor"}],["circle",{cx:"17.5",cy:"10.5",r:".5",fill:"currentColor"}],["circle",{cx:"6.5",cy:"12.5",r:".5",fill:"currentColor"}],["circle",{cx:"8.5",cy:"7.5",r:".5",fill:"currentColor"}]];var jP=[["path",{d:"M11.25 17.25h1.5L12 18z"}],["path",{d:"m15 12 2 2"}],["path",{d:"M18 6.5a.5.5 0 0 0-.5-.5"}],["path",{d:"M20.69 9.67a4.5 4.5 0 1 0-7.04-5.5 8.35 8.35 0 0 0-3.3 0 4.5 4.5 0 1 0-7.04 5.5C2.49 11.2 2 12.88 2 14.5 2 19.47 6.48 22 12 22s10-2.53 10-7.5c0-1.62-.48-3.3-1.3-4.83"}],["path",{d:"M6 6.5a.495.495 0 0 1 .5-.5"}],["path",{d:"m9 12-2 2"}]];var LP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 15h18"}],["path",{d:"m15 8-3 3-3-3"}]];var f6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M14 15h1"}],["path",{d:"M19 15h2"}],["path",{d:"M3 15h2"}],["path",{d:"M9 15h1"}]];var yP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 15h18"}],["path",{d:"m9 10 3-3 3 3"}]];var fP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 15h18"}]];var k6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 3v18"}],["path",{d:"m16 15-3-3 3-3"}]];var b6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 14v1"}],["path",{d:"M9 19v2"}],["path",{d:"M9 3v2"}],["path",{d:"M9 9v1"}]];var h6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 3v18"}],["path",{d:"m14 9 3 3-3 3"}]];var kP=[["path",{d:"M15 10V9"}],["path",{d:"M15 15v-1"}],["path",{d:"M15 21v-2"}],["path",{d:"M15 5V3"}],["path",{d:"M9 10V9"}],["path",{d:"M9 15v-1"}],["path",{d:"M9 21v-2"}],["path",{d:"M9 5V3"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]];var v6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 3v18"}]];var bP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M15 3v18"}],["path",{d:"m8 9 3 3-3 3"}]];var hP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M15 3v18"}]];var vP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M15 3v18"}],["path",{d:"m10 15-3-3 3-3"}]];var $6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M15 14v1"}],["path",{d:"M15 19v2"}],["path",{d:"M15 3v2"}],["path",{d:"M15 9v1"}]];var $P=[["path",{d:"M14 15h1"}],["path",{d:"M14 9h1"}],["path",{d:"M19 15h2"}],["path",{d:"M19 9h2"}],["path",{d:"M3 15h2"}],["path",{d:"M3 9h2"}],["path",{d:"M9 15h1"}],["path",{d:"M9 9h1"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]];var gP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 9h18"}],["path",{d:"m9 16 3-3 3 3"}]];var g6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M14 9h1"}],["path",{d:"M19 9h2"}],["path",{d:"M3 9h2"}],["path",{d:"M9 9h1"}]];var _P=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 9h18"}],["path",{d:"m15 14-3 3-3-3"}]];var mP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 3v18"}],["path",{d:"M9 15h12"}]];var uP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 9h18"}]];var dP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 15h12"}],["path",{d:"M15 3v18"}]];var _6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 9h18"}],["path",{d:"M9 21V9"}]];var cP=[["path",{d:"m16 6-8.414 8.586a2 2 0 0 0 2.829 2.829l8.414-8.586a4 4 0 1 0-5.657-5.657l-8.379 8.551a6 6 0 1 0 8.485 8.485l8.379-8.551"}]];var pP=[["path",{d:"M11 15h2"}],["path",{d:"M12 12v3"}],["path",{d:"M12 19v3"}],["path",{d:"M15.282 19a1 1 0 0 0 .948-.68l2.37-6.988a7 7 0 1 0-13.2 0l2.37 6.988a1 1 0 0 0 .948.68z"}],["path",{d:"M9 9a3 3 0 1 1 6 0"}]];var nP=[["path",{d:"M8 21s-4-3-4-9 4-9 4-9"}],["path",{d:"M16 3s4 3 4 9-4 9-4 9"}]];var iP=[["path",{d:"M5.8 11.3 2 22l10.7-3.79"}],["path",{d:"M4 3h.01"}],["path",{d:"M22 8h.01"}],["path",{d:"M15 2h.01"}],["path",{d:"M22 20h.01"}],["path",{d:"m22 2-2.24.75a2.9 2.9 0 0 0-1.96 3.12c.1.86-.57 1.63-1.45 1.63h-.38c-.86 0-1.6.6-1.76 1.44L14 10"}],["path",{d:"m22 13-.82-.33c-.86-.34-1.82.2-1.98 1.11c-.11.7-.72 1.22-1.43 1.22H17"}],["path",{d:"m11 2 .33.82c.34.86-.2 1.82-1.11 1.98C9.52 4.9 9 5.52 9 6.23V7"}],["path",{d:"M11 13c1.93 1.93 2.83 4.17 2 5-.83.83-3.07-.07-5-2-1.93-1.93-2.83-4.17-2-5 .83-.83 3.07.07 5 2Z"}]];var lP=[["rect",{x:"14",y:"3",width:"5",height:"18",rx:"1"}],["rect",{x:"5",y:"3",width:"5",height:"18",rx:"1"}]];var sP=[["circle",{cx:"11",cy:"4",r:"2"}],["circle",{cx:"18",cy:"8",r:"2"}],["circle",{cx:"20",cy:"16",r:"2"}],["path",{d:"M9 10a5 5 0 0 1 5 5v3.5a3.5 3.5 0 0 1-6.84 1.045Q6.52 17.48 4.46 16.84A3.5 3.5 0 0 1 5.5 10Z"}]];var rP=[["rect",{width:"14",height:"20",x:"5",y:"2",rx:"2"}],["path",{d:"M15 14h.01"}],["path",{d:"M9 6h6"}],["path",{d:"M9 10h6"}]];var m6=[["path",{d:"M13 21h8"}],["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z"}]];var aP=[["path",{d:"m10 10-6.157 6.162a2 2 0 0 0-.5.833l-1.322 4.36a.5.5 0 0 0 .622.624l4.358-1.323a2 2 0 0 0 .83-.5L14 13.982"}],["path",{d:"m12.829 7.172 4.359-4.346a1 1 0 1 1 3.986 3.986l-4.353 4.353"}],["path",{d:"m2 2 20 20"}]];var tP=[["path",{d:"M15.707 21.293a1 1 0 0 1-1.414 0l-1.586-1.586a1 1 0 0 1 0-1.414l5.586-5.586a1 1 0 0 1 1.414 0l1.586 1.586a1 1 0 0 1 0 1.414z"}],["path",{d:"m18 13-1.375-6.874a1 1 0 0 0-.746-.776L3.235 2.028a1 1 0 0 0-1.207 1.207L5.35 15.879a1 1 0 0 0 .776.746L13 18"}],["path",{d:"m2.3 2.3 7.286 7.286"}],["circle",{cx:"11",cy:"11",r:"2"}]];var u6=[["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z"}]];var oP=[["path",{d:"M13 21h8"}],["path",{d:"m15 5 4 4"}],["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z"}]];var eP=[["path",{d:"m10 10-6.157 6.162a2 2 0 0 0-.5.833l-1.322 4.36a.5.5 0 0 0 .622.624l4.358-1.323a2 2 0 0 0 .83-.5L14 13.982"}],["path",{d:"m12.829 7.172 4.359-4.346a1 1 0 1 1 3.986 3.986l-4.353 4.353"}],["path",{d:"m15 5 4 4"}],["path",{d:"m2 2 20 20"}]];var ZS=[["path",{d:"M13 7 8.7 2.7a2.41 2.41 0 0 0-3.4 0L2.7 5.3a2.41 2.41 0 0 0 0 3.4L7 13"}],["path",{d:"m8 6 2-2"}],["path",{d:"m18 16 2-2"}],["path",{d:"m17 11 4.3 4.3c.94.94.94 2.46 0 3.4l-2.6 2.6c-.94.94-2.46.94-3.4 0L11 17"}],["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z"}],["path",{d:"m15 5 4 4"}]];var JS=[["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z"}],["path",{d:"m15 5 4 4"}]];var KS=[["path",{d:"M10.83 2.38a2 2 0 0 1 2.34 0l8 5.74a2 2 0 0 1 .73 2.25l-3.04 9.26a2 2 0 0 1-1.9 1.37H7.04a2 2 0 0 1-1.9-1.37L2.1 10.37a2 2 0 0 1 .73-2.25z"}]];var YS=[["line",{x1:"19",x2:"5",y1:"5",y2:"19"}],["circle",{cx:"6.5",cy:"6.5",r:"2.5"}],["circle",{cx:"17.5",cy:"17.5",r:"2.5"}]];var XS=[["circle",{cx:"12",cy:"5",r:"1"}],["path",{d:"m9 20 3-6 3 6"}],["path",{d:"m6 8 6 2 6-2"}],["path",{d:"M12 10v4"}]];var WS=[["path",{d:"M20 11H4"}],["path",{d:"M20 7H4"}],["path",{d:"M7 21V4a1 1 0 0 1 1-1h4a1 1 0 0 1 0 12H7"}]];var QS=[["path",{d:"M13 2a9 9 0 0 1 9 9"}],["path",{d:"M13 6a5 5 0 0 1 5 5"}],["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"}]];var VS=[["path",{d:"M14 6h8"}],["path",{d:"m18 2 4 4-4 4"}],["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"}]];var GS=[["path",{d:"M16 2v6h6"}],["path",{d:"m22 2-6 6"}],["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"}]];var IS=[["path",{d:"m16 2 6 6"}],["path",{d:"m22 2-6 6"}],["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"}]];var zS=[["path",{d:"M10.1 13.9a14 14 0 0 0 3.732 2.668 1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2 18 18 0 0 1-12.728-5.272"}],["path",{d:"M22 2 2 22"}],["path",{d:"M4.76 13.582A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 .244.473"}]];var NS=[["path",{d:"m16 8 6-6"}],["path",{d:"M22 8V2h-6"}],["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"}]];var FS=[["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"}]];var HS=[["line",{x1:"9",x2:"9",y1:"4",y2:"20"}],["path",{d:"M4 7c0-1.7 1.3-3 3-3h13"}],["path",{d:"M18 20c-1.7 0-3-1.3-3-3V4"}]];var DS=[["path",{d:"M18.5 8c-1.4 0-2.6-.8-3.2-2A6.87 6.87 0 0 0 2 9v11a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-8.5C22 9.6 20.4 8 18.5 8"}],["path",{d:"M2 14h20"}],["path",{d:"M6 14v4"}],["path",{d:"M10 14v4"}],["path",{d:"M14 14v4"}],["path",{d:"M18 14v4"}]];var BS=[["path",{d:"m14 13-8.381 8.38a1 1 0 0 1-3.001-3L11 9.999"}],["path",{d:"M15.973 4.027A13 13 0 0 0 5.902 2.373c-1.398.342-1.092 2.158.277 2.601a19.9 19.9 0 0 1 5.822 3.024"}],["path",{d:"M16.001 11.999a19.9 19.9 0 0 1 3.024 5.824c.444 1.369 2.26 1.676 2.603.278A13 13 0 0 0 20 8.069"}],["path",{d:"M18.352 3.352a1.205 1.205 0 0 0-1.704 0l-5.296 5.296a1.205 1.205 0 0 0 0 1.704l2.296 2.296a1.205 1.205 0 0 0 1.704 0l5.296-5.296a1.205 1.205 0 0 0 0-1.704z"}]];var OS=[["path",{d:"M21 9V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h4"}],["rect",{width:"10",height:"7",x:"12",y:"13",rx:"2"}]];var TS=[["path",{d:"M2 10h6V4"}],["path",{d:"m2 4 6 6"}],["path",{d:"M21 10V7a2 2 0 0 0-2-2h-7"}],["path",{d:"M3 14v2a2 2 0 0 0 2 2h3"}],["rect",{x:"12",y:"14",width:"10",height:"7",rx:"1"}]];var PS=[["path",{d:"M14 3v11"}],["path",{d:"M14 9h-3a3 3 0 0 1 0-6h9"}],["path",{d:"M18 3v11"}],["path",{d:"M22 18H2l4-4"}],["path",{d:"m6 22-4-4"}]];var SS=[["path",{d:"M11 17h3v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-3a3.16 3.16 0 0 0 2-2h1a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1h-1a5 5 0 0 0-2-4V3a4 4 0 0 0-3.2 1.6l-.3.4H11a6 6 0 0 0-6 6v1a5 5 0 0 0 2 4v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1z"}],["path",{d:"M16 10h.01"}],["path",{d:"M2 8v1a2 2 0 0 0 2 2h1"}]];var AS=[["path",{d:"M10 3v11"}],["path",{d:"M10 9H7a1 1 0 0 1 0-6h8"}],["path",{d:"M14 3v11"}],["path",{d:"m18 14 4 4H2"}],["path",{d:"m22 18-4 4"}]];var qS=[["path",{d:"M13 4v16"}],["path",{d:"M17 4v16"}],["path",{d:"M19 4H9.5a4.5 4.5 0 0 0 0 9H13"}]];var ES=[["path",{d:"M18 11h-4a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h4"}],["path",{d:"M6 7v13a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V7"}],["rect",{width:"16",height:"5",x:"4",y:"2",rx:"1"}]];var CS=[["path",{d:"m10.5 20.5 10-10a4.95 4.95 0 1 0-7-7l-10 10a4.95 4.95 0 1 0 7 7Z"}],["path",{d:"m8.5 8.5 7 7"}]];var xS=[["path",{d:"M12 17v5"}],["path",{d:"M9 10.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V16a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-.76a2 2 0 0 0-1.11-1.79l-1.78-.9A2 2 0 0 1 15 10.76V7a1 1 0 0 1 1-1 2 2 0 0 0 0-4H8a2 2 0 0 0 0 4 1 1 0 0 1 1 1z"}]];var wS=[["path",{d:"m12 9-8.414 8.414A2 2 0 0 0 3 18.828v1.344a2 2 0 0 1-.586 1.414A2 2 0 0 1 3.828 21h1.344a2 2 0 0 0 1.414-.586L15 12"}],["path",{d:"m18 9 .4.4a1 1 0 1 1-3 3l-3.8-3.8a1 1 0 1 1 3-3l.4.4 3.4-3.4a1 1 0 1 1 3 3z"}],["path",{d:"m2 22 .414-.414"}]];var US=[["path",{d:"M12 17v5"}],["path",{d:"M15 9.34V7a1 1 0 0 1 1-1 2 2 0 0 0 0-4H7.89"}],["path",{d:"m2 2 20 20"}],["path",{d:"M9 9v1.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V16a1 1 0 0 0 1 1h11"}]];var MS=[["path",{d:"m12 14-1 1"}],["path",{d:"m13.75 18.25-1.25 1.42"}],["path",{d:"M17.775 5.654a15.68 15.68 0 0 0-12.121 12.12"}],["path",{d:"M18.8 9.3a1 1 0 0 0 2.1 7.7"}],["path",{d:"M21.964 20.732a1 1 0 0 1-1.232 1.232l-18-5a1 1 0 0 1-.695-1.232A19.68 19.68 0 0 1 15.732 2.037a1 1 0 0 1 1.232.695z"}]];var RS=[["path",{d:"M2 22h20"}],["path",{d:"M3.77 10.77 2 9l2-4.5 1.1.55c.55.28.9.84.9 1.45s.35 1.17.9 1.45L8 8.5l3-6 1.05.53a2 2 0 0 1 1.09 1.52l.72 5.4a2 2 0 0 0 1.09 1.52l4.4 2.2c.42.22.78.55 1.01.96l.6 1.03c.49.88-.06 1.98-1.06 2.1l-1.18.15c-.47.06-.95-.02-1.37-.24L4.29 11.15a2 2 0 0 1-.52-.38Z"}]];var jS=[["path",{d:"M2 22h20"}],["path",{d:"M6.36 17.4 4 17l-2-4 1.1-.55a2 2 0 0 1 1.8 0l.17.1a2 2 0 0 0 1.8 0L8 12 5 6l.9-.45a2 2 0 0 1 2.09.2l4.02 3a2 2 0 0 0 2.1.2l4.19-2.06a2.41 2.41 0 0 1 1.73-.17L21 7a1.4 1.4 0 0 1 .87 1.99l-.38.76c-.23.46-.6.84-1.07 1.08L7.58 17.2a2 2 0 0 1-1.22.18Z"}]];var LS=[["path",{d:"M17.8 19.2 16 11l3.5-3.5C21 6 21.5 4 21 3c-1-.5-3 0-4.5 1.5L13 8 4.8 6.2c-.5-.1-.9.1-1.1.5l-.3.5c-.2.5-.1 1 .3 1.3L9 12l-2 3H4l-1 1 3 2 2 3 1-1v-3l3-2 3.5 5.3c.3.4.8.5 1.3.3l.5-.2c.4-.3.6-.7.5-1.2z"}]];var yS=[["path",{d:"M5 5a2 2 0 0 1 3.008-1.728l11.997 6.998a2 2 0 0 1 .003 3.458l-12 7A2 2 0 0 1 5 19z"}]];var fS=[["path",{d:"M9 2v6"}],["path",{d:"M15 2v6"}],["path",{d:"M12 17v5"}],["path",{d:"M5 8h14"}],["path",{d:"M6 11V8h12v3a6 6 0 1 1-12 0Z"}]];var d6=[["path",{d:"M6.3 20.3a2.4 2.4 0 0 0 3.4 0L12 18l-6-6-2.3 2.3a2.4 2.4 0 0 0 0 3.4Z"}],["path",{d:"m2 22 3-3"}],["path",{d:"M7.5 13.5 10 11"}],["path",{d:"M10.5 16.5 13 14"}],["path",{d:"m18 3-4 4h6l-4 4"}]];var kS=[["path",{d:"M12 22v-5"}],["path",{d:"M9 8V2"}],["path",{d:"M15 8V2"}],["path",{d:"M18 8v5a4 4 0 0 1-4 4h-4a4 4 0 0 1-4-4V8Z"}]];var bS=[["path",{d:"M5 12h14"}],["path",{d:"M12 5v14"}]];var hS=[["path",{d:"M3 2v1c0 1 2 1 2 2S3 6 3 7s2 1 2 2-2 1-2 2 2 1 2 2"}],["path",{d:"M18 6h.01"}],["path",{d:"M6 18h.01"}],["path",{d:"M20.83 8.83a4 4 0 0 0-5.66-5.66l-12 12a4 4 0 1 0 5.66 5.66Z"}],["path",{d:"M18 11.66V22a4 4 0 0 0 4-4V6"}]];var vS=[["path",{d:"M20 3a2 2 0 0 1 2 2v6a1 1 0 0 1-20 0V5a2 2 0 0 1 2-2z"}],["path",{d:"m8 10 4 4 4-4"}]];var $S=[["path",{d:"M13 17a1 1 0 1 0-2 0l.5 4.5a0.5 0.5 0 0 0 1 0z",fill:"currentColor"}],["path",{d:"M16.85 18.58a9 9 0 1 0-9.7 0"}],["path",{d:"M8 14a5 5 0 1 1 8 0"}],["circle",{cx:"12",cy:"11",r:"1",fill:"currentColor"}]];var gS=[["path",{d:"M10 4.5V4a2 2 0 0 0-2.41-1.957"}],["path",{d:"M13.9 8.4a2 2 0 0 0-1.26-1.295"}],["path",{d:"M21.7 16.2A8 8 0 0 0 22 14v-3a2 2 0 1 0-4 0v-1a2 2 0 0 0-3.63-1.158"}],["path",{d:"m7 15-1.8-1.8a2 2 0 0 0-2.79 2.86L6 19.7a7.74 7.74 0 0 0 6 2.3h2a8 8 0 0 0 5.657-2.343"}],["path",{d:"M6 6v8"}],["path",{d:"m2 2 20 20"}]];var _S=[["path",{d:"M22 14a8 8 0 0 1-8 8"}],["path",{d:"M18 11v-1a2 2 0 0 0-2-2a2 2 0 0 0-2 2"}],["path",{d:"M14 10V9a2 2 0 0 0-2-2a2 2 0 0 0-2 2v1"}],["path",{d:"M10 9.5V4a2 2 0 0 0-2-2a2 2 0 0 0-2 2v10"}],["path",{d:"M18 11a2 2 0 1 1 4 0v3a8 8 0 0 1-8 8h-2c-2.8 0-4.5-.86-5.99-2.34l-3.6-3.6a2 2 0 0 1 2.83-2.82L7 15"}]];var mS=[["path",{d:"M18 8a2 2 0 0 0 0-4 2 2 0 0 0-4 0 2 2 0 0 0-4 0 2 2 0 0 0-4 0 2 2 0 0 0 0 4"}],["path",{d:"M10 22 9 8"}],["path",{d:"m14 22 1-14"}],["path",{d:"M20 8c.5 0 .9.4.8 1l-2.6 12c-.1.5-.7 1-1.2 1H7c-.6 0-1.1-.4-1.2-1L3.2 9c-.1-.6.3-1 .8-1Z"}]];var uS=[["path",{d:"M18.6 14.4c.8-.8.8-2 0-2.8l-8.1-8.1a4.95 4.95 0 1 0-7.1 7.1l8.1 8.1c.9.7 2.1.7 2.9-.1Z"}],["path",{d:"m22 22-5.5-5.5"}]];var dS=[["path",{d:"M18 7c0-5.333-8-5.333-8 0"}],["path",{d:"M10 7v14"}],["path",{d:"M6 21h12"}],["path",{d:"M6 13h10"}]];var cS=[["path",{d:"M18.36 6.64A9 9 0 0 1 20.77 15"}],["path",{d:"M6.16 6.16a9 9 0 1 0 12.68 12.68"}],["path",{d:"M12 2v4"}],["path",{d:"m2 2 20 20"}]];var pS=[["path",{d:"M12 2v10"}],["path",{d:"M18.4 6.6a9 9 0 1 1-12.77.04"}]];var nS=[["path",{d:"M2 3h20"}],["path",{d:"M21 3v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V3"}],["path",{d:"m7 21 5-5 5 5"}]];var iS=[["path",{d:"M13.5 22H7a1 1 0 0 1-1-1v-6a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v.5"}],["path",{d:"m16 19 2 2 4-4"}],["path",{d:"M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v2"}],["path",{d:"M6 9V3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6"}]];var lS=[["path",{d:"M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2"}],["path",{d:"M6 9V3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6"}],["rect",{x:"6",y:"14",width:"12",height:"8",rx:"1"}]];var sS=[["path",{d:"M5 7 3 5"}],["path",{d:"M9 6V3"}],["path",{d:"m13 7 2-2"}],["circle",{cx:"9",cy:"13",r:"3"}],["path",{d:"M11.83 12H20a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h2.17"}],["path",{d:"M16 16h2"}]];var rS=[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2"}],["path",{d:"M12 9v11"}],["path",{d:"M2 9h13a2 2 0 0 1 2 2v9"}]];var aS=[["path",{d:"M15.39 4.39a1 1 0 0 0 1.68-.474 2.5 2.5 0 1 1 3.014 3.015 1 1 0 0 0-.474 1.68l1.683 1.682a2.414 2.414 0 0 1 0 3.414L19.61 15.39a1 1 0 0 1-1.68-.474 2.5 2.5 0 1 0-3.014 3.015 1 1 0 0 1 .474 1.68l-1.683 1.682a2.414 2.414 0 0 1-3.414 0L8.61 19.61a1 1 0 0 0-1.68.474 2.5 2.5 0 1 1-3.014-3.015 1 1 0 0 0 .474-1.68l-1.683-1.682a2.414 2.414 0 0 1 0-3.414L4.39 8.61a1 1 0 0 1 1.68.474 2.5 2.5 0 1 0 3.014-3.015 1 1 0 0 1-.474-1.68l1.683-1.682a2.414 2.414 0 0 1 3.414 0z"}]];var tS=[["rect",{width:"5",height:"5",x:"3",y:"3",rx:"1"}],["rect",{width:"5",height:"5",x:"16",y:"3",rx:"1"}],["rect",{width:"5",height:"5",x:"3",y:"16",rx:"1"}],["path",{d:"M21 16h-3a2 2 0 0 0-2 2v3"}],["path",{d:"M21 21v.01"}],["path",{d:"M12 7v3a2 2 0 0 1-2 2H7"}],["path",{d:"M3 12h.01"}],["path",{d:"M12 3h.01"}],["path",{d:"M12 16v.01"}],["path",{d:"M16 12h1"}],["path",{d:"M21 12v.01"}],["path",{d:"M12 21v-1"}]];var oS=[["path",{d:"M2.5 16.88a1 1 0 0 1-.32-1.43l9-13.02a1 1 0 0 1 1.64 0l9 13.01a1 1 0 0 1-.32 1.44l-8.51 4.86a2 2 0 0 1-1.98 0Z"}],["path",{d:"M12 2v20"}]];var eS=[["path",{d:"M16 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z"}],["path",{d:"M5 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z"}]];var ZA=[["path",{d:"M13 16a3 3 0 0 1 2.24 5"}],["path",{d:"M18 12h.01"}],["path",{d:"M18 21h-8a4 4 0 0 1-4-4 7 7 0 0 1 7-7h.2L9.6 6.4a1 1 0 1 1 2.8-2.8L15.8 7h.2c3.3 0 6 2.7 6 6v1a2 2 0 0 1-2 2h-1a3 3 0 0 0-3 3"}],["path",{d:"M20 8.54V4a2 2 0 1 0-4 0v3"}],["path",{d:"M7.612 12.524a3 3 0 1 0-1.6 4.3"}]];var JA=[["path",{d:"M19.07 4.93A10 10 0 0 0 6.99 3.34"}],["path",{d:"M4 6h.01"}],["path",{d:"M2.29 9.62A10 10 0 1 0 21.31 8.35"}],["path",{d:"M16.24 7.76A6 6 0 1 0 8.23 16.67"}],["path",{d:"M12 18h.01"}],["path",{d:"M17.99 11.66A6 6 0 0 1 15.77 16.67"}],["circle",{cx:"12",cy:"12",r:"2"}],["path",{d:"m13.41 10.59 5.66-5.66"}]];var KA=[["path",{d:"M12 12h.01"}],["path",{d:"M14 15.4641a4 4 0 0 1-4 0L7.52786 19.74597 A 1 1 0 0 0 7.99303 21.16211 10 10 0 0 0 16.00697 21.16211 1 1 0 0 0 16.47214 19.74597z"}],["path",{d:"M16 12a4 4 0 0 0-2-3.464l2.472-4.282a1 1 0 0 1 1.46-.305 10 10 0 0 1 4.006 6.94A1 1 0 0 1 21 12z"}],["path",{d:"M8 12a4 4 0 0 1 2-3.464L7.528 4.254a1 1 0 0 0-1.46-.305 10 10 0 0 0-4.006 6.94A1 1 0 0 0 3 12z"}]];var YA=[["path",{d:"M3 12h3.28a1 1 0 0 1 .948.684l2.298 7.934a.5.5 0 0 0 .96-.044L13.82 4.771A1 1 0 0 1 14.792 4H21"}]];var XA=[["path",{d:"M5 16v2"}],["path",{d:"M19 16v2"}],["rect",{width:"20",height:"8",x:"2",y:"8",rx:"2"}],["path",{d:"M18 12h.01"}]];var WA=[["path",{d:"M4.9 16.1C1 12.2 1 5.8 4.9 1.9"}],["path",{d:"M7.8 4.7a6.14 6.14 0 0 0-.8 7.5"}],["circle",{cx:"12",cy:"9",r:"2"}],["path",{d:"M16.2 4.8c2 2 2.26 5.11.8 7.47"}],["path",{d:"M19.1 1.9a9.96 9.96 0 0 1 0 14.1"}],["path",{d:"M9.5 18h5"}],["path",{d:"m8 22 4-11 4 11"}]];var QA=[["path",{d:"M16.247 7.761a6 6 0 0 1 0 8.478"}],["path",{d:"M19.075 4.933a10 10 0 0 1 0 14.134"}],["path",{d:"M4.925 19.067a10 10 0 0 1 0-14.134"}],["path",{d:"M7.753 16.239a6 6 0 0 1 0-8.478"}],["circle",{cx:"12",cy:"12",r:"2"}]];var VA=[["path",{d:"M20.34 17.52a10 10 0 1 0-2.82 2.82"}],["circle",{cx:"19",cy:"19",r:"2"}],["path",{d:"m13.41 13.41 4.18 4.18"}],["circle",{cx:"12",cy:"12",r:"2"}]];var GA=[["path",{d:"M5 15h14"}],["path",{d:"M5 9h14"}],["path",{d:"m14 20-5-5 6-6-5-5"}]];var IA=[["path",{d:"M13 22H4a2 2 0 0 1 0-4h12"}],["path",{d:"M13.236 18a3 3 0 0 0-2.2-5"}],["path",{d:"M16 9h.01"}],["path",{d:"M16.82 3.94a3 3 0 1 1 3.237 4.868l1.815 2.587a1.5 1.5 0 0 1-1.5 2.1l-2.872-.453a3 3 0 0 0-3.5 3"}],["path",{d:"M17 4.988a3 3 0 1 0-5.2 2.052A7 7 0 0 0 4 14.015 4 4 0 0 0 8 18"}]];var zA=[["path",{d:"M22 17a10 10 0 0 0-20 0"}],["path",{d:"M6 17a6 6 0 0 1 12 0"}],["path",{d:"M10 17a2 2 0 0 1 4 0"}]];var NA=[["rect",{width:"12",height:"20",x:"6",y:"2",rx:"2"}],["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2"}]];var FA=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z"}],["path",{d:"M12 6.5v11"}],["path",{d:"M15 9.4a4 4 0 1 0 0 5.2"}]];var HA=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z"}],["path",{d:"M8 12h5"}],["path",{d:"M16 9.5a4 4 0 1 0 0 5.2"}]];var DA=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z"}],["path",{d:"M8 7h8"}],["path",{d:"M12 17.5 8 15h1a4 4 0 0 0 0-8"}],["path",{d:"M8 11h8"}]];var BA=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z"}],["path",{d:"m12 10 3-3"}],["path",{d:"m9 7 3 3v7.5"}],["path",{d:"M9 11h6"}],["path",{d:"M9 15h6"}]];var OA=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z"}],["path",{d:"M8 13h5"}],["path",{d:"M10 17V9.5a2.5 2.5 0 0 1 5 0"}],["path",{d:"M8 17h7"}]];var TA=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z"}],["path",{d:"M8 15h5"}],["path",{d:"M8 11h5a2 2 0 1 0 0-4h-3v10"}]];var PA=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z"}],["path",{d:"M10 17V7h5"}],["path",{d:"M10 11h4"}],["path",{d:"M8 15h5"}]];var SA=[["path",{d:"M13 16H8"}],["path",{d:"M14 8H8"}],["path",{d:"M16 12H8"}],["path",{d:"M4 3a1 1 0 0 1 1-1 1.3 1.3 0 0 1 .7.2l.933.6a1.3 1.3 0 0 0 1.4 0l.934-.6a1.3 1.3 0 0 1 1.4 0l.933.6a1.3 1.3 0 0 0 1.4 0l.933-.6a1.3 1.3 0 0 1 1.4 0l.934.6a1.3 1.3 0 0 0 1.4 0l.933-.6A1.3 1.3 0 0 1 19 2a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1 1.3 1.3 0 0 1-.7-.2l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.934.6a1.3 1.3 0 0 1-1.4 0l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-1.4 0l-.934-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-.7.2 1 1 0 0 1-1-1z"}]];var AA=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z"}],["path",{d:"M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8"}],["path",{d:"M12 17.5v-11"}]];var qA=[["path",{d:"M10 6.5v11a5.5 5.5 0 0 0 5.5-5.5"}],["path",{d:"m14 8-6 3"}],["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1z"}]];var EA=[["path",{d:"M14 4v16H3a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1z"}],["circle",{cx:"14",cy:"12",r:"8"}]];var c6=[["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2"}],["path",{d:"M12 12h.01"}],["path",{d:"M17 12h.01"}],["path",{d:"M7 12h.01"}]];var CA=[["path",{d:"M20 6a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-4a2 2 0 0 1-1.6-.8l-1.6-2.13a1 1 0 0 0-1.6 0L9.6 17.2A2 2 0 0 1 8 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2z"}]];var xA=[["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2"}]];var wA=[["rect",{width:"12",height:"20",x:"6",y:"2",rx:"2"}]];var UA=[["path",{d:"M7 19H4.815a1.83 1.83 0 0 1-1.57-.881 1.785 1.785 0 0 1-.004-1.784L7.196 9.5"}],["path",{d:"M11 19h8.203a1.83 1.83 0 0 0 1.556-.89 1.784 1.784 0 0 0 0-1.775l-1.226-2.12"}],["path",{d:"m14 16-3 3 3 3"}],["path",{d:"M8.293 13.596 7.196 9.5 3.1 10.598"}],["path",{d:"m9.344 5.811 1.093-1.892A1.83 1.83 0 0 1 11.985 3a1.784 1.784 0 0 1 1.546.888l3.943 6.843"}],["path",{d:"m13.378 9.633 4.096 1.098 1.097-4.096"}]];var MA=[["path",{d:"m15 14 5-5-5-5"}],["path",{d:"M20 9H9.5A5.5 5.5 0 0 0 4 14.5A5.5 5.5 0 0 0 9.5 20H13"}]];var RA=[["circle",{cx:"12",cy:"17",r:"1"}],["path",{d:"M21 7v6h-6"}],["path",{d:"M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7"}]];var jA=[["path",{d:"M21 7v6h-6"}],["path",{d:"M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7"}]];var LA=[["path",{d:"M21 12a9 9 0 0 0-9-9 9.75 9.75 0 0 0-6.74 2.74L3 8"}],["path",{d:"M3 3v5h5"}],["path",{d:"M3 12a9 9 0 0 0 9 9 9.75 9.75 0 0 0 6.74-2.74L21 16"}],["path",{d:"M16 16h5v5"}],["circle",{cx:"12",cy:"12",r:"1"}]];var yA=[["path",{d:"M21 12a9 9 0 0 0-9-9 9.75 9.75 0 0 0-6.74 2.74L3 8"}],["path",{d:"M3 3v5h5"}],["path",{d:"M3 12a9 9 0 0 0 9 9 9.75 9.75 0 0 0 6.74-2.74L21 16"}],["path",{d:"M16 16h5v5"}]];var fA=[["path",{d:"M21 8L18.74 5.74A9.75 9.75 0 0 0 12 3C11 3 10.03 3.16 9.13 3.47"}],["path",{d:"M8 16H3v5"}],["path",{d:"M3 12C3 9.51 4 7.26 5.64 5.64"}],["path",{d:"m3 16 2.26 2.26A9.75 9.75 0 0 0 12 21c2.49 0 4.74-1 6.36-2.64"}],["path",{d:"M21 12c0 1-.16 1.97-.47 2.87"}],["path",{d:"M21 3v5h-5"}],["path",{d:"M22 22 2 2"}]];var kA=[["path",{d:"M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8"}],["path",{d:"M21 3v5h-5"}],["path",{d:"M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16"}],["path",{d:"M8 16H3v5"}]];var bA=[["path",{d:"M5 6a4 4 0 0 1 4-4h6a4 4 0 0 1 4 4v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6Z"}],["path",{d:"M5 10h14"}],["path",{d:"M15 7v6"}]];var hA=[["path",{d:"M17 3v10"}],["path",{d:"m12.67 5.5 8.66 5"}],["path",{d:"m12.67 10.5 8.66-5"}],["path",{d:"M9 17a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-2z"}]];var vA=[["path",{d:"M4 7V4h16v3"}],["path",{d:"M5 20h6"}],["path",{d:"M13 4 8 20"}],["path",{d:"m15 15 5 5"}],["path",{d:"m20 15-5 5"}]];var $A=[["path",{d:"m17 2 4 4-4 4"}],["path",{d:"M3 11v-1a4 4 0 0 1 4-4h14"}],["path",{d:"m7 22-4-4 4-4"}],["path",{d:"M21 13v1a4 4 0 0 1-4 4H3"}],["path",{d:"M11 10h1v4"}]];var gA=[["path",{d:"m2 9 3-3 3 3"}],["path",{d:"M13 18H7a2 2 0 0 1-2-2V6"}],["path",{d:"m22 15-3 3-3-3"}],["path",{d:"M11 6h6a2 2 0 0 1 2 2v10"}]];var _A=[["path",{d:"m17 2 4 4-4 4"}],["path",{d:"M3 11v-1a4 4 0 0 1 4-4h14"}],["path",{d:"m7 22-4-4 4-4"}],["path",{d:"M21 13v1a4 4 0 0 1-4 4H3"}]];var mA=[["path",{d:"M14 14a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1"}],["path",{d:"M14 4a1 1 0 0 1 1-1"}],["path",{d:"M15 10a1 1 0 0 1-1-1"}],["path",{d:"M19 14a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1"}],["path",{d:"M21 4a1 1 0 0 0-1-1"}],["path",{d:"M21 9a1 1 0 0 1-1 1"}],["path",{d:"m3 7 3 3 3-3"}],["path",{d:"M6 10V5a2 2 0 0 1 2-2h2"}],["rect",{x:"3",y:"14",width:"7",height:"7",rx:"1"}]];var uA=[["path",{d:"M14 4a1 1 0 0 1 1-1"}],["path",{d:"M15 10a1 1 0 0 1-1-1"}],["path",{d:"M21 4a1 1 0 0 0-1-1"}],["path",{d:"M21 9a1 1 0 0 1-1 1"}],["path",{d:"m3 7 3 3 3-3"}],["path",{d:"M6 10V5a2 2 0 0 1 2-2h2"}],["rect",{x:"3",y:"14",width:"7",height:"7",rx:"1"}]];var dA=[["path",{d:"m12 17-5-5 5-5"}],["path",{d:"M22 18v-2a4 4 0 0 0-4-4H7"}],["path",{d:"m7 17-5-5 5-5"}]];var cA=[["path",{d:"M20 18v-2a4 4 0 0 0-4-4H4"}],["path",{d:"m9 17-5-5 5-5"}]];var pA=[["path",{d:"M12 6a2 2 0 0 0-3.414-1.414l-6 6a2 2 0 0 0 0 2.828l6 6A2 2 0 0 0 12 18z"}],["path",{d:"M22 6a2 2 0 0 0-3.414-1.414l-6 6a2 2 0 0 0 0 2.828l6 6A2 2 0 0 0 22 18z"}]];var nA=[["path",{d:"M12 11.22C11 9.997 10 9 10 8a2 2 0 0 1 4 0c0 1-.998 2.002-2.01 3.22"}],["path",{d:"m12 18 2.57-3.5"}],["path",{d:"M6.243 9.016a7 7 0 0 1 11.507-.009"}],["path",{d:"M9.35 14.53 12 11.22"}],["path",{d:"M9.35 14.53C7.728 12.246 6 10.221 6 7a6 5 0 0 1 12 0c-.005 3.22-1.778 5.235-3.43 7.5l3.557 4.527a1 1 0 0 1-.203 1.43l-1.894 1.36a1 1 0 0 1-1.384-.215L12 18l-2.679 3.593a1 1 0 0 1-1.39.213l-1.865-1.353a1 1 0 0 1-.203-1.422z"}]];var iA=[["path",{d:"M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 0 0-2.91-.09z"}],["path",{d:"m12 15-3-3a22 22 0 0 1 2-3.95A12.88 12.88 0 0 1 22 2c0 2.72-.78 7.5-6 11a22.35 22.35 0 0 1-4 2z"}],["path",{d:"M9 12H4s.55-3.03 2-4c1.62-1.08 5 0 5 0"}],["path",{d:"M12 15v5s3.03-.55 4-2c1.08-1.62 0-5 0-5"}]];var lA=[["polyline",{points:"3.5 2 6.5 12.5 18 12.5"}],["line",{x1:"9.5",x2:"5.5",y1:"12.5",y2:"20"}],["line",{x1:"15",x2:"18.5",y1:"12.5",y2:"20"}],["path",{d:"M2.75 18a13 13 0 0 0 18.5 0"}]];var sA=[["path",{d:"M6 19V5"}],["path",{d:"M10 19V6.8"}],["path",{d:"M14 19v-7.8"}],["path",{d:"M18 5v4"}],["path",{d:"M18 19v-6"}],["path",{d:"M22 19V9"}],["path",{d:"M2 19V9a4 4 0 0 1 4-4c2 0 4 1.33 6 4s4 4 6 4a4 4 0 1 0-3-6.65"}]];var rA=[["path",{d:"M17 10h-1a4 4 0 1 1 4-4v.534"}],["path",{d:"M17 6h1a4 4 0 0 1 1.42 7.74l-2.29.87a6 6 0 0 1-5.339-10.68l2.069-1.31"}],["path",{d:"M4.5 17c2.8-.5 4.4 0 5.5.8s1.8 2.2 2.3 3.7c-2 .4-3.5.4-4.8-.3-1.2-.6-2.3-1.9-3-4.2"}],["path",{d:"M9.77 12C4 15 2 22 2 22"}],["circle",{cx:"17",cy:"8",r:"2"}]];var p6=[["path",{d:"M16.466 7.5C15.643 4.237 13.952 2 12 2 9.239 2 7 6.477 7 12s2.239 10 5 10c.342 0 .677-.069 1-.2"}],["path",{d:"m15.194 13.707 3.814 1.86-1.86 3.814"}],["path",{d:"M19 15.57c-1.804.885-4.274 1.43-7 1.43-5.523 0-10-2.239-10-5s4.477-5 10-5c4.838 0 8.873 1.718 9.8 4"}]];var aA=[["path",{d:"m14.5 9.5 1 1"}],["path",{d:"m15.5 8.5-4 4"}],["path",{d:"M3 12a9 9 0 1 0 9-9 9.74 9.74 0 0 0-6.74 2.74L3 8"}],["path",{d:"M3 3v5h5"}],["circle",{cx:"10",cy:"14",r:"2"}]];var tA=[["path",{d:"M20 9V7a2 2 0 0 0-2-2h-6"}],["path",{d:"m15 2-3 3 3 3"}],["path",{d:"M20 13v5a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h2"}]];var oA=[["path",{d:"M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8"}],["path",{d:"M3 3v5h5"}]];var eA=[["path",{d:"M12 5H6a2 2 0 0 0-2 2v3"}],["path",{d:"m9 8 3-3-3-3"}],["path",{d:"M4 14v4a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2"}]];var Zq=[["path",{d:"M21 12a9 9 0 1 1-9-9c2.52 0 4.93 1 6.74 2.74L21 8"}],["path",{d:"M21 3v5h-5"}]];var Jq=[["circle",{cx:"6",cy:"19",r:"3"}],["path",{d:"M9 19h8.5c.4 0 .9-.1 1.3-.2"}],["path",{d:"M5.2 5.2A3.5 3.53 0 0 0 6.5 12H12"}],["path",{d:"m2 2 20 20"}],["path",{d:"M21 15.3a3.5 3.5 0 0 0-3.3-3.3"}],["path",{d:"M15 5h-4.3"}],["circle",{cx:"18",cy:"5",r:"3"}]];var Kq=[["circle",{cx:"6",cy:"19",r:"3"}],["path",{d:"M9 19h8.5a3.5 3.5 0 0 0 0-7h-11a3.5 3.5 0 0 1 0-7H15"}],["circle",{cx:"18",cy:"5",r:"3"}]];var Yq=[["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2"}],["path",{d:"M6.01 18H6"}],["path",{d:"M10.01 18H10"}],["path",{d:"M15 10v4"}],["path",{d:"M17.84 7.17a4 4 0 0 0-5.66 0"}],["path",{d:"M20.66 4.34a8 8 0 0 0-11.31 0"}]];var n6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 12h18"}]];var i6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M21 9H3"}],["path",{d:"M21 15H3"}]];var Xq=[["path",{d:"M4 11a9 9 0 0 1 9 9"}],["path",{d:"M4 4a16 16 0 0 1 16 16"}],["circle",{cx:"5",cy:"19",r:"1"}]];var Wq=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M21 7.5H3"}],["path",{d:"M21 12H3"}],["path",{d:"M21 16.5H3"}]];var Qq=[["path",{d:"M12 15v-3.014"}],["path",{d:"M16 15v-3.014"}],["path",{d:"M20 6H4"}],["path",{d:"M20 8V4"}],["path",{d:"M4 8V4"}],["path",{d:"M8 15v-3.014"}],["rect",{x:"3",y:"12",width:"18",height:"7",rx:"1"}]];var Vq=[["path",{d:"M21.3 15.3a2.4 2.4 0 0 1 0 3.4l-2.6 2.6a2.4 2.4 0 0 1-3.4 0L2.7 8.7a2.41 2.41 0 0 1 0-3.4l2.6-2.6a2.41 2.41 0 0 1 3.4 0Z"}],["path",{d:"m14.5 12.5 2-2"}],["path",{d:"m11.5 9.5 2-2"}],["path",{d:"m8.5 6.5 2-2"}],["path",{d:"m17.5 15.5 2-2"}]];var Gq=[["path",{d:"M6 11h8a4 4 0 0 0 0-8H9v18"}],["path",{d:"M6 15h8"}]];var Iq=[["path",{d:"M10 2v15"}],["path",{d:"M7 22a4 4 0 0 1-4-4 1 1 0 0 1 1-1h16a1 1 0 0 1 1 1 4 4 0 0 1-4 4z"}],["path",{d:"M9.159 2.46a1 1 0 0 1 1.521-.193l9.977 8.98A1 1 0 0 1 20 13H4a1 1 0 0 1-.824-1.567z"}]];var zq=[["path",{d:"M7 21h10"}],["path",{d:"M12 21a9 9 0 0 0 9-9H3a9 9 0 0 0 9 9Z"}],["path",{d:"M11.38 12a2.4 2.4 0 0 1-.4-4.77 2.4 2.4 0 0 1 3.2-2.77 2.4 2.4 0 0 1 3.47-.63 2.4 2.4 0 0 1 3.37 3.37 2.4 2.4 0 0 1-1.1 3.7 2.51 2.51 0 0 1 .03 1.1"}],["path",{d:"m13 12 4-4"}],["path",{d:"M10.9 7.25A3.99 3.99 0 0 0 4 10c0 .73.2 1.41.54 2"}]];var Nq=[["path",{d:"m2.37 11.223 8.372-6.777a2 2 0 0 1 2.516 0l8.371 6.777"}],["path",{d:"M21 15a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-5.25"}],["path",{d:"M3 15a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h9"}],["path",{d:"m6.67 15 6.13 4.6a2 2 0 0 0 2.8-.4l3.15-4.2"}],["rect",{width:"20",height:"4",x:"2",y:"11",rx:"1"}]];var Fq=[["path",{d:"M4 10a7.31 7.31 0 0 0 10 10Z"}],["path",{d:"m9 15 3-3"}],["path",{d:"M17 13a6 6 0 0 0-6-6"}],["path",{d:"M21 13A10 10 0 0 0 11 3"}]];var Hq=[["path",{d:"m13.5 6.5-3.148-3.148a1.205 1.205 0 0 0-1.704 0L6.352 5.648a1.205 1.205 0 0 0 0 1.704L9.5 10.5"}],["path",{d:"M16.5 7.5 19 5"}],["path",{d:"m17.5 10.5 3.148 3.148a1.205 1.205 0 0 1 0 1.704l-2.296 2.296a1.205 1.205 0 0 1-1.704 0L13.5 14.5"}],["path",{d:"M9 21a6 6 0 0 0-6-6"}],["path",{d:"M9.352 10.648a1.205 1.205 0 0 0 0 1.704l2.296 2.296a1.205 1.205 0 0 0 1.704 0l4.296-4.296a1.205 1.205 0 0 0 0-1.704l-2.296-2.296a1.205 1.205 0 0 0-1.704 0z"}]];var Dq=[["path",{d:"m20 19.5-5.5 1.2"}],["path",{d:"M14.5 4v11.22a1 1 0 0 0 1.242.97L20 15.2"}],["path",{d:"m2.978 19.351 5.549-1.363A2 2 0 0 0 10 16V2"}],["path",{d:"M20 10 4 13.5"}]];var Bq=[["path",{d:"M10 2v3a1 1 0 0 0 1 1h5"}],["path",{d:"M18 18v-6a1 1 0 0 0-1-1h-6a1 1 0 0 0-1 1v6"}],["path",{d:"M18 22H4a2 2 0 0 1-2-2V6"}],["path",{d:"M8 18a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9.172a2 2 0 0 1 1.414.586l2.828 2.828A2 2 0 0 1 22 6.828V16a2 2 0 0 1-2.01 2z"}]];var Oq=[["path",{d:"M13 13H8a1 1 0 0 0-1 1v7"}],["path",{d:"M14 8h1"}],["path",{d:"M17 21v-4"}],["path",{d:"m2 2 20 20"}],["path",{d:"M20.41 20.41A2 2 0 0 1 19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 .59-1.41"}],["path",{d:"M29.5 11.5s5 5 4 5"}],["path",{d:"M9 3h6.2a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V15"}]];var Tq=[["path",{d:"M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z"}],["path",{d:"M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7"}],["path",{d:"M7 3v4a1 1 0 0 0 1 1h7"}]];var l6=[["path",{d:"M5 7v11a1 1 0 0 0 1 1h11"}],["path",{d:"M5.293 18.707 11 13"}],["circle",{cx:"19",cy:"19",r:"2"}],["circle",{cx:"5",cy:"5",r:"2"}]];var Pq=[["path",{d:"m16 16 3-8 3 8c-.87.65-1.92 1-3 1s-2.13-.35-3-1Z"}],["path",{d:"m2 16 3-8 3 8c-.87.65-1.92 1-3 1s-2.13-.35-3-1Z"}],["path",{d:"M7 21h10"}],["path",{d:"M12 3v18"}],["path",{d:"M3 7h2c2 0 5-1 7-2 2 1 5 2 7 2h2"}]];var Sq=[["path",{d:"M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7"}],["path",{d:"M14 15H9v-5"}],["path",{d:"M16 3h5v5"}],["path",{d:"M21 3 9 15"}]];var Aq=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["path",{d:"M8 7v10"}],["path",{d:"M12 7v10"}],["path",{d:"M17 7v10"}]];var qq=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["circle",{cx:"12",cy:"12",r:"1"}],["path",{d:"M18.944 12.33a1 1 0 0 0 0-.66 7.5 7.5 0 0 0-13.888 0 1 1 0 0 0 0 .66 7.5 7.5 0 0 0 13.888 0"}]];var Eq=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["path",{d:"M8 14s1.5 2 4 2 4-2 4-2"}],["path",{d:"M9 9h.01"}],["path",{d:"M15 9h.01"}]];var Cq=[["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["path",{d:"M7.828 13.07A3 3 0 0 1 12 8.764a3 3 0 0 1 4.172 4.306l-3.447 3.62a1 1 0 0 1-1.449 0z"}]];var xq=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["path",{d:"M7 12h10"}]];var wq=[["path",{d:"M17 12v4a1 1 0 0 1-1 1h-4"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M17 8V7"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M7 17h.01"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["rect",{x:"7",y:"7",width:"5",height:"5",rx:"1"}]];var Uq=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["circle",{cx:"12",cy:"12",r:"3"}],["path",{d:"m16 16-1.9-1.9"}]];var Mq=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["path",{d:"M7 8h8"}],["path",{d:"M7 12h10"}],["path",{d:"M7 16h6"}]];var Rq=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}]];var jq=[["path",{d:"M14 21v-3a2 2 0 0 0-4 0v3"}],["path",{d:"M18 5v16"}],["path",{d:"m4 6 7.106-3.79a2 2 0 0 1 1.788 0L20 6"}],["path",{d:"m6 11-3.52 2.147a1 1 0 0 0-.48.854V19a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-5a1 1 0 0 0-.48-.853L18 11"}],["path",{d:"M6 5v16"}],["circle",{cx:"12",cy:"9",r:"2"}]];var Lq=[["path",{d:"M5.42 9.42 8 12"}],["circle",{cx:"4",cy:"8",r:"2"}],["path",{d:"m14 6-8.58 8.58"}],["circle",{cx:"4",cy:"16",r:"2"}],["path",{d:"M10.8 14.8 14 18"}],["path",{d:"M16 12h-2"}],["path",{d:"M22 12h-2"}]];var yq=[["circle",{cx:"6",cy:"6",r:"3"}],["path",{d:"M8.12 8.12 12 12"}],["path",{d:"M20 4 8.12 15.88"}],["circle",{cx:"6",cy:"18",r:"3"}],["path",{d:"M14.8 14.8 20 20"}]];var fq=[["path",{d:"M13 3H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-3"}],["path",{d:"M8 21h8"}],["path",{d:"M12 17v4"}],["path",{d:"m22 3-5 5"}],["path",{d:"m17 3 5 5"}]];var kq=[["path",{d:"M13 3H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-3"}],["path",{d:"M8 21h8"}],["path",{d:"M12 17v4"}],["path",{d:"m17 8 5-5"}],["path",{d:"M17 3h5v5"}]];var bq=[["path",{d:"M15 12h-5"}],["path",{d:"M15 8h-5"}],["path",{d:"M19 17V5a2 2 0 0 0-2-2H4"}],["path",{d:"M8 21h12a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1H11a1 1 0 0 0-1 1v1a2 2 0 1 1-4 0V5a2 2 0 1 0-4 0v2a1 1 0 0 0 1 1h3"}]];var hq=[["path",{d:"M19 17V5a2 2 0 0 0-2-2H4"}],["path",{d:"M8 21h12a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1H11a1 1 0 0 0-1 1v1a2 2 0 1 1-4 0V5a2 2 0 1 0-4 0v2a1 1 0 0 0 1 1h3"}]];var vq=[["path",{d:"m13 13.5 2-2.5-2-2.5"}],["path",{d:"m21 21-4.3-4.3"}],["path",{d:"M9 8.5 7 11l2 2.5"}],["circle",{cx:"11",cy:"11",r:"8"}]];var $q=[["path",{d:"m8 11 2 2 4-4"}],["circle",{cx:"11",cy:"11",r:"8"}],["path",{d:"m21 21-4.3-4.3"}]];var gq=[["path",{d:"m13.5 8.5-5 5"}],["circle",{cx:"11",cy:"11",r:"8"}],["path",{d:"m21 21-4.3-4.3"}]];var _q=[["path",{d:"m13.5 8.5-5 5"}],["path",{d:"m8.5 8.5 5 5"}],["circle",{cx:"11",cy:"11",r:"8"}],["path",{d:"m21 21-4.3-4.3"}]];var mq=[["path",{d:"m21 21-4.34-4.34"}],["circle",{cx:"11",cy:"11",r:"8"}]];var uq=[["path",{d:"M16 5a4 3 0 0 0-8 0c0 4 8 3 8 7a4 3 0 0 1-8 0"}],["path",{d:"M8 19a4 3 0 0 0 8 0c0-4-8-3-8-7a4 3 0 0 1 8 0"}]];var s6=[["path",{d:"M3.714 3.048a.498.498 0 0 0-.683.627l2.843 7.627a2 2 0 0 1 0 1.396l-2.842 7.627a.498.498 0 0 0 .682.627l18-8.5a.5.5 0 0 0 0-.904z"}],["path",{d:"M6 12h16"}]];var dq=[["rect",{x:"14",y:"14",width:"8",height:"8",rx:"2"}],["rect",{x:"2",y:"2",width:"8",height:"8",rx:"2"}],["path",{d:"M7 14v1a2 2 0 0 0 2 2h1"}],["path",{d:"M14 7h1a2 2 0 0 1 2 2v1"}]];var cq=[["path",{d:"M14.536 21.686a.5.5 0 0 0 .937-.024l6.5-19a.496.496 0 0 0-.635-.635l-19 6.5a.5.5 0 0 0-.024.937l7.93 3.18a2 2 0 0 1 1.112 1.11z"}],["path",{d:"m21.854 2.147-10.94 10.939"}]];var pq=[["path",{d:"m16 16-4 4-4-4"}],["path",{d:"M3 12h18"}],["path",{d:"m8 8 4-4 4 4"}]];var nq=[["path",{d:"m10.852 14.772-.383.923"}],["path",{d:"M13.148 14.772a3 3 0 1 0-2.296-5.544l-.383-.923"}],["path",{d:"m13.148 9.228.383-.923"}],["path",{d:"m13.53 15.696-.382-.924a3 3 0 1 1-2.296-5.544"}],["path",{d:"m14.772 10.852.923-.383"}],["path",{d:"m14.772 13.148.923.383"}],["path",{d:"M4.5 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-.5"}],["path",{d:"M4.5 14H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2h-.5"}],["path",{d:"M6 18h.01"}],["path",{d:"M6 6h.01"}],["path",{d:"m9.228 10.852-.923-.383"}],["path",{d:"m9.228 13.148-.923.383"}]];var iq=[["path",{d:"M12 3v18"}],["path",{d:"m16 16 4-4-4-4"}],["path",{d:"m8 8-4 4 4 4"}]];var lq=[["path",{d:"M6 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-2"}],["path",{d:"M6 14H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2h-2"}],["path",{d:"M6 6h.01"}],["path",{d:"M6 18h.01"}],["path",{d:"m13 6-4 6h6l-4 6"}]];var sq=[["path",{d:"M7 2h13a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-5"}],["path",{d:"M10 10 2.5 2.5C2 2 2 2.5 2 5v3a2 2 0 0 0 2 2h6z"}],["path",{d:"M22 17v-1a2 2 0 0 0-2-2h-1"}],["path",{d:"M4 14a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16.5l1-.5.5.5-8-8H4z"}],["path",{d:"M6 18h.01"}],["path",{d:"m2 2 20 20"}]];var rq=[["rect",{width:"20",height:"8",x:"2",y:"2",rx:"2",ry:"2"}],["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2",ry:"2"}],["line",{x1:"6",x2:"6.01",y1:"6",y2:"6"}],["line",{x1:"6",x2:"6.01",y1:"18",y2:"18"}]];var aq=[["path",{d:"M14 17H5"}],["path",{d:"M19 7h-9"}],["circle",{cx:"17",cy:"17",r:"3"}],["circle",{cx:"7",cy:"7",r:"3"}]];var tq=[["path",{d:"M9.671 4.136a2.34 2.34 0 0 1 4.659 0 2.34 2.34 0 0 0 3.319 1.915 2.34 2.34 0 0 1 2.33 4.033 2.34 2.34 0 0 0 0 3.831 2.34 2.34 0 0 1-2.33 4.033 2.34 2.34 0 0 0-3.319 1.915 2.34 2.34 0 0 1-4.659 0 2.34 2.34 0 0 0-3.32-1.915 2.34 2.34 0 0 1-2.33-4.033 2.34 2.34 0 0 0 0-3.831A2.34 2.34 0 0 1 6.35 6.051a2.34 2.34 0 0 0 3.319-1.915"}],["circle",{cx:"12",cy:"12",r:"3"}]];var oq=[["path",{d:"M8.3 10a.7.7 0 0 1-.626-1.079L11.4 3a.7.7 0 0 1 1.198-.043L16.3 8.9a.7.7 0 0 1-.572 1.1Z"}],["rect",{x:"3",y:"14",width:"7",height:"7",rx:"1"}],["circle",{cx:"17.5",cy:"17.5",r:"3.5"}]];var eq=[["circle",{cx:"18",cy:"5",r:"3"}],["circle",{cx:"6",cy:"12",r:"3"}],["circle",{cx:"18",cy:"19",r:"3"}],["line",{x1:"8.59",x2:"15.42",y1:"13.51",y2:"17.49"}],["line",{x1:"15.41",x2:"8.59",y1:"6.51",y2:"10.49"}]];var ZE=[["path",{d:"M12 2v13"}],["path",{d:"m16 6-4-4-4 4"}],["path",{d:"M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8"}]];var JE=[["path",{d:"M14 11a2 2 0 1 1-4 0 4 4 0 0 1 8 0 6 6 0 0 1-12 0 8 8 0 0 1 16 0 10 10 0 1 1-20 0 11.93 11.93 0 0 1 2.42-7.22 2 2 0 1 1 3.16 2.44"}]];var KE=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["line",{x1:"3",x2:"21",y1:"9",y2:"9"}],["line",{x1:"3",x2:"21",y1:"15",y2:"15"}],["line",{x1:"9",x2:"9",y1:"9",y2:"21"}],["line",{x1:"15",x2:"15",y1:"9",y2:"21"}]];var YE=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"}],["path",{d:"m4.243 5.21 14.39 12.472"}]];var XE=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"}],["path",{d:"M12 8v4"}],["path",{d:"M12 16h.01"}]];var WE=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"}],["path",{d:"m9 12 2 2 4-4"}]];var QE=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"}],["path",{d:"M8 12h.01"}],["path",{d:"M12 12h.01"}],["path",{d:"M16 12h.01"}]];var VE=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"}],["path",{d:"M12 22V2"}]];var GE=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"}],["path",{d:"M9 12h6"}]];var IE=[["path",{d:"m2 2 20 20"}],["path",{d:"M5 5a1 1 0 0 0-1 1v7c0 5 3.5 7.5 7.67 8.94a1 1 0 0 0 .67.01c2.35-.82 4.48-1.97 5.9-3.71"}],["path",{d:"M9.309 3.652A12.252 12.252 0 0 0 11.24 2.28a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1v7a9.784 9.784 0 0 1-.08 1.264"}]];var zE=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"}],["path",{d:"M9 12h6"}],["path",{d:"M12 9v6"}]];var r6=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"}],["path",{d:"M9.1 9a3 3 0 0 1 5.82 1c0 2-3 3-3 3"}],["path",{d:"M12 17h.01"}]];var NE=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"}],["path",{d:"M6.376 18.91a6 6 0 0 1 11.249.003"}],["circle",{cx:"12",cy:"11",r:"4"}]];var a6=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"}],["path",{d:"m14.5 9.5-5 5"}],["path",{d:"m9.5 9.5 5 5"}]];var FE=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"}]];var HE=[["circle",{cx:"12",cy:"12",r:"8"}],["path",{d:"M12 2v7.5"}],["path",{d:"m19 5-5.23 5.23"}],["path",{d:"M22 12h-7.5"}],["path",{d:"m19 19-5.23-5.23"}],["path",{d:"M12 14.5V22"}],["path",{d:"M10.23 13.77 5 19"}],["path",{d:"M9.5 12H2"}],["path",{d:"M10.23 10.23 5 5"}],["circle",{cx:"12",cy:"12",r:"2.5"}]];var DE=[["path",{d:"M12 10.189V14"}],["path",{d:"M12 2v3"}],["path",{d:"M19 13V7a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v6"}],["path",{d:"M19.38 20A11.6 11.6 0 0 0 21 14l-8.188-3.639a2 2 0 0 0-1.624 0L3 14a11.6 11.6 0 0 0 2.81 7.76"}],["path",{d:"M2 21c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1s1.2 1 2.5 1c2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"}]];var BE=[["path",{d:"M20.38 3.46 16 2a4 4 0 0 1-8 0L3.62 3.46a2 2 0 0 0-1.34 2.23l.58 3.47a1 1 0 0 0 .99.84H6v10c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V10h2.15a1 1 0 0 0 .99-.84l.58-3.47a2 2 0 0 0-1.34-2.23z"}]];var OE=[["path",{d:"M16 10a4 4 0 0 1-8 0"}],["path",{d:"M3.103 6.034h17.794"}],["path",{d:"M3.4 5.467a2 2 0 0 0-.4 1.2V20a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6.667a2 2 0 0 0-.4-1.2l-2-2.667A2 2 0 0 0 17 2H7a2 2 0 0 0-1.6.8z"}]];var TE=[["path",{d:"m15 11-1 9"}],["path",{d:"m19 11-4-7"}],["path",{d:"M2 11h20"}],["path",{d:"m3.5 11 1.6 7.4a2 2 0 0 0 2 1.6h9.8a2 2 0 0 0 2-1.6l1.7-7.4"}],["path",{d:"M4.5 15.5h15"}],["path",{d:"m5 11 4-7"}],["path",{d:"m9 11 1 9"}]];var PE=[["circle",{cx:"8",cy:"21",r:"1"}],["circle",{cx:"19",cy:"21",r:"1"}],["path",{d:"M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12"}]];var SE=[["path",{d:"M21.56 4.56a1.5 1.5 0 0 1 0 2.122l-.47.47a3 3 0 0 1-4.212-.03 3 3 0 0 1 0-4.243l.44-.44a1.5 1.5 0 0 1 2.121 0z"}],["path",{d:"M3 22a1 1 0 0 1-1-1v-3.586a1 1 0 0 1 .293-.707l3.355-3.355a1.205 1.205 0 0 1 1.704 0l3.296 3.296a1.205 1.205 0 0 1 0 1.704l-3.355 3.355a1 1 0 0 1-.707.293z"}],["path",{d:"m9 15 7.879-7.878"}]];var AE=[["path",{d:"m4 4 2.5 2.5"}],["path",{d:"M13.5 6.5a4.95 4.95 0 0 0-7 7"}],["path",{d:"M15 5 5 15"}],["path",{d:"M14 17v.01"}],["path",{d:"M10 16v.01"}],["path",{d:"M13 13v.01"}],["path",{d:"M16 10v.01"}],["path",{d:"M11 20v.01"}],["path",{d:"M17 14v.01"}],["path",{d:"M20 11v.01"}]];var qE=[["path",{d:"M10 22v-5"}],["path",{d:"M14 19v-2"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M18 20v-3"}],["path",{d:"M2 13h20"}],["path",{d:"M20 13V7l-5-5H6a2 2 0 0 0-2 2v9"}],["path",{d:"M6 20v-3"}]];var EE=[["path",{d:"M11 12h.01"}],["path",{d:"M13 22c.5-.5 1.12-1 2.5-1-1.38 0-2-.5-2.5-1"}],["path",{d:"M14 2a3.28 3.28 0 0 1-3.227 1.798l-6.17-.561A2.387 2.387 0 1 0 4.387 8H15.5a1 1 0 0 1 0 13 1 1 0 0 0 0-5H12a7 7 0 0 1-7-7V8"}],["path",{d:"M14 8a8.5 8.5 0 0 1 0 8"}],["path",{d:"M16 16c2 0 4.5-4 4-6"}]];var CE=[["path",{d:"m15 15 6 6m-6-6v4.8m0-4.8h4.8"}],["path",{d:"M9 19.8V15m0 0H4.2M9 15l-6 6"}],["path",{d:"M15 4.2V9m0 0h4.8M15 9l6-6"}],["path",{d:"M9 4.2V9m0 0H4.2M9 9 3 3"}]];var xE=[["path",{d:"M12 22v-5.172a2 2 0 0 0-.586-1.414L9.5 13.5"}],["path",{d:"M14.5 14.5 12 17"}],["path",{d:"M17 8.8A6 6 0 0 1 13.8 20H10A6.5 6.5 0 0 1 7 8a5 5 0 0 1 10 0z"}]];var wE=[["path",{d:"m18 14 4 4-4 4"}],["path",{d:"m18 2 4 4-4 4"}],["path",{d:"M2 18h1.973a4 4 0 0 0 3.3-1.7l5.454-8.6a4 4 0 0 1 3.3-1.7H22"}],["path",{d:"M2 6h1.972a4 4 0 0 1 3.6 2.2"}],["path",{d:"M22 18h-6.041a4 4 0 0 1-3.3-1.8l-.359-.45"}]];var UE=[["path",{d:"M18 7V5a1 1 0 0 0-1-1H6.5a.5.5 0 0 0-.4.8l4.5 6a2 2 0 0 1 0 2.4l-4.5 6a.5.5 0 0 0 .4.8H17a1 1 0 0 0 1-1v-2"}]];var ME=[["path",{d:"M2 20h.01"}],["path",{d:"M7 20v-4"}],["path",{d:"M12 20v-8"}],["path",{d:"M17 20V8"}]];var RE=[["path",{d:"M2 20h.01"}],["path",{d:"M7 20v-4"}]];var jE=[["path",{d:"M2 20h.01"}],["path",{d:"M7 20v-4"}],["path",{d:"M12 20v-8"}]];var LE=[["path",{d:"M2 20h.01"}]];var yE=[["path",{d:"M2 20h.01"}],["path",{d:"M7 20v-4"}],["path",{d:"M12 20v-8"}],["path",{d:"M17 20V8"}],["path",{d:"M22 4v16"}]];var fE=[["path",{d:"m21 17-2.156-1.868A.5.5 0 0 0 18 15.5v.5a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1c0-2.545-3.991-3.97-8.5-4a1 1 0 0 0 0 5c4.153 0 4.745-11.295 5.708-13.5a2.5 2.5 0 1 1 3.31 3.284"}],["path",{d:"M3 21h18"}]];var kE=[["path",{d:"M10 9H4L2 7l2-2h6"}],["path",{d:"M14 5h6l2 2-2 2h-6"}],["path",{d:"M10 22V4a2 2 0 1 1 4 0v18"}],["path",{d:"M8 22h8"}]];var bE=[["path",{d:"M12 13v8"}],["path",{d:"M12 3v3"}],["path",{d:"M18 6a2 2 0 0 1 1.387.56l2.307 2.22a1 1 0 0 1 0 1.44l-2.307 2.22A2 2 0 0 1 18 13H6a2 2 0 0 1-1.387-.56l-2.306-2.22a1 1 0 0 1 0-1.44l2.306-2.22A2 2 0 0 1 6 6z"}]];var hE=[["path",{d:"M7 18v-6a5 5 0 1 1 10 0v6"}],["path",{d:"M5 21a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-1a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2z"}],["path",{d:"M21 12h1"}],["path",{d:"M18.5 4.5 18 5"}],["path",{d:"M2 12h1"}],["path",{d:"M12 2v1"}],["path",{d:"m4.929 4.929.707.707"}],["path",{d:"M12 12v6"}]];var vE=[["path",{d:"M17.971 4.285A2 2 0 0 1 21 6v12a2 2 0 0 1-3.029 1.715l-9.997-5.998a2 2 0 0 1-.003-3.432z"}],["path",{d:"M3 20V4"}]];var $E=[["path",{d:"M21 4v16"}],["path",{d:"M6.029 4.285A2 2 0 0 0 3 6v12a2 2 0 0 0 3.029 1.715l9.997-5.998a2 2 0 0 0 .003-3.432z"}]];var gE=[["path",{d:"m12.5 17-.5-1-.5 1h1z"}],["path",{d:"M15 22a1 1 0 0 0 1-1v-1a2 2 0 0 0 1.56-3.25 8 8 0 1 0-11.12 0A2 2 0 0 0 8 20v1a1 1 0 0 0 1 1z"}],["circle",{cx:"15",cy:"12",r:"1"}],["circle",{cx:"9",cy:"12",r:"1"}]];var _E=[["rect",{width:"3",height:"8",x:"13",y:"2",rx:"1.5"}],["path",{d:"M19 8.5V10h1.5A1.5 1.5 0 1 0 19 8.5"}],["rect",{width:"3",height:"8",x:"8",y:"14",rx:"1.5"}],["path",{d:"M5 15.5V14H3.5A1.5 1.5 0 1 0 5 15.5"}],["rect",{width:"8",height:"3",x:"14",y:"13",rx:"1.5"}],["path",{d:"M15.5 19H14v1.5a1.5 1.5 0 1 0 1.5-1.5"}],["rect",{width:"8",height:"3",x:"2",y:"8",rx:"1.5"}],["path",{d:"M8.5 5H10V3.5A1.5 1.5 0 1 0 8.5 5"}]];var mE=[["path",{d:"M22 2 2 22"}]];var uE=[["path",{d:"M11 16.586V19a1 1 0 0 1-1 1H2L18.37 3.63a1 1 0 1 1 3 3l-9.663 9.663a1 1 0 0 1-1.414 0L8 14"}]];var dE=[["path",{d:"M10 5H3"}],["path",{d:"M12 19H3"}],["path",{d:"M14 3v4"}],["path",{d:"M16 17v4"}],["path",{d:"M21 12h-9"}],["path",{d:"M21 19h-5"}],["path",{d:"M21 5h-7"}],["path",{d:"M8 10v4"}],["path",{d:"M8 12H3"}]];var cE=[["rect",{width:"14",height:"20",x:"5",y:"2",rx:"2",ry:"2"}],["path",{d:"M12.667 8 10 12h4l-2.667 4"}]];var t6=[["path",{d:"M10 8h4"}],["path",{d:"M12 21v-9"}],["path",{d:"M12 8V3"}],["path",{d:"M17 16h4"}],["path",{d:"M19 12V3"}],["path",{d:"M19 21v-5"}],["path",{d:"M3 14h4"}],["path",{d:"M5 10V3"}],["path",{d:"M5 21v-7"}]];var pE=[["rect",{width:"7",height:"12",x:"2",y:"6",rx:"1"}],["path",{d:"M13 8.32a7.43 7.43 0 0 1 0 7.36"}],["path",{d:"M16.46 6.21a11.76 11.76 0 0 1 0 11.58"}],["path",{d:"M19.91 4.1a15.91 15.91 0 0 1 .01 15.8"}]];var nE=[["rect",{width:"14",height:"20",x:"5",y:"2",rx:"2",ry:"2"}],["path",{d:"M12 18h.01"}]];var iE=[["path",{d:"M22 11v1a10 10 0 1 1-9-10"}],["path",{d:"M8 14s1.5 2 4 2 4-2 4-2"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9"}],["path",{d:"M16 5h6"}],["path",{d:"M19 2v6"}]];var lE=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M8 14s1.5 2 4 2 4-2 4-2"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9"}]];var sE=[["path",{d:"M2 13a6 6 0 1 0 12 0 4 4 0 1 0-8 0 2 2 0 0 0 4 0"}],["circle",{cx:"10",cy:"13",r:"8"}],["path",{d:"M2 21h12c4.4 0 8-3.6 8-8V7a2 2 0 1 0-4 0v6"}],["path",{d:"M18 3 19.1 5.2"}],["path",{d:"M22 3 20.9 5.2"}]];var rE=[["path",{d:"M10.5 2v4"}],["path",{d:"M14 2H7a2 2 0 0 0-2 2"}],["path",{d:"M19.29 14.76A6.67 6.67 0 0 1 17 11a6.6 6.6 0 0 1-2.29 3.76c-1.15.92-1.71 2.04-1.71 3.19 0 2.22 1.8 4.05 4 4.05s4-1.83 4-4.05c0-1.16-.57-2.26-1.71-3.19"}],["path",{d:"M9.607 21H6a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h7V7a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v3"}]];var aE=[["path",{d:"m10 20-1.25-2.5L6 18"}],["path",{d:"M10 4 8.75 6.5 6 6"}],["path",{d:"m14 20 1.25-2.5L18 18"}],["path",{d:"m14 4 1.25 2.5L18 6"}],["path",{d:"m17 21-3-6h-4"}],["path",{d:"m17 3-3 6 1.5 3"}],["path",{d:"M2 12h6.5L10 9"}],["path",{d:"m20 10-1.5 2 1.5 2"}],["path",{d:"M22 12h-6.5L14 15"}],["path",{d:"m4 10 1.5 2L4 14"}],["path",{d:"m7 21 3-6-1.5-3"}],["path",{d:"m7 3 3 6h4"}]];var tE=[["path",{d:"M20 9V6a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v3"}],["path",{d:"M2 16a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{d:"M4 18v2"}],["path",{d:"M20 18v2"}],["path",{d:"M12 4v9"}]];var oE=[["path",{d:"M12 21a9 9 0 0 0 9-9H3a9 9 0 0 0 9 9Z"}],["path",{d:"M7 21h10"}],["path",{d:"M19.5 12 22 6"}],["path",{d:"M16.25 3c.27.1.8.53.75 1.36-.06.83-.93 1.2-1 2.02-.05.78.34 1.24.73 1.62"}],["path",{d:"M11.25 3c.27.1.8.53.74 1.36-.05.83-.93 1.2-.98 2.02-.06.78.33 1.24.72 1.62"}],["path",{d:"M6.25 3c.27.1.8.53.75 1.36-.06.83-.93 1.2-1 2.02-.05.78.34 1.24.74 1.62"}]];var eE=[["path",{d:"M22 17v1c0 .5-.5 1-1 1H3c-.5 0-1-.5-1-1v-1"}]];var ZC=[["path",{d:"M12 18v4"}],["path",{d:"M2 14.499a5.5 5.5 0 0 0 9.591 3.675.6.6 0 0 1 .818.001A5.5 5.5 0 0 0 22 14.5c0-2.29-1.5-4-3-5.5l-5.492-5.312a2 2 0 0 0-3-.02L5 8.999c-1.5 1.5-3 3.2-3 5.5"}]];var JC=[["path",{d:"M11.017 2.814a1 1 0 0 1 1.966 0l1.051 5.558a2 2 0 0 0 1.594 1.594l5.558 1.051a1 1 0 0 1 0 1.966l-5.558 1.051a2 2 0 0 0-1.594 1.594l-1.051 5.558a1 1 0 0 1-1.966 0l-1.051-5.558a2 2 0 0 0-1.594-1.594l-5.558-1.051a1 1 0 0 1 0-1.966l5.558-1.051a2 2 0 0 0 1.594-1.594z"}]];var o6=[["path",{d:"M11.017 2.814a1 1 0 0 1 1.966 0l1.051 5.558a2 2 0 0 0 1.594 1.594l5.558 1.051a1 1 0 0 1 0 1.966l-5.558 1.051a2 2 0 0 0-1.594 1.594l-1.051 5.558a1 1 0 0 1-1.966 0l-1.051-5.558a2 2 0 0 0-1.594-1.594l-5.558-1.051a1 1 0 0 1 0-1.966l5.558-1.051a2 2 0 0 0 1.594-1.594z"}],["path",{d:"M20 2v4"}],["path",{d:"M22 4h-4"}],["circle",{cx:"4",cy:"20",r:"2"}]];var KC=[["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2"}],["path",{d:"M12 6h.01"}],["circle",{cx:"12",cy:"14",r:"4"}],["path",{d:"M12 14h.01"}]];var YC=[["path",{d:"M8.8 20v-4.1l1.9.2a2.3 2.3 0 0 0 2.164-2.1V8.3A5.37 5.37 0 0 0 2 8.25c0 2.8.656 3.054 1 4.55a5.77 5.77 0 0 1 .029 2.758L2 20"}],["path",{d:"M19.8 17.8a7.5 7.5 0 0 0 .003-10.603"}],["path",{d:"M17 15a3.5 3.5 0 0 0-.025-4.975"}]];var XC=[["path",{d:"m6 16 6-12 6 12"}],["path",{d:"M8 12h8"}],["path",{d:"M4 21c1.1 0 1.1-1 2.3-1s1.1 1 2.3 1c1.1 0 1.1-1 2.3-1 1.1 0 1.1 1 2.3 1 1.1 0 1.1-1 2.3-1 1.1 0 1.1 1 2.3 1 1.1 0 1.1-1 2.3-1"}]];var WC=[["path",{d:"m6 16 6-12 6 12"}],["path",{d:"M8 12h8"}],["path",{d:"m16 20 2 2 4-4"}]];var QC=[["path",{d:"M12.034 12.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.943l-3.444 1.068a1 1 0 0 0-.66.66l-1.067 3.443a.5.5 0 0 1-.943.033z"}],["path",{d:"M5 17A12 12 0 0 1 17 5"}],["circle",{cx:"19",cy:"5",r:"2"}],["circle",{cx:"5",cy:"19",r:"2"}]];var VC=[["circle",{cx:"19",cy:"5",r:"2"}],["circle",{cx:"5",cy:"19",r:"2"}],["path",{d:"M5 17A12 12 0 0 1 17 5"}]];var GC=[["path",{d:"M16 3h5v5"}],["path",{d:"M8 3H3v5"}],["path",{d:"M12 22v-8.3a4 4 0 0 0-1.172-2.872L3 3"}],["path",{d:"m15 9 6-6"}]];var IC=[["path",{d:"M17 13.44 4.442 17.082A2 2 0 0 0 4.982 21H19a2 2 0 0 0 .558-3.921l-1.115-.32A2 2 0 0 1 17 14.837V7.66"}],["path",{d:"m7 10.56 12.558-3.642A2 2 0 0 0 19.018 3H5a2 2 0 0 0-.558 3.921l1.115.32A2 2 0 0 1 7 9.163v7.178"}]];var zC=[["path",{d:"M15.295 19.562 16 22"}],["path",{d:"m17 16 3.758 2.098"}],["path",{d:"m19 12.5 3.026-.598"}],["path",{d:"M7.61 6.3a3 3 0 0 0-3.92 1.3l-1.38 2.79a3 3 0 0 0 1.3 3.91l6.89 3.597a1 1 0 0 0 1.342-.447l3.106-6.211a1 1 0 0 0-.447-1.341z"}],["path",{d:"M8 9V2"}]];var NC=[["path",{d:"M3 3h.01"}],["path",{d:"M7 5h.01"}],["path",{d:"M11 7h.01"}],["path",{d:"M3 7h.01"}],["path",{d:"M7 9h.01"}],["path",{d:"M3 11h.01"}],["rect",{width:"4",height:"4",x:"15",y:"5"}],["path",{d:"m19 9 2 2v10c0 .6-.4 1-1 1h-6c-.6 0-1-.4-1-1V11l2-2"}],["path",{d:"m13 14 8-2"}],["path",{d:"m13 19 8-2"}]];var FC=[["path",{d:"M14 9.536V7a4 4 0 0 1 4-4h1.5a.5.5 0 0 1 .5.5V5a4 4 0 0 1-4 4 4 4 0 0 0-4 4c0 2 1 3 1 5a5 5 0 0 1-1 3"}],["path",{d:"M4 9a5 5 0 0 1 8 4 5 5 0 0 1-8-4"}],["path",{d:"M5 21h14"}]];var e6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M17 12h-2l-2 5-2-10-2 5H7"}]];var Z9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m16 8-8 8"}],["path",{d:"M16 16H8V8"}]];var J9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m8 8 8 8"}],["path",{d:"M16 8v8H8"}]];var K9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M12 8v8"}],["path",{d:"m8 12 4 4 4-4"}]];var Y9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m12 8-4 4 4 4"}],["path",{d:"M16 12H8"}]];var X9=[["path",{d:"M13 21h6a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v6"}],["path",{d:"m3 21 9-9"}],["path",{d:"M9 21H3v-6"}]];var W9=[["path",{d:"M21 11V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6"}],["path",{d:"m21 21-9-9"}],["path",{d:"M21 15v6h-6"}]];var Q9=[["path",{d:"M13 3h6a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-6"}],["path",{d:"m3 3 9 9"}],["path",{d:"M3 9V3h6"}]];var V9=[["path",{d:"M21 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h6"}],["path",{d:"m21 3-9 9"}],["path",{d:"M15 3h6v6"}]];var G9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M8 12h8"}],["path",{d:"m12 16 4-4-4-4"}]];var I9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M8 16V8h8"}],["path",{d:"M16 16 8 8"}]];var z9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M8 8h8v8"}],["path",{d:"m8 16 8-8"}]];var N9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m16 12-4-4-4 4"}],["path",{d:"M12 16V8"}]];var F9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M12 8v8"}],["path",{d:"m8.5 14 7-4"}],["path",{d:"m8.5 10 7 4"}]];var H9=[["path",{d:"M4 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2"}],["path",{d:"M10 22H8"}],["path",{d:"M16 22h-2"}],["circle",{cx:"8",cy:"8",r:"2"}],["path",{d:"M9.414 9.414 12 12"}],["path",{d:"M14.8 14.8 18 18"}],["circle",{cx:"8",cy:"16",r:"2"}],["path",{d:"m18 6-8.586 8.586"}]];var D5=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 8h7"}],["path",{d:"M8 12h6"}],["path",{d:"M11 16h5"}]];var D9=[["path",{d:"M21 10.656V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h12.344"}],["path",{d:"m9 11 3 3L22 4"}]];var B9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m9 12 2 2 4-4"}]];var O9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m16 10-4 4-4-4"}]];var T9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m14 16-4-4 4-4"}]];var P9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m10 8 4 4-4 4"}]];var S9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m8 14 4-4 4 4"}]];var A9=[["path",{d:"m10 9-3 3 3 3"}],["path",{d:"m14 15 3-3-3-3"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]];var HC=[["path",{d:"M10 9.5 8 12l2 2.5"}],["path",{d:"M14 21h1"}],["path",{d:"m14 9.5 2 2.5-2 2.5"}],["path",{d:"M5 21a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2"}],["path",{d:"M9 21h1"}]];var DC=[["path",{d:"M5 21a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2"}],["path",{d:"M9 21h1"}],["path",{d:"M14 21h1"}]];var q9=[["path",{d:"M8 7v7"}],["path",{d:"M12 7v4"}],["path",{d:"M16 7v9"}],["path",{d:"M5 3a2 2 0 0 0-2 2"}],["path",{d:"M9 3h1"}],["path",{d:"M14 3h1"}],["path",{d:"M19 3a2 2 0 0 1 2 2"}],["path",{d:"M21 9v1"}],["path",{d:"M21 14v1"}],["path",{d:"M21 19a2 2 0 0 1-2 2"}],["path",{d:"M14 21h1"}],["path",{d:"M9 21h1"}],["path",{d:"M5 21a2 2 0 0 1-2-2"}],["path",{d:"M3 14v1"}],["path",{d:"M3 9v1"}]];var E9=[["path",{d:"M12.034 12.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.943l-3.444 1.068a1 1 0 0 0-.66.66l-1.067 3.443a.5.5 0 0 1-.943.033z"}],["path",{d:"M5 3a2 2 0 0 0-2 2"}],["path",{d:"M19 3a2 2 0 0 1 2 2"}],["path",{d:"M5 21a2 2 0 0 1-2-2"}],["path",{d:"M9 3h1"}],["path",{d:"M9 21h2"}],["path",{d:"M14 3h1"}],["path",{d:"M3 9v1"}],["path",{d:"M21 9v2"}],["path",{d:"M3 14v1"}]];var C9=[["path",{d:"M5 3a2 2 0 0 0-2 2"}],["path",{d:"M19 3a2 2 0 0 1 2 2"}],["path",{d:"M21 19a2 2 0 0 1-2 2"}],["path",{d:"M5 21a2 2 0 0 1-2-2"}],["path",{d:"M9 3h1"}],["path",{d:"M9 21h1"}],["path",{d:"M14 3h1"}],["path",{d:"M14 21h1"}],["path",{d:"M3 9v1"}],["path",{d:"M21 9v1"}],["path",{d:"M3 14v1"}],["path",{d:"M21 14v1"}]];var BC=[["path",{d:"M14 21h1"}],["path",{d:"M21 14v1"}],["path",{d:"M21 19a2 2 0 0 1-2 2"}],["path",{d:"M21 9v1"}],["path",{d:"M3 14v1"}],["path",{d:"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2"}],["path",{d:"M3 9v1"}],["path",{d:"M5 21a2 2 0 0 1-2-2"}],["path",{d:"M9 21h1"}]];var x9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["line",{x1:"8",x2:"16",y1:"12",y2:"12"}],["line",{x1:"12",x2:"12",y1:"16",y2:"16"}],["line",{x1:"12",x2:"12",y1:"8",y2:"8"}]];var w9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["circle",{cx:"12",cy:"12",r:"1"}]];var U9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M7 10h10"}],["path",{d:"M7 14h10"}]];var M9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["path",{d:"M9 17c2 0 2.8-1 2.8-2.8V10c0-2 1-3.3 3.2-3"}],["path",{d:"M9 11.2h5.7"}]];var R9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M8 7v7"}],["path",{d:"M12 7v4"}],["path",{d:"M16 7v9"}]];var j9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M7 7v10"}],["path",{d:"M11 7v10"}],["path",{d:"m15 7 2 10"}]];var L9=[["path",{d:"M8 16V8.5a.5.5 0 0 1 .9-.3l2.7 3.599a.5.5 0 0 0 .8 0l2.7-3.6a.5.5 0 0 1 .9.3V16"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]];var y9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M7 8h10"}],["path",{d:"M7 12h10"}],["path",{d:"M7 16h10"}]];var f9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M8 12h8"}]];var k9=[["path",{d:"M12.034 12.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.943l-3.444 1.068a1 1 0 0 0-.66.66l-1.067 3.443a.5.5 0 0 1-.943.033z"}],["path",{d:"M21 11V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6"}]];var b9=[["path",{d:"M3.6 3.6A2 2 0 0 1 5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-.59 1.41"}],["path",{d:"M3 8.7V19a2 2 0 0 0 2 2h10.3"}],["path",{d:"m2 2 20 20"}],["path",{d:"M13 13a3 3 0 1 0 0-6H9v2"}],["path",{d:"M9 17v-2.3"}]];var h9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 17V7h4a3 3 0 0 1 0 6H9"}]];var x8=[["path",{d:"M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7"}],["path",{d:"M18.375 2.625a1 1 0 0 1 3 3l-9.013 9.014a2 2 0 0 1-.853.505l-2.873.84a.5.5 0 0 1-.62-.62l.84-2.873a2 2 0 0 1 .506-.852z"}]];var OC=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["line",{x1:"10",x2:"10",y1:"15",y2:"9"}],["line",{x1:"14",x2:"14",y1:"15",y2:"9"}]];var v9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m15 9-6 6"}],["path",{d:"M9 9h.01"}],["path",{d:"M15 15h.01"}]];var $9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M7 7h10"}],["path",{d:"M10 7v10"}],["path",{d:"M16 17a2 2 0 0 1-2-2V7"}]];var g9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M12 12H9.5a2.5 2.5 0 0 1 0-5H17"}],["path",{d:"M12 7v10"}],["path",{d:"M16 7v10"}]];var _9=[["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}],["path",{d:"M9 9.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997A1 1 0 0 1 9 14.996z"}]];var m9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M8 12h8"}],["path",{d:"M12 8v8"}]];var u9=[["path",{d:"M12 7v4"}],["path",{d:"M7.998 9.003a5 5 0 1 0 8-.005"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]];var TC=[["path",{d:"M7 12h2l2 5 2-10h4"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]];var d9=[["rect",{width:"20",height:"20",x:"2",y:"2",rx:"2"}],["circle",{cx:"8",cy:"8",r:"2"}],["path",{d:"M9.414 9.414 12 12"}],["path",{d:"M14.8 14.8 18 18"}],["circle",{cx:"8",cy:"16",r:"2"}],["path",{d:"m18 6-8.586 8.586"}]];var PC=[["path",{d:"M21 11a8 8 0 0 0-8-8"}],["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"}]];var c9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M16 8.9V7H8l4 5-4 5h8v-1.9"}]];var p9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["line",{x1:"9",x2:"15",y1:"15",y2:"9"}]];var n9=[["path",{d:"M8 19H5c-1 0-2-1-2-2V7c0-1 1-2 2-2h3"}],["path",{d:"M16 5h3c1 0 2 1 2 2v10c0 1-1 2-2 2h-3"}],["line",{x1:"12",x2:"12",y1:"4",y2:"20"}]];var i9=[["path",{d:"M5 8V5c0-1 1-2 2-2h10c1 0 2 1 2 2v3"}],["path",{d:"M19 16v3c0 1-1 2-2 2H7c-1 0-2-1-2-2v-3"}],["line",{x1:"4",x2:"20",y1:"12",y2:"12"}]];var SC=[["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}],["rect",{x:"8",y:"8",width:"8",height:"8",rx:"1"}]];var AC=[["path",{d:"M4 10c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h4c1.1 0 2 .9 2 2"}],["path",{d:"M10 16c-1.1 0-2-.9-2-2v-4c0-1.1.9-2 2-2h4c1.1 0 2 .9 2 2"}],["rect",{width:"8",height:"8",x:"14",y:"14",rx:"2"}]];var qC=[["path",{d:"M11.035 7.69a1 1 0 0 1 1.909.024l.737 1.452a1 1 0 0 0 .737.535l1.634.256a1 1 0 0 1 .588 1.806l-1.172 1.168a1 1 0 0 0-.282.866l.259 1.613a1 1 0 0 1-1.541 1.134l-1.465-.75a1 1 0 0 0-.912 0l-1.465.75a1 1 0 0 1-1.539-1.133l.258-1.613a1 1 0 0 0-.282-.866l-1.156-1.153a1 1 0 0 1 .572-1.822l1.633-.256a1 1 0 0 0 .737-.535z"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]];var EC=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["rect",{x:"9",y:"9",width:"6",height:"6",rx:"1"}]];var l9=[["path",{d:"m7 11 2-2-2-2"}],["path",{d:"M11 13h4"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}]];var s9=[["path",{d:"M18 21a6 6 0 0 0-12 0"}],["circle",{cx:"12",cy:"11",r:"4"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}]];var r9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["circle",{cx:"12",cy:"10",r:"3"}],["path",{d:"M7 21v-2a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v2"}]];var a9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["path",{d:"m15 9-6 6"}],["path",{d:"m9 9 6 6"}]];var CC=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}]];var xC=[["path",{d:"M16 12v2a2 2 0 0 1-2 2H9a1 1 0 0 0-1 1v3a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V10a2 2 0 0 0-2-2h0"}],["path",{d:"M4 16a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v3a1 1 0 0 1-1 1h-5a2 2 0 0 0-2 2v2"}]];var wC=[["path",{d:"M10 22a2 2 0 0 1-2-2"}],["path",{d:"M16 22h-2"}],["path",{d:"M16 4a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h3a1 1 0 0 0 1-1v-5a2 2 0 0 1 2-2h5a1 1 0 0 0 1-1z"}],["path",{d:"M20 8a2 2 0 0 1 2 2"}],["path",{d:"M22 14v2"}],["path",{d:"M22 20a2 2 0 0 1-2 2"}]];var UC=[["path",{d:"M10 22a2 2 0 0 1-2-2"}],["path",{d:"M14 2a2 2 0 0 1 2 2"}],["path",{d:"M16 22h-2"}],["path",{d:"M2 10V8"}],["path",{d:"M2 4a2 2 0 0 1 2-2"}],["path",{d:"M20 8a2 2 0 0 1 2 2"}],["path",{d:"M22 14v2"}],["path",{d:"M22 20a2 2 0 0 1-2 2"}],["path",{d:"M4 16a2 2 0 0 1-2-2"}],["path",{d:"M8 10a2 2 0 0 1 2-2h5a1 1 0 0 1 1 1v5a2 2 0 0 1-2 2H9a1 1 0 0 1-1-1z"}],["path",{d:"M8 2h2"}]];var MC=[["path",{d:"M4 16a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v3a1 1 0 0 0 1 1h3a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H10a2 2 0 0 1-2-2v-3a1 1 0 0 0-1-1z"}]];var RC=[["path",{d:"M13.77 3.043a34 34 0 0 0-3.54 0"}],["path",{d:"M13.771 20.956a33 33 0 0 1-3.541.001"}],["path",{d:"M20.18 17.74c-.51 1.15-1.29 1.93-2.439 2.44"}],["path",{d:"M20.18 6.259c-.51-1.148-1.291-1.929-2.44-2.438"}],["path",{d:"M20.957 10.23a33 33 0 0 1 0 3.54"}],["path",{d:"M3.043 10.23a34 34 0 0 0 .001 3.541"}],["path",{d:"M6.26 20.179c-1.15-.508-1.93-1.29-2.44-2.438"}],["path",{d:"M6.26 3.82c-1.149.51-1.93 1.291-2.44 2.44"}]];var jC=[["path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9-9 9-9-1.8-9-9 1.8-9 9-9"}]];var LC=[["path",{d:"M15.236 22a3 3 0 0 0-2.2-5"}],["path",{d:"M16 20a3 3 0 0 1 3-3h1a2 2 0 0 0 2-2v-2a4 4 0 0 0-4-4V4"}],["path",{d:"M18 13h.01"}],["path",{d:"M18 6a4 4 0 0 0-4 4 7 7 0 0 0-7 7c0-5 4-5 4-10.5a4.5 4.5 0 1 0-9 0 2.5 2.5 0 0 0 5 0C7 10 3 11 3 17c0 2.8 2.2 5 5 5h10"}]];var yC=[["path",{d:"M14 13V8.5C14 7 15 7 15 5a3 3 0 0 0-6 0c0 2 1 2 1 3.5V13"}],["path",{d:"M20 15.5a2.5 2.5 0 0 0-2.5-2.5h-11A2.5 2.5 0 0 0 4 15.5V17a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1z"}],["path",{d:"M5 22h14"}]];var fC=[["path",{d:"M12 18.338a2.1 2.1 0 0 0-.987.244L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.12 2.12 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.12 2.12 0 0 0 1.597-1.16l2.309-4.679A.53.53 0 0 1 12 2"}]];var kC=[["path",{d:"M8.34 8.34 2 9.27l5 4.87L5.82 21 12 17.77 18.18 21l-.59-3.43"}],["path",{d:"M18.42 12.76 22 9.27l-6.91-1L12 2l-1.44 2.91"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var bC=[["path",{d:"M11.525 2.295a.53.53 0 0 1 .95 0l2.31 4.679a2.123 2.123 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.736 3.638a2.123 2.123 0 0 0-.611 1.878l.882 5.14a.53.53 0 0 1-.771.56l-4.618-2.428a2.122 2.122 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.122 2.122 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.122 2.122 0 0 0 1.597-1.16z"}]];var hC=[["path",{d:"M13.971 4.285A2 2 0 0 1 17 6v12a2 2 0 0 1-3.029 1.715l-9.997-5.998a2 2 0 0 1-.003-3.432z"}],["path",{d:"M21 20V4"}]];var vC=[["path",{d:"M10.029 4.285A2 2 0 0 0 7 6v12a2 2 0 0 0 3.029 1.715l9.997-5.998a2 2 0 0 0 .003-3.432z"}],["path",{d:"M3 4v16"}]];var $C=[["path",{d:"M11 2v2"}],["path",{d:"M5 2v2"}],["path",{d:"M5 3H4a2 2 0 0 0-2 2v4a6 6 0 0 0 12 0V5a2 2 0 0 0-2-2h-1"}],["path",{d:"M8 15a6 6 0 0 0 12 0v-3"}],["circle",{cx:"20",cy:"10",r:"2"}]];var gC=[["path",{d:"M15.5 3H5a2 2 0 0 0-2 2v14c0 1.1.9 2 2 2h14a2 2 0 0 0 2-2V8.5L15.5 3Z"}],["path",{d:"M14 3v4a2 2 0 0 0 2 2h4"}],["path",{d:"M8 13h.01"}],["path",{d:"M16 13h.01"}],["path",{d:"M10 16s.8 1 2 1c1.3 0 2-1 2-1"}]];var _C=[["path",{d:"M16 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V8Z"}],["path",{d:"M15 3v4a2 2 0 0 0 2 2h4"}]];var mC=[["path",{d:"M15 21v-5a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v5"}],["path",{d:"M17.774 10.31a1.12 1.12 0 0 0-1.549 0 2.5 2.5 0 0 1-3.451 0 1.12 1.12 0 0 0-1.548 0 2.5 2.5 0 0 1-3.452 0 1.12 1.12 0 0 0-1.549 0 2.5 2.5 0 0 1-3.77-3.248l2.889-4.184A2 2 0 0 1 7 2h10a2 2 0 0 1 1.653.873l2.895 4.192a2.5 2.5 0 0 1-3.774 3.244"}],["path",{d:"M4 10.95V19a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8.05"}]];var uC=[["rect",{width:"20",height:"6",x:"2",y:"4",rx:"2"}],["rect",{width:"20",height:"6",x:"2",y:"14",rx:"2"}]];var dC=[["rect",{width:"6",height:"20",x:"4",y:"2",rx:"2"}],["rect",{width:"6",height:"20",x:"14",y:"2",rx:"2"}]];var cC=[["path",{d:"M16 4H9a3 3 0 0 0-2.83 4"}],["path",{d:"M14 12a4 4 0 0 1 0 8H6"}],["line",{x1:"4",x2:"20",y1:"12",y2:"12"}]];var pC=[["path",{d:"m4 5 8 8"}],["path",{d:"m12 5-8 8"}],["path",{d:"M20 19h-4c0-1.5.44-2 1.5-2.5S20 15.33 20 14c0-.47-.17-.93-.48-1.29a2.11 2.11 0 0 0-2.62-.44c-.42.24-.74.62-.9 1.07"}]];var nC=[["circle",{cx:"12",cy:"12",r:"4"}],["path",{d:"M12 4h.01"}],["path",{d:"M20 12h.01"}],["path",{d:"M12 20h.01"}],["path",{d:"M4 12h.01"}],["path",{d:"M17.657 6.343h.01"}],["path",{d:"M17.657 17.657h.01"}],["path",{d:"M6.343 17.657h.01"}],["path",{d:"M6.343 6.343h.01"}]];var iC=[["circle",{cx:"12",cy:"12",r:"4"}],["path",{d:"M12 3v1"}],["path",{d:"M12 20v1"}],["path",{d:"M3 12h1"}],["path",{d:"M20 12h1"}],["path",{d:"m18.364 5.636-.707.707"}],["path",{d:"m6.343 17.657-.707.707"}],["path",{d:"m5.636 5.636.707.707"}],["path",{d:"m17.657 17.657.707.707"}]];var lC=[["path",{d:"M12 2v2"}],["path",{d:"M14.837 16.385a6 6 0 1 1-7.223-7.222c.624-.147.97.66.715 1.248a4 4 0 0 0 5.26 5.259c.589-.255 1.396.09 1.248.715"}],["path",{d:"M16 12a4 4 0 0 0-4-4"}],["path",{d:"m19 5-1.256 1.256"}],["path",{d:"M20 12h2"}]];var sC=[["path",{d:"M10 21v-1"}],["path",{d:"M10 4V3"}],["path",{d:"M10 9a3 3 0 0 0 0 6"}],["path",{d:"m14 20 1.25-2.5L18 18"}],["path",{d:"m14 4 1.25 2.5L18 6"}],["path",{d:"m17 21-3-6 1.5-3H22"}],["path",{d:"m17 3-3 6 1.5 3"}],["path",{d:"M2 12h1"}],["path",{d:"m20 10-1.5 2 1.5 2"}],["path",{d:"m3.64 18.36.7-.7"}],["path",{d:"m4.34 6.34-.7-.7"}]];var rC=[["circle",{cx:"12",cy:"12",r:"4"}],["path",{d:"M12 2v2"}],["path",{d:"M12 20v2"}],["path",{d:"m4.93 4.93 1.41 1.41"}],["path",{d:"m17.66 17.66 1.41 1.41"}],["path",{d:"M2 12h2"}],["path",{d:"M20 12h2"}],["path",{d:"m6.34 17.66-1.41 1.41"}],["path",{d:"m19.07 4.93-1.41 1.41"}]];var aC=[["path",{d:"M12 2v8"}],["path",{d:"m4.93 10.93 1.41 1.41"}],["path",{d:"M2 18h2"}],["path",{d:"M20 18h2"}],["path",{d:"m19.07 10.93-1.41 1.41"}],["path",{d:"M22 22H2"}],["path",{d:"m8 6 4-4 4 4"}],["path",{d:"M16 18a4 4 0 0 0-8 0"}]];var tC=[["path",{d:"M12 10V2"}],["path",{d:"m4.93 10.93 1.41 1.41"}],["path",{d:"M2 18h2"}],["path",{d:"M20 18h2"}],["path",{d:"m19.07 10.93-1.41 1.41"}],["path",{d:"M22 22H2"}],["path",{d:"m16 6-4 4-4-4"}],["path",{d:"M16 18a4 4 0 0 0-8 0"}]];var oC=[["path",{d:"m4 19 8-8"}],["path",{d:"m12 19-8-8"}],["path",{d:"M20 12h-4c0-1.5.442-2 1.5-2.5S20 8.334 20 7.002c0-.472-.17-.93-.484-1.29a2.105 2.105 0 0 0-2.617-.436c-.42.239-.738.614-.899 1.06"}]];var eC=[["path",{d:"M11 17a4 4 0 0 1-8 0V5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2Z"}],["path",{d:"M16.7 13H19a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H7"}],["path",{d:"M 7 17h.01"}],["path",{d:"m11 8 2.3-2.3a2.4 2.4 0 0 1 3.404.004L18.6 7.6a2.4 2.4 0 0 1 .026 3.434L9.9 19.8"}]];var Zx=[["path",{d:"M10 21V3h8"}],["path",{d:"M6 16h9"}],["path",{d:"M10 9.5h7"}]];var Jx=[["path",{d:"M11 19H4a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h5"}],["path",{d:"M13 5h7a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-5"}],["circle",{cx:"12",cy:"12",r:"3"}],["path",{d:"m18 22-3-3 3-3"}],["path",{d:"m6 2 3 3-3 3"}]];var Kx=[["path",{d:"m11 19-6-6"}],["path",{d:"m5 21-2-2"}],["path",{d:"m8 16-4 4"}],["path",{d:"M9.5 17.5 21 6V3h-3L6.5 14.5"}]];var Yx=[["polyline",{points:"14.5 17.5 3 6 3 3 6 3 17.5 14.5"}],["line",{x1:"13",x2:"19",y1:"19",y2:"13"}],["line",{x1:"16",x2:"20",y1:"16",y2:"20"}],["line",{x1:"19",x2:"21",y1:"21",y2:"19"}],["polyline",{points:"14.5 6.5 18 3 21 3 21 6 17.5 9.5"}],["line",{x1:"5",x2:"9",y1:"14",y2:"18"}],["line",{x1:"7",x2:"4",y1:"17",y2:"20"}],["line",{x1:"3",x2:"5",y1:"19",y2:"21"}]];var Xx=[["path",{d:"m18 2 4 4"}],["path",{d:"m17 7 3-3"}],["path",{d:"M19 9 8.7 19.3c-1 1-2.5 1-3.4 0l-.6-.6c-1-1-1-2.5 0-3.4L15 5"}],["path",{d:"m9 11 4 4"}],["path",{d:"m5 19-3 3"}],["path",{d:"m14 4 6 6"}]];var Wx=[["path",{d:"M9 3H5a2 2 0 0 0-2 2v4m6-6h10a2 2 0 0 1 2 2v4M9 3v18m0 0h10a2 2 0 0 0 2-2V9M9 21H5a2 2 0 0 1-2-2V9m0 0h18"}]];var Qx=[["path",{d:"M12 21v-6"}],["path",{d:"M12 9V3"}],["path",{d:"M3 15h18"}],["path",{d:"M3 9h18"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}]];var Vx=[["path",{d:"M12 15V9"}],["path",{d:"M3 15h18"}],["path",{d:"M3 9h18"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}]];var Gx=[["path",{d:"M14 14v2"}],["path",{d:"M14 20v2"}],["path",{d:"M14 2v2"}],["path",{d:"M14 8v2"}],["path",{d:"M2 15h8"}],["path",{d:"M2 3h6a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H2"}],["path",{d:"M2 9h8"}],["path",{d:"M22 15h-4"}],["path",{d:"M22 3h-2a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h2"}],["path",{d:"M22 9h-4"}],["path",{d:"M5 3v18"}]];var Ix=[["path",{d:"M16 5H3"}],["path",{d:"M16 12H3"}],["path",{d:"M16 19H3"}],["path",{d:"M21 5h.01"}],["path",{d:"M21 12h.01"}],["path",{d:"M21 19h.01"}]];var zx=[["path",{d:"M15 3v18"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M21 9H3"}],["path",{d:"M21 15H3"}]];var Nx=[["path",{d:"M14 10h2"}],["path",{d:"M15 22v-8"}],["path",{d:"M15 2v4"}],["path",{d:"M2 10h2"}],["path",{d:"M20 10h2"}],["path",{d:"M3 19h18"}],["path",{d:"M3 22v-6a2 2 135 0 1 2-2h14a2 2 45 0 1 2 2v6"}],["path",{d:"M3 2v2a2 2 45 0 0 2 2h14a2 2 135 0 0 2-2V2"}],["path",{d:"M8 10h2"}],["path",{d:"M9 22v-8"}],["path",{d:"M9 2v4"}]];var Fx=[["path",{d:"M12 3v18"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 9h18"}],["path",{d:"M3 15h18"}]];var Hx=[["rect",{width:"10",height:"14",x:"3",y:"8",rx:"2"}],["path",{d:"M5 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2h-2.4"}],["path",{d:"M8 18h.01"}]];var Dx=[["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2",ry:"2"}],["line",{x1:"12",x2:"12.01",y1:"18",y2:"18"}]];var Bx=[["circle",{cx:"7",cy:"7",r:"5"}],["circle",{cx:"17",cy:"17",r:"5"}],["path",{d:"M12 17h10"}],["path",{d:"m3.46 10.54 7.08-7.08"}]];var Ox=[["path",{d:"M12.586 2.586A2 2 0 0 0 11.172 2H4a2 2 0 0 0-2 2v7.172a2 2 0 0 0 .586 1.414l8.704 8.704a2.426 2.426 0 0 0 3.42 0l6.58-6.58a2.426 2.426 0 0 0 0-3.42z"}],["circle",{cx:"7.5",cy:"7.5",r:".5",fill:"currentColor"}]];var Tx=[["path",{d:"M13.172 2a2 2 0 0 1 1.414.586l6.71 6.71a2.4 2.4 0 0 1 0 3.408l-4.592 4.592a2.4 2.4 0 0 1-3.408 0l-6.71-6.71A2 2 0 0 1 6 9.172V3a1 1 0 0 1 1-1z"}],["path",{d:"M2 7v6.172a2 2 0 0 0 .586 1.414l6.71 6.71a2.4 2.4 0 0 0 3.191.193"}],["circle",{cx:"10.5",cy:"6.5",r:".5",fill:"currentColor"}]];var Px=[["path",{d:"M4 4v16"}]];var Sx=[["path",{d:"M4 4v16"}],["path",{d:"M9 4v16"}]];var Ax=[["path",{d:"M4 4v16"}],["path",{d:"M9 4v16"}],["path",{d:"M14 4v16"}]];var qx=[["path",{d:"M4 4v16"}],["path",{d:"M9 4v16"}],["path",{d:"M14 4v16"}],["path",{d:"M19 4v16"}]];var Ex=[["path",{d:"M4 4v16"}],["path",{d:"M9 4v16"}],["path",{d:"M14 4v16"}],["path",{d:"M19 4v16"}],["path",{d:"M22 6 2 18"}]];var Cx=[["circle",{cx:"12",cy:"12",r:"10"}],["circle",{cx:"12",cy:"12",r:"6"}],["circle",{cx:"12",cy:"12",r:"2"}]];var xx=[["circle",{cx:"17",cy:"4",r:"2"}],["path",{d:"M15.59 5.41 5.41 15.59"}],["circle",{cx:"4",cy:"17",r:"2"}],["path",{d:"M12 22s-4-9-1.5-11.5S22 12 22 12"}]];var wx=[["path",{d:"m10.065 12.493-6.18 1.318a.934.934 0 0 1-1.108-.702l-.537-2.15a1.07 1.07 0 0 1 .691-1.265l13.504-4.44"}],["path",{d:"m13.56 11.747 4.332-.924"}],["path",{d:"m16 21-3.105-6.21"}],["path",{d:"M16.485 5.94a2 2 0 0 1 1.455-2.425l1.09-.272a1 1 0 0 1 1.212.727l1.515 6.06a1 1 0 0 1-.727 1.213l-1.09.272a2 2 0 0 1-2.425-1.455z"}],["path",{d:"m6.158 8.633 1.114 4.456"}],["path",{d:"m8 21 3.105-6.21"}],["circle",{cx:"12",cy:"13",r:"2"}]];var Ux=[["circle",{cx:"4",cy:"4",r:"2"}],["path",{d:"m14 5 3-3 3 3"}],["path",{d:"m14 10 3-3 3 3"}],["path",{d:"M17 14V2"}],["path",{d:"M17 14H7l-5 8h20Z"}],["path",{d:"M8 14v8"}],["path",{d:"m9 14 5 8"}]];var Mx=[["path",{d:"M3.5 21 14 3"}],["path",{d:"M20.5 21 10 3"}],["path",{d:"M15.5 21 12 15l-3.5 6"}],["path",{d:"M2 21h20"}]];var Rx=[["path",{d:"M12 19h8"}],["path",{d:"m4 17 6-6-6-6"}]];var t9=[["path",{d:"M21 7 6.82 21.18a2.83 2.83 0 0 1-3.99-.01a2.83 2.83 0 0 1 0-4L17 3"}],["path",{d:"m16 2 6 6"}],["path",{d:"M12 16H4"}]];var jx=[["path",{d:"M9 2v17.5A2.5 2.5 0 0 1 6.5 22A2.5 2.5 0 0 1 4 19.5V2"}],["path",{d:"M20 2v17.5a2.5 2.5 0 0 1-2.5 2.5a2.5 2.5 0 0 1-2.5-2.5V2"}],["path",{d:"M3 2h7"}],["path",{d:"M14 2h7"}],["path",{d:"M9 16H4"}],["path",{d:"M20 16h-5"}]];var Lx=[["path",{d:"M14.5 2v17.5c0 1.4-1.1 2.5-2.5 2.5c-1.4 0-2.5-1.1-2.5-2.5V2"}],["path",{d:"M8.5 2h7"}],["path",{d:"M14.5 16h-5"}]];var o9=[["path",{d:"M21 5H3"}],["path",{d:"M17 12H7"}],["path",{d:"M19 19H5"}]];var e9=[["path",{d:"M3 5h18"}],["path",{d:"M3 12h18"}],["path",{d:"M3 19h18"}]];var ZZ=[["path",{d:"M21 5H3"}],["path",{d:"M21 12H9"}],["path",{d:"M21 19H7"}]];var B5=[["path",{d:"M21 5H3"}],["path",{d:"M15 12H3"}],["path",{d:"M17 19H3"}]];var yx=[["path",{d:"M12 20h-1a2 2 0 0 1-2-2 2 2 0 0 1-2 2H6"}],["path",{d:"M13 8h7a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-7"}],["path",{d:"M5 16H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h1"}],["path",{d:"M6 4h1a2 2 0 0 1 2 2 2 2 0 0 1 2-2h1"}],["path",{d:"M9 6v12"}]];var JZ=[["path",{d:"M15 5h6"}],["path",{d:"M15 12h6"}],["path",{d:"M3 19h18"}],["path",{d:"m3 12 3.553-7.724a.5.5 0 0 1 .894 0L11 12"}],["path",{d:"M3.92 10h6.16"}]];var fx=[["path",{d:"M17 22h-1a4 4 0 0 1-4-4V6a4 4 0 0 1 4-4h1"}],["path",{d:"M7 22h1a4 4 0 0 0 4-4v-1"}],["path",{d:"M7 2h1a4 4 0 0 1 4 4v1"}]];var kx=[["path",{d:"M17 5H3"}],["path",{d:"M21 12H8"}],["path",{d:"M21 19H8"}],["path",{d:"M3 12v7"}]];var bx=[["path",{d:"M21 5H3"}],["path",{d:"M10 12H3"}],["path",{d:"M10 19H3"}],["circle",{cx:"17",cy:"15",r:"3"}],["path",{d:"m21 19-1.9-1.9"}]];var KZ=[["path",{d:"M14 21h1"}],["path",{d:"M14 3h1"}],["path",{d:"M19 3a2 2 0 0 1 2 2"}],["path",{d:"M21 14v1"}],["path",{d:"M21 19a2 2 0 0 1-2 2"}],["path",{d:"M21 9v1"}],["path",{d:"M3 14v1"}],["path",{d:"M3 9v1"}],["path",{d:"M5 21a2 2 0 0 1-2-2"}],["path",{d:"M5 3a2 2 0 0 0-2 2"}],["path",{d:"M7 12h10"}],["path",{d:"M7 16h6"}],["path",{d:"M7 8h8"}],["path",{d:"M9 21h1"}],["path",{d:"M9 3h1"}]];var YZ=[["path",{d:"m16 16-3 3 3 3"}],["path",{d:"M3 12h14.5a1 1 0 0 1 0 7H13"}],["path",{d:"M3 19h6"}],["path",{d:"M3 5h18"}]];var hx=[["path",{d:"M2 10s3-3 3-8"}],["path",{d:"M22 10s-3-3-3-8"}],["path",{d:"M10 2c0 4.4-3.6 8-8 8"}],["path",{d:"M14 2c0 4.4 3.6 8 8 8"}],["path",{d:"M2 10s2 2 2 5"}],["path",{d:"M22 10s-2 2-2 5"}],["path",{d:"M8 15h8"}],["path",{d:"M2 22v-1a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1"}],["path",{d:"M14 22v-1a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1"}]];var vx=[["path",{d:"m10 20-1.25-2.5L6 18"}],["path",{d:"M10 4 8.75 6.5 6 6"}],["path",{d:"M10.585 15H10"}],["path",{d:"M2 12h6.5L10 9"}],["path",{d:"M20 14.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0z"}],["path",{d:"m4 10 1.5 2L4 14"}],["path",{d:"m7 21 3-6-1.5-3"}],["path",{d:"m7 3 3 6h2"}]];var $x=[["path",{d:"M12 9a4 4 0 0 0-2 7.5"}],["path",{d:"M12 3v2"}],["path",{d:"m6.6 18.4-1.4 1.4"}],["path",{d:"M20 4v10.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0Z"}],["path",{d:"M4 13H2"}],["path",{d:"M6.34 7.34 4.93 5.93"}]];var gx=[["path",{d:"M14 4v10.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0Z"}]];var _x=[["path",{d:"M17 14V2"}],["path",{d:"M9 18.12 10 14H4.17a2 2 0 0 1-1.92-2.56l2.33-8A2 2 0 0 1 6.5 2H20a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2.76a2 2 0 0 0-1.79 1.11L12 22a3.13 3.13 0 0 1-3-3.88Z"}]];var mx=[["path",{d:"M7 10v12"}],["path",{d:"M15 5.88 14 10h5.83a2 2 0 0 1 1.92 2.56l-2.33 8A2 2 0 0 1 17.5 22H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h2.76a2 2 0 0 0 1.79-1.11L12 2a3.13 3.13 0 0 1 3 3.88Z"}]];var ux=[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"}],["path",{d:"m9 12 2 2 4-4"}]];var dx=[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"}],["path",{d:"M9 12h6"}]];var cx=[["path",{d:"M2 9a3 3 0 1 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 1 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"}],["path",{d:"M9 9h.01"}],["path",{d:"m15 9-6 6"}],["path",{d:"M15 15h.01"}]];var px=[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"}],["path",{d:"M9 12h6"}],["path",{d:"M12 9v6"}]];var nx=[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"}],["path",{d:"m9.5 14.5 5-5"}]];var ix=[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"}],["path",{d:"m9.5 14.5 5-5"}],["path",{d:"m9.5 9.5 5 5"}]];var lx=[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"}],["path",{d:"M13 5v2"}],["path",{d:"M13 17v2"}],["path",{d:"M13 11v2"}]];var sx=[["path",{d:"M10.5 17h1.227a2 2 0 0 0 1.345-.52L18 12"}],["path",{d:"m12 13.5 3.75.5"}],["path",{d:"m4.5 8 10.58-5.06a1 1 0 0 1 1.342.488L18.5 8"}],["path",{d:"M6 10V8"}],["path",{d:"M6 14v1"}],["path",{d:"M6 19v2"}],["rect",{x:"2",y:"8",width:"20",height:"13",rx:"2"}]];var rx=[["path",{d:"m4.5 8 10.58-5.06a1 1 0 0 1 1.342.488L18.5 8"}],["path",{d:"M6 10V8"}],["path",{d:"M6 14v1"}],["path",{d:"M6 19v2"}],["rect",{x:"2",y:"8",width:"20",height:"13",rx:"2"}]];var ax=[["path",{d:"M10 2h4"}],["path",{d:"M4.6 11a8 8 0 0 0 1.7 8.7 8 8 0 0 0 8.7 1.7"}],["path",{d:"M7.4 7.4a8 8 0 0 1 10.3 1 8 8 0 0 1 .9 10.2"}],["path",{d:"m2 2 20 20"}],["path",{d:"M12 12v-2"}]];var tx=[["path",{d:"M10 2h4"}],["path",{d:"M12 14v-4"}],["path",{d:"M4 13a8 8 0 0 1 8-7 8 8 0 1 1-5.3 14L4 17.6"}],["path",{d:"M9 17H4v5"}]];var ox=[["line",{x1:"10",x2:"14",y1:"2",y2:"2"}],["line",{x1:"12",x2:"15",y1:"14",y2:"11"}],["circle",{cx:"12",cy:"14",r:"8"}]];var ex=[["circle",{cx:"9",cy:"12",r:"3"}],["rect",{width:"20",height:"14",x:"2",y:"5",rx:"7"}]];var Zw=[["circle",{cx:"15",cy:"12",r:"3"}],["rect",{width:"20",height:"14",x:"2",y:"5",rx:"7"}]];var Jw=[["path",{d:"M7 12h13a1 1 0 0 1 1 1 5 5 0 0 1-5 5h-.598a.5.5 0 0 0-.424.765l1.544 2.47a.5.5 0 0 1-.424.765H5.402a.5.5 0 0 1-.424-.765L7 18"}],["path",{d:"M8 18a5 5 0 0 1-5-5V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v8"}]];var Kw=[["path",{d:"M10 15h4"}],["path",{d:"m14.817 10.995-.971-1.45 1.034-1.232a2 2 0 0 0-2.025-3.238l-1.82.364L9.91 3.885a2 2 0 0 0-3.625.748L6.141 6.55l-1.725.426a2 2 0 0 0-.19 3.756l.657.27"}],["path",{d:"m18.822 10.995 2.26-5.38a1 1 0 0 0-.557-1.318L16.954 2.9a1 1 0 0 0-1.281.533l-.924 2.122"}],["path",{d:"M4 12.006A1 1 0 0 1 4.994 11H19a1 1 0 0 1 1 1v7a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2z"}]];var Yw=[["path",{d:"M21 4H3"}],["path",{d:"M18 8H6"}],["path",{d:"M19 12H9"}],["path",{d:"M16 16h-6"}],["path",{d:"M11 20H9"}]];var Xw=[["path",{d:"M12 20v-6"}],["path",{d:"M19.656 14H22"}],["path",{d:"M2 14h12"}],["path",{d:"m2 2 20 20"}],["path",{d:"M20 20H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2"}],["path",{d:"M9.656 4H20a2 2 0 0 1 2 2v10.344"}]];var Ww=[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2"}],["path",{d:"M2 14h20"}],["path",{d:"M12 20v-6"}]];var Qw=[["ellipse",{cx:"12",cy:"11",rx:"3",ry:"2"}],["ellipse",{cx:"12",cy:"12.5",rx:"10",ry:"8.5"}]];var Vw=[["path",{d:"M18.2 12.27 20 6H4l1.8 6.27a1 1 0 0 0 .95.73h10.5a1 1 0 0 0 .96-.73Z"}],["path",{d:"M8 13v9"}],["path",{d:"M16 22v-9"}],["path",{d:"m9 6 1 7"}],["path",{d:"m15 6-1 7"}],["path",{d:"M12 6V2"}],["path",{d:"M13 2h-2"}]];var Gw=[["rect",{width:"18",height:"12",x:"3",y:"8",rx:"1"}],["path",{d:"M10 8V5c0-.6-.4-1-1-1H6a1 1 0 0 0-1 1v3"}],["path",{d:"M19 8V5c0-.6-.4-1-1-1h-3a1 1 0 0 0-1 1v3"}]];var Iw=[["path",{d:"m10 11 11 .9a1 1 0 0 1 .8 1.1l-.665 4.158a1 1 0 0 1-.988.842H20"}],["path",{d:"M16 18h-5"}],["path",{d:"M18 5a1 1 0 0 0-1 1v5.573"}],["path",{d:"M3 4h8.129a1 1 0 0 1 .99.863L13 11.246"}],["path",{d:"M4 11V4"}],["path",{d:"M7 15h.01"}],["path",{d:"M8 10.1V4"}],["circle",{cx:"18",cy:"18",r:"2"}],["circle",{cx:"7",cy:"15",r:"5"}]];var zw=[["path",{d:"M16.05 10.966a5 2.5 0 0 1-8.1 0"}],["path",{d:"m16.923 14.049 4.48 2.04a1 1 0 0 1 .001 1.831l-8.574 3.9a2 2 0 0 1-1.66 0l-8.574-3.91a1 1 0 0 1 0-1.83l4.484-2.04"}],["path",{d:"M16.949 14.14a5 2.5 0 1 1-9.9 0L10.063 3.5a2 2 0 0 1 3.874 0z"}],["path",{d:"M9.194 6.57a5 2.5 0 0 0 5.61 0"}]];var Nw=[["path",{d:"M8 3.1V7a4 4 0 0 0 8 0V3.1"}],["path",{d:"m9 15-1-1"}],["path",{d:"m15 15 1-1"}],["path",{d:"M9 19c-2.8 0-5-2.2-5-5v-4a8 8 0 0 1 16 0v4c0 2.8-2.2 5-5 5Z"}],["path",{d:"m8 19-2 3"}],["path",{d:"m16 19 2 3"}]];var Fw=[["path",{d:"M2 22V12a10 10 0 1 1 20 0v10"}],["path",{d:"M15 6.8v1.4a3 2.8 0 1 1-6 0V6.8"}],["path",{d:"M10 15h.01"}],["path",{d:"M14 15h.01"}],["path",{d:"M10 19a4 4 0 0 1-4-4v-3a6 6 0 1 1 12 0v3a4 4 0 0 1-4 4Z"}],["path",{d:"m9 19-2 3"}],["path",{d:"m15 19 2 3"}]];var XZ=[["rect",{width:"16",height:"16",x:"4",y:"3",rx:"2"}],["path",{d:"M4 11h16"}],["path",{d:"M12 3v8"}],["path",{d:"m8 19-2 3"}],["path",{d:"m18 22-2-3"}],["path",{d:"M8 15h.01"}],["path",{d:"M16 15h.01"}]];var Hw=[["path",{d:"M2 17 17 2"}],["path",{d:"m2 14 8 8"}],["path",{d:"m5 11 8 8"}],["path",{d:"m8 8 8 8"}],["path",{d:"m11 5 8 8"}],["path",{d:"m14 2 8 8"}],["path",{d:"M7 22 22 7"}]];var Dw=[["path",{d:"M12 16v6"}],["path",{d:"M14 20h-4"}],["path",{d:"M18 2h4v4"}],["path",{d:"m2 2 7.17 7.17"}],["path",{d:"M2 5.355V2h3.357"}],["path",{d:"m22 2-7.17 7.17"}],["path",{d:"M8 5 5 8"}],["circle",{cx:"12",cy:"12",r:"4"}]];var Bw=[["path",{d:"M10 11v6"}],["path",{d:"M14 11v6"}],["path",{d:"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6"}],["path",{d:"M3 6h18"}],["path",{d:"M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"}]];var Ow=[["path",{d:"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6"}],["path",{d:"M3 6h18"}],["path",{d:"M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"}]];var Tw=[["path",{d:"M8 19a4 4 0 0 1-2.24-7.32A3.5 3.5 0 0 1 9 6.03V6a3 3 0 1 1 6 0v.04a3.5 3.5 0 0 1 3.24 5.65A4 4 0 0 1 16 19Z"}],["path",{d:"M12 19v3"}]];var WZ=[["path",{d:"M13 8c0-2.76-2.46-5-5.5-5S2 5.24 2 8h2l1-1 1 1h4"}],["path",{d:"M13 7.14A5.82 5.82 0 0 1 16.5 6c3.04 0 5.5 2.24 5.5 5h-3l-1-1-1 1h-3"}],["path",{d:"M5.89 9.71c-2.15 2.15-2.3 5.47-.35 7.43l4.24-4.25.7-.7.71-.71 2.12-2.12c-1.95-1.96-5.27-1.8-7.42.35"}],["path",{d:"M11 15.5c.5 2.5-.17 4.5-1 6.5h4c2-5.5-.5-12-1-14"}]];var Pw=[["path",{d:"m17 14 3 3.3a1 1 0 0 1-.7 1.7H4.7a1 1 0 0 1-.7-1.7L7 14h-.3a1 1 0 0 1-.7-1.7L9 9h-.2A1 1 0 0 1 8 7.3L12 3l4 4.3a1 1 0 0 1-.8 1.7H15l3 3.3a1 1 0 0 1-.7 1.7H17Z"}],["path",{d:"M12 22v-3"}]];var Sw=[["path",{d:"M10 10v.2A3 3 0 0 1 8.9 16H5a3 3 0 0 1-1-5.8V10a3 3 0 0 1 6 0Z"}],["path",{d:"M7 16v6"}],["path",{d:"M13 19v3"}],["path",{d:"M12 19h8.3a1 1 0 0 0 .7-1.7L18 14h.3a1 1 0 0 0 .7-1.7L16 9h.2a1 1 0 0 0 .8-1.7L13 3l-1.4 1.5"}]];var Aw=[["path",{d:"M16 17h6v-6"}],["path",{d:"m22 17-8.5-8.5-5 5L2 7"}]];var qw=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["rect",{width:"3",height:"9",x:"7",y:"7"}],["rect",{width:"3",height:"5",x:"14",y:"7"}]];var Ew=[["path",{d:"M14.828 14.828 21 21"}],["path",{d:"M21 16v5h-5"}],["path",{d:"m21 3-9 9-4-4-6 6"}],["path",{d:"M21 8V3h-5"}]];var Cw=[["path",{d:"M16 7h6v6"}],["path",{d:"m22 7-8.5 8.5-5-5L2 17"}]];var QZ=[["path",{d:"m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3"}],["path",{d:"M12 9v4"}],["path",{d:"M12 17h.01"}]];var xw=[["path",{d:"M10.17 4.193a2 2 0 0 1 3.666.013"}],["path",{d:"M14 21h2"}],["path",{d:"m15.874 7.743 1 1.732"}],["path",{d:"m18.849 12.952 1 1.732"}],["path",{d:"M21.824 18.18a2 2 0 0 1-1.835 2.824"}],["path",{d:"M4.024 21a2 2 0 0 1-1.839-2.839"}],["path",{d:"m5.136 12.952-1 1.732"}],["path",{d:"M8 21h2"}],["path",{d:"m8.102 7.743-1 1.732"}]];var ww=[["path",{d:"M13.73 4a2 2 0 0 0-3.46 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3Z"}]];var Uw=[["path",{d:"M22 18a2 2 0 0 1-2 2H3c-1.1 0-1.3-.6-.4-1.3L20.4 4.3c.9-.7 1.6-.4 1.6.7Z"}]];var Mw=[["path",{d:"M10 14.66v1.626a2 2 0 0 1-.976 1.696A5 5 0 0 0 7 21.978"}],["path",{d:"M14 14.66v1.626a2 2 0 0 0 .976 1.696A5 5 0 0 1 17 21.978"}],["path",{d:"M18 9h1.5a1 1 0 0 0 0-5H18"}],["path",{d:"M4 22h16"}],["path",{d:"M6 9a6 6 0 0 0 12 0V3a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1z"}],["path",{d:"M6 9H4.5a1 1 0 0 1 0-5H6"}]];var Rw=[["path",{d:"M14 19V7a2 2 0 0 0-2-2H9"}],["path",{d:"M15 19H9"}],["path",{d:"M19 19h2a1 1 0 0 0 1-1v-3.65a1 1 0 0 0-.22-.62L18.3 9.38a1 1 0 0 0-.78-.38H14"}],["path",{d:"M2 13v5a1 1 0 0 0 1 1h2"}],["path",{d:"M4 3 2.15 5.15a.495.495 0 0 0 .35.86h2.15a.47.47 0 0 1 .35.86L3 9.02"}],["circle",{cx:"17",cy:"19",r:"2"}],["circle",{cx:"7",cy:"19",r:"2"}]];var jw=[["path",{d:"M14 18V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v11a1 1 0 0 0 1 1h2"}],["path",{d:"M15 18H9"}],["path",{d:"M19 18h2a1 1 0 0 0 1-1v-3.65a1 1 0 0 0-.22-.624l-3.48-4.35A1 1 0 0 0 17.52 8H14"}],["circle",{cx:"17",cy:"18",r:"2"}],["circle",{cx:"7",cy:"18",r:"2"}]];var Lw=[["path",{d:"M15 4 5 9"}],["path",{d:"m15 8.5-10 5"}],["path",{d:"M18 12a9 9 0 0 1-9 9V3"}]];var yw=[["path",{d:"M10 12.01h.01"}],["path",{d:"M18 8v4a8 8 0 0 1-1.07 4"}],["circle",{cx:"10",cy:"12",r:"4"}],["rect",{x:"2",y:"4",width:"20",height:"16",rx:"2"}]];var fw=[["path",{d:"m12 10 2 4v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-3a8 8 0 1 0-16 0v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-3l2-4h4Z"}],["path",{d:"M4.82 7.9 8 10"}],["path",{d:"M15.18 7.9 12 10"}],["path",{d:"M16.93 10H20a2 2 0 0 1 0 4H2"}]];var kw=[["path",{d:"M15.033 9.44a.647.647 0 0 1 0 1.12l-4.065 2.352a.645.645 0 0 1-.968-.56V7.648a.645.645 0 0 1 .967-.56z"}],["path",{d:"M7 21h10"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2"}]];var VZ=[["path",{d:"M7 21h10"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2"}]];var bw=[["path",{d:"M21 2H3v16h5v4l4-4h5l4-4V2zm-10 9V7m5 4V7"}]];var hw=[["path",{d:"m17 2-5 5-5-5"}],["rect",{width:"20",height:"15",x:"2",y:"7",rx:"2"}]];var vw=[["path",{d:"M22 4s-.7 2.1-2 3.4c1.6 10-9.4 17.3-18 11.6 2.2.1 4.4-.6 6-2C3 15.5.5 9.6 3 5c2.2 2.6 5.6 4.1 9 4-.9-4.2 4-6.6 7-3.8 1.1 0 3-1.2 3-1.2z"}]];var $w=[["path",{d:"M14 16.5a.5.5 0 0 0 .5.5h.5a2 2 0 0 1 0 4H9a2 2 0 0 1 0-4h.5a.5.5 0 0 0 .5-.5v-9a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5V8a2 2 0 0 1-4 0V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v3a2 2 0 0 1-4 0v-.5a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5Z"}]];var gw=[["path",{d:"M12 4v16"}],["path",{d:"M4 7V5a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v2"}],["path",{d:"M9 20h6"}]];var _w=[["path",{d:"M12 13v7a2 2 0 0 0 4 0"}],["path",{d:"M12 2v2"}],["path",{d:"M18.656 13h2.336a1 1 0 0 0 .97-1.274 10.284 10.284 0 0 0-12.07-7.51"}],["path",{d:"m2 2 20 20"}],["path",{d:"M5.961 5.957a10.28 10.28 0 0 0-3.922 5.769A1 1 0 0 0 3 13h10"}]];var mw=[["path",{d:"M12 13v7a2 2 0 0 0 4 0"}],["path",{d:"M12 2v2"}],["path",{d:"M20.992 13a1 1 0 0 0 .97-1.274 10.284 10.284 0 0 0-19.923 0A1 1 0 0 0 3 13z"}]];var uw=[["path",{d:"M6 4v6a6 6 0 0 0 12 0V4"}],["line",{x1:"4",x2:"20",y1:"20",y2:"20"}]];var dw=[["path",{d:"M9 14 4 9l5-5"}],["path",{d:"M4 9h10.5a5.5 5.5 0 0 1 5.5 5.5a5.5 5.5 0 0 1-5.5 5.5H11"}]];var cw=[["path",{d:"M3 7v6h6"}],["path",{d:"M21 17a9 9 0 0 0-9-9 9 9 0 0 0-6 2.3L3 13"}]];var pw=[["path",{d:"M21 17a9 9 0 0 0-15-6.7L3 13"}],["path",{d:"M3 7v6h6"}],["circle",{cx:"12",cy:"17",r:"1"}]];var nw=[["path",{d:"M16 12h6"}],["path",{d:"M8 12H2"}],["path",{d:"M12 2v2"}],["path",{d:"M12 8v2"}],["path",{d:"M12 14v2"}],["path",{d:"M12 20v2"}],["path",{d:"m19 15 3-3-3-3"}],["path",{d:"m5 9-3 3 3 3"}]];var iw=[["path",{d:"M12 22v-6"}],["path",{d:"M12 8V2"}],["path",{d:"M4 12H2"}],["path",{d:"M10 12H8"}],["path",{d:"M16 12h-2"}],["path",{d:"M22 12h-2"}],["path",{d:"m15 19-3 3-3-3"}],["path",{d:"m15 5-3-3-3 3"}]];var lw=[["rect",{width:"8",height:"6",x:"5",y:"4",rx:"1"}],["rect",{width:"8",height:"6",x:"11",y:"14",rx:"1"}]];var GZ=[["path",{d:"M14 21v-3a2 2 0 0 0-4 0v3"}],["path",{d:"M18 12h.01"}],["path",{d:"M18 16h.01"}],["path",{d:"M22 7a1 1 0 0 0-1-1h-2a2 2 0 0 1-1.143-.359L13.143 2.36a2 2 0 0 0-2.286-.001L6.143 5.64A2 2 0 0 1 5 6H3a1 1 0 0 0-1 1v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2z"}],["path",{d:"M6 12h.01"}],["path",{d:"M6 16h.01"}],["circle",{cx:"12",cy:"10",r:"2"}]];var sw=[["path",{d:"M15 7h2a5 5 0 0 1 0 10h-2m-6 0H7A5 5 0 0 1 7 7h2"}]];var rw=[["path",{d:"m18.84 12.25 1.72-1.71h-.02a5.004 5.004 0 0 0-.12-7.07 5.006 5.006 0 0 0-6.95 0l-1.72 1.71"}],["path",{d:"m5.17 11.75-1.71 1.71a5.004 5.004 0 0 0 .12 7.07 5.006 5.006 0 0 0 6.95 0l1.71-1.71"}],["line",{x1:"8",x2:"8",y1:"2",y2:"5"}],["line",{x1:"2",x2:"5",y1:"8",y2:"8"}],["line",{x1:"16",x2:"16",y1:"19",y2:"22"}],["line",{x1:"19",x2:"22",y1:"16",y2:"16"}]];var aw=[["path",{d:"M12 3v12"}],["path",{d:"m17 8-5-5-5 5"}],["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"}]];var tw=[["path",{d:"m19 5 3-3"}],["path",{d:"m2 22 3-3"}],["path",{d:"M6.3 20.3a2.4 2.4 0 0 0 3.4 0L12 18l-6-6-2.3 2.3a2.4 2.4 0 0 0 0 3.4Z"}],["path",{d:"M7.5 13.5 10 11"}],["path",{d:"M10.5 16.5 13 14"}],["path",{d:"m12 6 6 6 2.3-2.3a2.4 2.4 0 0 0 0-3.4l-2.6-2.6a2.4 2.4 0 0 0-3.4 0Z"}]];var ow=[["path",{d:"m16 11 2 2 4-4"}],["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["circle",{cx:"9",cy:"7",r:"4"}]];var ew=[["circle",{cx:"10",cy:"7",r:"1"}],["circle",{cx:"4",cy:"20",r:"1"}],["path",{d:"M4.7 19.3 19 5"}],["path",{d:"m21 3-3 1 2 2Z"}],["path",{d:"M9.26 7.68 5 12l2 5"}],["path",{d:"m10 14 5 2 3.5-3.5"}],["path",{d:"m18 12 1-1 1 1-1 1Z"}]];var ZU=[["path",{d:"M10 15H6a4 4 0 0 0-4 4v2"}],["path",{d:"m14.305 16.53.923-.382"}],["path",{d:"m15.228 13.852-.923-.383"}],["path",{d:"m16.852 12.228-.383-.923"}],["path",{d:"m16.852 17.772-.383.924"}],["path",{d:"m19.148 12.228.383-.923"}],["path",{d:"m19.53 18.696-.382-.924"}],["path",{d:"m20.772 13.852.924-.383"}],["path",{d:"m20.772 16.148.924.383"}],["circle",{cx:"18",cy:"15",r:"3"}],["circle",{cx:"9",cy:"7",r:"4"}]];var JU=[["circle",{cx:"10",cy:"7",r:"4"}],["path",{d:"M10.3 15H7a4 4 0 0 0-4 4v2"}],["path",{d:"M15 15.5V14a2 2 0 0 1 4 0v1.5"}],["rect",{width:"8",height:"5",x:"13",y:"16",rx:".899"}]];var KU=[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["circle",{cx:"9",cy:"7",r:"4"}],["line",{x1:"22",x2:"16",y1:"11",y2:"11"}]];var YU=[["path",{d:"M11.5 15H7a4 4 0 0 0-4 4v2"}],["path",{d:"M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}],["circle",{cx:"10",cy:"7",r:"4"}]];var XU=[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["circle",{cx:"9",cy:"7",r:"4"}],["line",{x1:"19",x2:"19",y1:"8",y2:"14"}],["line",{x1:"22",x2:"16",y1:"11",y2:"11"}]];var IZ=[["path",{d:"M2 21a8 8 0 0 1 13.292-6"}],["circle",{cx:"10",cy:"8",r:"5"}],["path",{d:"m16 19 2 2 4-4"}]];var zZ=[["path",{d:"m14.305 19.53.923-.382"}],["path",{d:"m15.228 16.852-.923-.383"}],["path",{d:"m16.852 15.228-.383-.923"}],["path",{d:"m16.852 20.772-.383.924"}],["path",{d:"m19.148 15.228.383-.923"}],["path",{d:"m19.53 21.696-.382-.924"}],["path",{d:"M2 21a8 8 0 0 1 10.434-7.62"}],["path",{d:"m20.772 16.852.924-.383"}],["path",{d:"m20.772 19.148.924.383"}],["circle",{cx:"10",cy:"8",r:"5"}],["circle",{cx:"18",cy:"18",r:"3"}]];var NZ=[["path",{d:"M2 21a8 8 0 0 1 13.292-6"}],["circle",{cx:"10",cy:"8",r:"5"}],["path",{d:"M22 19h-6"}]];var WU=[["path",{d:"M2 21a8 8 0 0 1 10.821-7.487"}],["path",{d:"M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}],["circle",{cx:"10",cy:"8",r:"5"}]];var FZ=[["path",{d:"M2 21a8 8 0 0 1 13.292-6"}],["circle",{cx:"10",cy:"8",r:"5"}],["path",{d:"M19 16v6"}],["path",{d:"M22 19h-6"}]];var QU=[["circle",{cx:"10",cy:"8",r:"5"}],["path",{d:"M2 21a8 8 0 0 1 10.434-7.62"}],["circle",{cx:"18",cy:"18",r:"3"}],["path",{d:"m22 22-1.9-1.9"}]];var HZ=[["path",{d:"M2 21a8 8 0 0 1 11.873-7"}],["circle",{cx:"10",cy:"8",r:"5"}],["path",{d:"m17 17 5 5"}],["path",{d:"m22 17-5 5"}]];var DZ=[["circle",{cx:"12",cy:"8",r:"5"}],["path",{d:"M20 21a8 8 0 0 0-16 0"}]];var VU=[["circle",{cx:"10",cy:"7",r:"4"}],["path",{d:"M10.3 15H7a4 4 0 0 0-4 4v2"}],["circle",{cx:"17",cy:"17",r:"3"}],["path",{d:"m21 21-1.9-1.9"}]];var GU=[["path",{d:"M16.051 12.616a1 1 0 0 1 1.909.024l.737 1.452a1 1 0 0 0 .737.535l1.634.256a1 1 0 0 1 .588 1.806l-1.172 1.168a1 1 0 0 0-.282.866l.259 1.613a1 1 0 0 1-1.541 1.134l-1.465-.75a1 1 0 0 0-.912 0l-1.465.75a1 1 0 0 1-1.539-1.133l.258-1.613a1 1 0 0 0-.282-.866l-1.156-1.153a1 1 0 0 1 .572-1.822l1.633-.256a1 1 0 0 0 .737-.535z"}],["path",{d:"M8 15H7a4 4 0 0 0-4 4v2"}],["circle",{cx:"10",cy:"7",r:"4"}]];var IU=[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["circle",{cx:"9",cy:"7",r:"4"}],["line",{x1:"17",x2:"22",y1:"8",y2:"13"}],["line",{x1:"22",x2:"17",y1:"8",y2:"13"}]];var zU=[["path",{d:"M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2"}],["circle",{cx:"12",cy:"7",r:"4"}]];var BZ=[["path",{d:"M18 21a8 8 0 0 0-16 0"}],["circle",{cx:"10",cy:"8",r:"5"}],["path",{d:"M22 20c0-3.37-2-6.5-4-8a5 5 0 0 0-.45-8.3"}]];var NU=[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["path",{d:"M16 3.128a4 4 0 0 1 0 7.744"}],["path",{d:"M22 21v-2a4 4 0 0 0-3-3.87"}],["circle",{cx:"9",cy:"7",r:"4"}]];var OZ=[["path",{d:"m16 2-2.3 2.3a3 3 0 0 0 0 4.2l1.8 1.8a3 3 0 0 0 4.2 0L22 8"}],["path",{d:"M15 15 3.3 3.3a4.2 4.2 0 0 0 0 6l7.3 7.3c.7.7 2 .7 2.8 0L15 15Zm0 0 7 7"}],["path",{d:"m2.1 21.8 6.4-6.3"}],["path",{d:"m19 5-7 7"}]];var TZ=[["path",{d:"M3 2v7c0 1.1.9 2 2 2h4a2 2 0 0 0 2-2V2"}],["path",{d:"M7 2v20"}],["path",{d:"M21 15V2a5 5 0 0 0-5 5v6c0 1.1.9 2 2 2h3Zm0 0v7"}]];var FU=[["path",{d:"M8 21s-4-3-4-9 4-9 4-9"}],["path",{d:"M16 3s4 3 4 9-4 9-4 9"}],["line",{x1:"15",x2:"9",y1:"9",y2:"15"}],["line",{x1:"9",x2:"15",y1:"9",y2:"15"}]];var HU=[["path",{d:"M12 2v20"}],["path",{d:"M2 5h20"}],["path",{d:"M3 3v2"}],["path",{d:"M7 3v2"}],["path",{d:"M17 3v2"}],["path",{d:"M21 3v2"}],["path",{d:"m19 5-7 7-7-7"}]];var DU=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["circle",{cx:"7.5",cy:"7.5",r:".5",fill:"currentColor"}],["path",{d:"m7.9 7.9 2.7 2.7"}],["circle",{cx:"16.5",cy:"7.5",r:".5",fill:"currentColor"}],["path",{d:"m13.4 10.6 2.7-2.7"}],["circle",{cx:"7.5",cy:"16.5",r:".5",fill:"currentColor"}],["path",{d:"m7.9 16.1 2.7-2.7"}],["circle",{cx:"16.5",cy:"16.5",r:".5",fill:"currentColor"}],["path",{d:"m13.4 13.4 2.7 2.7"}],["circle",{cx:"12",cy:"12",r:"2"}]];var BU=[["path",{d:"M19.5 7a24 24 0 0 1 0 10"}],["path",{d:"M4.5 7a24 24 0 0 0 0 10"}],["path",{d:"M7 19.5a24 24 0 0 0 10 0"}],["path",{d:"M7 4.5a24 24 0 0 1 10 0"}],["rect",{x:"17",y:"17",width:"5",height:"5",rx:"1"}],["rect",{x:"17",y:"2",width:"5",height:"5",rx:"1"}],["rect",{x:"2",y:"17",width:"5",height:"5",rx:"1"}],["rect",{x:"2",y:"2",width:"5",height:"5",rx:"1"}]];var OU=[["path",{d:"M16 8q6 0 6-6-6 0-6 6"}],["path",{d:"M17.41 3.59a10 10 0 1 0 3 3"}],["path",{d:"M2 2a26.6 26.6 0 0 1 10 20c.9-6.82 1.5-9.5 4-14"}]];var TU=[["path",{d:"M18 11c-1.5 0-2.5.5-3 2"}],["path",{d:"M4 6a2 2 0 0 0-2 2v4a5 5 0 0 0 5 5 8 8 0 0 1 5 2 8 8 0 0 1 5-2 5 5 0 0 0 5-5V8a2 2 0 0 0-2-2h-3a8 8 0 0 0-5 2 8 8 0 0 0-5-2z"}],["path",{d:"M6 11c1.5 0 2.5.5 3 2"}]];var PU=[["path",{d:"M10 20h4"}],["path",{d:"M12 16v6"}],["path",{d:"M17 2h4v4"}],["path",{d:"m21 2-5.46 5.46"}],["circle",{cx:"12",cy:"11",r:"5"}]];var SU=[["path",{d:"M12 15v7"}],["path",{d:"M9 19h6"}],["circle",{cx:"12",cy:"9",r:"6"}]];var AU=[["path",{d:"m2 8 2 2-2 2 2 2-2 2"}],["path",{d:"m22 8-2 2 2 2-2 2 2 2"}],["path",{d:"M8 8v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2"}],["path",{d:"M16 10.34V6c0-.55-.45-1-1-1h-4.34"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var qU=[["path",{d:"m2 8 2 2-2 2 2 2-2 2"}],["path",{d:"m22 8-2 2 2 2-2 2 2 2"}],["rect",{width:"8",height:"14",x:"8",y:"5",rx:"1"}]];var EU=[["path",{d:"M10.66 6H14a2 2 0 0 1 2 2v2.5l5.248-3.062A.5.5 0 0 1 22 7.87v8.196"}],["path",{d:"M16 16a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2"}],["path",{d:"m2 2 20 20"}]];var CU=[["path",{d:"m16 13 5.223 3.482a.5.5 0 0 0 .777-.416V7.87a.5.5 0 0 0-.752-.432L16 10.5"}],["rect",{x:"2",y:"6",width:"14",height:"12",rx:"2"}]];var xU=[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2"}],["path",{d:"M2 8h20"}],["circle",{cx:"8",cy:"14",r:"2"}],["path",{d:"M8 12h8"}],["circle",{cx:"16",cy:"14",r:"2"}]];var wU=[["path",{d:"M21 17v2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-2"}],["path",{d:"M21 7V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2"}],["circle",{cx:"12",cy:"12",r:"1"}],["path",{d:"M18.944 12.33a1 1 0 0 0 0-.66 7.5 7.5 0 0 0-13.888 0 1 1 0 0 0 0 .66 7.5 7.5 0 0 0 13.888 0"}]];var UU=[["circle",{cx:"6",cy:"12",r:"4"}],["circle",{cx:"18",cy:"12",r:"4"}],["line",{x1:"6",x2:"18",y1:"16",y2:"16"}]];var MU=[["path",{d:"M11.1 7.1a16.55 16.55 0 0 1 10.9 4"}],["path",{d:"M12 12a12.6 12.6 0 0 1-8.7 5"}],["path",{d:"M16.8 13.6a16.55 16.55 0 0 1-9 7.5"}],["path",{d:"M20.7 17a12.8 12.8 0 0 0-8.7-5 13.3 13.3 0 0 1 0-10"}],["path",{d:"M6.3 3.8a16.55 16.55 0 0 0 1.9 11.5"}],["circle",{cx:"12",cy:"12",r:"10"}]];var RU=[["path",{d:"M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z"}],["path",{d:"M16 9a5 5 0 0 1 0 6"}]];var jU=[["path",{d:"M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z"}],["path",{d:"M16 9a5 5 0 0 1 0 6"}],["path",{d:"M19.364 18.364a9 9 0 0 0 0-12.728"}]];var LU=[["path",{d:"M16 9a5 5 0 0 1 .95 2.293"}],["path",{d:"M19.364 5.636a9 9 0 0 1 1.889 9.96"}],["path",{d:"m2 2 20 20"}],["path",{d:"m7 7-.587.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298V11"}],["path",{d:"M9.828 4.172A.686.686 0 0 1 11 4.657v.686"}]];var yU=[["path",{d:"M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z"}],["line",{x1:"22",x2:"16",y1:"9",y2:"15"}],["line",{x1:"16",x2:"22",y1:"9",y2:"15"}]];var fU=[["path",{d:"M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z"}]];var kU=[["path",{d:"m9 12 2 2 4-4"}],["path",{d:"M5 7c0-1.1.9-2 2-2h10a2 2 0 0 1 2 2v12H5V7Z"}],["path",{d:"M22 19H2"}]];var bU=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 9a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2"}],["path",{d:"M3 11h3c.8 0 1.6.3 2.1.9l1.1.9c1.6 1.6 4.1 1.6 5.7 0l1.1-.9c.5-.5 1.3-.9 2.1-.9H21"}]];var PZ=[["path",{d:"M17 14h.01"}],["path",{d:"M7 7h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14"}]];var hU=[["path",{d:"M19 7V4a1 1 0 0 0-1-1H5a2 2 0 0 0 0 4h15a1 1 0 0 1 1 1v4h-3a2 2 0 0 0 0 4h3a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1"}],["path",{d:"M3 5v14a2 2 0 0 0 2 2h15a1 1 0 0 0 1-1v-4"}]];var SZ=[["path",{d:"m21.64 3.64-1.28-1.28a1.21 1.21 0 0 0-1.72 0L2.36 18.64a1.21 1.21 0 0 0 0 1.72l1.28 1.28a1.2 1.2 0 0 0 1.72 0L21.64 5.36a1.2 1.2 0 0 0 0-1.72"}],["path",{d:"m14 7 3 3"}],["path",{d:"M5 6v4"}],["path",{d:"M19 14v4"}],["path",{d:"M10 2v2"}],["path",{d:"M7 8H3"}],["path",{d:"M21 16h-4"}],["path",{d:"M11 3H9"}]];var vU=[["path",{d:"M12 17v4"}],["path",{d:"M8 21h8"}],["path",{d:"m9 17 6.1-6.1a2 2 0 0 1 2.81.01L22 15"}],["circle",{cx:"8",cy:"9",r:"2"}],["rect",{x:"2",y:"3",width:"20",height:"14",rx:"2"}]];var $U=[["path",{d:"M15 4V2"}],["path",{d:"M15 16v-2"}],["path",{d:"M8 9h2"}],["path",{d:"M20 9h2"}],["path",{d:"M17.8 11.8 19 13"}],["path",{d:"M15 9h.01"}],["path",{d:"M17.8 6.2 19 5"}],["path",{d:"m3 21 9-9"}],["path",{d:"M12.2 6.2 11 5"}]];var gU=[["path",{d:"M18 21V10a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v11"}],["path",{d:"M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 1.132-1.803l7.95-3.974a2 2 0 0 1 1.837 0l7.948 3.974A2 2 0 0 1 22 8z"}],["path",{d:"M6 13h12"}],["path",{d:"M6 17h12"}]];var _U=[["path",{d:"M3 6h3"}],["path",{d:"M17 6h.01"}],["rect",{width:"18",height:"20",x:"3",y:"2",rx:"2"}],["circle",{cx:"12",cy:"13",r:"5"}],["path",{d:"M12 18a2.5 2.5 0 0 0 0-5 2.5 2.5 0 0 1 0-5"}]];var mU=[["path",{d:"M12 10v2.2l1.6 1"}],["path",{d:"m16.13 7.66-.81-4.05a2 2 0 0 0-2-1.61h-2.68a2 2 0 0 0-2 1.61l-.78 4.05"}],["path",{d:"m7.88 16.36.8 4a2 2 0 0 0 2 1.61h2.72a2 2 0 0 0 2-1.61l.81-4.05"}],["circle",{cx:"12",cy:"12",r:"6"}]];var uU=[["path",{d:"M19 5a2 2 0 0 0-2 2v11"}],["path",{d:"M2 18c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"}],["path",{d:"M7 13h10"}],["path",{d:"M7 9h10"}],["path",{d:"M9 5a2 2 0 0 0-2 2v11"}]];var dU=[["circle",{cx:"12",cy:"4.5",r:"2.5"}],["path",{d:"m10.2 6.3-3.9 3.9"}],["circle",{cx:"4.5",cy:"12",r:"2.5"}],["path",{d:"M7 12h10"}],["circle",{cx:"19.5",cy:"12",r:"2.5"}],["path",{d:"m13.8 17.7 3.9-3.9"}],["circle",{cx:"12",cy:"19.5",r:"2.5"}]];var cU=[["path",{d:"M2 6c.6.5 1.2 1 2.5 1C7 7 7 5 9.5 5c2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"}],["path",{d:"M2 12c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"}],["path",{d:"M2 18c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"}]];var pU=[["circle",{cx:"12",cy:"10",r:"8"}],["circle",{cx:"12",cy:"10",r:"3"}],["path",{d:"M7 22h10"}],["path",{d:"M12 22v-4"}]];var nU=[["path",{d:"M17 17h-5c-1.09-.02-1.94.92-2.5 1.9A3 3 0 1 1 2.57 15"}],["path",{d:"M9 3.4a4 4 0 0 1 6.52.66"}],["path",{d:"m6 17 3.1-5.8a2.5 2.5 0 0 0 .057-2.05"}],["path",{d:"M20.3 20.3a4 4 0 0 1-2.3.7"}],["path",{d:"M18.6 13a4 4 0 0 1 3.357 3.414"}],["path",{d:"m12 6 .6 1"}],["path",{d:"m2 2 20 20"}]];var iU=[["path",{d:"M18 16.98h-5.99c-1.1 0-1.95.94-2.48 1.9A4 4 0 0 1 2 17c.01-.7.2-1.4.57-2"}],["path",{d:"m6 17 3.13-5.78c.53-.97.1-2.18-.5-3.1a4 4 0 1 1 6.89-4.06"}],["path",{d:"m12 6 3.13 5.73C15.66 12.7 16.9 13 18 13a4 4 0 0 1 0 8"}]];var lU=[["circle",{cx:"12",cy:"5",r:"3"}],["path",{d:"M6.5 8a2 2 0 0 0-1.905 1.46L2.1 18.5A2 2 0 0 0 4 21h16a2 2 0 0 0 1.925-2.54L19.4 9.5A2 2 0 0 0 17.48 8Z"}]];var sU=[["path",{d:"m2 22 10-10"}],["path",{d:"m16 8-1.17 1.17"}],["path",{d:"M3.47 12.53 5 11l1.53 1.53a3.5 3.5 0 0 1 0 4.94L5 19l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z"}],["path",{d:"m8 8-.53.53a3.5 3.5 0 0 0 0 4.94L9 15l1.53-1.53c.55-.55.88-1.25.98-1.97"}],["path",{d:"M10.91 5.26c.15-.26.34-.51.56-.73L13 3l1.53 1.53a3.5 3.5 0 0 1 .28 4.62"}],["path",{d:"M20 2h2v2a4 4 0 0 1-4 4h-2V6a4 4 0 0 1 4-4Z"}],["path",{d:"M11.47 17.47 13 19l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L5 19l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z"}],["path",{d:"m16 16-.53.53a3.5 3.5 0 0 1-4.94 0L9 15l1.53-1.53a3.49 3.49 0 0 1 1.97-.98"}],["path",{d:"M18.74 13.09c.26-.15.51-.34.73-.56L21 11l-1.53-1.53a3.5 3.5 0 0 0-4.62-.28"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var rU=[["path",{d:"M2 22 16 8"}],["path",{d:"M3.47 12.53 5 11l1.53 1.53a3.5 3.5 0 0 1 0 4.94L5 19l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z"}],["path",{d:"M7.47 8.53 9 7l1.53 1.53a3.5 3.5 0 0 1 0 4.94L9 15l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z"}],["path",{d:"M11.47 4.53 13 3l1.53 1.53a3.5 3.5 0 0 1 0 4.94L13 11l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z"}],["path",{d:"M20 2h2v2a4 4 0 0 1-4 4h-2V6a4 4 0 0 1 4-4Z"}],["path",{d:"M11.47 17.47 13 19l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L5 19l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z"}],["path",{d:"M15.47 13.47 17 15l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L9 15l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z"}],["path",{d:"M19.47 9.47 21 11l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L13 11l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z"}]];var aU=[["circle",{cx:"7",cy:"12",r:"3"}],["path",{d:"M10 9v6"}],["circle",{cx:"17",cy:"12",r:"3"}],["path",{d:"M14 7v8"}],["path",{d:"M22 17v1c0 .5-.5 1-1 1H3c-.5 0-1-.5-1-1v-1"}]];var tU=[["path",{d:"m14.305 19.53.923-.382"}],["path",{d:"m15.228 16.852-.923-.383"}],["path",{d:"m16.852 15.228-.383-.923"}],["path",{d:"m16.852 20.772-.383.924"}],["path",{d:"m19.148 15.228.383-.923"}],["path",{d:"m19.53 21.696-.382-.924"}],["path",{d:"M2 7.82a15 15 0 0 1 20 0"}],["path",{d:"m20.772 16.852.924-.383"}],["path",{d:"m20.772 19.148.924.383"}],["path",{d:"M5 11.858a10 10 0 0 1 11.5-1.785"}],["path",{d:"M8.5 15.429a5 5 0 0 1 2.413-1.31"}],["circle",{cx:"18",cy:"18",r:"3"}]];var oU=[["path",{d:"M12 20h.01"}],["path",{d:"M5 12.859a10 10 0 0 1 14 0"}],["path",{d:"M8.5 16.429a5 5 0 0 1 7 0"}]];var eU=[["path",{d:"M12 20h.01"}],["path",{d:"M8.5 16.429a5 5 0 0 1 7 0"}]];var ZM=[["path",{d:"M12 20h.01"}],["path",{d:"M8.5 16.429a5 5 0 0 1 7 0"}],["path",{d:"M5 12.859a10 10 0 0 1 5.17-2.69"}],["path",{d:"M19 12.859a10 10 0 0 0-2.007-1.523"}],["path",{d:"M2 8.82a15 15 0 0 1 4.177-2.643"}],["path",{d:"M22 8.82a15 15 0 0 0-11.288-3.764"}],["path",{d:"m2 2 20 20"}]];var JM=[["path",{d:"M2 8.82a15 15 0 0 1 20 0"}],["path",{d:"M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}],["path",{d:"M5 12.859a10 10 0 0 1 10.5-2.222"}],["path",{d:"M8.5 16.429a5 5 0 0 1 3-1.406"}]];var KM=[["path",{d:"M12 20h.01"}]];var YM=[["path",{d:"M11.965 10.105v4L13.5 12.5a5 5 0 0 1 8 1.5"}],["path",{d:"M11.965 14.105h4"}],["path",{d:"M17.965 18.105h4L20.43 19.71a5 5 0 0 1-8-1.5"}],["path",{d:"M2 8.82a15 15 0 0 1 20 0"}],["path",{d:"M21.965 22.105v-4"}],["path",{d:"M5 12.86a10 10 0 0 1 3-2.032"}],["path",{d:"M8.5 16.429h.01"}]];var XM=[["path",{d:"M12 20h.01"}],["path",{d:"M2 8.82a15 15 0 0 1 20 0"}],["path",{d:"M5 12.859a10 10 0 0 1 14 0"}],["path",{d:"M8.5 16.429a5 5 0 0 1 7 0"}]];var WM=[["path",{d:"M10 2v8"}],["path",{d:"M12.8 21.6A2 2 0 1 0 14 18H2"}],["path",{d:"M17.5 10a2.5 2.5 0 1 1 2 4H2"}],["path",{d:"m6 6 4 4 4-4"}]];var QM=[["path",{d:"M12.8 19.6A2 2 0 1 0 14 16H2"}],["path",{d:"M17.5 8a2.5 2.5 0 1 1 2 4H2"}],["path",{d:"M9.8 4.4A2 2 0 1 1 11 8H2"}]];var VM=[["path",{d:"M8 22h8"}],["path",{d:"M7 10h3m7 0h-1.343"}],["path",{d:"M12 15v7"}],["path",{d:"M7.307 7.307A12.33 12.33 0 0 0 7 10a5 5 0 0 0 7.391 4.391M8.638 2.981C8.75 2.668 8.872 2.34 9 2h6c1.5 4 2 6 2 8 0 .407-.05.809-.145 1.198"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var GM=[["path",{d:"M8 22h8"}],["path",{d:"M7 10h10"}],["path",{d:"M12 15v7"}],["path",{d:"M12 15a5 5 0 0 0 5-5c0-2-.5-4-2-8H9c-1.5 4-2 6-2 8a5 5 0 0 0 5 5Z"}]];var IM=[["rect",{width:"8",height:"8",x:"3",y:"3",rx:"2"}],["path",{d:"M7 11v4a2 2 0 0 0 2 2h4"}],["rect",{width:"8",height:"8",x:"13",y:"13",rx:"2"}]];var zM=[["path",{d:"M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.106-3.105c.32-.322.863-.22.983.218a6 6 0 0 1-8.259 7.057l-7.91 7.91a1 1 0 0 1-2.999-3l7.91-7.91a6 6 0 0 1 7.057-8.259c.438.12.54.662.219.984z"}]];var NM=[["path",{d:"M18 6 6 18"}],["path",{d:"m6 6 12 12"}]];var FM=[["path",{d:"m19 12-1.5 3"}],["path",{d:"M19.63 18.81 22 20"}],["path",{d:"M6.47 8.23a1.68 1.68 0 0 1 2.44 1.93l-.64 2.08a6.76 6.76 0 0 0 10.16 7.67l.42-.27a1 1 0 1 0-2.73-4.21l-.42.27a1.76 1.76 0 0 1-2.63-1.99l.64-2.08A6.66 6.66 0 0 0 3.94 3.9l-.7.4a1 1 0 1 0 2.55 4.34z"}]];var HM=[["path",{d:"M2.5 17a24.12 24.12 0 0 1 0-10 2 2 0 0 1 1.4-1.4 49.56 49.56 0 0 1 16.2 0A2 2 0 0 1 21.5 7a24.12 24.12 0 0 1 0 10 2 2 0 0 1-1.4 1.4 49.55 49.55 0 0 1-16.2 0A2 2 0 0 1 2.5 17"}],["path",{d:"m10 15 5-3-5-3z"}]];var DM=[["path",{d:"M10.513 4.856 13.12 2.17a.5.5 0 0 1 .86.46l-1.377 4.317"}],["path",{d:"M15.656 10H20a1 1 0 0 1 .78 1.63l-1.72 1.773"}],["path",{d:"M16.273 16.273 10.88 21.83a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14H4a1 1 0 0 1-.78-1.63l4.507-4.643"}],["path",{d:"m2 2 20 20"}]];var BM=[["path",{d:"M4 14a1 1 0 0 1-.78-1.63l9.9-10.2a.5.5 0 0 1 .86.46l-1.92 6.02A1 1 0 0 0 13 10h7a1 1 0 0 1 .78 1.63l-9.9 10.2a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14z"}]];var OM=[["circle",{cx:"11",cy:"11",r:"8"}],["line",{x1:"21",x2:"16.65",y1:"21",y2:"16.65"}],["line",{x1:"11",x2:"11",y1:"8",y2:"14"}],["line",{x1:"8",x2:"14",y1:"11",y2:"11"}]];var TM=[["circle",{cx:"11",cy:"11",r:"8"}],["line",{x1:"21",x2:"16.65",y1:"21",y2:"16.65"}],["line",{x1:"8",x2:"14",y1:"11",y2:"11"}]];var Xb=({icons:Z={},nameAttr:J="data-lucide",attrs:K={},root:X=document,inTemplates:W}={})=>{if(!Object.values(Z).length)throw Error(`Please provide an icons object. 14 If you want to use all the icons you can import it like: 15 \`import { createIcons, icons } from 'lucide'; 16 - lucide.createIcons({icons});\``);if(typeof X>"u")throw Error("`createIcons()` only works in a browser environment.");if(Array.from(X.querySelectorAll(`[${J}]`)).forEach((V)=>pj(V,{nameAttr:J,icons:Z,attrs:K})),W)Array.from(X.querySelectorAll("template")).forEach((G)=>Xb({icons:Z,nameAttr:J,attrs:K,root:G.content,inTemplates:W}));if(J==="data-lucide"){let V=X.querySelectorAll("[icon-name]");if(V.length>0)console.warn("[Lucide] Some icons were found with the now deprecated icon-name attribute. These will still be replaced for backwards compatibility, but will no longer be supported in v1.0 and you should switch to data-lucide"),Array.from(V).forEach((G)=>pj(G,{nameAttr:"icon-name",icons:Z,attrs:K}))}};var PM="http://www.w3.org/2000/svg";function wg(Z){let J=Q([]);for(let K=Z.length-1;K>=0;K--){let[X,W]=Z[K],Y=Q([]);for(let[G,I]of Object.entries(W))Y=A(j(G,I),Y);let V=d1(PM,X,Y,Q([]));J=A(V,J)}return J}function Wb(Z,J){let K=Z.split("-").map((F)=>F.charAt(0).toUpperCase()+F.slice(1)).join(""),X=ij[K];if(!X)return console.warn(`Icon "${Z}" (${K}) not found in lucide package`),d1(PM,"svg",J,Q([]));let W=wg(X),Y=!1,V=!1,G=J;while(G&&G.head!==void 0){let F=G.head;if(F&&F.kind===0){if(F.name==="width")Y=!0;if(F.name==="height")V=!0}G=G.tail}let I=[j("xmlns",PM),j("viewBox","0 0 24 24"),j("fill","none"),j("stroke","currentColor"),j("stroke-width","2"),j("stroke-linecap","round"),j("stroke-linejoin","round")];if(!Y)I.push(j("width","24"));if(!V)I.push(j("height","24"));let N=Q(I);G=J;while(G&&G.head!==void 0)N=A(G.head,N),G=G.tail;return d1(PM,"svg",N,W)}class Qb extends O{}class SM extends O{}class JJ extends O{}class Vb extends O{}function KJ(Z,J,K){let X;if(J instanceof Qb)X=["12","12"];else if(J instanceof SM)X=["16","16"];else if(J instanceof JJ)X=["20","20"];else if(J instanceof Vb)X=["24","24"];else X=["32","32"];let W=X,Y,V;return Y=W[0],V=W[1],Wb(Z,A(j("width",Y),A(j("height",V),K)))}function AM(Z){return U4(Q([j("viewBox","0 0 128 128"),j("xmlns","http://www.w3.org/2000/svg"),H(Z)]),Q([rK(Q([]),Q([M4(Q([T8("board1"),j("x1","0%"),j("y1","0%"),j("x2","100%"),j("y2","100%")]),Q([C8(Q([j("offset","0%"),j("stop-color","#FF6347"),j("stop-opacity","1")])),C8(Q([j("offset","100%"),j("stop-color","#FF4500"),j("stop-opacity","1")]))])),M4(Q([T8("board2"),j("x1","0%"),j("y1","0%"),j("x2","100%"),j("y2","100%")]),Q([C8(Q([j("offset","0%"),j("stop-color","#00CED1"),j("stop-opacity","1")])),C8(Q([j("offset","100%"),j("stop-color","#4682B4"),j("stop-opacity","1")]))]))])),i5(Q([j("transform","translate(64, 64)")]),Q([G5(Q([j("cx","0"),j("cy","-28"),j("rx","50"),j("ry","20"),j("fill","url(#board1)")])),G5(Q([j("cx","0"),j("cy","0"),j("rx","60"),j("ry","20"),j("fill","url(#board2)")])),G5(Q([j("cx","0"),j("cy","28"),j("rx","40"),j("ry","20"),j("fill","#32CD32")]))]))]))}function Ug(Z,J,K,X,W,Y,V){if(Z instanceof L){let G=Z[0][0],I=Z[0][1],z=Q([p1(Q([m1("/"),H("px-3 py-1 text-zinc-400 hover:text-zinc-300 transition-colors")]),Q([C("Home")]))]),N;if(I)N=_0(z,Q([p1(Q([m1("/settings"),H("px-3 py-1 text-zinc-400 hover:text-zinc-300 transition-colors")]),Q([C("Settings")]))]));else N=z;return _0(N,Q([p(Q([H("px-3 py-1 text-zinc-400")]),Q([C(G)])),m8(Q([f5("POST"),y5("/logout")]),Q([q0(Q([x0("submit"),H("px-3 py-1 text-zinc-400 hover:text-zinc-300 transition-colors cursor-pointer")]),Q([C("Logout")]))]))]))}else return Q([m8(Q([f5("POST"),y5("/admin/oauth/authorize"),H("flex gap-2 items-center")]),Q([eZ(J,"login-hint-desktop","login_hint","handle.bsky.social","bg-zinc-900 border border-zinc-700 rounded px-2 py-1 text-xs text-zinc-300 placeholder-zinc-600 focus:border-zinc-500 focus:outline-none w-48",K,X,W,Y,V),q0(Q([x0("submit"),H("bg-zinc-800 hover:bg-zinc-700 text-zinc-300 px-3 py-1 rounded transition-colors")]),Q([C("Login")]))]))])}function Mg(Z,J,K,X,W,Y,V){return R(Q([H("sm:hidden mt-4 pb-4 border-b border-zinc-800 flex flex-col gap-3")]),(()=>{if(Z instanceof L){let G=Z[0][1],I=Q([p1(Q([m1("/"),H("block px-3 py-2 text-sm text-zinc-400 hover:text-zinc-300 hover:bg-zinc-800/50 rounded transition-colors")]),Q([C("Home")]))]),z;if(G)z=_0(I,Q([p1(Q([m1("/settings"),H("block px-3 py-2 text-sm text-zinc-400 hover:text-zinc-300 hover:bg-zinc-800/50 rounded transition-colors")]),Q([C("Settings")]))]));else z=I;return _0(z,Q([m8(Q([f5("POST"),y5("/logout")]),Q([q0(Q([x0("submit"),H("w-full text-left px-3 py-2 text-sm text-zinc-400 hover:text-zinc-300 hover:bg-zinc-800/50 rounded transition-colors cursor-pointer")]),Q([C("Logout")]))]))]))}else return Q([m8(Q([f5("POST"),y5("/admin/oauth/authorize"),H("flex flex-col gap-3")]),Q([eZ(J,"login-hint-mobile","login_hint","handle.bsky.social","bg-zinc-900 border border-zinc-700 rounded px-3 py-2 text-sm text-zinc-300 placeholder-zinc-600 focus:border-zinc-500 focus:outline-none w-full",K,X,W,Y,V),q0(Q([x0("submit"),H("bg-zinc-800 hover:bg-zinc-700 text-zinc-300 px-4 py-2 rounded transition-colors w-full text-sm")]),Q([C("Login")]))]))])})())}function zb(Z,J,K,X,W,Y,V,G,I,z){return R(Q([H("mb-8")]),Q([R(Q([H("flex items-center justify-between border-b border-zinc-800 pb-3")]),Q([p1(Q([m1("/"),H("flex items-center gap-3 hover:opacity-80 transition-opacity ml-1")]),Q([R(Q([H("overflow-visible")]),Q([(()=>{if(J)return Kb("w-10 h-10");else return AM("w-10 h-10")})()])),c1(Q([H("text-xs font-medium uppercase tracking-wider text-zinc-500")]),Q([C("quickslice")]))])),R(Q([H("flex items-center gap-2")]),Q([(()=>{if(Z instanceof L){let N=Z[0][0];return p(Q([H("sm:hidden text-xs text-zinc-400 px-2 truncate max-w-[150px]")]),Q([C("@"+N)]))}else return X0()})(),R(Q([H("hidden sm:flex gap-4 text-xs items-center")]),Ug(Z,W,Y,V,G,I,z)),q0(Q([H("sm:hidden p-2 text-zinc-400 hover:text-zinc-300 transition-colors"),f0(X)]),Q([(()=>{if(K)return KJ("x",new JJ,Q([]));else return KJ("menu",new JJ,Q([]))})()]))]))])),(()=>{if(K)return Mg(Z,W,Y,V,G,I,z);else return X0()})()]))}function lj(Z,J){let K=document.getElementById(Z);if(!K){J(new v("File input not found"));return}let X=K.files?.[0];if(!X){console.log("[readFileAsBase64] No file selected"),J(new v("No file selected"));return}let W=new FileReader;W.onload=(Y)=>{try{let V=Y.target.result.split(",")[1];J(new E(V))}catch(V){J(new v(`Failed to encode file: ${V.message}`))}},W.onerror=()=>{J(new v("Failed to read file"))},W.readAsDataURL(X)}function sj(Z){let J=document.getElementById(Z);if(J)J.value=""}function Nb(){let Z=Tk(),J=K1(Z,"TriggerBackfill",`mutation TriggerBackfill { 17 triggerBackfill 18 }`,"generated/queries/trigger_backfill"),K=K1(J,"IsBackfilling",`query IsBackfilling { 19 isBackfilling ··· 142 json 143 createdAt 144 } 145 - }`,"generated/queries/get_lexicons")}class Fb extends O{constructor(Z){super();this.backfill_actor=Z}}function yg(){return $("backfillActor",z1,(Z)=>{return s(new Fb(Z))})}function Hb(Z){return E0(Z,yg())}class Db extends O{constructor(Z,J,K,X,W,Y,V){super();this.client_id=Z,this.client_secret=J,this.client_name=K,this.client_type=X,this.redirect_uris=W,this.scope=Y,this.created_at=V}}class Bb extends O{constructor(Z){super();this.create_o_auth_client=Z}}function kg(){return $("clientId",u,(Z)=>{return $("clientSecret",y1(u),(J)=>{return $("clientName",u,(K)=>{return $("clientType",u,(X)=>{return $("redirectUris",L0(u),(W)=>{return $("scope",y1(u),(Y)=>{return $("createdAt",l0,(V)=>{return s(new Db(Z,J,K,X,W,Y,V))})})})})})})})}function bg(){return $("createOAuthClient",kg(),(Z)=>{return s(new Bb(Z))})}function Ob(Z){return E0(Z,bg())}class Tb extends O{constructor(Z){super();this.delete_o_auth_client=Z}}function vg(){return $("deleteOAuthClient",z1,(Z)=>{return s(new Tb(Z))})}function Pb(Z){return E0(Z,vg())}class YJ extends O{}class XJ extends O{}class WJ extends O{}class l5 extends O{}class QJ extends O{}class Sb extends O{constructor(Z,J,K,X,W){super();this.timestamp=Z,this.total=J,this.creates=K,this.updates=X,this.deletes=W}}class Ab extends O{constructor(Z){super();this.activity_buckets=Z}}function O5(Z){if(Z instanceof YJ)return"ONE_HOUR";else if(Z instanceof XJ)return"THREE_HOURS";else if(Z instanceof WJ)return"SIX_HOURS";else if(Z instanceof l5)return"ONE_DAY";else return"SEVEN_DAYS"}function gg(){return $("timestamp",u,(Z)=>{return $("total",l0,(J)=>{return $("creates",l0,(K)=>{return $("updates",l0,(X)=>{return $("deletes",l0,(W)=>{return s(new Sb(Z,J,K,X,W))})})})})})}function _g(){return $("activityBuckets",L0(gg()),(Z)=>{return s(new Ab(Z))})}function s5(Z){return E0(Z,_g())}class qb extends O{constructor(Z,J,K){super();this.did=Z,this.handle=J,this.is_admin=K}}class Eb extends O{constructor(Z){super();this.current_session=Z}}function mg(){return $("did",u,(Z)=>{return $("handle",u,(J)=>{return $("isAdmin",z1,(K)=>{return s(new qb(Z,J,K))})})})}function ug(){return $("currentSession",y1(mg()),(Z)=>{return s(new Eb(Z))})}function aj(Z){return E0(Z,ug())}class Cb extends O{constructor(Z,J,K){super();this.id=Z,this.json=J,this.created_at=K}}class xb extends O{constructor(Z){super();this.lexicons=Z}}function cg(){return $("id",u,(Z)=>{return $("json",u,(J)=>{return $("createdAt",u,(K)=>{return s(new Cb(Z,J,K))})})})}function pg(){return $("lexicons",L0(cg()),(Z)=>{return s(new xb(Z))})}function VJ(Z){return E0(Z,pg())}class Ub extends O{constructor(Z,J,K,X,W,Y,V){super();this.client_id=Z,this.client_secret=J,this.client_name=K,this.client_type=X,this.redirect_uris=W,this.scope=Y,this.created_at=V}}class Mb extends O{constructor(Z){super();this.oauth_clients=Z}}function ng(){return $("clientId",u,(Z)=>{return $("clientSecret",y1(u),(J)=>{return $("clientName",u,(K)=>{return $("clientType",u,(X)=>{return $("redirectUris",L0(u),(W)=>{return $("scope",y1(u),(Y)=>{return $("createdAt",l0,(V)=>{return s(new Ub(Z,J,K,X,W,Y,V))})})})})})})})}function ig(){return $("oauthClients",L0(ng()),(Z)=>{return s(new Mb(Z))})}function l8(Z){return E0(Z,ig())}class jb extends O{constructor(Z,J,K,X,W,Y,V,G){super();this.id=Z,this.timestamp=J,this.operation=K,this.collection=X,this.did=W,this.status=Y,this.error_message=V,this.event_json=G}}class Lb extends O{constructor(Z){super();this.recent_activity=Z}}function lg(){return $("id",l0,(Z)=>{return $("timestamp",u,(J)=>{return $("operation",u,(K)=>{return $("collection",u,(X)=>{return $("did",u,(W)=>{return $("status",u,(Y)=>{return $("errorMessage",y1(u),(V)=>{return $("eventJson",y1(u),(G)=>{return s(new jb(Z,J,K,X,W,Y,V,G))})})})})})})})})}function sg(){return $("recentActivity",L0(lg()),(Z)=>{return s(new Lb(Z))})}function AZ(Z){return E0(Z,sg())}class fb extends O{constructor(Z,J,K,X,W,Y,V){super();this.id=Z,this.domain_authority=J,this.admin_dids=K,this.relay_url=X,this.plc_directory_url=W,this.jetstream_url=Y,this.oauth_supported_scopes=V}}class kb extends O{constructor(Z){super();this.settings=Z}}function rg(){return $("id",u,(Z)=>{return $("domainAuthority",u,(J)=>{return $("adminDids",L0(u),(K)=>{return $("relayUrl",u,(X)=>{return $("plcDirectoryUrl",u,(W)=>{return $("jetstreamUrl",u,(Y)=>{return $("oauthSupportedScopes",u,(V)=>{return s(new fb(Z,J,K,X,W,Y,V))})})})})})})})}function ag(){return $("settings",rg(),(Z)=>{return s(new kb(Z))})}function A1(Z){return E0(Z,ag())}class bb extends O{constructor(Z,J,K){super();this.record_count=Z,this.actor_count=J,this.lexicon_count=K}}class hb extends O{constructor(Z){super();this.statistics=Z}}function tg(){return $("recordCount",l0,(Z)=>{return $("actorCount",l0,(J)=>{return $("lexiconCount",l0,(K)=>{return s(new bb(Z,J,K))})})})}function og(){return $("statistics",tg(),(Z)=>{return s(new hb(Z))})}function T5(Z){return E0(Z,og())}class vb extends O{constructor(Z){super();this.reset_all=Z}}function eg(){return $("resetAll",z1,(Z)=>{return s(new vb(Z))})}function $b(Z){return E0(Z,eg())}class gb extends O{constructor(Z){super();this.trigger_backfill=Z}}function J_(){return $("triggerBackfill",z1,(Z)=>{return s(new gb(Z))})}function _b(Z){return E0(Z,J_())}class mb extends O{constructor(Z,J,K,X,W,Y,V){super();this.client_id=Z,this.client_secret=J,this.client_name=K,this.client_type=X,this.redirect_uris=W,this.scope=Y,this.created_at=V}}class ub extends O{constructor(Z){super();this.update_o_auth_client=Z}}function Y_(){return $("clientId",u,(Z)=>{return $("clientSecret",y1(u),(J)=>{return $("clientName",u,(K)=>{return $("clientType",u,(X)=>{return $("redirectUris",L0(u),(W)=>{return $("scope",y1(u),(Y)=>{return $("createdAt",l0,(V)=>{return s(new mb(Z,J,K,X,W,Y,V))})})})})})})})}function X_(){return $("updateOAuthClient",Y_(),(Z)=>{return s(new ub(Z))})}function db(Z){return E0(Z,X_())}class cb extends O{constructor(Z,J,K,X,W,Y,V){super();this.id=Z,this.domain_authority=J,this.admin_dids=K,this.relay_url=X,this.plc_directory_url=W,this.jetstream_url=Y,this.oauth_supported_scopes=V}}class pb extends O{constructor(Z){super();this.update_settings=Z}}function Q_(){return $("id",u,(Z)=>{return $("domainAuthority",u,(J)=>{return $("adminDids",L0(u),(K)=>{return $("relayUrl",u,(X)=>{return $("plcDirectoryUrl",u,(W)=>{return $("jetstreamUrl",u,(Y)=>{return $("oauthSupportedScopes",u,(V)=>{return s(new cb(Z,J,K,X,W,Y,V))})})})})})})})}function V_(){return $("updateSettings",Q_(),(Z)=>{return s(new pb(Z))})}function IJ(Z){return E0(Z,V_())}class nb extends O{constructor(Z){super();this.upload_lexicons=Z}}function I_(){return $("uploadLexicons",z1,(Z)=>{return s(new nb(Z))})}function ib(Z){return E0(Z,I_())}function oj(Z){globalThis.location.href=Z}var lb="font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-800 hover:bg-zinc-700 rounded transition-colors cursor-pointer disabled:opacity-50 disabled:cursor-not-allowed disabled:hover:bg-zinc-800";function v1(Z,J,K){return q0(Q([x0("button"),H(lb),hZ(Z),f0(J)]),Q([o0(K)]))}function EM(Z,J){return q0(Q([x0("submit"),H(lb),hZ(Z)]),Q([o0(J)]))}class CM extends O{constructor(Z){super();this[0]=Z}}class sb extends O{}class P5 extends O{constructor(Z,J,K){super();this.did_input=Z,this.is_submitting=J,this.alert=K}}function rb(){return new P5("",!1,new b)}function ej(Z,J,K){return new P5(Z.did_input,Z.is_submitting,new L([J,K]))}function xM(Z){return new P5(Z.did_input,Z.is_submitting,new b)}function wM(Z,J){return new P5(Z.did_input,J,Z.alert)}function ab(Z){let J="font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-900 border border-zinc-800 rounded focus:outline-none focus:border-zinc-700 w-full",K="block text-sm font-medium text-zinc-400 mb-2";return R(Q([H("space-y-6")]),Q([R(Q([]),Q([c1(Q([H("text-xl font-bold text-zinc-100 mb-2")]),Q([o0("Backfill Actor")])),D0(Q([H("text-zinc-400 text-sm")]),Q([o0("Sync all collections for a specific actor via CAR file repository sync.")]))])),(()=>{let X=Z.alert;if(X instanceof L){let W=X[0][0],Y=X[0][1],V;if(W==="success")V=new j1;else if(W==="error")V=new D1;else V=new B1;return h1(V,Y)}else return X0()})(),R(Q([H("bg-zinc-900/50 border border-zinc-800 rounded-lg p-6 max-w-xl")]),Q([R(Q([H("mb-4")]),Q([m0(Q([H(K)]),Q([o0("Actor DID")])),s0(Q([x0("text"),H(J),V1("did:plc:... or did:web:..."),i0(Z.did_input),c0((X)=>{return new CM(X)})])),D0(Q([H("text-xs text-zinc-500 mt-1")]),Q([o0("Enter the DID of the actor whose records you want to sync.")]))])),R(Q([H("flex items-center gap-4")]),Q([v1(Z.is_submitting||Z.did_input==="",new sb,(()=>{if(Z.is_submitting)return"Syncing...";else return"Sync Actor"})())]))]))]))}function H_(Z,J){let K=(X)=>{let W="px-3 py-1 text-xs rounded transition-colors cursor-pointer";if(P0(X,Z))return W+" bg-zinc-700 text-zinc-100";else return W+" bg-zinc-800/50 text-zinc-400 hover:bg-zinc-700/50 hover:text-zinc-300"};return R(Q([H("flex gap-2 mb-4")]),Q([q0(Q([H(K(new YJ)),f0(J(new YJ))]),Q([C("1hr")])),q0(Q([H(K(new XJ)),f0(J(new XJ))]),Q([C("3hr")])),q0(Q([H(K(new WJ)),f0(J(new WJ))]),Q([C("6hr")])),q0(Q([H(K(new l5)),f0(J(new l5))]),Q([C("1 day")])),q0(Q([H(K(new QJ)),f0(J(new QJ))]),Q([C("7 day")]))]))}function D_(Z){let K=z0(Z,(W)=>{return W.creates+W.updates+W.deletes}),X=dL(K,QK);return D8(X,1)}function B_(Z,J,K,X,W,Y){let V=F0(J)*(K+X);if(Z.creates+Z.updates+Z.deletes===0){let I=4,z=W-I;return i5(Q([]),Q([ZJ(Q([j("x",n0(V)),j("y",n0(z)),j("width",n0(K)),j("height",n0(I)),j("style","fill: #3f3f46 !important; stroke: none; display: inline")]))]))}else{let I=lJ(W,F0(Y)),z=F0(Z.deletes)*I,N=F0(Z.updates)*I,F=F0(Z.creates)*I,D=W-z,B=D-N,T=B-F;return i5(Q([H("group")]),Q([(()=>{if(Z.deletes>0)return ZJ(Q([j("x",n0(V)),j("y",n0(D)),j("width",n0(K)),j("height",n0(z)),j("style","fill: #ef4444 !important; stroke: none; display: inline; cursor: pointer; transition: opacity 0.2s"),H("group-hover:opacity-80")]));else return X0()})(),(()=>{if(Z.updates>0)return ZJ(Q([j("x",n0(V)),j("y",n0(B)),j("width",n0(K)),j("height",n0(N)),j("style","fill: #60a5fa !important; stroke: none; display: inline; cursor: pointer; transition: opacity 0.2s"),H("group-hover:opacity-80")]));else return X0()})(),(()=>{if(Z.creates>0)return ZJ(Q([j("x",n0(V)),j("y",n0(T)),j("width",n0(K)),j("height",n0(F)),j("style","fill: #22c55e !important; stroke: none; display: inline; cursor: pointer; transition: opacity 0.2s"),H("group-hover:opacity-80")]));else return X0()})()]))}}function O_(Z,J){let K=D_(Z),X;if(J instanceof QJ)X=[160,12];else X=[30,4];let W=X,Y,V;Y=W[0],V=W[1];let G=o8(Z),I=F0(G)*Y+F0(G-1)*V,z=120;return R(Q([H("w-full")]),Q([U4(Q([j("viewBox","0 0 "+n0(I)+" "+n0(z)),j("width","100%"),j("height",n0(z)),j("style","min-height: 120px"),j("preserveAspectRatio","none")]),oJ(Z,(N,F)=>{return B_(N,F,Y,V,z,K)}))]))}function T_(Z,J){let K=h(Q([["range",c(O5(J))]])),X=a(Z,"GetActivityBuckets",K,s5),W;if(W=X[1],W instanceof M1)return R(Q([H("py-8 text-center text-zinc-600 text-xs")]),Q([C("Loading activity data...")]));else if(W instanceof R1){let Y=W[0];return R(Q([H("py-8 text-center text-red-400 text-xs")]),Q([C("Error: "+Y)]))}else{let V=W[0].activity_buckets;if(V instanceof M)return R(Q([H("py-8 text-center text-zinc-600 text-xs")]),Q([C("No activity data available")]));else return O_(V,J)}}function tb(Z,J,K){return R(Q([H("bg-zinc-800/50 rounded p-4 font-mono mb-8")]),Q([H_(J,K),T_(Z,J)]))}function ZL(Z){try{return new Date(Z).toLocaleTimeString("en-US",{hour:"2-digit",minute:"2-digit",second:"2-digit",hour12:!1})}catch(J){return Z}}function JL(Z){try{return new Date(Z).toLocaleString("en-US",{year:"numeric",month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit",second:"2-digit",hour12:!1})}catch(J){return Z}}function UM(Z){if(typeof Z==="string")try{let J=JSON.parse(Z);return UM(J)}catch(J){return Z}else if(Array.isArray(Z))return Z.map(UM);else if(Z!==null&&typeof Z==="object"){let J={};for(let[K,X]of Object.entries(Z))J[K]=UM(X);return J}return Z}function KL(Z){try{let J=JSON.parse(Z),K=UM(J);return JSON.stringify(K,null,2)}catch(J){return Z}}function q_(Z){return R(Q([]),z0(Z,(J)=>{let K,X=J.status;if(X==="success")K="text-green-500";else if(X==="validation_error")K="text-yellow-500";else if(X==="error")K="text-red-500";else if(X==="processing")K="text-blue-500";else K="text-zinc-500";let W=K,Y,V=J.status;if(V==="success")Y="โœ“";else if(V==="validation_error")Y="โš ";else if(V==="error")Y="โœ—";else if(V==="processing")Y="โ‹ฏ";else Y="โ€ข";let G=Y,I,z=J.operation;if(z==="create")I="text-green-400";else if(z==="update")I="text-blue-400";else if(z==="delete")I="text-red-400";else I="text-zinc-400";let N=I,F="activity-"+x1(J.id);return R(Q([H("border-l-2 border-zinc-700/50 hover:border-zinc-600 transition-colors"),j("data-entry-id",F)]),Q([R(Q([H("flex items-start gap-2 py-1 text-xs font-mono hover:bg-zinc-900/30 cursor-pointer group"),j("onclick","this.parentElement.classList.toggle('expanded')")]),Q([p(Q([H("text-zinc-600 group-hover:text-zinc-400 shrink-0 select-none transition-transform caret"),j("data-caret","")]),Q([C("โ€บ")])),p(Q([H("text-zinc-600 shrink-0 w-16"),j("data-timestamp",J.timestamp)]),Q([C(ZL(J.timestamp))])),p(Q([H(W+" shrink-0 w-4")]),Q([C(G)])),p(Q([H(N+" shrink-0 w-12")]),Q([C(J.operation)])),p(Q([H("text-purple-400 shrink-0")]),Q([C(J.collection)])),p(Q([H("text-zinc-500 truncate")]),Q([C(J.did)]))])),R(Q([H("px-6 py-2 text-xs bg-zinc-900/50 border-t border-zinc-800 hidden space-y-1"),j("data-details","")]),Q([R(Q([H("flex gap-2")]),Q([p(Q([H("text-zinc-600 w-20")]),Q([C("Timestamp:")])),p(Q([H("text-zinc-400")]),Q([C(JL(J.timestamp))]))])),R(Q([H("flex gap-2")]),Q([p(Q([H("text-zinc-600 w-20")]),Q([C("DID:")])),p(Q([H("text-zinc-400 font-mono break-all")]),Q([C(J.did)]))])),R(Q([H("flex gap-2")]),Q([p(Q([H("text-zinc-600 w-20")]),Q([C("Status:")])),p(Q([H((()=>{let D=J.status;if(D==="success")return"text-green-400";else if(D==="validation_error")return"text-yellow-400";else if(D==="error")return"text-red-400";else return"text-zinc-400"})())]),Q([C(J.status)]))])),(()=>{let D=J.error_message;if(D instanceof L){let B=D[0];return R(Q([H("flex gap-2")]),Q([p(Q([H("text-zinc-600 w-20")]),Q([C("Error:")])),p(Q([H("text-red-400")]),Q([C(B)]))]))}else return X0()})(),(()=>{let D=J.event_json;if(D instanceof L){let B=D[0],T=KL(B);return R(Q([H("mt-2")]),Q([R(Q([H("text-zinc-600 mb-1")]),Q([C("Event JSON:")])),wK(Q([H("text-zinc-400 bg-black/40 p-2 rounded text-[10px] whitespace-pre-wrap block"),j("data-json",B)]),Q([C(T)]))]))}else return X0()})()]))]))}))}function ob(Z,J){let K=h(Q([["hours",Q1(J)]])),X=a(Z,"GetRecentActivity",K,AZ),W;return W=X[1],R(Q([H("font-mono mb-8")]),Q([y0("style",Q([]),Q([C(`[data-entry-id].expanded [data-caret] { transform: rotate(90deg); } 146 - [data-entry-id].expanded [data-details] { display: block !important; }`)])),R(Q([H("bg-zinc-800/50 rounded p-4")]),Q([R(Q([H("mb-3")]),Q([R(Q([H("text-sm text-zinc-500")]),Q([C("Recent Jetstream Activity")]))])),R(Q([H("max-h-80 overflow-y-auto")]),Q([(()=>{if(W instanceof M1)return R(Q([H("py-8 text-center text-zinc-600 text-xs")]),Q([C("Loading activity...")]));else if(W instanceof R1){let Y=W[0];return R(Q([H("py-8 text-center text-red-400 text-xs")]),Q([C("Error: "+Y)]))}else{let V=W[0].recent_activity;if(V instanceof M)return R(Q([H("py-8 text-center text-zinc-600 text-xs")]),Q([C("No activity in the last "+x1(J)+" hours")]));else return q_(V)}})()]))]))]))}function zJ(Z){return new Intl.NumberFormat("en-US").format(Z)}function YL(Z,J,K,X){if(K)return p1(Q([m1(X),H("bg-zinc-800/50 rounded p-4 block hover:bg-zinc-800 transition-colors cursor-pointer")]),Q([R(Q([H("text-sm text-zinc-500 mb-1")]),Q([o0(Z)])),R(Q([H("text-2xl font-semibold text-zinc-200")]),Q([o0(J)]))]));else return R(Q([H("bg-zinc-800/50 rounded p-4")]),Q([R(Q([H("text-sm text-zinc-500 mb-1")]),Q([o0(Z)])),R(Q([H("text-2xl font-semibold text-zinc-200")]),Q([o0(J)]))]))}function XL(Z){return R(Q([H("bg-zinc-800/50 rounded p-4 animate-pulse")]),Q([R(Q([H("text-sm text-zinc-500 mb-1")]),Q([o0(Z)])),R(Q([H("h-8 bg-zinc-700 rounded w-24")]),Q([]))]))}function eb(Z){let J=a(Z,"GetStatistics",h(Q([])),T5),K;if(K=J[1],K instanceof M1)return R(Q([H("mb-8 grid grid-cols-1 sm:grid-cols-3 gap-4")]),Q([XL("Total Records"),XL("Total Actors"),XL("Total Lexicons")]));else if(K instanceof R1){let X=K[0];return R(Q([H("mb-8")]),Q([R(Q([H("bg-red-800/50 rounded p-4 text-red-200")]),Q([o0("Error loading statistics: "+X)]))]))}else{let W=K[0].statistics;return R(Q([H("mb-8 grid grid-cols-1 sm:grid-cols-3 gap-4")]),Q([YL("Total Records",zJ(W.record_count),!1,""),YL("Total Actors",zJ(W.actor_count),!1,""),YL("Total Lexicons",zJ(W.lexicon_count),!0,"/lexicons")]))}}class MM extends O{constructor(Z){super();this[0]=Z}}class RM extends O{}class WL extends O{}function w_(Z,J){let K;if(Z==="")K=dj(new uj,"No domain authority configured.","Settings","/settings");else K=X0();let X=K,W;if(J===0)W=dj(new B1,"No lexicons loaded.","Settings","/settings");else W=X0();let Y=W;return R(Q([]),Q([X,Y]))}function Zh(Z,J,K,X,W){let Y=a(Z,"GetStatistics",h(Q([])),T5),V;V=Y[1];let G=a(Z,"GetSettings",h(Q([])),A1),I;I=G[1];let z;if(V instanceof Y8&&I instanceof Y8){let F=V[0],D=I[0];z=w_(D.settings.domain_authority,F.statistics.lexicon_count)}else z=X0();let N=z;return R(Q([]),Q([N,(()=>{if(W)return R(Q([H("mb-8 flex gap-3 flex-wrap items-start")]),(()=>{if(X)return Q([v1(!1,new WL,"Open GraphiQL"),R(Q([H("flex items-center gap-3")]),Q([v1(p5(K),new RM,(()=>{if(K instanceof n8)return"Backfilling...";else if(K instanceof A8)return"Backfilling...";else return"Trigger Backfill"})()),(()=>{if(K instanceof c5)return D0(Q([H("text-sm text-green-600")]),Q([o0("Backfill complete!")]));else return X0()})()]))]);else return Q([v1(!1,new WL,"Open GraphiQL")])})());else return X0()})(),eb(Z),tb(Z,J,(F)=>{return new MM(F)}),ob(Z,24)]))}function Jh(Z){if(navigator.clipboard&&navigator.clipboard.writeText)navigator.clipboard.writeText(Z).catch((J)=>{console.error("Failed to copy to clipboard:",J)})}function QL(Z){try{let J=JSON.parse(Z);return JSON.stringify(J,null,2)}catch(J){return Z}}function M_(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(W instanceof M)return G;else{let I=W.head;if(I==='"'){let z=W.tail,N;if(Y)if(V)N=["text-green-400",!0];else N=["text-sky-400",!1];else if(V)N=["text-green-400",!0];else N=["text-sky-400",!1];let F=N,D,B;D=F[0],B=F[1];let T=p(Q([H(D)]),Q([C('"')])),P;if(Y)P=!1;else P=B;let S=P;Z=z,J=!Y,K=S,X=A(T,G)}else if(I==="{"&&!Y){let z=W.tail,N;if(W instanceof M)N="";else N=W.head;let F=N,D=p(Q([H("text-zinc-400")]),Q([C(F)]));Z=z,J=Y,K=!1,X=A(D,G)}else if(I==="}"&&!Y){let z=W.tail,N;if(W instanceof M)N="";else N=W.head;let F=N,D=p(Q([H("text-zinc-400")]),Q([C(F)]));Z=z,J=Y,K=!1,X=A(D,G)}else if(I==="["&&!Y){let z=W.tail,N;if(W instanceof M)N="";else N=W.head;let F=N,D=p(Q([H("text-zinc-400")]),Q([C(F)]));Z=z,J=Y,K=!1,X=A(D,G)}else if(I==="]"&&!Y){let z=W.tail,N;if(W instanceof M)N="";else N=W.head;let F=N,D=p(Q([H("text-zinc-400")]),Q([C(F)]));Z=z,J=Y,K=!1,X=A(D,G)}else if(I===":"&&!Y){let z=W.tail,N=p(Q([H("text-zinc-400")]),Q([C(":")]));Z=z,J=Y,K=!0,X=A(N,G)}else if(I===","&&!Y){let z=W.tail,N=p(Q([H("text-zinc-400")]),Q([C(",")]));Z=z,J=Y,K=!1,X=A(N,G)}else if(I===" "&&!Y){let z=W.tail,N=C((()=>{if(W instanceof M)return"";else{let F=W.head;if(F===" ")return" ";else if(F===` 147 `)return` 148 `;else return""}})());Z=z,J=Y,K=V,X=A(N,G)}else if(I===` 149 `&&!Y){let z=W.tail,N=C((()=>{if(W instanceof M)return"";else{let F=W.head;if(F===" ")return" ";else if(F===` 150 `)return` 151 - `;else return""}})());Z=z,J=Y,K=V,X=A(N,G)}else if(I==="t")if(Y){let z=I,N=W.tail,F;if(V)F="text-green-400";else F="text-sky-400";let B=p(Q([H(F)]),Q([C(z)]));Z=N,J=Y,K=V,X=A(B,G)}else{let z=W.tail;if(z instanceof M){let N=I,F=z,D;if(N==="0")D="text-red-400";else if(N==="1")D="text-red-400";else if(N==="2")D="text-red-400";else if(N==="3")D="text-red-400";else if(N==="4")D="text-red-400";else if(N==="5")D="text-red-400";else if(N==="6")D="text-red-400";else if(N==="7")D="text-red-400";else if(N==="8")D="text-red-400";else if(N==="9")D="text-red-400";else if(N===".")D="text-red-400";else if(N==="-")D="text-red-400";else D="text-zinc-200";let T=p(Q([H(D)]),Q([C(N)]));Z=F,J=Y,K=V,X=A(T,G)}else{let N=z.tail;if(N instanceof M){let F=I,D=z,B;if(F==="0")B="text-red-400";else if(F==="1")B="text-red-400";else if(F==="2")B="text-red-400";else if(F==="3")B="text-red-400";else if(F==="4")B="text-red-400";else if(F==="5")B="text-red-400";else if(F==="6")B="text-red-400";else if(F==="7")B="text-red-400";else if(F==="8")B="text-red-400";else if(F==="9")B="text-red-400";else if(F===".")B="text-red-400";else if(F==="-")B="text-red-400";else B="text-zinc-200";let P=p(Q([H(B)]),Q([C(F)]));Z=D,J=Y,K=V,X=A(P,G)}else{let F=N.tail;if(F instanceof M){let D=I,B=z,T;if(D==="0")T="text-red-400";else if(D==="1")T="text-red-400";else if(D==="2")T="text-red-400";else if(D==="3")T="text-red-400";else if(D==="4")T="text-red-400";else if(D==="5")T="text-red-400";else if(D==="6")T="text-red-400";else if(D==="7")T="text-red-400";else if(D==="8")T="text-red-400";else if(D==="9")T="text-red-400";else if(D===".")T="text-red-400";else if(D==="-")T="text-red-400";else T="text-zinc-200";let S=p(Q([H(T)]),Q([C(D)]));Z=B,J=Y,K=V,X=A(S,G)}else if(z.head==="r")if(N.head==="u")if(F.head==="e"&&!Y){let P;if(W instanceof M)P="";else{let k=W.tail;if(k instanceof M)P="";else{let w=k.tail;if(w instanceof M)P="";else{let f=w.tail;if(f instanceof M)P="";else{let g=W.head;if(g==="t")if(k.head==="r")if(w.head==="u")if(f.head==="e")P="true";else P="";else P="";else P="";else if(g==="f"){let d=f.tail;if(d instanceof M)P="";else if(k.head==="a")if(w.head==="l")if(f.head==="s")if(d.head==="e")P="false";else P="";else P="";else P="";else P=""}else if(g==="n")if(k.head==="u")if(w.head==="l")if(f.head==="l")P="null";else P="";else P="";else P="";else P=""}}}}let S=P,q=W8(S),x=p(Q([H("text-red-400")]),Q([C(S)]));Z=Y4(W,q),J=Y,K=!1,X=A(x,G)}else{let P=I,S=z,q;if(P==="0")q="text-red-400";else if(P==="1")q="text-red-400";else if(P==="2")q="text-red-400";else if(P==="3")q="text-red-400";else if(P==="4")q="text-red-400";else if(P==="5")q="text-red-400";else if(P==="6")q="text-red-400";else if(P==="7")q="text-red-400";else if(P==="8")q="text-red-400";else if(P==="9")q="text-red-400";else if(P===".")q="text-red-400";else if(P==="-")q="text-red-400";else q="text-zinc-200";let U=p(Q([H(q)]),Q([C(P)]));Z=S,J=Y,K=V,X=A(U,G)}else{let T=I,P=z,S;if(T==="0")S="text-red-400";else if(T==="1")S="text-red-400";else if(T==="2")S="text-red-400";else if(T==="3")S="text-red-400";else if(T==="4")S="text-red-400";else if(T==="5")S="text-red-400";else if(T==="6")S="text-red-400";else if(T==="7")S="text-red-400";else if(T==="8")S="text-red-400";else if(T==="9")S="text-red-400";else if(T===".")S="text-red-400";else if(T==="-")S="text-red-400";else S="text-zinc-200";let x=p(Q([H(S)]),Q([C(T)]));Z=P,J=Y,K=V,X=A(x,G)}else{let B=I,T=z,P;if(B==="0")P="text-red-400";else if(B==="1")P="text-red-400";else if(B==="2")P="text-red-400";else if(B==="3")P="text-red-400";else if(B==="4")P="text-red-400";else if(B==="5")P="text-red-400";else if(B==="6")P="text-red-400";else if(B==="7")P="text-red-400";else if(B==="8")P="text-red-400";else if(B==="9")P="text-red-400";else if(B===".")P="text-red-400";else if(B==="-")P="text-red-400";else P="text-zinc-200";let q=p(Q([H(P)]),Q([C(B)]));Z=T,J=Y,K=V,X=A(q,G)}}}}else if(I==="f")if(Y){let z=I,N=W.tail,F;if(V)F="text-green-400";else F="text-sky-400";let B=p(Q([H(F)]),Q([C(z)]));Z=N,J=Y,K=V,X=A(B,G)}else{let z=W.tail;if(z instanceof M){let N=I,F=z,D;if(N==="0")D="text-red-400";else if(N==="1")D="text-red-400";else if(N==="2")D="text-red-400";else if(N==="3")D="text-red-400";else if(N==="4")D="text-red-400";else if(N==="5")D="text-red-400";else if(N==="6")D="text-red-400";else if(N==="7")D="text-red-400";else if(N==="8")D="text-red-400";else if(N==="9")D="text-red-400";else if(N===".")D="text-red-400";else if(N==="-")D="text-red-400";else D="text-zinc-200";let T=p(Q([H(D)]),Q([C(N)]));Z=F,J=Y,K=V,X=A(T,G)}else{let N=z.tail;if(N instanceof M){let F=I,D=z,B;if(F==="0")B="text-red-400";else if(F==="1")B="text-red-400";else if(F==="2")B="text-red-400";else if(F==="3")B="text-red-400";else if(F==="4")B="text-red-400";else if(F==="5")B="text-red-400";else if(F==="6")B="text-red-400";else if(F==="7")B="text-red-400";else if(F==="8")B="text-red-400";else if(F==="9")B="text-red-400";else if(F===".")B="text-red-400";else if(F==="-")B="text-red-400";else B="text-zinc-200";let P=p(Q([H(B)]),Q([C(F)]));Z=D,J=Y,K=V,X=A(P,G)}else{let F=N.tail;if(F instanceof M){let D=I,B=z,T;if(D==="0")T="text-red-400";else if(D==="1")T="text-red-400";else if(D==="2")T="text-red-400";else if(D==="3")T="text-red-400";else if(D==="4")T="text-red-400";else if(D==="5")T="text-red-400";else if(D==="6")T="text-red-400";else if(D==="7")T="text-red-400";else if(D==="8")T="text-red-400";else if(D==="9")T="text-red-400";else if(D===".")T="text-red-400";else if(D==="-")T="text-red-400";else T="text-zinc-200";let S=p(Q([H(T)]),Q([C(D)]));Z=B,J=Y,K=V,X=A(S,G)}else{let D=F.tail;if(D instanceof M){let B=I,T=z,P;if(B==="0")P="text-red-400";else if(B==="1")P="text-red-400";else if(B==="2")P="text-red-400";else if(B==="3")P="text-red-400";else if(B==="4")P="text-red-400";else if(B==="5")P="text-red-400";else if(B==="6")P="text-red-400";else if(B==="7")P="text-red-400";else if(B==="8")P="text-red-400";else if(B==="9")P="text-red-400";else if(B===".")P="text-red-400";else if(B==="-")P="text-red-400";else P="text-zinc-200";let q=p(Q([H(P)]),Q([C(B)]));Z=T,J=Y,K=V,X=A(q,G)}else if(z.head==="a")if(N.head==="l")if(F.head==="s")if(D.head==="e"&&!Y){let q;if(W instanceof M)q="";else{let f=W.tail;if(f instanceof M)q="";else{let g=f.tail;if(g instanceof M)q="";else{let d=g.tail;if(d instanceof M)q="";else{let n=W.head;if(n==="t")if(f.head==="r")if(g.head==="u")if(d.head==="e")q="true";else q="";else q="";else q="";else if(n==="f"){let r=d.tail;if(r instanceof M)q="";else if(f.head==="a")if(g.head==="l")if(d.head==="s")if(r.head==="e")q="false";else q="";else q="";else q="";else q=""}else if(n==="n")if(f.head==="u")if(g.head==="l")if(d.head==="l")q="null";else q="";else q="";else q="";else q=""}}}}let x=q,U=W8(x),k=p(Q([H("text-red-400")]),Q([C(x)]));Z=Y4(W,U),J=Y,K=!1,X=A(k,G)}else{let q=I,x=z,U;if(q==="0")U="text-red-400";else if(q==="1")U="text-red-400";else if(q==="2")U="text-red-400";else if(q==="3")U="text-red-400";else if(q==="4")U="text-red-400";else if(q==="5")U="text-red-400";else if(q==="6")U="text-red-400";else if(q==="7")U="text-red-400";else if(q==="8")U="text-red-400";else if(q==="9")U="text-red-400";else if(q===".")U="text-red-400";else if(q==="-")U="text-red-400";else U="text-zinc-200";let w=p(Q([H(U)]),Q([C(q)]));Z=x,J=Y,K=V,X=A(w,G)}else{let S=I,q=z,x;if(S==="0")x="text-red-400";else if(S==="1")x="text-red-400";else if(S==="2")x="text-red-400";else if(S==="3")x="text-red-400";else if(S==="4")x="text-red-400";else if(S==="5")x="text-red-400";else if(S==="6")x="text-red-400";else if(S==="7")x="text-red-400";else if(S==="8")x="text-red-400";else if(S==="9")x="text-red-400";else if(S===".")x="text-red-400";else if(S==="-")x="text-red-400";else x="text-zinc-200";let k=p(Q([H(x)]),Q([C(S)]));Z=q,J=Y,K=V,X=A(k,G)}else{let P=I,S=z,q;if(P==="0")q="text-red-400";else if(P==="1")q="text-red-400";else if(P==="2")q="text-red-400";else if(P==="3")q="text-red-400";else if(P==="4")q="text-red-400";else if(P==="5")q="text-red-400";else if(P==="6")q="text-red-400";else if(P==="7")q="text-red-400";else if(P==="8")q="text-red-400";else if(P==="9")q="text-red-400";else if(P===".")q="text-red-400";else if(P==="-")q="text-red-400";else q="text-zinc-200";let U=p(Q([H(q)]),Q([C(P)]));Z=S,J=Y,K=V,X=A(U,G)}else{let T=I,P=z,S;if(T==="0")S="text-red-400";else if(T==="1")S="text-red-400";else if(T==="2")S="text-red-400";else if(T==="3")S="text-red-400";else if(T==="4")S="text-red-400";else if(T==="5")S="text-red-400";else if(T==="6")S="text-red-400";else if(T==="7")S="text-red-400";else if(T==="8")S="text-red-400";else if(T==="9")S="text-red-400";else if(T===".")S="text-red-400";else if(T==="-")S="text-red-400";else S="text-zinc-200";let x=p(Q([H(S)]),Q([C(T)]));Z=P,J=Y,K=V,X=A(x,G)}}}}}else if(I==="n")if(Y){let z=I,N=W.tail,F;if(V)F="text-green-400";else F="text-sky-400";let B=p(Q([H(F)]),Q([C(z)]));Z=N,J=Y,K=V,X=A(B,G)}else{let z=W.tail;if(z instanceof M){let N=I,F=z,D;if(N==="0")D="text-red-400";else if(N==="1")D="text-red-400";else if(N==="2")D="text-red-400";else if(N==="3")D="text-red-400";else if(N==="4")D="text-red-400";else if(N==="5")D="text-red-400";else if(N==="6")D="text-red-400";else if(N==="7")D="text-red-400";else if(N==="8")D="text-red-400";else if(N==="9")D="text-red-400";else if(N===".")D="text-red-400";else if(N==="-")D="text-red-400";else D="text-zinc-200";let T=p(Q([H(D)]),Q([C(N)]));Z=F,J=Y,K=V,X=A(T,G)}else{let N=z.tail;if(N instanceof M){let F=I,D=z,B;if(F==="0")B="text-red-400";else if(F==="1")B="text-red-400";else if(F==="2")B="text-red-400";else if(F==="3")B="text-red-400";else if(F==="4")B="text-red-400";else if(F==="5")B="text-red-400";else if(F==="6")B="text-red-400";else if(F==="7")B="text-red-400";else if(F==="8")B="text-red-400";else if(F==="9")B="text-red-400";else if(F===".")B="text-red-400";else if(F==="-")B="text-red-400";else B="text-zinc-200";let P=p(Q([H(B)]),Q([C(F)]));Z=D,J=Y,K=V,X=A(P,G)}else{let F=N.tail;if(F instanceof M){let D=I,B=z,T;if(D==="0")T="text-red-400";else if(D==="1")T="text-red-400";else if(D==="2")T="text-red-400";else if(D==="3")T="text-red-400";else if(D==="4")T="text-red-400";else if(D==="5")T="text-red-400";else if(D==="6")T="text-red-400";else if(D==="7")T="text-red-400";else if(D==="8")T="text-red-400";else if(D==="9")T="text-red-400";else if(D===".")T="text-red-400";else if(D==="-")T="text-red-400";else T="text-zinc-200";let S=p(Q([H(T)]),Q([C(D)]));Z=B,J=Y,K=V,X=A(S,G)}else if(z.head==="u")if(N.head==="l")if(F.head==="l"&&!Y){let P;if(W instanceof M)P="";else{let k=W.tail;if(k instanceof M)P="";else{let w=k.tail;if(w instanceof M)P="";else{let f=w.tail;if(f instanceof M)P="";else{let g=W.head;if(g==="t")if(k.head==="r")if(w.head==="u")if(f.head==="e")P="true";else P="";else P="";else P="";else if(g==="f"){let d=f.tail;if(d instanceof M)P="";else if(k.head==="a")if(w.head==="l")if(f.head==="s")if(d.head==="e")P="false";else P="";else P="";else P="";else P=""}else if(g==="n")if(k.head==="u")if(w.head==="l")if(f.head==="l")P="null";else P="";else P="";else P="";else P=""}}}}let S=P,q=W8(S),x=p(Q([H("text-red-400")]),Q([C(S)]));Z=Y4(W,q),J=Y,K=!1,X=A(x,G)}else{let P=I,S=z,q;if(P==="0")q="text-red-400";else if(P==="1")q="text-red-400";else if(P==="2")q="text-red-400";else if(P==="3")q="text-red-400";else if(P==="4")q="text-red-400";else if(P==="5")q="text-red-400";else if(P==="6")q="text-red-400";else if(P==="7")q="text-red-400";else if(P==="8")q="text-red-400";else if(P==="9")q="text-red-400";else if(P===".")q="text-red-400";else if(P==="-")q="text-red-400";else q="text-zinc-200";let U=p(Q([H(q)]),Q([C(P)]));Z=S,J=Y,K=V,X=A(U,G)}else{let T=I,P=z,S;if(T==="0")S="text-red-400";else if(T==="1")S="text-red-400";else if(T==="2")S="text-red-400";else if(T==="3")S="text-red-400";else if(T==="4")S="text-red-400";else if(T==="5")S="text-red-400";else if(T==="6")S="text-red-400";else if(T==="7")S="text-red-400";else if(T==="8")S="text-red-400";else if(T==="9")S="text-red-400";else if(T===".")S="text-red-400";else if(T==="-")S="text-red-400";else S="text-zinc-200";let x=p(Q([H(S)]),Q([C(T)]));Z=P,J=Y,K=V,X=A(x,G)}else{let B=I,T=z,P;if(B==="0")P="text-red-400";else if(B==="1")P="text-red-400";else if(B==="2")P="text-red-400";else if(B==="3")P="text-red-400";else if(B==="4")P="text-red-400";else if(B==="5")P="text-red-400";else if(B==="6")P="text-red-400";else if(B==="7")P="text-red-400";else if(B==="8")P="text-red-400";else if(B==="9")P="text-red-400";else if(B===".")P="text-red-400";else if(B==="-")P="text-red-400";else P="text-zinc-200";let q=p(Q([H(P)]),Q([C(B)]));Z=T,J=Y,K=V,X=A(q,G)}}}}else if(Y){let z=I,N=W.tail,F;if(V)F="text-green-400";else F="text-sky-400";let B=p(Q([H(F)]),Q([C(z)]));Z=N,J=Y,K=V,X=A(B,G)}else{let z=I,N=W.tail,F;if(z==="0")F="text-red-400";else if(z==="1")F="text-red-400";else if(z==="2")F="text-red-400";else if(z==="3")F="text-red-400";else if(z==="4")F="text-red-400";else if(z==="5")F="text-red-400";else if(z==="6")F="text-red-400";else if(z==="7")F="text-red-400";else if(z==="8")F="text-red-400";else if(z==="9")F="text-red-400";else if(z===".")F="text-red-400";else if(z==="-")F="text-red-400";else F="text-zinc-200";let B=p(Q([H(F)]),Q([C(z)]));Z=N,J=Y,K=V,X=A(B,G)}}}}function R_(Z,J,K){return M_(Z,J,!1,K)}function Kh(Z){let K=LZ(Z),X=R_(K,!1,Q([])),W=H0(X);return If(W)}class Yh extends O{constructor(Z){super();this[0]=Z}}function Xh(Z){let J=Z[0];return F1((K)=>{return Jh(J)})}function L_(){return R(Q([H("py-8 text-center text-zinc-600 text-sm")]),Q([C("Loading lexicons...")]))}function y_(Z){return R(Q([H("py-8 text-center text-red-400 text-sm")]),Q([C("Error: "+Z)]))}function f_(){return R(Q([H("bg-zinc-800/50 rounded p-8 text-center border border-zinc-700")]),Q([D0(Q([H("text-zinc-400 mb-2")]),Q([C("No lexicons found.")])),D0(Q([H("text-sm text-zinc-500")]),Q([C("Upload lexicons from the Settings page to get started.")]))]))}function k_(Z){return R(Q([H("bg-zinc-800/50 rounded p-4 relative")]),Q([q0(Q([H("absolute top-4 right-4 p-1.5 rounded hover:bg-zinc-700 text-zinc-400 hover:text-zinc-300 transition-colors"),x0("button"),f0(new Yh(Z.json))]),Q([KJ("copy",new SM,Q([]))])),Ff(Q([H("group")]),Q([Hf(Q([H("cursor-pointer text-base font-mono text-zinc-300 hover:text-zinc-200 select-none list-none pr-10")]),Q([C(Z.id)])),wK(Q([H("mt-3 bg-zinc-900 rounded p-3 overflow-x-auto text-xs font-mono")]),Q([_8(Q([]),Q([Kh(QL(Z.json))]))]))]))]))}function b_(Z){if(Z instanceof M)return f_();else return R(Q([H("space-y-4")]),Q([D0(Q([H("text-sm text-zinc-500 mb-4")]),Q([C(GK(o8(Z))+" lexicons")])),R(Q([H("space-y-3")]),z0(Z,k_))]))}function Wh(Z){let J=a(Z,"GetLexicons",h(Q([])),VJ),K;return K=J[1],R(Q([H("space-y-6")]),Q([R(Q([H("mb-2")]),Q([p1(Q([m1("/"),H("text-zinc-400 hover:text-zinc-300 transition-colors text-sm")]),Q([C("โ† Back")]))])),c1(Q([H("text-2xl font-semibold text-zinc-300 mb-6")]),Q([C("Lexicons")])),(()=>{if(K instanceof M1)return L_();else if(K instanceof R1){let X=K[0];return y_(X)}else{let X=K[0];return b_(X.lexicons)}})()]))}function Qh(Z,J,K,X,W,Y){return R(Q([H("max-w-md mx-auto mt-12")]),Q([R(Q([H("bg-zinc-800/50 rounded p-8 border border-zinc-700")]),Q([R(Q([H("flex justify-center mb-6")]),Q([AM("w-16 h-16")])),c1(Q([H("text-2xl font-semibold text-zinc-300 mb-2 text-center")]),Q([C("Welcome to Quickslice")])),D0(Q([H("text-zinc-400 mb-6 text-center")]),Q([C("Set up an administrator account to get started.")])),m8(Q([y5("/admin/oauth/authorize"),f5("POST"),H("space-y-4")]),Q([R(Q([]),Q([m0(Q([H("block text-sm text-zinc-400 mb-2")]),Q([C("AT Protocol Handle")])),eZ(Z,"onboarding-handle","login_hint","user.bsky.social","font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-900 border border-zinc-800 rounded focus:outline-none focus:border-zinc-700 w-full",J,K,X,W,Y)])),R(Q([H("pt-2")]),Q([EM(Z.query==="","Continue")]))]))]))]))}class NJ extends O{constructor(Z){super();this[0]=Z}}class FJ extends O{}class HJ extends O{}class DJ extends O{constructor(Z){super();this[0]=Z}}class BJ extends O{}class OJ extends O{constructor(Z){super();this[0]=Z}}class TJ extends O{constructor(Z){super();this[0]=Z}}class PJ extends O{constructor(Z){super();this[0]=Z}}class SJ extends O{constructor(Z){super();this[0]=Z}}class AJ extends O{}class qZ extends O{}class qJ extends O{constructor(Z){super();this[0]=Z}}class EJ extends O{constructor(Z){super();this[0]=Z}}class CJ extends O{constructor(Z){super();this[0]=Z}}class xJ extends O{constructor(Z){super();this[0]=Z}}class wJ extends O{}class UJ extends O{constructor(Z){super();this[0]=Z}}class MJ extends O{}class RJ extends O{constructor(Z){super();this[0]=Z}}class jJ extends O{constructor(Z){super();this[0]=Z}}class LJ extends O{constructor(Z){super();this[0]=Z}}class yJ extends O{}class fJ extends O{constructor(Z){super();this[0]=Z}}class kJ extends O{constructor(Z){super();this[0]=Z}}class bJ extends O{}class hJ extends O{}class vJ extends O{constructor(Z){super();this[0]=Z}}class $J extends O{}class EZ extends O{constructor(Z){super();this[0]=Z}}class gJ extends O{}class VL extends O{}class K0 extends O{constructor(Z,J,K,X,W,Y,V,G,I,z,N,F,D,B,T,P,S,q,x,U,k,w,f,g,d){super();this.domain_authority_input=Z,this.reset_confirmation=J,this.selected_file=K,this.alert=X,this.relay_url_input=W,this.plc_directory_url_input=Y,this.jetstream_url_input=V,this.oauth_supported_scopes_input=G,this.lexicons_alert=I,this.show_new_client_form=z,this.new_client_name=N,this.new_client_type=F,this.new_client_redirect_uris=D,this.new_client_scope=B,this.editing_client_id=T,this.edit_client_name=P,this.edit_client_redirect_uris=S,this.edit_client_scope=q,this.visible_secrets=x,this.delete_confirm_client_id=U,this.oauth_alert=k,this.new_admin_did=w,this.remove_confirm_did=f,this.admin_alert=g,this.danger_zone_alert=d}}function Vh(Z,J){return R(Q([H("bg-zinc-800/50 rounded p-6")]),Q([P8(Q([H("text-xl font-semibold text-zinc-300 mb-4")]),Q([C("Admin Management")])),(()=>{let K=J.admin_alert;if(K instanceof L){let X=K[0][0],W=K[0][1],Y;if(X==="success")Y=new j1;else if(X==="error")Y=new D1;else Y=new B1;return h1(Y,W)}else return X0()})(),R(Q([H("mb-6")]),Q([v5(Q([H("text-sm font-medium text-zinc-400 mb-2")]),Q([C("Current Admins")])),A4(Q([H("space-y-2")]),z0(Z.admin_dids,(K)=>{return g8(Q([H("flex items-center justify-between bg-zinc-900/50 px-3 py-2 rounded border border-zinc-800")]),Q([p(Q([H("font-mono text-sm text-zinc-300 truncate")]),Q([C(K)])),(()=>{let X=J.remove_confirm_did;if(X instanceof L)if(X[0]===K)return R(Q([H("flex gap-2")]),Q([q0(Q([H("text-xs px-2 py-1 text-zinc-400 hover:text-zinc-300 cursor-pointer"),f0(new gJ)]),Q([C("Cancel")])),q0(Q([H("text-xs px-2 py-1 text-red-400 hover:bg-red-900/30 rounded cursor-pointer"),f0(new VL)]),Q([C("Confirm Remove")]))]));else return q0(Q([H("text-xs px-2 py-1 text-zinc-500 hover:text-red-400 transition-colors cursor-pointer"),f0(new EZ(K))]),Q([C("Remove")]));else return q0(Q([H("text-xs px-2 py-1 text-zinc-500 hover:text-red-400 transition-colors cursor-pointer"),f0(new EZ(K))]),Q([C("Remove")]))})()]))}))])),R(Q([H("border-t border-zinc-800 pt-4")]),Q([v5(Q([H("text-sm font-medium text-zinc-400 mb-2")]),Q([C("Add Admin")])),R(Q([H("flex gap-2")]),Q([s0(Q([x0("text"),H("flex-1 font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-900 border border-zinc-800 rounded focus:outline-none focus:border-zinc-700"),V1("did:plc:... or did:web:..."),i0(J.new_admin_did),c0((K)=>{return new vJ(K)})])),v1(J.new_admin_did==="",new $J,"Add Admin")])),D0(Q([H("text-xs text-zinc-500 mt-2")]),Q([C("Enter the DID of the user you want to make an admin.")]))]))]))}function Gh(Z,J,K){return R(Q([H("bg-zinc-800/50 rounded p-6")]),Q([P8(Q([H("text-xl font-semibold text-zinc-300 mb-4")]),Q([C("Basic Settings")])),(()=>{let X=J.alert;if(X instanceof L){let W=X[0][0],Y=X[0][1],V;if(W==="success")V=new j1;else if(W==="error")V=new D1;else V=new B1;return h1(V,Y)}else return X0()})(),m8(Q([H("space-y-6"),tk((X)=>{return new AJ})]),Q([R(Q([H("space-y-2")]),Q([m0(Q([H("block text-sm text-zinc-400 mb-2")]),Q([C("Domain Authority")])),s0(Q([x0("text"),H("font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-900 border border-zinc-800 rounded focus:outline-none focus:border-zinc-700 w-full"),V1("e.g. com.example"),i0(J.domain_authority_input),Y5(!0),c0((X)=>{return new NJ(X)})])),D0(Q([H("text-xs text-zinc-500")]),Q([C('Determines which collections are considered "primary" vs "external" when backfilling records.')]))])),R(Q([H("space-y-2")]),Q([m0(Q([H("block text-sm text-zinc-400 mb-2")]),Q([C("Relay URL")])),s0(Q([x0("text"),H("font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-900 border border-zinc-800 rounded focus:outline-none focus:border-zinc-700 w-full"),V1(Z.relay_url),i0(J.relay_url_input),Y5(!0),c0((X)=>{return new OJ(X)})])),D0(Q([H("text-xs text-zinc-500")]),Q([C("AT Protocol relay URL for backfill operations.")]))])),R(Q([H("space-y-2")]),Q([m0(Q([H("block text-sm text-zinc-400 mb-2")]),Q([C("PLC Directory URL")])),s0(Q([x0("text"),H("font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-900 border border-zinc-800 rounded focus:outline-none focus:border-zinc-700 w-full"),V1(Z.plc_directory_url),i0(J.plc_directory_url_input),Y5(!0),c0((X)=>{return new TJ(X)})])),D0(Q([H("text-xs text-zinc-500")]),Q([C("PLC directory URL for DID resolution.")]))])),R(Q([H("space-y-2")]),Q([m0(Q([H("block text-sm text-zinc-400 mb-2")]),Q([C("Jetstream URL")])),s0(Q([x0("text"),H("font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-900 border border-zinc-800 rounded focus:outline-none focus:border-zinc-700 w-full"),V1(Z.jetstream_url),i0(J.jetstream_url_input),Y5(!0),c0((X)=>{return new PJ(X)})])),D0(Q([H("text-xs text-zinc-500")]),Q([C("Jetstream WebSocket endpoint for real-time indexing.")]))])),R(Q([H("space-y-2")]),Q([m0(Q([H("block text-sm text-zinc-400 mb-2")]),Q([C("OAuth Supported Scopes")])),s0(Q([x0("text"),H("font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-900 border border-zinc-800 rounded focus:outline-none focus:border-zinc-700 w-full"),V1(Z.oauth_supported_scopes),i0(J.oauth_supported_scopes_input),Y5(!0),c0((X)=>{return new SJ(X)})])),D0(Q([H("text-xs text-zinc-500")]),Q([C("Space-separated OAuth scopes supported by this server.")]))])),R(Q([H("flex gap-3 pt-4")]),Q([EM(K,(()=>{if(K)return"Saving...";else return"Save"})())]))]))]))}function Ih(Z){return R(Q([H("bg-zinc-800/50 rounded p-6")]),Q([P8(Q([H("text-xl font-semibold text-zinc-300 mb-4")]),Q([C("Danger Zone")])),(()=>{let J=Z.danger_zone_alert;if(J instanceof L){let K=J[0][0],X=J[0][1],W;if(K==="success")W=new j1;else if(K==="error")W=new D1;else W=new B1;return h1(W,X)}else return X0()})(),D0(Q([H("text-sm text-zinc-400 mb-4")]),Q([C("This will clear all indexed data:")])),A4(Q([H("text-sm text-zinc-400 mb-4 ml-4 list-disc")]),Q([g8(Q([]),Q([C("Domain authority configuration")])),g8(Q([]),Q([C("All lexicon definitions")])),g8(Q([]),Q([C("All indexed records")])),g8(Q([]),Q([C("All actors")]))])),D0(Q([H("text-sm text-zinc-400 mb-4")]),Q([C("Records can be re-indexed via backfill.")])),R(Q([H("space-y-4")]),Q([R(Q([H("mb-4")]),Q([m0(Q([H("block text-sm text-zinc-400 mb-2")]),Q([C("Type RESET to confirm")])),s0(Q([x0("text"),H("font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-900 border border-zinc-800 rounded focus:outline-none focus:border-zinc-700 w-full"),V1("RESET"),i0(Z.reset_confirmation),c0((J)=>{return new DJ(J)})]))])),R(Q([H("flex gap-3")]),Q([q0(Q([H("font-mono px-4 py-2 text-sm text-red-400 border border-red-900 hover:bg-red-900/30 rounded transition-colors cursor-pointer"),hZ(Z.reset_confirmation!=="RESET"),f0(new BJ)]),Q([C("Reset Everything")]))]))]))]))}function zh(Z){return R(Q([H("bg-zinc-800/50 rounded p-6")]),Q([P8(Q([H("text-xl font-semibold text-zinc-300 mb-4")]),Q([C("Lexicons")])),(()=>{let J=Z.lexicons_alert;if(J instanceof L){let K=J[0][0],X=J[0][1],W;if(K==="success")W=new j1;else if(K==="error")W=new D1;else W=new B1;return h1(W,X)}else return X0()})(),R(Q([H("space-y-4")]),Q([R(Q([H("mb-4")]),Q([m0(Q([H("block text-sm text-zinc-400 mb-2")]),Q([C("Upload Lexicons (ZIP)")])),s0(Q([x0("file"),ny(Q([".zip"])),H("font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-900 border border-zinc-800 rounded focus:outline-none focus:border-zinc-700 w-full"),T8("lexicon-file-input"),c0((J)=>{return new FJ})]))])),D0(Q([H("text-sm text-zinc-500 mb-2")]),Q([C("Upload a ZIP file containing your lexicon JSON files.")])),D0(Q([H("text-sm text-zinc-500 mb-4")]),Q([C("NOTE: If you're swapping out lexicons with a totally new set, consider using RESET instead to clear all records as well.")])),R(Q([H("flex gap-3")]),Q([v1(!1,new HJ,"Upload")]))]))]))}function u_(Z){return R(Q([H("bg-zinc-900 rounded p-4 mb-4 border border-zinc-700")]),Q([v5(Q([H("text-lg font-semibold text-zinc-300 mb-3")]),Q([C("Register New Client")])),R(Q([H("space-y-3")]),Q([R(Q([]),Q([m0(Q([H("block text-sm text-zinc-400 mb-1")]),Q([C("Client Name")])),s0(Q([x0("text"),H("font-mono px-3 py-2 text-sm text-zinc-300 bg-zinc-800 border border-zinc-700 rounded w-full"),V1("My Application"),i0(Z.new_client_name),c0((J)=>{return new qJ(J)})]))])),R(Q([]),Q([m0(Q([H("block text-sm text-zinc-400 mb-1")]),Q([C("Client Type")])),Nf(Q([H("font-mono px-3 py-2 text-sm text-zinc-300 bg-zinc-800 border border-zinc-700 rounded w-full"),ak((J)=>{return new EJ(J)})]),Q([sR(Q([i0("PUBLIC"),LR(Z.new_client_type==="PUBLIC")]),"Public"),sR(Q([i0("CONFIDENTIAL"),LR(Z.new_client_type==="CONFIDENTIAL")]),"Confidential")])),D0(Q([H("text-xs text-zinc-500 mt-1")]),Q([C((()=>{if(Z.new_client_type==="CONFIDENTIAL")return"For server-side apps that can securely store a client secret";else return"For browser apps (SPAs) and mobile apps that cannot securely store a secret"})())]))])),R(Q([]),Q([m0(Q([H("block text-sm text-zinc-400 mb-1")]),Q([C("Redirect URIs (one per line)")])),rR(Q([H("font-mono px-3 py-2 text-sm text-zinc-300 bg-zinc-800 border border-zinc-700 rounded w-full h-20"),V1("http://localhost:3000/callback"),i0(Z.new_client_redirect_uris),c0((J)=>{return new CJ(J)})]),"")])),R(Q([]),Q([m0(Q([H("block text-sm text-zinc-400 mb-1")]),Q([C("Scope")])),s0(Q([x0("text"),H("font-mono px-3 py-2 text-sm text-zinc-300 bg-zinc-800 border border-zinc-700 rounded w-full"),V1("atproto transition:generic"),i0(Z.new_client_scope),c0((J)=>{return new xJ(J)})])),D0(Q([H("text-xs text-zinc-500 mt-1")]),Q([C("Space-separated OAuth scopes")]))])),R(Q([H("flex gap-2")]),Q([v1(!1,new wJ,"Create"),q0(Q([H("font-mono px-4 py-2 text-sm text-zinc-400 hover:text-zinc-300 rounded transition-colors cursor-pointer"),f0(new qZ)]),Q([C("Cancel")]))]))]))]))}function d_(Z,J){return R(Q([H("bg-zinc-900 rounded p-4 border border-amber-700")]),Q([v5(Q([H("text-lg font-semibold text-zinc-300 mb-3")]),Q([C("Edit Client")])),R(Q([H("space-y-3")]),Q([R(Q([]),Q([m0(Q([H("block text-sm text-zinc-400 mb-1")]),Q([C("Client ID")])),_8(Q([H("text-sm text-zinc-500 font-mono")]),Q([C(Z.client_id)]))])),R(Q([]),Q([m0(Q([H("block text-sm text-zinc-400 mb-1")]),Q([C("Client Name")])),s0(Q([x0("text"),H("font-mono px-3 py-2 text-sm text-zinc-300 bg-zinc-800 border border-zinc-700 rounded w-full"),i0(J.edit_client_name),c0((K)=>{return new RJ(K)})]))])),R(Q([]),Q([m0(Q([H("block text-sm text-zinc-400 mb-1")]),Q([C("Redirect URIs (one per line)")])),rR(Q([H("font-mono px-3 py-2 text-sm text-zinc-300 bg-zinc-800 border border-zinc-700 rounded w-full h-20"),c0((K)=>{return new jJ(K)})]),J.edit_client_redirect_uris)])),R(Q([]),Q([m0(Q([H("block text-sm text-zinc-400 mb-1")]),Q([C("Scope")])),s0(Q([x0("text"),H("font-mono px-3 py-2 text-sm text-zinc-300 bg-zinc-800 border border-zinc-700 rounded w-full"),i0(J.edit_client_scope),c0((K)=>{return new LJ(K)})]))])),R(Q([H("flex gap-2")]),Q([v1(!1,new yJ,"Save"),q0(Q([H("font-mono px-4 py-2 text-sm text-zinc-400 hover:text-zinc-300 rounded transition-colors cursor-pointer"),f0(new MJ)]),Q([C("Cancel")]))]))]))]))}function c_(Z,J){let K=P0(J.editing_client_id,new L(Z.client_id)),X=N4(J.visible_secrets,Z.client_id);if(K)return d_(Z,J);else return R(Q([H("bg-zinc-900 rounded p-4 border border-zinc-700")]),Q([R(Q([H("flex justify-between items-start mb-2")]),Q([R(Q([]),Q([p(Q([H("text-zinc-300 font-medium")]),Q([C(Z.client_name)]))])),R(Q([H("flex gap-2")]),Q([q0(Q([H("text-sm text-zinc-400 hover:text-zinc-300 cursor-pointer"),f0(new UJ(Z.client_id))]),Q([C("Edit")])),q0(Q([H("text-sm text-red-400 hover:text-red-300 cursor-pointer"),f0(new kJ(Z.client_id))]),Q([C("Delete")]))]))])),R(Q([H("mb-2")]),Q([p(Q([H("text-xs text-zinc-500")]),Q([C("Client ID: ")])),_8(Q([H("text-xs text-zinc-400 font-mono")]),Q([C(Z.client_id)]))])),R(Q([H("mb-2")]),Q([p(Q([H("text-xs text-zinc-500")]),Q([C("Type: ")])),p(Q([H("text-xs text-zinc-400")]),Q([C((()=>{let W=Z.client_type;if(W==="PUBLIC")return"Public";else if(W==="CONFIDENTIAL")return"Confidential";else return Z.client_type})())]))])),(()=>{let W=Z.client_secret;if(W instanceof L){let Y=W[0];return R(Q([H("mb-2")]),Q([p(Q([H("text-xs text-zinc-500")]),Q([C("Secret: ")])),(()=>{if(X)return _8(Q([H("text-xs text-zinc-400 font-mono")]),Q([C(Y)]));else return _8(Q([H("text-xs text-zinc-400 font-mono")]),Q([C("โ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ข")]))})(),q0(Q([H("ml-2 text-xs text-zinc-500 hover:text-zinc-400 cursor-pointer"),f0(new fJ(Z.client_id))]),Q([C((()=>{if(X)return"Hide";else return"Show"})())]))]))}else return X0()})(),(()=>{let W=Z.redirect_uris;if(W instanceof M)return X0();else{let Y=W;return R(Q([]),Q([p(Q([H("text-xs text-zinc-500")]),Q([C("Redirect URIs:")])),A4(Q([H("text-xs text-zinc-400 font-mono ml-4")]),z0(Y,(V)=>{return g8(Q([]),Q([C(V)]))}))]))}})(),(()=>{let W=Z.scope;if(W instanceof L){let Y=W[0];return R(Q([H("mt-2")]),Q([p(Q([H("text-xs text-zinc-500")]),Q([C("Scope: ")])),_8(Q([H("text-xs text-zinc-400 font-mono")]),Q([C(Y)]))]))}else return X0()})()]))}function p_(Z){return R(Q([H("fixed inset-0 bg-black/50 flex items-center justify-center z-50")]),Q([R(Q([H("bg-zinc-800 rounded p-6 max-w-md")]),Q([v5(Q([H("text-lg font-semibold text-zinc-300 mb-3")]),Q([C("Delete Client?")])),D0(Q([H("text-sm text-zinc-400 mb-4")]),Q([C("Are you sure you want to delete client "),_8(Q([H("text-zinc-300")]),Q([C(Z)])),C("? This action cannot be undone.")])),R(Q([H("flex gap-2 justify-end")]),Q([q0(Q([H("font-mono px-4 py-2 text-sm text-zinc-400 hover:text-zinc-300 rounded transition-colors cursor-pointer"),f0(new bJ)]),Q([C("Cancel")])),q0(Q([H("font-mono px-4 py-2 text-sm text-red-400 border border-red-900 hover:bg-red-900/30 rounded transition-colors cursor-pointer"),f0(new hJ)]),Q([C("Delete")]))]))]))]))}function Nh(Z,J){let K=h(Q([])),X=a(Z,"GetOAuthClients",K,l8),W;return W=X[1],R(Q([H("bg-zinc-800/50 rounded p-6")]),Q([P8(Q([H("text-xl font-semibold text-zinc-300 mb-4")]),Q([C("OAuth Clients")])),(()=>{let Y=J.oauth_alert;if(Y instanceof L){let V=Y[0][0],G=Y[0][1],I;if(V==="success")I=new j1;else if(V==="error")I=new D1;else I=new B1;return h1(I,G)}else return X0()})(),(()=>{if(J.show_new_client_form)return u_(J);else return R(Q([H("mb-4")]),Q([v1(!1,new qZ,"Register New Client")]))})(),(()=>{if(W instanceof M1)return R(Q([H("py-4 text-center text-zinc-600 text-sm")]),Q([C("Loading clients...")]));else if(W instanceof R1){let Y=W[0];return R(Q([H("py-4 text-center text-red-400 text-sm")]),Q([C("Error: "+Y)]))}else{let Y=W[0];return R(Q([H("space-y-3")]),z0(Y.oauth_clients,(V)=>{return c_(V,J)}))}})(),(()=>{let Y=J.delete_confirm_client_id;if(Y instanceof L){let V=Y[0];return p_(V)}else return X0()})()]))}function _J(Z,J,K){return new K0(Z.domain_authority_input,Z.reset_confirmation,Z.selected_file,new L([J,K]),Z.relay_url_input,Z.plc_directory_url_input,Z.jetstream_url_input,Z.oauth_supported_scopes_input,Z.lexicons_alert,Z.show_new_client_form,Z.new_client_name,Z.new_client_type,Z.new_client_redirect_uris,Z.new_client_scope,Z.editing_client_id,Z.edit_client_name,Z.edit_client_redirect_uris,Z.edit_client_scope,Z.visible_secrets,Z.delete_confirm_client_id,Z.oauth_alert,Z.new_admin_did,Z.remove_confirm_did,Z.admin_alert,Z.danger_zone_alert)}function Fh(Z){return new K0(Z.domain_authority_input,Z.reset_confirmation,Z.selected_file,new b,Z.relay_url_input,Z.plc_directory_url_input,Z.jetstream_url_input,Z.oauth_supported_scopes_input,Z.lexicons_alert,Z.show_new_client_form,Z.new_client_name,Z.new_client_type,Z.new_client_redirect_uris,Z.new_client_scope,Z.editing_client_id,Z.edit_client_name,Z.edit_client_redirect_uris,Z.edit_client_scope,Z.visible_secrets,Z.delete_confirm_client_id,Z.oauth_alert,Z.new_admin_did,Z.remove_confirm_did,Z.admin_alert,Z.danger_zone_alert)}function w8(Z,J,K){return new K0(Z.domain_authority_input,Z.reset_confirmation,Z.selected_file,Z.alert,Z.relay_url_input,Z.plc_directory_url_input,Z.jetstream_url_input,Z.oauth_supported_scopes_input,Z.lexicons_alert,Z.show_new_client_form,Z.new_client_name,Z.new_client_type,Z.new_client_redirect_uris,Z.new_client_scope,Z.editing_client_id,Z.edit_client_name,Z.edit_client_redirect_uris,Z.edit_client_scope,Z.visible_secrets,Z.delete_confirm_client_id,new L([J,K]),Z.new_admin_did,Z.remove_confirm_did,Z.admin_alert,Z.danger_zone_alert)}function t5(Z,J,K){return new K0(Z.domain_authority_input,Z.reset_confirmation,Z.selected_file,Z.alert,Z.relay_url_input,Z.plc_directory_url_input,Z.jetstream_url_input,Z.oauth_supported_scopes_input,Z.lexicons_alert,Z.show_new_client_form,Z.new_client_name,Z.new_client_type,Z.new_client_redirect_uris,Z.new_client_scope,Z.editing_client_id,Z.edit_client_name,Z.edit_client_redirect_uris,Z.edit_client_scope,Z.visible_secrets,Z.delete_confirm_client_id,Z.oauth_alert,Z.new_admin_did,Z.remove_confirm_did,new L([J,K]),Z.danger_zone_alert)}function GL(Z,J,K){return new K0(Z.domain_authority_input,Z.reset_confirmation,Z.selected_file,Z.alert,Z.relay_url_input,Z.plc_directory_url_input,Z.jetstream_url_input,Z.oauth_supported_scopes_input,Z.lexicons_alert,Z.show_new_client_form,Z.new_client_name,Z.new_client_type,Z.new_client_redirect_uris,Z.new_client_scope,Z.editing_client_id,Z.edit_client_name,Z.edit_client_redirect_uris,Z.edit_client_scope,Z.visible_secrets,Z.delete_confirm_client_id,Z.oauth_alert,Z.new_admin_did,Z.remove_confirm_did,Z.admin_alert,new L([J,K]))}function mJ(Z,J,K){return new K0(Z.domain_authority_input,Z.reset_confirmation,Z.selected_file,Z.alert,Z.relay_url_input,Z.plc_directory_url_input,Z.jetstream_url_input,Z.oauth_supported_scopes_input,new L([J,K]),Z.show_new_client_form,Z.new_client_name,Z.new_client_type,Z.new_client_redirect_uris,Z.new_client_scope,Z.editing_client_id,Z.edit_client_name,Z.edit_client_redirect_uris,Z.edit_client_scope,Z.visible_secrets,Z.delete_confirm_client_id,Z.oauth_alert,Z.new_admin_did,Z.remove_confirm_did,Z.admin_alert,Z.danger_zone_alert)}function Hh(){return new K0("","",new b,new b,"","","","",new b,!1,"","PUBLIC","","atproto transition:generic",new b,"","","",R5(),new b,new b,"",new b,new b,new b)}function i_(Z){return dk(Z)}function Dh(Z,J,K){if(K){let X=h(Q([])),W=a(Z,"GetSettings",X,A1),Y;Y=W[1];let V=i_(Z);return R(Q([H("max-w-2xl space-y-6")]),Q([c1(Q([H("text-2xl font-semibold text-zinc-300 mb-8")]),Q([C("Settings")])),(()=>{if(Y instanceof M1)return R(Q([H("py-8 text-center text-zinc-600 text-sm")]),Q([C("Loading settings...")]));else if(Y instanceof R1){let G=Y[0];return R(Q([H("py-8 text-center text-red-400 text-sm")]),Q([C("Error: "+G)]))}else{let G=Y[0];return R(Q([H("space-y-6")]),Q([Gh(G.settings,J,V),zh(J),Nh(Z,J),Vh(G.settings,J),Ih(J)]))}})()]))}else return R(Q([H("max-w-2xl space-y-6")]),Q([c1(Q([H("text-2xl font-semibold text-zinc-300 mb-8")]),Q([C("Settings")])),R(Q([H("bg-zinc-800/50 rounded p-8 text-center border border-zinc-700")]),Q([D0(Q([H("text-zinc-400 mb-4")]),Q([C("Access Denied")])),D0(Q([H("text-sm text-zinc-500")]),Q([C("You must be an administrator to access the settings page.")]))]))]))}function Bh(){return window.location.origin}function uJ(Z,J){window.setTimeout(()=>J(),Z)}var s_="src/quickslice_client.gleam";class e5 extends O{}class A5 extends O{}class nJ extends O{}class FL extends O{}class cJ extends O{}class o5 extends O{}class U8 extends O{}class Oh extends O{constructor(Z,J,K){super();this.did=Z,this.handle=J,this.is_admin=K}}class l extends O{constructor(Z,J,K,X,W,Y,V,G,I,z,N){super();this.cache=Z,this.registry=J,this.route=K,this.time_range=X,this.settings_page_model=W,this.backfill_page_model=Y,this.backfill_status=V,this.auth_state=G,this.mobile_menu_open=I,this.login_autocomplete=z,this.oauth_error=N}}class p0 extends O{constructor(Z,J,K){super();this[0]=Z,this[1]=J,this[2]=K}}class jM extends O{constructor(Z,J){super();this[0]=Z,this[1]=J}}class LM extends O{constructor(Z,J){super();this[0]=Z,this[1]=J}}class yM extends O{constructor(Z,J){super();this[0]=Z,this[1]=J}}class fM extends O{constructor(Z,J){super();this[0]=Z,this[1]=J}}class HL extends O{constructor(Z){super();this[0]=Z}}class DL extends O{constructor(Z){super();this[0]=Z}}class BL extends O{constructor(Z){super();this[0]=Z}}class kM extends O{constructor(Z){super();this[0]=Z}}class OL extends O{constructor(Z){super();this[0]=Z}}class IL extends O{constructor(Z){super();this[0]=Z}}class dJ extends O{}class TL extends O{}class pJ extends O{constructor(Z){super();this[0]=Z}}class bM extends O{constructor(Z){super();this[0]=Z}}class hM extends O{constructor(Z){super();this[0]=Z}}class vM extends O{}class $M extends O{}class zL extends O{constructor(Z){super();this[0]=Z}}class NL extends O{}function S5(Z){let J=t1(Z,v0);if(J instanceof E){let K=J[0],X=$("errors",L0($("message",u,(Y)=>{return s(Y)})),(Y)=>{return s(Y)}),W=N0(K,X);if(W instanceof E){let Y=W[0];if(Y instanceof M)return new b;else{let V=Y.head;return new L(V)}}else return new b}else return new b}function r_(Z){let J=Z.query;if(J instanceof L){let K=J[0],X,W=WK(K);X=D8(W,Q([]));let Y=X,V=MZ(Y,"error");if(V instanceof E){let G=V[0];if(G==="access_denied")return new L("Login was cancelled");else{let I=G,z,N=MZ(Y,"error_description"),F=D8(N,I),D=HR(F);return z=D8(D,I),new L("Login failed: "+z)}}else return new b}else return J}function a_(Z,J){if(J instanceof p0){let K=J[2];if(K instanceof E){let X=J[0],W=J[1],Y=K[0],V=pk(Z.cache,X,W,Y,0),G=d0(V,Z.registry,(m,y,_)=>{return new p0(m,y,_)},()=>{return 0}),I,z;I=G[0],z=G[1];let N;if(X==="IsBackfilling"){let m=rZ(Y);if(m instanceof E){let y=m[0],_=Z.backfill_status;if(y.is_backfilling&&_ instanceof nK)N=new A8;else N=sk(Z.backfill_status,y.is_backfilling)}else N=Z.backfill_status}else N=Z.backfill_status;let F=N,D,B=p5(Z.backfill_status),T=p5(F);if(B)if(T&&X==="IsBackfilling")D=Q([F1((m)=>{return uJ(1e4,()=>{return m(new dJ)})})]);else D=Q([]);else if(T&&X==="IsBackfilling")D=Q([F1((m)=>{return uJ(1e4,()=>{return m(new dJ)})})]);else D=Q([]);let P=D,S,q=Z.backfill_status;if(q instanceof n8&&F instanceof c5)S=!0;else if(q instanceof A8&&F instanceof c5)S=!0;else S=!1;let x=S,U;if(X==="GetCurrentSession"){let m=aj(Y);if(m instanceof E){let _=m[0].current_session;if(_ instanceof L){let t=_[0];U=new Oh(t.did,t.handle,t.is_admin)}else U=new U8}else U=new U8}else U=Z.auth_state;let k=U,w;if(X==="UpdateSettings")w=_J(Z.settings_page_model,"success","Settings updated successfully");else if(X==="UploadLexicons"){sj("lexicon-file-input");let m=S5(Y);if(m instanceof L){let y=m[0];w=mJ(Z.settings_page_model,"error",y)}else w=mJ(Z.settings_page_model,"success","Lexicons uploaded successfully")}else if(X==="ResetAll"){let m,y=Z.settings_page_model;m=new K0("",y.reset_confirmation,y.selected_file,y.alert,y.relay_url_input,y.plc_directory_url_input,y.jetstream_url_input,y.oauth_supported_scopes_input,y.lexicons_alert,y.show_new_client_form,y.new_client_name,y.new_client_type,y.new_client_redirect_uris,y.new_client_scope,y.editing_client_id,y.edit_client_name,y.edit_client_redirect_uris,y.edit_client_scope,y.visible_secrets,y.delete_confirm_client_id,y.oauth_alert,y.new_admin_did,y.remove_confirm_did,y.admin_alert,y.danger_zone_alert),w=GL(m,"success","All data has been reset")}else if(X==="GetSettings"){let m=A1(Y);if(m instanceof E){let y=m[0],_=Z.settings_page_model;w=new K0(y.settings.domain_authority,_.reset_confirmation,_.selected_file,_.alert,y.settings.relay_url,y.settings.plc_directory_url,y.settings.jetstream_url,y.settings.oauth_supported_scopes,_.lexicons_alert,_.show_new_client_form,_.new_client_name,_.new_client_type,_.new_client_redirect_uris,_.new_client_scope,_.editing_client_id,_.edit_client_name,_.edit_client_redirect_uris,_.edit_client_scope,_.visible_secrets,_.delete_confirm_client_id,_.oauth_alert,_.new_admin_did,_.remove_confirm_did,_.admin_alert,_.danger_zone_alert)}else w=Z.settings_page_model}else if(X==="CreateOAuthClient"){let m=S5(Y);if(m instanceof L){let y=m[0];w=w8(Z.settings_page_model,"error",y)}else{let y;if(X==="CreateOAuthClient")y="OAuth client created successfully";else if(X==="UpdateOAuthClient")y="OAuth client updated successfully";else if(X==="DeleteOAuthClient")y="OAuth client deleted successfully";else y="Operation completed";let _=y;w=w8(Z.settings_page_model,"success",_)}}else if(X==="UpdateOAuthClient"){let m=S5(Y);if(m instanceof L){let y=m[0];w=w8(Z.settings_page_model,"error",y)}else{let y;if(X==="CreateOAuthClient")y="OAuth client created successfully";else if(X==="UpdateOAuthClient")y="OAuth client updated successfully";else if(X==="DeleteOAuthClient")y="OAuth client deleted successfully";else y="Operation completed";let _=y;w=w8(Z.settings_page_model,"success",_)}}else if(X==="DeleteOAuthClient"){let m=S5(Y);if(m instanceof L){let y=m[0];w=w8(Z.settings_page_model,"error",y)}else{let y;if(X==="CreateOAuthClient")y="OAuth client created successfully";else if(X==="UpdateOAuthClient")y="OAuth client updated successfully";else if(X==="DeleteOAuthClient")y="OAuth client deleted successfully";else y="Operation completed";let _=y;w=w8(Z.settings_page_model,"success",_)}}else if(X==="AddAdmin"){let m=S5(Y);if(m instanceof L){let y=m[0];w=t5(Z.settings_page_model,"error",y)}else{let y;if(X==="AddAdmin")y="Admin added successfully";else if(X==="RemoveAdmin")y="Admin removed successfully";else y="Operation completed";let _=y;w=t5(Z.settings_page_model,"success",_)}}else if(X==="RemoveAdmin"){let m=S5(Y);if(m instanceof L){let y=m[0];w=t5(Z.settings_page_model,"error",y)}else{let y;if(X==="AddAdmin")y="Admin added successfully";else if(X==="RemoveAdmin")y="Admin removed successfully";else y="Operation completed";let _=y;w=t5(Z.settings_page_model,"success",_)}}else w=Z.settings_page_model;let f=w,g;if(X==="BackfillActor"){let m=Z.backfill_page_model,y=wM(m,!1),_=ej(y,"success","Backfill started for "+Z.backfill_page_model.did_input);g=((t)=>{return new P5("",t.is_submitting,t.alert)})(_)}else g=Z.backfill_page_model;let d=g,n;if(X==="ResetAll"){let m=u0(I,"GetStatistics",h(Q([]))),y=u0(m,"GetActivityBuckets",h(Q([["range",c(O5(Z.time_range))]]))),_=u0(y,"GetRecentActivity",h(Q([["hours",Q1(24)]]))),t=a(_,"GetSettings",h(Q([])),A1),o;o=t[0];let Y0=d0(o,Z.registry,(h0,O1,q1)=>{return new p0(h0,O1,q1)},()=>{return 0}),j0,R0;j0=Y0[0],R0=Y0[1],n=[j0,R0]}else if(X==="UploadLexicons")n=[u0(I,"GetStatistics",h(Q([]))),Q([])];else if(X==="CreateOAuthClient"){let m=u0(I,"GetOAuthClients",h(Q([]))),y=a(m,"GetOAuthClients",h(Q([])),l8),_;_=y[0];let t=d0(_,Z.registry,(j0,R0,h0)=>{return new p0(j0,R0,h0)},()=>{return 0}),o,Y0;o=t[0],Y0=t[1],n=[o,Y0]}else if(X==="UpdateOAuthClient"){let m=u0(I,"GetOAuthClients",h(Q([]))),y=a(m,"GetOAuthClients",h(Q([])),l8),_;_=y[0];let t=d0(_,Z.registry,(j0,R0,h0)=>{return new p0(j0,R0,h0)},()=>{return 0}),o,Y0;o=t[0],Y0=t[1],n=[o,Y0]}else if(X==="DeleteOAuthClient"){let m=u0(I,"GetOAuthClients",h(Q([]))),y=a(m,"GetOAuthClients",h(Q([])),l8),_;_=y[0];let t=d0(_,Z.registry,(j0,R0,h0)=>{return new p0(j0,R0,h0)},()=>{return 0}),o,Y0;o=t[0],Y0=t[1],n=[o,Y0]}else n=[I,Q([])];let r=n,W0,T0;W0=r[0],T0=r[1];let b0;if(x){let m=u0(W0,"GetStatistics",h(Q([]))),y=u0(m,"GetActivityBuckets",h(Q([["range",c(O5(Z.time_range))]]))),_=u0(y,"GetRecentActivity",h(Q([["hours",Q1(24)]]))),t=a(_,"GetStatistics",h(Q([])),T5),o;o=t[0];let Y0=a(o,"GetActivityBuckets",h(Q([["range",c(O5(Z.time_range))]])),s5),j0;j0=Y0[0];let R0=a(j0,"GetRecentActivity",h(Q([["hours",Q1(24)]])),AZ),h0;h0=R0[0];let O1=d0(h0,Z.registry,(L1,z8,M8)=>{return new p0(L1,z8,M8)},()=>{return 0}),q1,E1;q1=O1[0],E1=O1[1],b0=[q1,E1]}else b0=[W0,Q([])];let I0=b0,B0,V0;B0=I0[0],V0=I0[1];let J0;if(X==="GetCurrentSession"){let m=Z.route;if(k instanceof U8)if(m instanceof A5)J0=Q([u5("/",new b,new b)]);else J0=Q([]);else if(!k.is_admin&&m instanceof A5)J0=Q([u5("/",new b,new b)]);else J0=Q([])}else if(X==="GetSettings"){let m=A1(Y);if(m instanceof E){let y=m[0],_=$L(y.settings.admin_dids),t=Z.route;if(_)if(t instanceof o5)J0=Q([]);else J0=Q([u5("/onboarding",new b,new b)]);else if(t instanceof o5)J0=Q([u5("/",new b,new b)]);else J0=Q([])}else J0=Q([])}else J0=Q([]);let Z0=J0;return[new l(B0,Z.registry,Z.route,Z.time_range,f,d,F,k,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),G1((()=>{let m=Q([z,T0,V0,Z0,P]);return _L(m)})())]}else{let X=J[0],W=K[0],Y;if(X==="UpdateSettings")Y=_J(Z.settings_page_model,"error","Error: "+W);else if(X==="TriggerBackfill")Y=_J(Z.settings_page_model,"error","Error: "+W);else if(X==="ResetAll")Y=GL(Z.settings_page_model,"error","Error: "+W);else if(X==="UploadLexicons")Y=mJ(Z.settings_page_model,"error","Error: "+W);else if(X==="CreateOAuthClient")Y=w8(Z.settings_page_model,"error","Error: "+W);else if(X==="UpdateOAuthClient")Y=w8(Z.settings_page_model,"error","Error: "+W);else if(X==="DeleteOAuthClient")Y=w8(Z.settings_page_model,"error","Error: "+W);else Y=Z.settings_page_model;let V=Y,G;if(X==="BackfillActor"){let z=Z.backfill_page_model,N=wM(z,!1);G=ej(N,"error","Error: "+W)}else G=Z.backfill_page_model;let I=G;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,I,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}}else if(J instanceof jM){let K=J[0],X=J[1],W=gj(Z.cache,K,X),Y=_J(Z.settings_page_model,"success","Settings updated successfully");return[new l(W,Z.registry,Z.route,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(J instanceof LM){let K=J[0],X=J[1],W=vj(Z.cache,K),Y,G=a(W,"GetSettings",h(Q([])),A1)[1];if(G instanceof Y8)Y=G[0].settings.domain_authority;else Y=Z.settings_page_model.domain_authority_input;let I=Y,z,N=U5(X,"Response body: ");if(N instanceof E){let P=N[0][1],S=S5(P);if(S instanceof L)z=S[0];else z=X}else z=X;let F=z,D,B=Z.settings_page_model;D=new K0(I,B.reset_confirmation,B.selected_file,new L(["error",F]),B.relay_url_input,B.plc_directory_url_input,B.jetstream_url_input,B.oauth_supported_scopes_input,B.lexicons_alert,B.show_new_client_form,B.new_client_name,B.new_client_type,B.new_client_redirect_uris,B.new_client_scope,B.editing_client_id,B.edit_client_name,B.edit_client_redirect_uris,B.edit_client_scope,B.visible_secrets,B.delete_confirm_client_id,B.oauth_alert,B.new_admin_did,B.remove_confirm_did,B.admin_alert,B.danger_zone_alert);let T=D;return[new l(W,Z.registry,Z.route,Z.time_range,T,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(J instanceof yM){let K=J[0],X=J[1],W=gj(Z.cache,K,X),Y=t5(Z.settings_page_model,"success","Admin updated successfully");return[new l(W,Z.registry,Z.route,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(J instanceof fM){let K=J[0],X=J[1],W=vj(Z.cache,K),Y,V=U5(X,"Response body: ");if(V instanceof E){let z=V[0][1],N=S5(z);if(N instanceof L)Y=N[0];else Y=X}else Y=X;let G=Y,I=t5(Z.settings_page_model,"error",G);return[new l(W,Z.registry,Z.route,Z.time_range,I,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(J instanceof HL){let K=J[0],X;if(Z.route instanceof A5)X=Fh(Z.settings_page_model);else X=Z.settings_page_model;let Y=X;if(K instanceof e5){let V=a(Z.cache,"GetStatistics",h(Q([])),T5),G;G=V[0];let I=a(G,"GetSettings",h(Q([])),A1),z;z=I[0];let N=a(z,"GetActivityBuckets",h(Q([["range",c(O5(Z.time_range))]])),s5),F;F=N[0];let D=a(F,"GetRecentActivity",h(Q([["hours",Q1(24)]])),AZ),B;B=D[0];let T=d0(B,Z.registry,(q,x,U)=>{return new p0(q,x,U)},()=>{return 0}),P,S;return P=T[0],S=T[1],[new l(P,Z.registry,K,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,!1,Z.login_autocomplete,Z.oauth_error),G1(S)]}else if(K instanceof A5){let V,G=Z.auth_state;if(G instanceof U8)V=!1;else V=G.is_admin;if(V){let z=a(Z.cache,"GetSettings",h(Q([])),A1),N;N=z[0];let F=a(N,"GetOAuthClients",h(Q([])),l8),D;D=F[0];let B=d0(D,Z.registry,(S,q,x)=>{return new p0(S,q,x)},()=>{return 0}),T,P;return T=B[0],P=B[1],[new l(T,Z.registry,K,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,!1,Z.login_autocomplete,Z.oauth_error),G1(P)]}else return[Z,u5("/",new b,new b)]}else if(K instanceof nJ){let V=a(Z.cache,"GetLexicons",h(Q([])),VJ),G;G=V[0];let I=d0(G,Z.registry,(F,D,B)=>{return new p0(F,D,B)},()=>{return 0}),z,N;return z=I[0],N=I[1],[new l(z,Z.registry,K,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,!1,Z.login_autocomplete,Z.oauth_error),G1(N)]}else if(K instanceof cJ)if(Z.auth_state instanceof U8)return[Z,u5("/",new b,new b)];else{let G=xM(Z.backfill_page_model);return[new l(Z.cache,Z.registry,new cJ,Z.time_range,Z.settings_page_model,G,Z.backfill_status,Z.auth_state,!1,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof o5)return[new l(Z.cache,Z.registry,new o5,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,!1,Z.login_autocomplete,Z.oauth_error),i()];else return[new l(Z.cache,Z.registry,K,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,!1,Z.login_autocomplete,Z.oauth_error),i()]}else if(J instanceof DL){let K=J[0];if(K instanceof MM){let X=K[0],W=h(Q([["range",c(O5(X))]])),Y=a(Z.cache,"GetActivityBuckets",W,s5),V;V=Y[0];let G=d0(V,Z.registry,(N,F,D)=>{return new p0(N,F,D)},()=>{return 0}),I,z;return I=G[0],z=G[1],[new l(I,Z.registry,Z.route,X,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),G1(z)]}else if(K instanceof RM){let X=h(Q([])),W=u0(Z.cache,"TriggerBackfill",X),Y=a(W,"TriggerBackfill",X,_b),V;V=Y[0];let G=d0(V,Z.registry,(F,D,B)=>{return new p0(F,D,B)},()=>{return 0}),I,z;I=G[0],z=G[1];let N=F1((F)=>{return uJ(1e4,()=>{return F(new dJ)})});return[new l(I,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,new n8,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),G1(Q([G1(z),N]))]}else return oj("/graphiql"),[Z,i()]}else if(J instanceof BL){let K=J[0];if(K instanceof NJ){let X=K[0],W,Y=Z.settings_page_model;W=new K0(X,Y.reset_confirmation,Y.selected_file,new b,Y.relay_url_input,Y.plc_directory_url_input,Y.jetstream_url_input,Y.oauth_supported_scopes_input,Y.lexicons_alert,Y.show_new_client_form,Y.new_client_name,Y.new_client_type,Y.new_client_redirect_uris,Y.new_client_scope,Y.editing_client_id,Y.edit_client_name,Y.edit_client_redirect_uris,Y.edit_client_scope,Y.visible_secrets,Y.delete_confirm_client_id,Y.oauth_alert,Y.new_admin_did,Y.remove_confirm_did,Y.admin_alert,Y.danger_zone_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof FJ)return[Z,i()];else if(K instanceof HJ){M5("[UploadLexicons] Button clicked, creating file effect");let X=F1((W)=>{return M5("[UploadLexicons] Effect running, calling read_file_as_base64"),lj("lexicon-file-input",(Y)=>{return M5("[UploadLexicons] Callback received result"),W(new IL(Y))})});return[Z,X]}else if(K instanceof DJ){let X=K[0],W,Y=Z.settings_page_model;W=new K0(Y.domain_authority_input,X,Y.selected_file,new b,Y.relay_url_input,Y.plc_directory_url_input,Y.jetstream_url_input,Y.oauth_supported_scopes_input,Y.lexicons_alert,Y.show_new_client_form,Y.new_client_name,Y.new_client_type,Y.new_client_redirect_uris,Y.new_client_scope,Y.editing_client_id,Y.edit_client_name,Y.edit_client_redirect_uris,Y.edit_client_scope,Y.visible_secrets,Y.delete_confirm_client_id,Y.oauth_alert,Y.new_admin_did,Y.remove_confirm_did,Y.admin_alert,Y.danger_zone_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof BJ){let X=h(Q([["confirm",c(Z.settings_page_model.reset_confirmation)]])),W=u0(Z.cache,"ResetAll",X),Y=a(W,"ResetAll",X,$b),V;V=Y[0];let G=d0(V,Z.registry,(B,T,P)=>{return new p0(B,T,P)},()=>{return 0}),I,z;I=G[0],z=G[1];let N,F=Z.settings_page_model;N=new K0(F.domain_authority_input,"",F.selected_file,new b,F.relay_url_input,F.plc_directory_url_input,F.jetstream_url_input,F.oauth_supported_scopes_input,F.lexicons_alert,F.show_new_client_form,F.new_client_name,F.new_client_type,F.new_client_redirect_uris,F.new_client_scope,F.editing_client_id,F.edit_client_name,F.edit_client_redirect_uris,F.edit_client_scope,F.visible_secrets,F.delete_confirm_client_id,F.oauth_alert,F.new_admin_did,F.remove_confirm_did,F.admin_alert,F.danger_zone_alert);let D=N;return[new l(I,Z.registry,Z.route,Z.time_range,D,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),G1(z)]}else if(K instanceof OJ){let X=K[0],W,Y=Z.settings_page_model;W=new K0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,new b,X,Y.plc_directory_url_input,Y.jetstream_url_input,Y.oauth_supported_scopes_input,Y.lexicons_alert,Y.show_new_client_form,Y.new_client_name,Y.new_client_type,Y.new_client_redirect_uris,Y.new_client_scope,Y.editing_client_id,Y.edit_client_name,Y.edit_client_redirect_uris,Y.edit_client_scope,Y.visible_secrets,Y.delete_confirm_client_id,Y.oauth_alert,Y.new_admin_did,Y.remove_confirm_did,Y.admin_alert,Y.danger_zone_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof TJ){let X=K[0],W,Y=Z.settings_page_model;W=new K0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,new b,Y.relay_url_input,X,Y.jetstream_url_input,Y.oauth_supported_scopes_input,Y.lexicons_alert,Y.show_new_client_form,Y.new_client_name,Y.new_client_type,Y.new_client_redirect_uris,Y.new_client_scope,Y.editing_client_id,Y.edit_client_name,Y.edit_client_redirect_uris,Y.edit_client_scope,Y.visible_secrets,Y.delete_confirm_client_id,Y.oauth_alert,Y.new_admin_did,Y.remove_confirm_did,Y.admin_alert,Y.danger_zone_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof PJ){let X=K[0],W,Y=Z.settings_page_model;W=new K0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,new b,Y.relay_url_input,Y.plc_directory_url_input,X,Y.oauth_supported_scopes_input,Y.lexicons_alert,Y.show_new_client_form,Y.new_client_name,Y.new_client_type,Y.new_client_redirect_uris,Y.new_client_scope,Y.editing_client_id,Y.edit_client_name,Y.edit_client_redirect_uris,Y.edit_client_scope,Y.visible_secrets,Y.delete_confirm_client_id,Y.oauth_alert,Y.new_admin_did,Y.remove_confirm_did,Y.admin_alert,Y.danger_zone_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof SJ){let X=K[0],W,Y=Z.settings_page_model;W=new K0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,new b,Y.relay_url_input,Y.plc_directory_url_input,Y.jetstream_url_input,X,Y.lexicons_alert,Y.show_new_client_form,Y.new_client_name,Y.new_client_type,Y.new_client_redirect_uris,Y.new_client_scope,Y.editing_client_id,Y.edit_client_name,Y.edit_client_redirect_uris,Y.edit_client_scope,Y.visible_secrets,Y.delete_confirm_client_id,Y.oauth_alert,Y.new_admin_did,Y.remove_confirm_did,Y.admin_alert,Y.danger_zone_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof AJ){let X,W=Z.settings_page_model;X=new K0(W.domain_authority_input,W.reset_confirmation,W.selected_file,new b,W.relay_url_input,W.plc_directory_url_input,W.jetstream_url_input,W.oauth_supported_scopes_input,W.lexicons_alert,W.show_new_client_form,W.new_client_name,W.new_client_type,W.new_client_redirect_uris,W.new_client_scope,W.editing_client_id,W.edit_client_name,W.edit_client_redirect_uris,W.edit_client_scope,W.visible_secrets,W.delete_confirm_client_id,W.oauth_alert,W.new_admin_did,W.remove_confirm_did,W.admin_alert,W.danger_zone_alert);let Y=X,V=h(Q([])),G=a(Z.cache,"GetSettings",V,A1),I;if(I=G[1],I instanceof Y8){let N=I[0].settings.admin_dids,F=Q([]),D,B=Z.settings_page_model.domain_authority_input;if(B==="")D=F;else D=A(["domainAuthority",c(B)],F);let T=D,P,S=Z.settings_page_model.relay_url_input;if(S==="")P=T;else P=A(["relayUrl",c(S)],T);let q=P,x,U=Z.settings_page_model.plc_directory_url_input;if(U==="")x=q;else x=A(["plcDirectoryUrl",c(U)],q);let k=x,w,f=Z.settings_page_model.jetstream_url_input;if(f==="")w=k;else w=A(["jetstreamUrl",c(f)],k);let g=w,d,n=Z.settings_page_model.oauth_supported_scopes_input;if(n==="")d=g;else d=A(["oauthSupportedScopes",c(n)],g);let r=d,W0=A(["adminDids",k0(N,c)],r);if(W0 instanceof M){let T0=h(W0),b0=Q([["id",c("Settings:singleton")]]),I0,B0=Z.settings_page_model.domain_authority_input;if(B0==="")I0=b0;else I0=A(["domainAuthority",c(B0)],b0);let V0=I0,J0,Z0=Z.settings_page_model.relay_url_input;if(Z0==="")J0=V0;else J0=A(["relayUrl",c(Z0)],V0);let m=J0,y,_=Z.settings_page_model.plc_directory_url_input;if(_==="")y=m;else y=A(["plcDirectoryUrl",c(_)],m);let t=y,o,Y0=Z.settings_page_model.jetstream_url_input;if(Y0==="")o=t;else o=A(["jetstreamUrl",c(Y0)],t);let j0=o,R0,h0=Z.settings_page_model.oauth_supported_scopes_input;if(h0==="")R0=j0;else R0=A(["oauthSupportedScopes",c(h0)],j0);let O1=R0,q1=A(["adminDids",k0(N,c)],O1),E1=h(q1),L1=sZ(Z.cache,Z.registry,"UpdateSettings",T0,"Settings:singleton",(n1)=>{return E1},IJ,(n1,i1,iJ)=>{if(i1 instanceof E)return new jM(n1,iJ);else{let gM=i1[0];return new LM(n1,gM)}}),z8,M8;return z8=L1[0],M8=L1[2],[new l(z8,Z.registry,Z.route,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),M8]}else if(W0.tail instanceof M)return[new l(Z.cache,Z.registry,Z.route,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()];else{let b0=h(W0),I0=Q([["id",c("Settings:singleton")]]),B0,V0=Z.settings_page_model.domain_authority_input;if(V0==="")B0=I0;else B0=A(["domainAuthority",c(V0)],I0);let J0=B0,Z0,m=Z.settings_page_model.relay_url_input;if(m==="")Z0=J0;else Z0=A(["relayUrl",c(m)],J0);let y=Z0,_,t=Z.settings_page_model.plc_directory_url_input;if(t==="")_=y;else _=A(["plcDirectoryUrl",c(t)],y);let o=_,Y0,j0=Z.settings_page_model.jetstream_url_input;if(j0==="")Y0=o;else Y0=A(["jetstreamUrl",c(j0)],o);let R0=Y0,h0,O1=Z.settings_page_model.oauth_supported_scopes_input;if(O1==="")h0=R0;else h0=A(["oauthSupportedScopes",c(O1)],R0);let q1=h0,E1=A(["adminDids",k0(N,c)],q1),L1=h(E1),z8=sZ(Z.cache,Z.registry,"UpdateSettings",b0,"Settings:singleton",(i1)=>{return L1},IJ,(i1,iJ,gM)=>{if(iJ instanceof E)return new jM(i1,gM);else{let Sh=iJ[0];return new LM(i1,Sh)}}),M8,n1;return M8=z8[0],n1=z8[2],[new l(M8,Z.registry,Z.route,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),n1]}}else return[new l(Z.cache,Z.registry,Z.route,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof qZ){let X,W=Z.settings_page_model;X=new K0(W.domain_authority_input,W.reset_confirmation,W.selected_file,W.alert,W.relay_url_input,W.plc_directory_url_input,W.jetstream_url_input,W.oauth_supported_scopes_input,W.lexicons_alert,!Z.settings_page_model.show_new_client_form,W.new_client_name,W.new_client_type,W.new_client_redirect_uris,W.new_client_scope,W.editing_client_id,W.edit_client_name,W.edit_client_redirect_uris,W.edit_client_scope,W.visible_secrets,W.delete_confirm_client_id,W.oauth_alert,W.new_admin_did,W.remove_confirm_did,W.admin_alert,W.danger_zone_alert);let Y=X;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof qJ){let X=K[0],W,Y=Z.settings_page_model;W=new K0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,Y.alert,Y.relay_url_input,Y.plc_directory_url_input,Y.jetstream_url_input,Y.oauth_supported_scopes_input,Y.lexicons_alert,Y.show_new_client_form,X,Y.new_client_type,Y.new_client_redirect_uris,Y.new_client_scope,Y.editing_client_id,Y.edit_client_name,Y.edit_client_redirect_uris,Y.edit_client_scope,Y.visible_secrets,Y.delete_confirm_client_id,Y.oauth_alert,Y.new_admin_did,Y.remove_confirm_did,Y.admin_alert,Y.danger_zone_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof EJ){let X=K[0],W,Y=Z.settings_page_model;W=new K0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,Y.alert,Y.relay_url_input,Y.plc_directory_url_input,Y.jetstream_url_input,Y.oauth_supported_scopes_input,Y.lexicons_alert,Y.show_new_client_form,Y.new_client_name,X,Y.new_client_redirect_uris,Y.new_client_scope,Y.editing_client_id,Y.edit_client_name,Y.edit_client_redirect_uris,Y.edit_client_scope,Y.visible_secrets,Y.delete_confirm_client_id,Y.oauth_alert,Y.new_admin_did,Y.remove_confirm_did,Y.admin_alert,Y.danger_zone_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof CJ){let X=K[0],W,Y=Z.settings_page_model;W=new K0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,Y.alert,Y.relay_url_input,Y.plc_directory_url_input,Y.jetstream_url_input,Y.oauth_supported_scopes_input,Y.lexicons_alert,Y.show_new_client_form,Y.new_client_name,Y.new_client_type,X,Y.new_client_scope,Y.editing_client_id,Y.edit_client_name,Y.edit_client_redirect_uris,Y.edit_client_scope,Y.visible_secrets,Y.delete_confirm_client_id,Y.oauth_alert,Y.new_admin_did,Y.remove_confirm_did,Y.admin_alert,Y.danger_zone_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof xJ){let X=K[0],W,Y=Z.settings_page_model;W=new K0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,Y.alert,Y.relay_url_input,Y.plc_directory_url_input,Y.jetstream_url_input,Y.oauth_supported_scopes_input,Y.lexicons_alert,Y.show_new_client_form,Y.new_client_name,Y.new_client_type,Y.new_client_redirect_uris,X,Y.editing_client_id,Y.edit_client_name,Y.edit_client_redirect_uris,Y.edit_client_scope,Y.visible_secrets,Y.delete_confirm_client_id,Y.oauth_alert,Y.new_admin_did,Y.remove_confirm_did,Y.admin_alert,Y.danger_zone_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof wJ){let X,W=G4(Z.settings_page_model.new_client_redirect_uris,` 152 - `),Y=tJ(W,(x)=>{return W8(V4(x))>0});X=z0(Y,V4);let V=X,G=h(Q([["clientName",c(Z.settings_page_model.new_client_name)],["clientType",c(Z.settings_page_model.new_client_type)],["redirectUris",k0(V,c)],["scope",c(Z.settings_page_model.new_client_scope)]])),I=u0(Z.cache,"CreateOAuthClient",G),z=a(I,"CreateOAuthClient",G,Ob),N;N=z[0];let F=u0(N,"GetOAuthClients",h(Q([]))),D=d0(F,Z.registry,(x,U,k)=>{return new p0(x,U,k)},()=>{return 0}),B,T;B=D[0],T=D[1];let P,S=Z.settings_page_model;P=new K0(S.domain_authority_input,S.reset_confirmation,S.selected_file,S.alert,S.relay_url_input,S.plc_directory_url_input,S.jetstream_url_input,S.oauth_supported_scopes_input,S.lexicons_alert,!1,"","PUBLIC","","atproto transition:generic",S.editing_client_id,S.edit_client_name,S.edit_client_redirect_uris,S.edit_client_scope,S.visible_secrets,S.delete_confirm_client_id,S.oauth_alert,S.new_admin_did,S.remove_confirm_did,S.admin_alert,S.danger_zone_alert);let q=P;return[new l(B,Z.registry,Z.route,Z.time_range,q,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),G1(T)]}else if(K instanceof UJ){let X=K[0],W=a(Z.cache,"GetOAuthClients",h(Q([])),l8),Y;Y=W[1];let V;if(Y instanceof Y8){let I=Y[0],z=YR(I.oauth_clients,(N)=>{return N.client_id===X});if(z instanceof E){let N=z[0],F=Z.settings_page_model;V=new K0(F.domain_authority_input,F.reset_confirmation,F.selected_file,F.alert,F.relay_url_input,F.plc_directory_url_input,F.jetstream_url_input,F.oauth_supported_scopes_input,F.lexicons_alert,F.show_new_client_form,F.new_client_name,F.new_client_type,F.new_client_redirect_uris,F.new_client_scope,new L(X),N.client_name,Z5(N.redirect_uris,` 153 - `),(()=>{let D=N.scope;if(D instanceof L)return D[0];else return""})(),F.visible_secrets,F.delete_confirm_client_id,F.oauth_alert,F.new_admin_did,F.remove_confirm_did,F.admin_alert,F.danger_zone_alert)}else V=Z.settings_page_model}else V=Z.settings_page_model;let G=V;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,G,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof MJ){let X,W=Z.settings_page_model;X=new K0(W.domain_authority_input,W.reset_confirmation,W.selected_file,W.alert,W.relay_url_input,W.plc_directory_url_input,W.jetstream_url_input,W.oauth_supported_scopes_input,W.lexicons_alert,W.show_new_client_form,W.new_client_name,W.new_client_type,W.new_client_redirect_uris,W.new_client_scope,new b,"","","",W.visible_secrets,W.delete_confirm_client_id,W.oauth_alert,W.new_admin_did,W.remove_confirm_did,W.admin_alert,W.danger_zone_alert);let Y=X;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof RJ){let X=K[0],W,Y=Z.settings_page_model;W=new K0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,Y.alert,Y.relay_url_input,Y.plc_directory_url_input,Y.jetstream_url_input,Y.oauth_supported_scopes_input,Y.lexicons_alert,Y.show_new_client_form,Y.new_client_name,Y.new_client_type,Y.new_client_redirect_uris,Y.new_client_scope,Y.editing_client_id,X,Y.edit_client_redirect_uris,Y.edit_client_scope,Y.visible_secrets,Y.delete_confirm_client_id,Y.oauth_alert,Y.new_admin_did,Y.remove_confirm_did,Y.admin_alert,Y.danger_zone_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof jJ){let X=K[0],W,Y=Z.settings_page_model;W=new K0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,Y.alert,Y.relay_url_input,Y.plc_directory_url_input,Y.jetstream_url_input,Y.oauth_supported_scopes_input,Y.lexicons_alert,Y.show_new_client_form,Y.new_client_name,Y.new_client_type,Y.new_client_redirect_uris,Y.new_client_scope,Y.editing_client_id,Y.edit_client_name,X,Y.edit_client_scope,Y.visible_secrets,Y.delete_confirm_client_id,Y.oauth_alert,Y.new_admin_did,Y.remove_confirm_did,Y.admin_alert,Y.danger_zone_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof LJ){let X=K[0],W,Y=Z.settings_page_model;W=new K0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,Y.alert,Y.relay_url_input,Y.plc_directory_url_input,Y.jetstream_url_input,Y.oauth_supported_scopes_input,Y.lexicons_alert,Y.show_new_client_form,Y.new_client_name,Y.new_client_type,Y.new_client_redirect_uris,Y.new_client_scope,Y.editing_client_id,Y.edit_client_name,Y.edit_client_redirect_uris,X,Y.visible_secrets,Y.delete_confirm_client_id,Y.oauth_alert,Y.new_admin_did,Y.remove_confirm_did,Y.admin_alert,Y.danger_zone_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof yJ){let X=Z.settings_page_model.editing_client_id;if(X instanceof L){let W=X[0],Y,V=G4(Z.settings_page_model.edit_client_redirect_uris,` 154 - `),G=tJ(V,(k)=>{return W8(V4(k))>0});Y=z0(G,V4);let I=Y,z=h(Q([["clientId",c(W)],["clientName",c(Z.settings_page_model.edit_client_name)],["redirectUris",k0(I,c)],["scope",c(Z.settings_page_model.edit_client_scope)]])),N=u0(Z.cache,"UpdateOAuthClient",z),F=a(N,"UpdateOAuthClient",z,db),D;D=F[0];let B=u0(D,"GetOAuthClients",h(Q([]))),T=d0(B,Z.registry,(k,w,f)=>{return new p0(k,w,f)},()=>{return 0}),P,S;P=T[0],S=T[1];let q,x=Z.settings_page_model;q=new K0(x.domain_authority_input,x.reset_confirmation,x.selected_file,x.alert,x.relay_url_input,x.plc_directory_url_input,x.jetstream_url_input,x.oauth_supported_scopes_input,x.lexicons_alert,x.show_new_client_form,x.new_client_name,x.new_client_type,x.new_client_redirect_uris,x.new_client_scope,new b,"","","",x.visible_secrets,x.delete_confirm_client_id,x.oauth_alert,x.new_admin_did,x.remove_confirm_did,x.admin_alert,x.danger_zone_alert);let U=q;return[new l(P,Z.registry,Z.route,Z.time_range,U,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),G1(S)]}else return[Z,i()]}else if(K instanceof fJ){let X=K[0],W;if(N4(Z.settings_page_model.visible_secrets,X))W=wy(Z.settings_page_model.visible_secrets,X);else W=fZ(Z.settings_page_model.visible_secrets,X);let V=W,G,I=Z.settings_page_model;G=new K0(I.domain_authority_input,I.reset_confirmation,I.selected_file,I.alert,I.relay_url_input,I.plc_directory_url_input,I.jetstream_url_input,I.oauth_supported_scopes_input,I.lexicons_alert,I.show_new_client_form,I.new_client_name,I.new_client_type,I.new_client_redirect_uris,I.new_client_scope,I.editing_client_id,I.edit_client_name,I.edit_client_redirect_uris,I.edit_client_scope,V,I.delete_confirm_client_id,I.oauth_alert,I.new_admin_did,I.remove_confirm_did,I.admin_alert,I.danger_zone_alert);let z=G;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,z,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof kJ){let X=K[0],W,Y=Z.settings_page_model;W=new K0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,Y.alert,Y.relay_url_input,Y.plc_directory_url_input,Y.jetstream_url_input,Y.oauth_supported_scopes_input,Y.lexicons_alert,Y.show_new_client_form,Y.new_client_name,Y.new_client_type,Y.new_client_redirect_uris,Y.new_client_scope,Y.editing_client_id,Y.edit_client_name,Y.edit_client_redirect_uris,Y.edit_client_scope,Y.visible_secrets,new L(X),Y.oauth_alert,Y.new_admin_did,Y.remove_confirm_did,Y.admin_alert,Y.danger_zone_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof bJ){let X,W=Z.settings_page_model;X=new K0(W.domain_authority_input,W.reset_confirmation,W.selected_file,W.alert,W.relay_url_input,W.plc_directory_url_input,W.jetstream_url_input,W.oauth_supported_scopes_input,W.lexicons_alert,W.show_new_client_form,W.new_client_name,W.new_client_type,W.new_client_redirect_uris,W.new_client_scope,W.editing_client_id,W.edit_client_name,W.edit_client_redirect_uris,W.edit_client_scope,W.visible_secrets,new b,W.oauth_alert,W.new_admin_did,W.remove_confirm_did,W.admin_alert,W.danger_zone_alert);let Y=X;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof hJ){let X=Z.settings_page_model.delete_confirm_client_id;if(X instanceof L){let W=X[0],Y=h(Q([["clientId",c(W)]])),V=u0(Z.cache,"DeleteOAuthClient",Y),G=a(V,"DeleteOAuthClient",Y,Pb),I;I=G[0];let z=u0(I,"GetOAuthClients",h(Q([]))),N=d0(z,Z.registry,(S,q,x)=>{return new p0(S,q,x)},()=>{return 0}),F,D;F=N[0],D=N[1];let B,T=Z.settings_page_model;B=new K0(T.domain_authority_input,T.reset_confirmation,T.selected_file,T.alert,T.relay_url_input,T.plc_directory_url_input,T.jetstream_url_input,T.oauth_supported_scopes_input,T.lexicons_alert,T.show_new_client_form,T.new_client_name,T.new_client_type,T.new_client_redirect_uris,T.new_client_scope,T.editing_client_id,T.edit_client_name,T.edit_client_redirect_uris,T.edit_client_scope,T.visible_secrets,new b,T.oauth_alert,T.new_admin_did,T.remove_confirm_did,T.admin_alert,T.danger_zone_alert);let P=B;return[new l(F,Z.registry,Z.route,Z.time_range,P,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),G1(D)]}else return[Z,i()]}else if(K instanceof vJ){let X=K[0],W,Y=Z.settings_page_model;W=new K0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,Y.alert,Y.relay_url_input,Y.plc_directory_url_input,Y.jetstream_url_input,Y.oauth_supported_scopes_input,Y.lexicons_alert,Y.show_new_client_form,Y.new_client_name,Y.new_client_type,Y.new_client_redirect_uris,Y.new_client_scope,Y.editing_client_id,Y.edit_client_name,Y.edit_client_redirect_uris,Y.edit_client_scope,Y.visible_secrets,Y.delete_confirm_client_id,Y.oauth_alert,X,Y.remove_confirm_did,Y.admin_alert,Y.danger_zone_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof $J){let X=h(Q([])),W=a(Z.cache,"GetSettings",X,A1),Y;if(Y=W[1],Y instanceof Y8){let V=Y[0],G=Z.settings_page_model.new_admin_did,I=V.settings.admin_dids,z=V.settings.domain_authority,N;if(KR(I,G))N=I;else N=_0(I,Q([G]));let D=N,B=h(Q([["domainAuthority",c(z)],["adminDids",k0(D,c)]])),T=h(Q([["id",c("Settings:singleton")],["domainAuthority",c(z)],["adminDids",k0(D,c)]])),P=sZ(Z.cache,Z.registry,"UpdateSettings",B,"Settings:singleton",(w)=>{return T},IJ,(w,f,g)=>{if(f instanceof E)return new yM(w,g);else{let d=f[0];return new fM(w,d)}}),S,q;S=P[0],q=P[2];let x,U=Z.settings_page_model;x=new K0(U.domain_authority_input,U.reset_confirmation,U.selected_file,U.alert,U.relay_url_input,U.plc_directory_url_input,U.jetstream_url_input,U.oauth_supported_scopes_input,U.lexicons_alert,U.show_new_client_form,U.new_client_name,U.new_client_type,U.new_client_redirect_uris,U.new_client_scope,U.editing_client_id,U.edit_client_name,U.edit_client_redirect_uris,U.edit_client_scope,U.visible_secrets,U.delete_confirm_client_id,U.oauth_alert,"",U.remove_confirm_did,U.admin_alert,U.danger_zone_alert);let k=x;return[new l(S,Z.registry,Z.route,Z.time_range,k,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),q]}else return[Z,i()]}else if(K instanceof EZ){let X=K[0],W,Y=Z.settings_page_model;W=new K0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,Y.alert,Y.relay_url_input,Y.plc_directory_url_input,Y.jetstream_url_input,Y.oauth_supported_scopes_input,Y.lexicons_alert,Y.show_new_client_form,Y.new_client_name,Y.new_client_type,Y.new_client_redirect_uris,Y.new_client_scope,Y.editing_client_id,Y.edit_client_name,Y.edit_client_redirect_uris,Y.edit_client_scope,Y.visible_secrets,Y.delete_confirm_client_id,Y.oauth_alert,Y.new_admin_did,new L(X),Y.admin_alert,Y.danger_zone_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof gJ){let X,W=Z.settings_page_model;X=new K0(W.domain_authority_input,W.reset_confirmation,W.selected_file,W.alert,W.relay_url_input,W.plc_directory_url_input,W.jetstream_url_input,W.oauth_supported_scopes_input,W.lexicons_alert,W.show_new_client_form,W.new_client_name,W.new_client_type,W.new_client_redirect_uris,W.new_client_scope,W.editing_client_id,W.edit_client_name,W.edit_client_redirect_uris,W.edit_client_scope,W.visible_secrets,W.delete_confirm_client_id,W.oauth_alert,W.new_admin_did,new b,W.admin_alert,W.danger_zone_alert);let Y=X;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else{let X=Z.settings_page_model.remove_confirm_did;if(X instanceof L){let W=X[0],Y=h(Q([])),V=a(Z.cache,"GetSettings",Y,A1),G;if(G=V[1],G instanceof Y8){let I=G[0],z=I.settings.admin_dids,N=I.settings.domain_authority,F=tJ(z,(k)=>{return k!==W}),D=h(Q([["domainAuthority",c(N)],["adminDids",k0(F,c)]])),B=h(Q([["id",c("Settings:singleton")],["domainAuthority",c(N)],["adminDids",k0(F,c)]])),T=sZ(Z.cache,Z.registry,"UpdateSettings",D,"Settings:singleton",(k)=>{return B},IJ,(k,w,f)=>{if(w instanceof E)return new yM(k,f);else{let g=w[0];return new fM(k,g)}}),P,S;P=T[0],S=T[2];let q,x=Z.settings_page_model;q=new K0(x.domain_authority_input,x.reset_confirmation,x.selected_file,x.alert,x.relay_url_input,x.plc_directory_url_input,x.jetstream_url_input,x.oauth_supported_scopes_input,x.lexicons_alert,x.show_new_client_form,x.new_client_name,x.new_client_type,x.new_client_redirect_uris,x.new_client_scope,x.editing_client_id,x.edit_client_name,x.edit_client_redirect_uris,x.edit_client_scope,x.visible_secrets,x.delete_confirm_client_id,x.oauth_alert,x.new_admin_did,new b,x.admin_alert,x.danger_zone_alert);let U=q;return[new l(P,Z.registry,Z.route,Z.time_range,U,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),S]}else return[Z,i()]}else return[Z,i()]}}else if(J instanceof kM){let K=J[0],X=Xh(K);return[Z,kR(X,(W)=>{return new kM(W)})]}else if(J instanceof OL){let K=J[0];if(K instanceof CM){let X=K[0],W,Y,V=Z.backfill_page_model;Y=new P5(X,V.is_submitting,V.alert),W=xM(Y);let I=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,I,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else{let X=Z.backfill_page_model.did_input,W=h(Q([["did",c(X)]])),Y,V=Z.backfill_page_model,G=wM(V,!0);Y=xM(G);let I=Y,z=u0(Z.cache,"BackfillActor",W),N=a(z,"BackfillActor",W,Hb),F;F=N[0];let D=d0(F,Z.registry,(P,S,q)=>{return new p0(P,S,q)},()=>{return 0}),B,T;return B=D[0],T=D[1],[new l(B,Z.registry,Z.route,Z.time_range,Z.settings_page_model,I,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),G1(T)]}}else if(J instanceof IL){let K=J[0];if(K instanceof E){let X=K[0];M5("[FileRead] Successfully read file, uploading...");let W=h(Q([["zipBase64",c(X)]])),Y=u0(Z.cache,"UploadLexicons",W),V=a(Y,"UploadLexicons",W,ib),G;G=V[0];let I=d0(G,Z.registry,(T,P,S)=>{return new p0(T,P,S)},()=>{return 0}),z,N;z=I[0],N=I[1];let F,D=Z.settings_page_model;F=new K0(D.domain_authority_input,D.reset_confirmation,new b,D.alert,D.relay_url_input,D.plc_directory_url_input,D.jetstream_url_input,D.oauth_supported_scopes_input,D.lexicons_alert,D.show_new_client_form,D.new_client_name,D.new_client_type,D.new_client_redirect_uris,D.new_client_scope,D.editing_client_id,D.edit_client_name,D.edit_client_redirect_uris,D.edit_client_scope,D.visible_secrets,D.delete_confirm_client_id,D.oauth_alert,D.new_admin_did,D.remove_confirm_did,D.admin_alert,D.danger_zone_alert);let B=F;return[new l(z,Z.registry,Z.route,Z.time_range,B,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),G1(N)]}else{let X=K[0];M5("[FileRead] Error reading file: "+X);let W=mJ(Z.settings_page_model,"error",X);return[new l(Z.cache,Z.registry,Z.route,Z.time_range,W,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}}else if(J instanceof dJ)if(p5(Z.backfill_status)){let X=lk(Z.cache,Z.registry,(V,G,I)=>{return new p0(V,G,I)}),W,Y;return W=X[0],Y=X[1],[new l(W,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),G1(Y)]}else return[Z,i()];else if(J instanceof TL)return[new l(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,!Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()];else if(J instanceof pJ){let K=J[0],X=E8(Z.login_autocomplete,new iK(K)),W,Y;return W=X[0],Y=X[1],[new l(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,W,Z.oauth_error),kR(Y,(V)=>{if(V instanceof w4){let G=V[0];return new zL(G)}else return new pJ("")})]}else if(J instanceof bM){let K=J[0];if(K==="ArrowDown"){let X=E8(Z.login_autocomplete,new lK),W;return W=X[0],[new l(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,W,Z.oauth_error),i()]}else if(K==="ArrowUp"){let X=E8(Z.login_autocomplete,new sK),W;return W=X[0],[new l(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,W,Z.oauth_error),i()]}else if(K==="Enter"){let X=Jb(Z.login_autocomplete);if(X instanceof L){let W=X[0],Y=E8(Z.login_autocomplete,new tZ(W)),V;return V=Y[0],[new l(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,V,Z.oauth_error),i()]}else return[Z,i()]}else if(K==="Escape"){let X=E8(Z.login_autocomplete,new oZ),W;return W=X[0],[new l(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,W,Z.oauth_error),i()]}else return[Z,i()]}else if(J instanceof hM){let K=J[0],X,W=YR(Z.login_autocomplete.actors,(I)=>{return I.handle===K});if(W instanceof E)X=W[0];else X=new aZ("",K,"",new b);let Y=X,V=E8(Z.login_autocomplete,new tZ(Y)),G;return G=V[0],[new l(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,G,Z.oauth_error),i()]}else if(J instanceof vM){let K=F1((X)=>{return uJ(150,()=>{return X(new NL)})});return[Z,K]}else if(J instanceof $M){let K=E8(Z.login_autocomplete,new _j),X;return X=K[0],[new l(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,X,Z.oauth_error),i()]}else if(J instanceof zL){let K=J[0],X=E8(Z.login_autocomplete,new w4(K)),W;return W=X[0],[new l(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,W,Z.oauth_error),i()]}else if(J instanceof NL){let K=E8(Z.login_autocomplete,new oZ),X;return X=K[0],[new l(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,X,Z.oauth_error),i()]}else return[new l(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,new b),i()]}function t_(Z){let J,K=Z.auth_state;if(K instanceof U8)J=[!1,!1];else J=[K.is_admin,!0];let X=J,W,Y;return W=X[0],Y=X[1],uZ(Zh(Z.cache,Z.time_range,Z.backfill_status,W,Y),(V)=>{return new DL(V)})}function o_(Z){let J,K=Z.auth_state;if(K instanceof U8)J=!1;else J=K.is_admin;let X=J;return uZ(Dh(Z.cache,Z.settings_page_model,X),(W)=>{return new BL(W)})}function e_(Z){return uZ(Wh(Z.cache),(J)=>{return new kM(J)})}function Zm(Z){return R(Q([]),Q([c1(Q([H("text-xl font-bold text-zinc-100 mb-4")]),Q([o0("Upload")])),D0(Q([H("text-zinc-400")]),Q([o0("Upload and manage data")]))]))}function Jm(Z){return uZ(ab(Z.backfill_page_model),(J)=>{return new OL(J)})}function Km(Z){return Qh(Z.login_autocomplete,(J)=>{return new pJ(J)},(J)=>{return new hM(J)},(J)=>{return new bM(J)},()=>{return new vM},()=>{return new $M})}function Ym(Z){let J,K=Z.auth_state;if(K instanceof U8)J=new b;else{let{handle:W,is_admin:Y}=K;J=new L([W,Y])}let X=J;return R(Q([H("bg-zinc-950 text-zinc-300 font-mono min-h-screen")]),Q([R(Q([H("max-w-4xl mx-auto px-4 py-6 sm:px-6 sm:py-12")]),Q([(()=>{if(Z.route instanceof o5)return X0();else return zb(X,p5(Z.backfill_status),Z.mobile_menu_open,new TL,Z.login_autocomplete,(Y)=>{return new pJ(Y)},(Y)=>{return new hM(Y)},(Y)=>{return new bM(Y)},()=>{return new vM},()=>{return new $M})})(),(()=>{let W=Z.oauth_error;if(W instanceof L){let Y=W[0];return h1(new D1,Y)}else return X0()})(),(()=>{let W=Z.route;if(W instanceof e5)return t_(Z);else if(W instanceof A5)return o_(Z);else if(W instanceof nJ)return e_(Z);else if(W instanceof FL)return Zm(Z);else if(W instanceof cJ)return Jm(Z);else return Km(Z)})()]))]))}function Th(Z){let J=Z.path;if(J==="/")return new e5;else if(J==="/settings")return new A5;else if(J==="/lexicons")return new nJ;else if(J==="/upload")return new FL;else if(J==="/backfill")return new cJ;else if(J==="/onboarding")return new o5;else return new e5}function Xm(Z){return new HL(Th(Z))}function Wm(Z){let J=Bh()+"/admin/graphql",K=uk(J),X=Nb(),W,Y=qj();if(Y instanceof E){let U=Y[0];W=[Th(U),r_(U)]}else W=[new e5,new b];let V=W,G,I;G=V[0],I=V[1];let z=a(K,"GetCurrentSession",h(Q([])),aj),N;N=z[0];let F=a(N,"IsBackfilling",h(Q([])),rZ),D;D=F[0];let B;if(G instanceof e5){let U=a(D,"GetStatistics",h(Q([])),T5),k;k=U[0];let w=a(k,"GetSettings",h(Q([])),A1),f;f=w[0];let g=a(f,"GetActivityBuckets",h(Q([["range",c("ONE_DAY")]])),s5),d;d=g[0];let n=a(d,"GetRecentActivity",h(Q([["hours",Q1(24)]])),AZ),r;r=n[0];let W0=d0(r,X,(I0,B0,V0)=>{return new p0(I0,B0,V0)},()=>{return 0}),T0,b0;T0=W0[0],b0=W0[1],B=[T0,b0]}else if(G instanceof A5){let U=a(D,"GetSettings",h(Q([])),A1),k;k=U[0];let w=a(k,"GetOAuthClients",h(Q([])),l8),f;f=w[0];let g=d0(f,X,(r,W0,T0)=>{return new p0(r,W0,T0)},()=>{return 0}),d,n;d=g[0],n=g[1],B=[d,n]}else if(G instanceof nJ){let U=a(D,"GetLexicons",h(Q([])),VJ),k;k=U[0];let w=d0(k,X,(d,n,r)=>{return new p0(d,n,r)},()=>{return 0}),f,g;f=w[0],g=w[1],B=[f,g]}else B=[D,Q([])];let T=B,P,S;P=T[0],S=T[1];let q=Bk(Xm),x=G1(A(q,S));return[new l(P,X,G,new l5,Hh(),rb(),new nK,new U8,!1,Zb(),I),x]}function Ph(){let Z=Wk(Wm,a_,Ym),J=Qk(Z,"#app",void 0);if(!(J instanceof E))throw s8("let_assert",s_,"quickslice_client",123,"main","Pattern match failed, no pattern matched the value.",{value:J,start:3436,end:3485,pattern_start:3447,pattern_end:3452});return J}Ph();
··· 1 + var Eh=Object.defineProperty;var AL=(Z,J)=>{for(var K in J)Eh(Z,K,{get:J[K],enumerable:!0,configurable:!0,set:(X)=>J[K]=()=>X})};class O{withFields(Z){let J=Object.keys(this).map((K)=>(K in Z)?Z[K]:this[K]);return new this.constructor(...J)}}class r0{static fromArray(Z,J){let K=J||new M;for(let X=Z.length-1;X>=0;--X)K=new k1(Z[X],K);return K}[Symbol.iterator](){return new xL(this)}toArray(){return[...this]}atLeastLength(Z){let J=this;while(Z-- >0&&J)J=J.tail;return J!==void 0}hasLength(Z){let J=this;while(Z-- >0&&J)J=J.tail;return Z===-1&&J instanceof M}countLength(){let Z=this,J=0;while(Z)Z=Z.tail,J++;return J-1}}function A(Z,J){return new k1(Z,J)}function Q(Z,J){return r0.fromArray(Z,J)}class xL{#Z;constructor(Z){this.#Z=Z}next(){if(this.#Z instanceof M)return{done:!0};else{let{head:Z,tail:J}=this.#Z;return this.#Z=J,{value:Z,done:!1}}}}class M extends r0{}class k1 extends r0{constructor(Z,J){super();this.head=Z,this.tail=J}}var wL=(Z)=>Z instanceof k1,UL=(Z)=>Z.head,ML=(Z)=>Z.tail;class xZ{bitSize;byteSize;bitOffset;rawBuffer;constructor(Z,J,K){if(!(Z instanceof Uint8Array))throw globalThis.Error("BitArray can only be constructed from a Uint8Array");if(this.bitSize=J??Z.length*8,this.byteSize=Math.trunc((this.bitSize+7)/8),this.bitOffset=K??0,this.bitSize<0)throw globalThis.Error(`BitArray bit size is invalid: ${this.bitSize}`);if(this.bitOffset<0||this.bitOffset>7)throw globalThis.Error(`BitArray bit offset is invalid: ${this.bitOffset}`);if(Z.length!==Math.trunc((this.bitOffset+this.bitSize+7)/8))throw globalThis.Error("BitArray buffer length is invalid");this.rawBuffer=Z}byteAt(Z){if(Z<0||Z>=this.byteSize)return;return CZ(this.rawBuffer,this.bitOffset,Z)}equals(Z){if(this.bitSize!==Z.bitSize)return!1;let J=Math.trunc(this.bitSize/8);if(this.bitOffset===0&&Z.bitOffset===0){for(let X=0;X<J;X++)if(this.rawBuffer[X]!==Z.rawBuffer[X])return!1;let K=this.bitSize%8;if(K){let X=8-K;if(this.rawBuffer[J]>>X!==Z.rawBuffer[J]>>X)return!1}}else{for(let X=0;X<J;X++){let W=CZ(this.rawBuffer,this.bitOffset,X),Y=CZ(Z.rawBuffer,Z.bitOffset,X);if(W!==Y)return!1}let K=this.bitSize%8;if(K){let X=CZ(this.rawBuffer,this.bitOffset,J),W=CZ(Z.rawBuffer,Z.bitOffset,J),Y=8-K;if(X>>Y!==W>>Y)return!1}}return!0}get buffer(){if(EL("buffer","Use BitArray.byteAt() or BitArray.rawBuffer instead"),this.bitOffset!==0||this.bitSize%8!==0)throw new globalThis.Error("BitArray.buffer does not support unaligned bit arrays");return this.rawBuffer}get length(){if(EL("length","Use BitArray.bitSize or BitArray.byteSize instead"),this.bitOffset!==0||this.bitSize%8!==0)throw new globalThis.Error("BitArray.length does not support unaligned bit arrays");return this.rawBuffer.length}}function CZ(Z,J,K){if(J===0)return Z[K]??0;else{let X=Z[K]<<J&255,W=Z[K+1]>>8-J;return X|W}}class uM{constructor(Z){this.value=Z}}var qL={};function EL(Z,J){if(qL[Z])return;console.warn(`Deprecated BitArray.${Z} property used in JavaScript FFI code. ${J}.`),qL[Z]=!0}class e5 extends O{static isResult(Z){return Z instanceof e5}}class E extends e5{constructor(Z){super();this[0]=Z}isOk(){return!0}}var RL=(Z)=>new E(Z);class v extends e5{constructor(Z){super();this[0]=Z}isOk(){return!1}}var jL=(Z)=>new v(Z);function x0(Z,J){let K=[Z,J];while(K.length){let X=K.pop(),W=K.pop();if(X===W)continue;if(!CL(X)||!CL(W))return!1;if(!Lh(X,W)||xh(X,W)||wh(X,W)||Uh(X,W)||Mh(X,W)||Rh(X,W)||jh(X,W))return!1;let V=Object.getPrototypeOf(X);if(V!==null&&typeof V.equals==="function")try{if(X.equals(W))continue;else return!1}catch{}let[G,I]=Ch(X),z=G(X),N=G(W);if(z.length!==N.length)return!1;for(let F of z)K.push(I(X,F),I(W,F))}return!0}function Ch(Z){if(Z instanceof Map)return[(J)=>J.keys(),(J,K)=>J.get(K)];else{let J=Z instanceof globalThis.Error?["message"]:[];return[(K)=>[...J,...Object.keys(K)],(K,X)=>K[X]]}}function xh(Z,J){return Z instanceof Date&&(Z>J||Z<J)}function wh(Z,J){return!(Z instanceof xZ)&&Z.buffer instanceof ArrayBuffer&&Z.BYTES_PER_ELEMENT&&!(Z.byteLength===J.byteLength&&Z.every((K,X)=>K===J[X]))}function Uh(Z,J){return Array.isArray(Z)&&Z.length!==J.length}function Mh(Z,J){return Z instanceof Map&&Z.size!==J.size}function Rh(Z,J){return Z instanceof Set&&(Z.size!=J.size||[...Z].some((K)=>!J.has(K)))}function jh(Z,J){return Z instanceof RegExp&&(Z.source!==J.source||Z.flags!==J.flags)}function CL(Z){return typeof Z==="object"&&Z!==null}function Lh(Z,J){if(typeof Z!=="object"&&typeof J!=="object"&&(!Z||!J))return!1;if([Promise,WeakSet,WeakMap,Function].some((X)=>Z instanceof X))return!1;return Z.constructor===J.constructor}function sJ(Z,J){if(J===0)return 0;else return Z/J}function l8(Z,J,K,X,W,Y,V){let G=new globalThis.Error(Y);G.gleam_error=Z,G.file=J,G.module=K,G.line=X,G.function=W,G.fn=W;for(let I in V)G[I]=V[I];return G}class Z1 extends O{}class J1 extends O{}class w8 extends O{}class L extends O{constructor(Z){super();this[0]=Z}}class b extends O{}function dM(Z,J){if(Z instanceof L){let K=Z[0];return new E(K)}else return new v(J)}function cM(Z){if(Z instanceof E){let J=Z[0];return new L(J)}else return new b}function LL(Z,J){if(Z instanceof L)return Z[0];else return J}function pM(Z,J){if(Z instanceof L){let K=Z[0];return J(K)}else return Z}var yL=new WeakMap,nM=new DataView(new ArrayBuffer(8)),iM=0;function lM(Z){let J=yL.get(Z);if(J!==void 0)return J;let K=iM++;if(iM===2147483647)iM=0;return yL.set(Z,K),K}function sM(Z,J){return Z^J+2654435769+(Z<<6)+(Z>>2)|0}function aM(Z){let J=0,K=Z.length;for(let X=0;X<K;X++)J=Math.imul(31,J)+Z.charCodeAt(X)|0;return J}function kL(Z){nM.setFloat64(0,Z);let J=nM.getInt32(0),K=nM.getInt32(4);return Math.imul(73244475,J>>16^J)^K}function yh(Z){return aM(Z.toString())}function fh(Z){let J=Object.getPrototypeOf(Z);if(J!==null&&typeof J.hashCode==="function")try{let X=Z.hashCode(Z);if(typeof X==="number")return X}catch{}if(Z instanceof Promise||Z instanceof WeakSet||Z instanceof WeakMap)return lM(Z);if(Z instanceof Date)return kL(Z.getTime());let K=0;if(Z instanceof ArrayBuffer)Z=new Uint8Array(Z);if(Array.isArray(Z)||Z instanceof Uint8Array)for(let X=0;X<Z.length;X++)K=Math.imul(31,K)+c1(Z[X])|0;else if(Z instanceof Set)Z.forEach((X)=>{K=K+c1(X)|0});else if(Z instanceof Map)Z.forEach((X,W)=>{K=K+sM(c1(X),c1(W))|0});else{let X=Object.keys(Z);for(let W=0;W<X.length;W++){let Y=X[W],V=Z[Y];K=K+sM(c1(V),aM(Y))|0}}return K}function c1(Z){if(Z===null)return 1108378658;if(Z===void 0)return 1108378659;if(Z===!0)return 1108378657;if(Z===!1)return 1108378656;switch(typeof Z){case"number":return kL(Z);case"string":return aM(Z);case"bigint":return yh(Z);case"object":return fh(Z);case"symbol":return lM(Z);case"function":return lM(Z);default:return 0}}var G8=5,tM=Math.pow(2,G8),kh=tM-1,bh=tM/2,hh=tM/4,q1=0,V8=1,b1=2,A5=3,oM={type:b1,bitmap:0,array:[]};function wZ(Z,J){return Z>>>J&kh}function aJ(Z,J){return 1<<wZ(Z,J)}function vh(Z){return Z-=Z>>1&1431655765,Z=(Z&858993459)+(Z>>2&858993459),Z=Z+(Z>>4)&252645135,Z+=Z>>8,Z+=Z>>16,Z&127}function eM(Z,J){return vh(Z&J-1)}function p1(Z,J,K){let X=Z.length,W=Array(X);for(let Y=0;Y<X;++Y)W[Y]=Z[Y];return W[J]=K,W}function $h(Z,J,K){let X=Z.length,W=Array(X+1),Y=0,V=0;while(Y<J)W[V++]=Z[Y++];W[V++]=K;while(Y<X)W[V++]=Z[Y++];return W}function rM(Z,J){let K=Z.length,X=Array(K-1),W=0,Y=0;while(W<J)X[Y++]=Z[W++];++W;while(W<K)X[Y++]=Z[W++];return X}function bL(Z,J,K,X,W,Y){let V=c1(J);if(V===X)return{type:A5,hash:V,array:[{type:q1,k:J,v:K},{type:q1,k:W,v:Y}]};let G={val:!1};return UZ(ZR(oM,Z,V,J,K,G),Z,X,W,Y,G)}function UZ(Z,J,K,X,W,Y){switch(Z.type){case V8:return gh(Z,J,K,X,W,Y);case b1:return ZR(Z,J,K,X,W,Y);case A5:return _h(Z,J,K,X,W,Y)}}function gh(Z,J,K,X,W,Y){let V=wZ(K,J),G=Z.array[V];if(G===void 0)return Y.val=!0,{type:V8,size:Z.size+1,array:p1(Z.array,V,{type:q1,k:X,v:W})};if(G.type===q1){if(x0(X,G.k)){if(W===G.v)return Z;return{type:V8,size:Z.size,array:p1(Z.array,V,{type:q1,k:X,v:W})}}return Y.val=!0,{type:V8,size:Z.size,array:p1(Z.array,V,bL(J+G8,G.k,G.v,K,X,W))}}let I=UZ(G,J+G8,K,X,W,Y);if(I===G)return Z;return{type:V8,size:Z.size,array:p1(Z.array,V,I)}}function ZR(Z,J,K,X,W,Y){let V=aJ(K,J),G=eM(Z.bitmap,V);if((Z.bitmap&V)!==0){let I=Z.array[G];if(I.type!==q1){let N=UZ(I,J+G8,K,X,W,Y);if(N===I)return Z;return{type:b1,bitmap:Z.bitmap,array:p1(Z.array,G,N)}}let z=I.k;if(x0(X,z)){if(W===I.v)return Z;return{type:b1,bitmap:Z.bitmap,array:p1(Z.array,G,{type:q1,k:X,v:W})}}return Y.val=!0,{type:b1,bitmap:Z.bitmap,array:p1(Z.array,G,bL(J+G8,z,I.v,K,X,W))}}else{let I=Z.array.length;if(I>=bh){let z=Array(32),N=wZ(K,J);z[N]=ZR(oM,J+G8,K,X,W,Y);let F=0,D=Z.bitmap;for(let B=0;B<32;B++){if((D&1)!==0){let T=Z.array[F++];z[B]=T}D=D>>>1}return{type:V8,size:I+1,array:z}}else{let z=$h(Z.array,G,{type:q1,k:X,v:W});return Y.val=!0,{type:b1,bitmap:Z.bitmap|V,array:z}}}}function _h(Z,J,K,X,W,Y){if(K===Z.hash){let V=JR(Z,X);if(V!==-1){if(Z.array[V].v===W)return Z;return{type:A5,hash:K,array:p1(Z.array,V,{type:q1,k:X,v:W})}}let G=Z.array.length;return Y.val=!0,{type:A5,hash:K,array:p1(Z.array,G,{type:q1,k:X,v:W})}}return UZ({type:b1,bitmap:aJ(Z.hash,J),array:[Z]},J,K,X,W,Y)}function JR(Z,J){let K=Z.array.length;for(let X=0;X<K;X++)if(x0(J,Z.array[X].k))return X;return-1}function rJ(Z,J,K,X){switch(Z.type){case V8:return mh(Z,J,K,X);case b1:return uh(Z,J,K,X);case A5:return dh(Z,X)}}function mh(Z,J,K,X){let W=wZ(K,J),Y=Z.array[W];if(Y===void 0)return;if(Y.type!==q1)return rJ(Y,J+G8,K,X);if(x0(X,Y.k))return Y;return}function uh(Z,J,K,X){let W=aJ(K,J);if((Z.bitmap&W)===0)return;let Y=eM(Z.bitmap,W),V=Z.array[Y];if(V.type!==q1)return rJ(V,J+G8,K,X);if(x0(X,V.k))return V;return}function dh(Z,J){let K=JR(Z,J);if(K<0)return;return Z.array[K]}function KR(Z,J,K,X){switch(Z.type){case V8:return ch(Z,J,K,X);case b1:return ph(Z,J,K,X);case A5:return nh(Z,X)}}function ch(Z,J,K,X){let W=wZ(K,J),Y=Z.array[W];if(Y===void 0)return Z;let V=void 0;if(Y.type===q1){if(!x0(Y.k,X))return Z}else if(V=KR(Y,J+G8,K,X),V===Y)return Z;if(V===void 0){if(Z.size<=hh){let G=Z.array,I=Array(Z.size-1),z=0,N=0,F=0;while(z<W){let D=G[z];if(D!==void 0)I[N]=D,F|=1<<z,++N;++z}++z;while(z<G.length){let D=G[z];if(D!==void 0)I[N]=D,F|=1<<z,++N;++z}return{type:b1,bitmap:F,array:I}}return{type:V8,size:Z.size-1,array:p1(Z.array,W,V)}}return{type:V8,size:Z.size,array:p1(Z.array,W,V)}}function ph(Z,J,K,X){let W=aJ(K,J);if((Z.bitmap&W)===0)return Z;let Y=eM(Z.bitmap,W),V=Z.array[Y];if(V.type!==q1){let G=KR(V,J+G8,K,X);if(G===V)return Z;if(G!==void 0)return{type:b1,bitmap:Z.bitmap,array:p1(Z.array,Y,G)};if(Z.bitmap===W)return;return{type:b1,bitmap:Z.bitmap^W,array:rM(Z.array,Y)}}if(x0(X,V.k)){if(Z.bitmap===W)return;return{type:b1,bitmap:Z.bitmap^W,array:rM(Z.array,Y)}}return Z}function nh(Z,J){let K=JR(Z,J);if(K<0)return Z;if(Z.array.length===1)return;return{type:A5,hash:Z.hash,array:rM(Z.array,K)}}function hL(Z,J){if(Z===void 0)return;let K=Z.array,X=K.length;for(let W=0;W<X;W++){let Y=K[W];if(Y===void 0)continue;if(Y.type===q1){J(Y.v,Y.k);continue}hL(Y,J)}}class W1{static fromObject(Z){let J=Object.keys(Z),K=W1.new();for(let X=0;X<J.length;X++){let W=J[X];K=K.set(W,Z[W])}return K}static fromMap(Z){let J=W1.new();return Z.forEach((K,X)=>{J=J.set(X,K)}),J}static new(){return new W1(void 0,0)}constructor(Z,J){this.root=Z,this.size=J}get(Z,J){if(this.root===void 0)return J;let K=rJ(this.root,0,c1(Z),Z);if(K===void 0)return J;return K.v}set(Z,J){let K={val:!1},X=this.root===void 0?oM:this.root,W=UZ(X,0,c1(Z),Z,J,K);if(W===this.root)return this;return new W1(W,K.val?this.size+1:this.size)}delete(Z){if(this.root===void 0)return this;let J=KR(this.root,0,c1(Z),Z);if(J===this.root)return this;if(J===void 0)return W1.new();return new W1(J,this.size-1)}has(Z){if(this.root===void 0)return!1;return rJ(this.root,0,c1(Z),Z)!==void 0}entries(){if(this.root===void 0)return[];let Z=[];return this.forEach((J,K)=>Z.push([K,J])),Z}forEach(Z){hL(this.root,Z)}hashCode(){let Z=0;return this.forEach((J,K)=>{Z=Z+sM(c1(J),c1(K))|0}),Z}equals(Z){if(!(Z instanceof W1)||this.size!==Z.size)return!1;try{return this.forEach((J,K)=>{if(!x0(Z.get(K,!J),J))throw fL}),!0}catch(J){if(J===fL)return!1;throw J}}}var fL=Symbol();function YR(Z){return tJ(Z)===0}function ih(Z,J){return!x0(P0(J,Z),new v(void 0))}function vL(Z,J){return ih(J,Z)}function a0(Z,J,K){return gL(J,K,Z)}function lh(Z,J){while(!0){let K=Z,X=J;if(K instanceof M)return X;else{let W=K.head;Z=K.tail,J=A(W,X)}}}function sh(Z,J){while(!0){let K=Z,X=J;if(K instanceof M)return lh(X,Q([]));else{let W=K.tail,Y=K.head[0];Z=W,J=A(Y,X)}}}function U8(Z){return sh(r8(Z),Q([]))}function I8(Z,J){return $L(J,Z)}function rh(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof M)return W;else{let V=X.tail,G=X.head[0],I=X.head[1];Z=V,J=Y(W,G,I),K=Y}}}function Z4(Z,J,K){return rh(r8(Z),J,K)}class I1 extends O{}class J4 extends O{}function th(Z,J){while(!0){let K=Z,X=J;if(K instanceof M)return X;else Z=K.tail,J=X+1}}function t8(Z){return th(Z,0)}function q5(Z,J){while(!0){let K=Z,X=J;if(K instanceof M)return X;else{let W=K.head;Z=K.tail,J=A(W,X)}}}function F0(Z){return q5(Z,Q([]))}function _L(Z){return x0(Z,Q([]))}function XR(Z,J){while(!0){let K=Z,X=J;if(K instanceof M)return!1;else{let W=K.head;if(x0(W,X))return!0;else Z=K.tail,J=X}}}function mL(Z){if(Z instanceof M)return new v(void 0);else{let J=Z.head;return new E(J)}}function oh(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof M)return F0(Y);else{let{head:V,tail:G}=X,I;if(W(V))I=A(V,Y);else I=Y;let N=I;Z=G,J=W,K=N}}}function oJ(Z,J){return oh(Z,J,Q([]))}function eh(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof M)return F0(Y);else{let{head:V,tail:G}=X,I,z=W(V);if(z instanceof E){let F=z[0];I=A(F,Y)}else I=Y;let N=I;Z=G,J=W,K=N}}}function E5(Z,J){return eh(Z,J,Q([]))}function Zv(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof M)return F0(Y);else{let V=X.head;Z=X.tail,J=W,K=A(W(V),Y)}}}function I0(Z,J){return Zv(Z,J,Q([]))}function Jv(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(W instanceof M)return F0(G);else{let{head:I,tail:z}=W,N=A(Y(I,V),G);Z=z,J=Y,K=V+1,X=N}}}function eJ(Z,J){return Jv(Z,J,0,Q([]))}function K4(Z,J){while(!0){let K=Z,X=J;if(X<=0)return K;else if(K instanceof M)return K;else Z=K.tail,J=X-1}}function Kv(Z,J){while(!0){let K=Z,X=J;if(K instanceof M)return X;else{let W=K.head;Z=K.tail,J=A(W,X)}}}function _0(Z,J){return Kv(F0(Z),J)}function ZK(Z,J){return A(J,Z)}function Yv(Z,J){while(!0){let K=Z,X=J;if(K instanceof M)return F0(X);else{let W=K.head;Z=K.tail,J=q5(W,X)}}}function uL(Z){return Yv(Z,Q([]))}function g0(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof M)return W;else{let V=X.head;Z=X.tail,J=Y(W,V),K=Y}}}function WR(Z,J){while(!0){let K=Z,X=J;if(K instanceof M)return new v(void 0);else{let{head:W,tail:Y}=K;if(X(W))return new E(W);else Z=Y,J=X}}}function JK(Z,J){while(!0){let K=Z,X=J;if(K instanceof M)return new v(void 0);else{let{head:W,tail:Y}=K,V=X(W);if(V instanceof E)return V;else Z=Y,J=X}}}function Xv(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof M)return F0(Y);else{let{head:V,tail:G}=X;if(vL(W,V))Z=G,J=W,K=Y;else Z=G,J=a0(W,V,void 0),K=A(V,Y)}}}function dL(Z){return Xv(Z,$0(),Q([]))}function Wv(Z,J,K,X,W,Y){while(!0){let V=Z,G=J,I=K,z=X,N=W,F=Y,D=A(N,I);if(V instanceof M)if(z instanceof I1)return A(F0(D),F);else return A(D,F);else{let{head:B,tail:T}=V,P=G(N,B);if(z instanceof I1)if(P instanceof Z1)Z=T,J=G,K=D,X=z,W=B,Y=F;else if(P instanceof J1)Z=T,J=G,K=D,X=z,W=B,Y=F;else{let S;if(z instanceof I1)S=A(F0(D),F);else S=A(D,F);let q=S;if(T instanceof M)return A(Q([B]),q);else{let{head:x,tail:U}=T,k,w=G(B,x);if(w instanceof Z1)k=new I1;else if(w instanceof J1)k=new I1;else k=new J4;let f=k;Z=U,J=G,K=Q([B]),X=f,W=x,Y=q}}else if(P instanceof Z1){let S;if(z instanceof I1)S=A(F0(D),F);else S=A(D,F);let q=S;if(T instanceof M)return A(Q([B]),q);else{let{head:x,tail:U}=T,k,w=G(B,x);if(w instanceof Z1)k=new I1;else if(w instanceof J1)k=new I1;else k=new J4;let f=k;Z=U,J=G,K=Q([B]),X=f,W=x,Y=q}}else if(P instanceof J1){let S;if(z instanceof I1)S=A(F0(D),F);else S=A(D,F);let q=S;if(T instanceof M)return A(Q([B]),q);else{let{head:x,tail:U}=T,k,w=G(B,x);if(w instanceof Z1)k=new I1;else if(w instanceof J1)k=new I1;else k=new J4;let f=k;Z=U,J=G,K=Q([B]),X=f,W=x,Y=q}}else Z=T,J=G,K=D,X=z,W=B,Y=F}}}function Qv(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(W instanceof M)return q5(Y,G);else if(Y instanceof M)return q5(W,G);else{let{head:I,tail:z}=W,N=Y.head,F=Y.tail,D=V(I,N);if(D instanceof Z1)Z=z,J=Y,K=V,X=A(I,G);else if(D instanceof J1)Z=W,J=F,K=V,X=A(N,G);else Z=W,J=F,K=V,X=A(N,G)}}}function Vv(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof M)return F0(Y);else{let V=X.tail;if(V instanceof M){let G=X.head;return F0(A(F0(G),Y))}else{let G=X.head,I=V.head,z=V.tail,N=Qv(G,I,W,Q([]));Z=z,J=W,K=A(N,Y)}}}}function Gv(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(W instanceof M)return q5(Y,G);else if(Y instanceof M)return q5(W,G);else{let{head:I,tail:z}=W,N=Y.head,F=Y.tail,D=V(I,N);if(D instanceof Z1)Z=W,J=F,K=V,X=A(N,G);else if(D instanceof J1)Z=z,J=Y,K=V,X=A(I,G);else Z=z,J=Y,K=V,X=A(I,G)}}}function Iv(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof M)return F0(Y);else{let V=X.tail;if(V instanceof M){let G=X.head;return F0(A(F0(G),Y))}else{let G=X.head,I=V.head,z=V.tail,N=Gv(G,I,W,Q([]));Z=z,J=W,K=A(N,Y)}}}}function zv(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof M)return X;else if(W instanceof I1)if(X.tail instanceof M)return X.head;else Z=Vv(X,Y,Q([])),J=new J4,K=Y;else if(X.tail instanceof M){let G=X.head;return F0(G)}else Z=Iv(X,Y,Q([])),J=new I1,K=Y}}function QR(Z,J){if(Z instanceof M)return Z;else{let K=Z.tail;if(K instanceof M)return Z;else{let X=Z.head,W=K.head,Y=K.tail,V,G=J(X,W);if(G instanceof Z1)V=new I1;else if(G instanceof J1)V=new I1;else V=new J4;let I=V,z=Wv(Y,J,Q([X]),I,W,Q([]));return zv(z,new I1,J)}}}function MZ(Z,J){return JK(Z,(K)=>{let X,W;if(X=K[0],W=K[1],x0(X,J))return new E(W);else return new v(void 0)})}function Nv(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(W instanceof M)return F0(A([Y,V],G));else{let I=W.head[0];if(x0(I,Y)){let z=W.tail;return q5(G,A([I,V],z))}else{let z=W.head;Z=W.tail,J=Y,K=V,X=A(z,G)}}}}function VR(Z,J,K){return Nv(Z,J,K,Q([]))}function cL(Z,J){while(!0){let K=Z,X=J;if(K instanceof M)return;else{let{head:W,tail:Y}=K;X(W),Z=Y,J=X}}}function pL(Z,J){if(Z instanceof M)return new v(void 0);else{let{head:K,tail:X}=Z;return new E(g0(X,K,J))}}class o8 extends O{constructor(Z,J,K){super();this.expected=Z,this.found=J,this.path=K}}class h1 extends O{constructor(Z){super();this.function=Z}}var v0=new h1(Dv),z1=new h1(Ov),l0=new h1(Tv),lL=new h1(Pv);var u=new h1(Sv);function z0(Z,J){let K=J.function(Z),X,W;if(X=K[0],W=K[1],W instanceof M)return new E(X);else return new v(W)}function s(Z){return new h1((J)=>{return[Z,Q([])]})}function Dv(Z){return[Z,Q([])]}function C5(Z,J){return new h1((K)=>{let X=Z.function(K),W,Y;return W=X[0],Y=X[1],[J(W),Y]})}function Bv(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(Y instanceof M)return W;else{let{head:V,tail:G}=Y,I=V.function(X),z,N;if(z=I,N=I[1],N instanceof M)return z;else Z=X,J=W,K=G}}}function IR(Z,J){return new h1((K)=>{let X=Z.function(K),W,Y;if(W=X,Y=X[1],Y instanceof M)return W;else return Bv(K,W,J)})}function R1(Z){return new h1((J)=>{if(Jy(J))return[new b,Q([])];else{let X=Z.function(J),W,Y;return W=X[0],Y=X[1],[new L(W),Y]}})}function sL(Z,J){return Q([new o8(Z,a8(J),Q([]))])}function zR(Z,J,K){let X=K(Z);if(X instanceof E)return[X[0],Q([])];else return[X[0],Q([new o8(J,a8(Z),Q([]))])]}function Ov(Z){if(x0(N0(!0),Z))return[!0,Q([])];else if(x0(N0(!1),Z))return[!1,Q([])];else return[!1,sL("Bool",Z)]}function Tv(Z){return zR(Z,"Int",eL)}function Pv(Z){return zR(Z,"Float",oL)}function Sv(Z){return zR(Z,"String",Zy)}function Av(Z,J,K,X,W){let Y=X(J),V=Y[1];if(V instanceof M){let G=Y[0],I=W(K),z=I[1];if(z instanceof M){let N=I[0];return[a0(Z[0],G,N),Z[1]]}else{let N=z;return Y4([$0(),N],Q(["values"]))}}else{let G=V;return Y4([$0(),G],Q(["keys"]))}}function M8(Z,J){return new h1((K)=>{let X=tL(K);if(X instanceof E){let W=X[0];return Z4(W,[$0(),Q([])],(Y,V,G)=>{if(Y[1]instanceof M)return Av(Y,V,G,Z.function,J.function);else return Y})}else return[$0(),sL("Dict",K)]})}function L0(Z){return new h1((J)=>{return aL(J,Z.function,(K,X)=>{return Y4(K,Q([X]))},0,Q([]))})}function Y4(Z,J){let K=IR(u,Q([(()=>{return C5(l0,E1)})()])),X=I0(J,(Y)=>{let V=N0(Y),G=z0(V,K);if(G instanceof E)return G[0];else return"<"+a8(V)+">"}),W=I0(Z[1],(Y)=>{return new o8(Y.expected,Y.found,_0(X,Y.path))});return[Z[0],W]}function qv(Z,J,K,X,W){while(!0){let Y=Z,V=J,G=K,I=X,z=W;if(Y instanceof M){let F=G(I);return Y4(F,F0(V))}else{let{head:N,tail:F}=Y,D=rL(I,N);if(D instanceof E){let B=D[0];if(B instanceof L){let T=B[0];Z=F,J=A(N,V),K=G,X=T,W=z}else return z(I,A(N,V))}else{let B=D[0],T=G(I),P;P=T[0];let S=[P,Q([new o8(B,a8(I),Q([]))])];return Y4(S,F0(V))}}}}function RZ(Z,J,K){return new h1((X)=>{let W=qv(Z,Q([]),J.function,X,(N,F)=>{let D=J.function(N),B;B=D[0];let T=[B,Q([new o8("Field","Nothing",Q([]))])];return Y4(T,F0(F))}),Y,V;Y=W[0],V=W[1];let G=K(Y).function(X),I,z;return I=G[0],z=G[1],[I,_0(V,z)]})}function $(Z,J,K){return RZ(Q([Z]),J,K)}var jZ=void 0,Ky={};function N0(Z){return Z}function E1(Z){return Z.toString()}function J8(Z){if(Z==="")return 0;let J=KK(Z);if(J){let K=0;for(let X of J)K++;return K}else return Z.match(/./gsu).length}function LZ(Z){let J=KK(Z);if(J)return r0.fromArray(Array.from(J).map((K)=>K.segment));else return r0.fromArray(Z.match(/./gsu))}var Yy=void 0;function KK(Z){if(globalThis.Intl&&Intl.Segmenter)return Yy||=new Intl.Segmenter,Yy.segment(Z)[Symbol.iterator]()}function YK(Z){let J,K=KK(Z);if(K)J=K.next().value?.segment;else J=Z.match(/./su)?.[0];if(J)return new E([J,Z.slice(J.length)]);else return new v(jZ)}function x5(Z){return[Z.charCodeAt(0)|0,Z.slice(1)]}function i1(Z){return Z.toLowerCase()}function XK(Z){return Z.toUpperCase()}function FR(Z,J){return r0.fromArray(Z.split(J))}function HR(Z,J,K){if(K<=0||J>=Z.length)return"";let X=KK(Z);if(X){while(J-- >0)X.next();let W="";while(K-- >0){let Y=X.next().value;if(Y===void 0)break;W+=Y.segment}return W}else return Z.match(/./gsu).slice(J,J+K).join("")}function N1(Z,J,K){return Z.slice(J,J+K)}function X4(Z,J){return Z.startsWith(J)}function WK(Z,J){return Z.endsWith(J)}function w5(Z,J){let K=Z.indexOf(J);if(K>=0){let X=Z.slice(0,K),W=Z.slice(K+J.length);return new E([X,W])}else return new v(jZ)}var Vy=[" ","\t",` 2 + `,"\v","\f","\r","ย…","\u2028","\u2029"].join(""),Cv=new RegExp(`^[${Vy}]*`),xv=new RegExp(`[${Vy}]*$`);function Gy(Z){return Z.replace(Cv,"")}function DR(Z){return Z.replace(xv,"")}function U5(Z){console.log(Z)}function $0(){return W1.new()}function tJ(Z){return Z.size}function r8(Z){return r0.fromArray(Z.entries())}function $L(Z,J){return J.delete(Z)}function P0(Z,J){let K=Z.get(J,Ky);if(K===Ky)return new v(jZ);return new E(K)}function gL(Z,J,K){return K.set(Z,J)}function wv(Z){return decodeURIComponent(Z||"")}function Xy(Z){return decodeURIComponent((Z||"").replace("+"," "))}function BR(Z){try{return new E(wv(Z))}catch{return new v(jZ)}}function QK(Z){try{let J=[];for(let K of Z.split("&")){let[X,W]=K.split("=");if(!X)continue;let Y=Xy(X),V=Xy(W);J.push([Y,V])}return new E(r0.fromArray(J))}catch{return new v(jZ)}}function a8(Z){if(typeof Z==="string")return"String";else if(typeof Z==="boolean")return"Bool";else if(Z instanceof e5)return"Result";else if(Z instanceof r0)return"List";else if(Z instanceof xZ)return"BitArray";else if(Z instanceof W1)return"Dict";else if(Number.isInteger(Z))return"Int";else if(Array.isArray(Z))return"Array";else if(typeof Z==="number")return"Float";else if(Z===null)return"Nil";else if(Z===void 0)return"Nil";else{let J=typeof Z;return J.charAt(0).toUpperCase()+J.slice(1)}}function Iy(Z){return new zy().inspect(Z)}function n0(Z){let J=Z.toString().replace("+","");if(J.indexOf(".")>=0)return J;else{let K=J.indexOf("e");if(K>=0)return J.slice(0,K)+".0"+J.slice(K);else return J+".0"}}class zy{#Z=new Set;inspect(Z){let J=typeof Z;if(Z===!0)return"True";if(Z===!1)return"False";if(Z===null)return"//js(null)";if(Z===void 0)return"Nil";if(J==="string")return this.#W(Z);if(J==="bigint"||Number.isInteger(Z))return Z.toString();if(J==="number")return n0(Z);if(Z instanceof uM)return this.#Q(Z);if(Z instanceof xZ)return this.#G(Z);if(Z instanceof RegExp)return`//js(${Z})`;if(Z instanceof Date)return`//js(Date("${Z.toISOString()}"))`;if(Z instanceof globalThis.Error)return`//js(${Z.toString()})`;if(Z instanceof Function){let X=[];for(let W of Array(Z.length).keys())X.push(String.fromCharCode(W+97));return`//fn(${X.join(", ")}) { ... }`}if(this.#Z.size===this.#Z.add(Z).size)return"//js(circular reference)";let K;if(Array.isArray(Z))K=`#(${Z.map((X)=>this.inspect(X)).join(", ")})`;else if(Z instanceof r0)K=this.#J(Z);else if(Z instanceof O)K=this.#Y(Z);else if(Z instanceof W1)K=this.#K(Z);else if(Z instanceof Set)return`//js(Set(${[...Z].map((X)=>this.inspect(X)).join(", ")}))`;else K=this.#X(Z);return this.#Z.delete(Z),K}#X(Z){let J=Object.getPrototypeOf(Z)?.constructor?.name||"Object",K=[];for(let Y of Object.keys(Z))K.push(`${this.inspect(Y)}: ${this.inspect(Z[Y])}`);let X=K.length?" "+K.join(", ")+" ":"";return`//js(${J==="Object"?"":J+" "}{${X}})`}#K(Z){let J="dict.from_list([",K=!0;return Z.forEach((X,W)=>{if(!K)J=J+", ";J=J+"#("+this.inspect(W)+", "+this.inspect(X)+")",K=!1}),J+"])"}#Y(Z){let J=Object.keys(Z).map((K)=>{let X=this.inspect(Z[K]);return isNaN(parseInt(K))?`${K}: ${X}`:X}).join(", ");return J?`${Z.constructor.name}(${J})`:Z.constructor.name}#J(Z){if(Z instanceof M)return"[]";let J='charlist.from_string("',K="[",X=Z;while(X instanceof k1){let W=X.head;if(X=X.tail,K!=="[")K+=", ";if(K+=this.inspect(W),J)if(Number.isInteger(W)&&W>=32&&W<=126)J+=String.fromCharCode(W);else J=null}if(J)return J+'")';else return K+"]"}#W(Z){let J='"';for(let K=0;K<Z.length;K++){let X=Z[K];switch(X){case` 3 + `:J+="\\n";break;case"\r":J+="\\r";break;case"\t":J+="\\t";break;case"\f":J+="\\f";break;case"\\":J+="\\\\";break;case'"':J+="\\\"";break;default:if(X<" "||X>"~"&&X<"ย ")J+="\\u{"+X.charCodeAt(0).toString(16).toUpperCase().padStart(4,"0")+"}";else J+=X}}return J+='"',J}#Q(Z){return`//utfcodepoint(${String.fromCodePoint(Z.value)})`}#G(Z){if(Z.bitSize===0)return"<<>>";let J="<<";for(let K=0;K<Z.byteSize-1;K++)J+=Z.byteAt(K).toString(),J+=", ";if(Z.byteSize*8===Z.bitSize)J+=Z.byteAt(Z.byteSize-1).toString();else{let K=Z.bitSize%8;J+=Z.byteAt(Z.byteSize-1)>>8-K,J+=`:size(${K})`}return J+=">>",J}}function rL(Z,J){if(Z instanceof W1||Z instanceof WeakMap||Z instanceof Map){let X={},W=Z.get(J,X);if(W===X)return new E(new b);return new E(new L(W))}let K=Number.isInteger(J);if(K&&J>=0&&J<8&&Z instanceof r0){let X=0;for(let W of Z){if(X===J)return new E(new L(W));X++}return new v("Indexable")}if(K&&Array.isArray(Z)||Z&&typeof Z==="object"||Z&&Object.getPrototypeOf(Z)===Object.prototype){if(J in Z)return new E(new L(Z[J]));return new E(new b)}return new v(K?"Indexable":"Dict")}function aL(Z,J,K,X,W){if(!(Z instanceof r0||Array.isArray(Z))){let V=new o8("List",a8(Z),W);return[W,r0.fromArray([V])]}let Y=[];for(let V of Z){let G=J(V),[I,z]=G;if(z instanceof k1){let[N,F]=K(G,X.toString());return[W,F]}Y.push(I),X++}return[r0.fromArray(Y),W]}function tL(Z){if(Z instanceof W1)return new E(Z);if(Z instanceof Map||Z instanceof WeakMap)return new E(W1.fromMap(Z));if(Z==null)return new v("Dict");if(typeof Z!=="object")return new v("Dict");let J=Object.getPrototypeOf(Z);if(J===Object.prototype||J===null)return new E(W1.fromObject(Z));return new v("Dict")}function oL(Z){if(typeof Z==="number")return new E(Z);return new v(0)}function eL(Z){if(Number.isInteger(Z))return new E(Z);return new v(0)}function Zy(Z){if(typeof Z==="string")return new E(Z);return new v("")}function Jy(Z){return Z===null||Z===void 0}function VK(Z,J){if(Z>J)return Z;else return J}function Fy(Z,J,K){if(K<=0)return"";else if(J<0){let Y=J8(Z)+J;if(Y<0)return"";else return HR(Z,Y,K)}else return HR(Z,J,K)}function yv(Z,J){while(!0){let K=Z,X=J;if(K instanceof M)return X;else{let W=K.head;Z=K.tail,J=X+W}}}function yZ(Z){return yv(Z,"")}function fv(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof M)return Y;else{let V=X.head;Z=X.tail,J=W,K=Y+W+V}}}function e8(Z,J){if(Z instanceof M)return"";else{let{head:K,tail:X}=Z;return fv(X,J,K)}}function Q4(Z){let K=Gy(Z);return DR(K)}function V4(Z,J){if(J==="")return LZ(Z);else{let X=N0(Z),W=FR(X,J);return I0(W,N0)}}function IK(Z){let K=Iy(Z);return N0(K)}function By(Z){if(Z instanceof E)return!0;else return!1}function OR(Z,J){if(Z instanceof E){let K=Z[0];return new E(J(K))}else return Z}function G4(Z,J){if(Z instanceof E)return Z;else{let K=Z[0];return new v(J(K))}}function j1(Z,J){if(Z instanceof E){let K=Z[0];return J(K)}else return Z}function z8(Z,J){if(Z instanceof E)return Z[0];else return J}function Oy(Z){return E5(Z,(J)=>{return J})}function TR(Z){return JSON.stringify(Z)}function Ty(Z){return Object.fromEntries(Z)}function Z5(Z){return Z}function Py(Z){let J=[];while(wL(Z))J.push(UL(Z)),Z=ML(Z);return J}function Sy(){return null}function Ay(Z){try{let J=JSON.parse(Z);return RL(J)}catch(J){return jL($v(J,Z))}}function $v(Z,J){if(gv(Z))return qy();return _v(Z,J)}function gv(Z){return/((unexpected (end|eof))|(end of data)|(unterminated string)|(json( parse error|\.parse)\: expected '(\:|\}|\])'))/i.test(Z.message)}function _v(Z,J){let K=[mv,uv,cv,dv];for(let X of K){let W=X(Z,J);if(W)return W}return I4("")}function mv(Z){let K=/unexpected token '(.)', ".+" is not valid JSON/i.exec(Z.message);if(!K)return null;let X=zK(K[1]);return I4(X)}function uv(Z){let K=/unexpected token (.) in JSON at position (\d+)/i.exec(Z.message);if(!K)return null;let X=zK(K[1]);return I4(X)}function dv(Z,J){let X=/(unexpected character|expected .*) at line (\d+) column (\d+)/i.exec(Z.message);if(!X)return null;let W=Number(X[2]),Y=Number(X[3]),V=pv(W,Y,J),G=zK(J[V]);return I4(G)}function cv(Z){let K=/unexpected (identifier|token) "(.)"/i.exec(Z.message);if(!K)return null;let X=zK(K[2]);return I4(X)}function zK(Z){return"0x"+Z.charCodeAt(0).toString(16).toUpperCase()}function pv(Z,J,K){if(Z===1)return J-1;let X=1,W=0;return K.split("").find((Y,V)=>{if(Y===` 4 + `)X+=1;if(X===Z)return W=V+J,!0;return!1}),W}class Ey extends O{}var qy=()=>new Ey;class Cy extends O{constructor(Z){super();this[0]=Z}}var I4=(Z)=>new Cy(Z);class xy extends O{constructor(Z){super();this[0]=Z}}function nv(Z,J){return j1(Ay(Z),(K)=>{let X=z0(K,J);return G4(X,(W)=>{return new xy(W)})})}function l1(Z,J){return nv(Z,J)}function R8(Z){return TR(Z)}function c(Z){return Z5(Z)}function s1(Z){return Z5(Z)}function Q1(Z){return Z5(Z)}function wy(Z){return Z5(Z)}function PR(){return Sy()}function h(Z){return Ty(Z)}function Uy(Z){return Py(Z)}function k0(Z,J){let X=I0(Z,J);return Uy(X)}class NK extends O{constructor(Z){super();this.dict=Z}}var lv=void 0;function M5(){return new NK($0())}function z4(Z,J){let K=Z.dict,X=P0(K,J);return By(X)}function My(Z,J){return new NK(I8(Z.dict,J))}function Ry(Z){return U8(Z.dict)}function fZ(Z,J){return new NK(a0(Z.dict,J,lv))}class V0 extends O{constructor(Z,J,K,X,W,Y,V){super();this.scheme=Z,this.userinfo=J,this.host=K,this.port=X,this.path=W,this.query=Y,this.fragment=V}}var rv=new V0(new b,new b,new b,new b,"",new b,new b);function av(Z){return 48>=Z&&Z<=57||65>=Z&&Z<=90||97>=Z&&Z<=122||Z===58||Z===46}function K8(Z,J){return new E(new V0(J.scheme,J.userinfo,J.host,J.port,J.path,J.query,new L(Z)))}function tv(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(Y.startsWith("#"))if(G===0){let I=Y.slice(1);return K8(I,V)}else{let I=Y.slice(1),z=N1(W,0,G),N=new V0(V.scheme,V.userinfo,V.host,V.port,V.path,new L(z),V.fragment);return K8(I,N)}else if(Y==="")return new E(new V0(V.scheme,V.userinfo,V.host,V.port,V.path,new L(W),V.fragment));else{let I=x5(Y),z;z=I[1],Z=W,J=z,K=V,X=G+1}}}function j8(Z,J){return tv(Z,Z,J,0)}function ov(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(Y.startsWith("?")){let I=Y.slice(1),z=N1(W,0,G),N=new V0(V.scheme,V.userinfo,V.host,V.port,z,V.query,V.fragment);return j8(I,N)}else if(Y.startsWith("#")){let I=Y.slice(1),z=N1(W,0,G),N=new V0(V.scheme,V.userinfo,V.host,V.port,z,V.query,V.fragment);return K8(I,N)}else if(Y==="")return new E(new V0(V.scheme,V.userinfo,V.host,V.port,W,V.query,V.fragment));else{let I=x5(Y),z;z=I[1],Z=W,J=z,K=V,X=G+1}}}function j5(Z,J){return ov(Z,Z,J,0)}function N8(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X.startsWith("0"))Z=X.slice(1),J=W,K=Y*10;else if(X.startsWith("1"))Z=X.slice(1),J=W,K=Y*10+1;else if(X.startsWith("2"))Z=X.slice(1),J=W,K=Y*10+2;else if(X.startsWith("3"))Z=X.slice(1),J=W,K=Y*10+3;else if(X.startsWith("4"))Z=X.slice(1),J=W,K=Y*10+4;else if(X.startsWith("5"))Z=X.slice(1),J=W,K=Y*10+5;else if(X.startsWith("6"))Z=X.slice(1),J=W,K=Y*10+6;else if(X.startsWith("7"))Z=X.slice(1),J=W,K=Y*10+7;else if(X.startsWith("8"))Z=X.slice(1),J=W,K=Y*10+8;else if(X.startsWith("9"))Z=X.slice(1),J=W,K=Y*10+9;else if(X.startsWith("?")){let V=X.slice(1),G=new V0(W.scheme,W.userinfo,W.host,new L(Y),W.path,W.query,W.fragment);return j8(V,G)}else if(X.startsWith("#")){let V=X.slice(1),G=new V0(W.scheme,W.userinfo,W.host,new L(Y),W.path,W.query,W.fragment);return K8(V,G)}else if(X.startsWith("/")){let V=new V0(W.scheme,W.userinfo,W.host,new L(Y),W.path,W.query,W.fragment);return j5(X,V)}else if(X==="")return new E(new V0(W.scheme,W.userinfo,W.host,new L(Y),W.path,W.query,W.fragment));else return new v(void 0)}}function FK(Z,J){if(Z.startsWith(":0")){let K=Z.slice(2);return N8(K,J,0)}else if(Z.startsWith(":1")){let K=Z.slice(2);return N8(K,J,1)}else if(Z.startsWith(":2")){let K=Z.slice(2);return N8(K,J,2)}else if(Z.startsWith(":3")){let K=Z.slice(2);return N8(K,J,3)}else if(Z.startsWith(":4")){let K=Z.slice(2);return N8(K,J,4)}else if(Z.startsWith(":5")){let K=Z.slice(2);return N8(K,J,5)}else if(Z.startsWith(":6")){let K=Z.slice(2);return N8(K,J,6)}else if(Z.startsWith(":7")){let K=Z.slice(2);return N8(K,J,7)}else if(Z.startsWith(":8")){let K=Z.slice(2);return N8(K,J,8)}else if(Z.startsWith(":9")){let K=Z.slice(2);return N8(K,J,9)}else if(Z===":")return new E(J);else if(Z==="")return new E(J);else if(Z.startsWith("?")){let K=Z.slice(1);return j8(K,J)}else if(Z.startsWith(":?")){let K=Z.slice(2);return j8(K,J)}else if(Z.startsWith("#")){let K=Z.slice(1);return K8(K,J)}else if(Z.startsWith(":#")){let K=Z.slice(2);return K8(K,J)}else if(Z.startsWith("/"))return j5(Z,J);else if(Z.startsWith(":")){let K=Z.slice(1);if(K.startsWith("/"))return j5(K,J);else return new v(void 0)}else return new v(void 0)}function jy(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(Y==="")return new E(new V0(V.scheme,V.userinfo,new L(W),V.port,V.path,V.query,V.fragment));else if(Y.startsWith(":")){let I=N1(W,0,G),z=new V0(V.scheme,V.userinfo,new L(I),V.port,V.path,V.query,V.fragment);return FK(Y,z)}else if(Y.startsWith("/")){let I=N1(W,0,G),z=new V0(V.scheme,V.userinfo,new L(I),V.port,V.path,V.query,V.fragment);return j5(Y,z)}else if(Y.startsWith("?")){let I=Y.slice(1),z=N1(W,0,G),N=new V0(V.scheme,V.userinfo,new L(z),V.port,V.path,V.query,V.fragment);return j8(I,N)}else if(Y.startsWith("#")){let I=Y.slice(1),z=N1(W,0,G),N=new V0(V.scheme,V.userinfo,new L(z),V.port,V.path,V.query,V.fragment);return K8(I,N)}else{let I=x5(Y),z;z=I[1],Z=W,J=z,K=V,X=G+1}}}function ev(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(Y==="")return new E(new V0(V.scheme,V.userinfo,new L(Y),V.port,V.path,V.query,V.fragment));else if(Y.startsWith("]"))if(G===0){let I=Y.slice(1);return FK(I,V)}else{let I=Y.slice(1),z=N1(W,0,G+1),N=new V0(V.scheme,V.userinfo,new L(z),V.port,V.path,V.query,V.fragment);return FK(I,N)}else if(Y.startsWith("/"))if(G===0)return j5(Y,V);else{let I=N1(W,0,G),z=new V0(V.scheme,V.userinfo,new L(I),V.port,V.path,V.query,V.fragment);return j5(Y,z)}else if(Y.startsWith("?"))if(G===0){let I=Y.slice(1);return j8(I,V)}else{let I=Y.slice(1),z=N1(W,0,G),N=new V0(V.scheme,V.userinfo,new L(z),V.port,V.path,V.query,V.fragment);return j8(I,N)}else if(Y.startsWith("#"))if(G===0){let I=Y.slice(1);return K8(I,V)}else{let I=Y.slice(1),z=N1(W,0,G),N=new V0(V.scheme,V.userinfo,new L(z),V.port,V.path,V.query,V.fragment);return K8(I,N)}else{let I=x5(Y),z,N;if(z=I[0],N=I[1],av(z))Z=W,J=N,K=V,X=G+1;else return jy(W,W,V,0)}}}function Z$(Z,J){return ev(Z,Z,J,0)}function J$(Z,J){return jy(Z,Z,J,0)}function N4(Z,J){if(Z.startsWith("["))return Z$(Z,J);else if(Z.startsWith(":")){let K=new V0(J.scheme,J.userinfo,new L(""),J.port,J.path,J.query,J.fragment);return FK(Z,K)}else if(Z==="")return new E(new V0(J.scheme,J.userinfo,new L(""),J.port,J.path,J.query,J.fragment));else return J$(Z,J)}function K$(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(Y.startsWith("@"))if(G===0){let I=Y.slice(1);return N4(I,V)}else{let I=Y.slice(1),z=N1(W,0,G),N=new V0(V.scheme,new L(z),V.host,V.port,V.path,V.query,V.fragment);return N4(I,N)}else if(Y==="")return N4(W,V);else if(Y.startsWith("/"))return N4(W,V);else if(Y.startsWith("?"))return N4(W,V);else if(Y.startsWith("#"))return N4(W,V);else{let I=x5(Y),z;z=I[1],Z=W,J=z,K=V,X=G+1}}}function Y$(Z,J){return K$(Z,Z,J,0)}function SR(Z,J){if(Z==="//")return new E(new V0(J.scheme,J.userinfo,new L(""),J.port,J.path,J.query,J.fragment));else if(Z.startsWith("//")){let K=Z.slice(2);return Y$(K,J)}else return j5(Z,J)}function X$(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(Y.startsWith("/"))if(G===0)return SR(Y,V);else{let I=N1(W,0,G),z=new V0(new L(i1(I)),V.userinfo,V.host,V.port,V.path,V.query,V.fragment);return SR(Y,z)}else if(Y.startsWith("?"))if(G===0){let I=Y.slice(1);return j8(I,V)}else{let I=Y.slice(1),z=N1(W,0,G),N=new V0(new L(i1(z)),V.userinfo,V.host,V.port,V.path,V.query,V.fragment);return j8(I,N)}else if(Y.startsWith("#"))if(G===0){let I=Y.slice(1);return K8(I,V)}else{let I=Y.slice(1),z=N1(W,0,G),N=new V0(new L(i1(z)),V.userinfo,V.host,V.port,V.path,V.query,V.fragment);return K8(I,N)}else if(Y.startsWith(":"))if(G===0)return new v(void 0);else{let I=Y.slice(1),z=N1(W,0,G),N=new V0(new L(i1(z)),V.userinfo,V.host,V.port,V.path,V.query,V.fragment);return SR(I,N)}else if(Y==="")return new E(new V0(V.scheme,V.userinfo,V.host,V.port,W,V.query,V.fragment));else{let I=x5(Y),z;z=I[1],Z=W,J=z,K=V,X=G+1}}}function HK(Z){let J,K=Z.fragment;if(K instanceof L){let w=K[0];J=Q(["#",w])}else J=Q([]);let X=J,W,Y=Z.query;if(Y instanceof L){let w=Y[0];W=A("?",A(w,X))}else W=X;let V=W,G=A(Z.path,V),I,z=Z.host,N=X4(Z.path,"/");if(z instanceof L&&!N)if(z[0]!=="")I=A("/",G);else I=G;else I=G;let F=I,D,B=Z.host,T=Z.port;if(B instanceof L&&T instanceof L){let w=T[0];D=A(":",A(E1(w),F))}else D=F;let P=D,S,q=Z.scheme,x=Z.userinfo,U=Z.host;if(q instanceof L)if(x instanceof L)if(U instanceof L){let w=q[0],f=x[0],g=U[0];S=A(w,A("://",A(f,A("@",A(g,P)))))}else{let w=q[0];S=A(w,A(":",P))}else if(U instanceof L){let w=q[0],f=U[0];S=A(w,A("://",A(f,P)))}else{let w=q[0];S=A(w,A(":",P))}else if(x instanceof b&&U instanceof L){let w=U[0];S=A("//",A(w,P))}else S=P;return yZ(S)}function AR(Z){return X$(Z,Z,rv,0)}function F4(Z,J,K){if(Z)return J;else return K()}function S0(Z){return Z}var r1=()=>globalThis?.document,BK="http://www.w3.org/1999/xhtml",OK=1,CR=3;var ky=!!globalThis.HTMLElement?.prototype?.moveBefore;var e=Q([]),TK=new b;var G$=new w8,I$=new Z1,z$=new J1;function PK(Z,J){if(Z.name===J.name)return z$;else if(Z.name<J.name)return I$;else return G$}class a1 extends O{constructor(Z,J,K){super();this.kind=Z,this.name=J,this.value=K}}class kZ extends O{constructor(Z,J,K){super();this.kind=Z,this.name=J,this.value=K}}class T1 extends O{constructor(Z,J,K,X,W,Y,V,G){super();this.kind=Z,this.name=J,this.handler=K,this.include=X,this.prevent_default=W,this.stop_propagation=Y,this.debounce=V,this.throttle=G}}class bZ extends O{constructor(Z,J,K){super();this.prevent_default=Z,this.stop_propagation=J,this.message=K}}class gy extends O{constructor(Z){super();this.kind=Z}}class _y extends O{constructor(Z){super();this.kind=Z}}var wR=0,UR=1,MR=2,RR=0,jR=new gy(RR);var SK=2,my=new _y(SK);function O$(Z,J){while(!0){let K=Z,X=J;if(K instanceof M)return X;else{let W=K.head;if(W instanceof a1){let Y=W.name;if(Y==="")Z=K.tail,J=X;else if(Y==="class"){let V=W.value;if(V==="")Z=K.tail,J=X;else{let G=K.tail;if(G instanceof M){let I=W;Z=G,J=A(I,X)}else{let I=G.head;if(I instanceof a1)if(I.name==="class"){let N=W.kind,F=V,D=G.tail,B=I.value,T=F+" "+B,P=new a1(N,"class",T);Z=A(P,D),J=X}else{let N=W;Z=G,J=A(N,X)}else{let z=W;Z=G,J=A(z,X)}}}}else if(Y==="style"){let V=W.value;if(V==="")Z=K.tail,J=X;else{let G=K.tail;if(G instanceof M){let I=W;Z=G,J=A(I,X)}else{let I=G.head;if(I instanceof a1)if(I.name==="style"){let N=W.kind,F=V,D=G.tail,B=I.value,T=F+";"+B,P=new a1(N,"style",T);Z=A(P,D),J=X}else{let N=W;Z=G,J=A(N,X)}else{let z=W;Z=G,J=A(z,X)}}}}else{let V=W;Z=K.tail,J=A(V,X)}}else{let Y=W;Z=K.tail,J=A(Y,X)}}}}function uy(Z){if(Z instanceof M)return Z;else if(Z.tail instanceof M)return Z;else{let X=QR(Z,(W,Y)=>{return PK(Y,W)});return O$(X,e)}}function dy(Z,J){return new a1(wR,Z,J)}function cy(Z,J){return new kZ(UR,Z,J)}function py(Z,J,K,X,W,Y,V){return new T1(MR,Z,J,K,X,W,Y,V)}function j(Z,J){return dy(Z,J)}function LR(Z,J){return cy(Z,J)}function yR(Z,J){if(J)return j(Z,"");else return LR(Z,s1(!1))}function H(Z){return j("class",Z)}function H8(Z){return j("id",Z)}function v1(Z){return j("href",Z)}function ny(Z){return j("alt",Z)}function iy(Z){return j("src",Z)}function L5(Z){return j("action",Z)}function y5(Z){return j("method",Z)}function ly(Z){return j("accept",e8(Z,","))}function hZ(Z){return yR("disabled",Z)}function sy(Z){return j("name",Z)}function V1(Z){return j("placeholder",Z)}function K5(Z){return yR("required",Z)}function fR(Z){return yR("selected",Z)}function C0(Z){return j("type",Z)}function i0(Z){return j("value",Z)}class vZ extends O{constructor(Z,J,K){super();this.synchronous=Z,this.before_paint=J,this.after_paint=K}}class bR extends O{constructor(Z,J,K,X,W){super();this.dispatch=Z,this.emit=J,this.select=K,this.root=X,this.provide=W}}var AK=new vZ(Q([]),Q([]),Q([]));function T$(Z,J,K){return}function P$(Z,J){return new bR((K)=>{return Z.dispatch(J(K))},Z.emit,(K)=>{return T$(Z,K,J)},Z.root,Z.provide)}function kR(Z,J){return I0(Z,(K)=>{return(X)=>{return K(P$(X,J))}})}function hR(Z,J){return new vZ(kR(Z.synchronous,J),kR(Z.before_paint,J),kR(Z.after_paint,J))}function ry(Z,J,K,X,W,Y){let V=new bR(J,K,X,W,Y);return cL(Z.synchronous,(G)=>{return G(V)})}function i(){return AK}function F1(Z){return new vZ(Q([(K)=>{let X=K.dispatch;return Z(X)}]),AK.before_paint,AK.after_paint)}function G1(Z){return g0(Z,AK,(J,K)=>{return new vZ(g0(K.synchronous,J.synchronous,ZK),g0(K.before_paint,J.before_paint,ZK),g0(K.after_paint,J.after_paint,ZK))})}function C1(){return null}function $Z(Z,J){let K=Z?.get(J);if(K!=null)return new E(K);else return new v(void 0)}function gZ(Z,J){return Z&&Z.has(J)}function f5(Z,J,K){return Z??=new Map,Z.set(J,K),Z}function vR(Z,J){return Z?.delete(J),Z}class $R extends O{}class gR extends O{constructor(Z,J){super();this.key=Z,this.parent=J}}class ay extends O{constructor(Z,J){super();this.index=Z,this.parent=J}}var D4=new $R,mZ="\t",_R=` 5 + `;function S$(Z,J){while(!0){let K=Z,X=J;if(X instanceof M)return!1;else{let{head:W,tail:Y}=X,V=X4(K,W);if(V)return V;else Z=K,J=Y}}}function o1(Z,J,K){if(K==="")return new ay(J,Z);else return new gR(K,Z)}function ty(Z,J){while(!0){let K=Z,X=J;if(K instanceof $R)if(X instanceof M)return"";else{let W=X.tail;return yZ(W)}else if(K instanceof gR){let W=K.key;Z=K.parent,J=A(mZ,A(W,X))}else{let W=K.index;Z=K.parent,J=A(mZ,A(E1(W),X))}}}function oy(Z){return ty(Z,Q([]))}function ey(Z,J){if(J instanceof M)return!1;else return S$(oy(Z),J)}function mR(Z,J){return ty(Z,Q([_R,J]))}class L1 extends O{constructor(Z,J,K,X,W){super();this.kind=Z,this.key=J,this.mapper=K,this.children=X,this.keyed_children=W}}class x1 extends O{constructor(Z,J,K,X,W,Y,V,G,I,z){super();this.kind=Z,this.key=J,this.mapper=K,this.namespace=X,this.tag=W,this.attributes=Y,this.children=V,this.keyed_children=G,this.self_closing=I,this.void=z}}class $1 extends O{constructor(Z,J,K,X){super();this.kind=Z,this.key=J,this.mapper=K,this.content=X}}class Y5 extends O{constructor(Z,J,K,X,W,Y,V){super();this.kind=Z,this.key=J,this.mapper=K,this.namespace=X,this.tag=W,this.attributes=Y,this.inner_html=V}}var Y8=0,k5=1,B4=2,Zf=3;function O4(Z,J){if(J==="")if(Z==="area")return!0;else if(Z==="base")return!0;else if(Z==="br")return!0;else if(Z==="col")return!0;else if(Z==="embed")return!0;else if(Z==="hr")return!0;else if(Z==="img")return!0;else if(Z==="input")return!0;else if(Z==="link")return!0;else if(Z==="meta")return!0;else if(Z==="param")return!0;else if(Z==="source")return!0;else if(Z==="track")return!0;else if(Z==="wbr")return!0;else return!1;else return!1}function Jf(Z,J){if(J instanceof L1)return new L1(J.kind,Z,J.mapper,J.children,J.keyed_children);else if(J instanceof x1)return new x1(J.kind,Z,J.mapper,J.namespace,J.tag,J.attributes,J.children,J.keyed_children,J.self_closing,J.void);else if(J instanceof $1)return new $1(J.kind,Z,J.mapper,J.content);else return new Y5(J.kind,Z,J.mapper,J.namespace,J.tag,J.attributes,J.inner_html)}function EK(Z,J,K,X){return new L1(Y8,Z,J,K,X)}function T4(Z,J,K,X,W,Y,V,G,I){return new x1(k5,Z,J,K,X,uy(W),Y,V,G,I)}function uR(Z,J,K){return new $1(B4,Z,J,K)}var dR=(Z,J)=>Z===J,X8=(Z,J)=>{if(Z===J)return!0;if(Z==null||J==null)return!1;let K=typeof Z;if(K!==typeof J)return!1;if(K!=="object")return!1;if(Z.constructor!==J.constructor)return!1;if(Array.isArray(Z))return E$(Z,J);return C$(Z,J)},E$=(Z,J)=>{let K=Z.length;if(K!==J.length)return!1;while(K--)if(!X8(Z[K],J[K]))return!1;return!0},C$=(Z,J)=>{let K=Object.keys(Z),X=K.length;if(Object.keys(J).length!==X)return!1;while(X--){let W=K[X];if(!Object.hasOwn(J,W))return!1;if(!X8(Z[W],J[W]))return!1}return!0};class f8 extends O{constructor(Z,J,K){super();this.handlers=Z,this.dispatched_paths=J,this.next_dispatched_paths=K}}class nR extends O{constructor(Z,J){super();this.path=Z,this.handler=J}}class cR extends O{constructor(Z){super();this.path=Z}}function iR(){return new f8(C1(),e,e)}function Wf(Z){return new f8(Z.handlers,Z.next_dispatched_paths,e)}function Qf(Z,J,K){return vR(Z,mR(J,K))}function CK(Z,J,K){let X=Qf(Z.handlers,J,K);return new f8(X,Z.dispatched_paths,Z.next_dispatched_paths)}function Kf(Z,J,K){return g0(K,Z,(X,W)=>{if(W instanceof T1){let Y=W.name;return Qf(X,J,Y)}else return X})}function lR(Z,J,K,X){let W=$Z(Z.handlers,J+_R+K);if(W instanceof E){let Y=W[0],V=z0(X,Y);if(V instanceof E){let G=V[0];return new nR(J,G)}else return new cR(J)}else return new cR(J)}function sR(Z,J){let K=A(J.path,Z.next_dispatched_paths),X=new f8(Z.handlers,Z.dispatched_paths,K);if(J instanceof nR){let W=J.handler;return[X,new E(W)]}else return[X,new v(void 0)]}function xK(Z,J,K,X){let W=lR(Z,J,K,X);return((Y)=>{return sR(Z,Y)})(W)}function wK(Z,J){return ey(J,Z.dispatched_paths)}function Vf(Z,J,K,X,W){return f5(Z,mR(K,X),C5(W,(Y)=>{return new bZ(Y.prevent_default,Y.stop_propagation,S0(J)(Y.message))}))}function P4(Z,J,K,X,W){let Y=Vf(Z.handlers,J,K,X,W);return new f8(Y,Z.dispatched_paths,Z.next_dispatched_paths)}function Yf(Z,J,K,X){return g0(X,Z,(W,Y)=>{if(Y instanceof T1){let{name:V,handler:G}=Y;return Vf(W,J,K,V,G)}else return W})}function y8(Z,J){let K=dR(Z,S0);if(dR(J,S0))return Z;else if(K)return J;else return(W)=>{return Z(J(W))}}function Xf(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(G instanceof M)return W;else{let{head:I,tail:z}=G;Z=Gf(W,Y,V,I),J=Y,K=V+1,X=z}}}function Gf(Z,J,K,X){if(X instanceof L1){let W=X.children,Y=o1(J,K,X.key);return Xf(Z,Y,0,W)}else if(X instanceof x1){let{attributes:W,children:Y}=X,V=o1(J,K,X.key),I=Kf(Z,V,W);return Xf(I,V,0,Y)}else if(X instanceof $1)return Z;else{let W=X.attributes,Y=o1(J,K,X.key);return Kf(Z,Y,W)}}function k8(Z,J,K,X){let W=Gf(Z.handlers,J,K,X);return new f8(W,Z.dispatched_paths,Z.next_dispatched_paths)}function pR(Z,J,K,X,W){while(!0){let Y=Z,V=J,G=K,I=X,z=W;if(z instanceof M)return Y;else{let{head:N,tail:F}=z;Z=If(Y,V,G,I,N),J=V,K=G,X=I+1,W=F}}}function If(Z,J,K,X,W){if(W instanceof L1){let Y=W.children,V=o1(K,X,W.key),G=y8(J,W.mapper);return pR(Z,G,V,0,Y)}else if(W instanceof x1){let{attributes:Y,children:V}=W,G=o1(K,X,W.key),I=y8(J,W.mapper),N=Yf(Z,I,G,Y);return pR(N,I,G,0,V)}else if(W instanceof $1)return Z;else{let Y=W.attributes,V=o1(K,X,W.key),G=y8(J,W.mapper);return Yf(Z,G,V,Y)}}function b8(Z,J,K,X,W){let Y=If(Z.handlers,J,K,X,W);return new f8(Y,Z.dispatched_paths,Z.next_dispatched_paths)}function rR(Z){return b8(iR(),S0,D4,0,Z)}function zf(Z,J,K,X,W){let Y=pR(Z.handlers,J,K,X,W);return new f8(Y,Z.dispatched_paths,Z.next_dispatched_paths)}function y0(Z,J,K){return T4("",S0,"",Z,J,K,C1(),!1,O4(Z,""))}function g1(Z,J,K,X){return T4("",S0,Z,J,K,X,C1(),!1,O4(J,Z))}function C(Z){return uR("",S0,Z)}function H0(){return uR("",S0,"")}function Nf(Z){return EK("",S0,Z,C1())}function uZ(Z,J){let K=S0(y8(S0(J),Z.mapper));if(Z instanceof L1){let{children:X,keyed_children:W}=Z;return new L1(Z.kind,Z.key,K,S0(X),S0(W))}else if(Z instanceof x1){let{attributes:X,children:W,keyed_children:Y}=Z;return new x1(Z.kind,Z.key,K,Z.namespace,Z.tag,S0(X),S0(W),S0(Y),Z.self_closing,Z.void)}else if(Z instanceof $1)return S0(Z);else{let X=Z.attributes;return new Y5(Z.kind,Z.key,K,Z.namespace,Z.tag,S0(X),Z.inner_html)}}function o0(Z){return C(Z)}function _1(Z,J){return y0("h1",Z,J)}function D8(Z,J){return y0("h2",Z,J)}function h5(Z,J){return y0("h3",Z,J)}function R(Z,J){return y0("div",Z,J)}function h8(Z,J){return y0("li",Z,J)}function D0(Z,J){return y0("p",Z,J)}function UK(Z,J){return y0("pre",Z,J)}function S4(Z,J){return y0("ul",Z,J)}function m1(Z,J){return y0("a",Z,J)}function v8(Z,J){return y0("code",Z,J)}function p(Z,J){return y0("span",Z,J)}function Ff(Z){return y0("img",Z,e)}function A0(Z,J){return y0("button",Z,J)}function $8(Z,J){return y0("form",Z,J)}function s0(Z){return y0("input",Z,e)}function m0(Z,J){return y0("label",Z,J)}function aR(Z,J){return y0("option",Z,Q([C(J)]))}function Hf(Z,J){return y0("select",Z,J)}function tR(Z,J){return y0("textarea",A(LR("value",c(J)),Z),Q([C(J)]))}function Df(Z,J){return y0("details",Z,J)}function Bf(Z,J){return y0("summary",Z,J)}class dZ extends O{constructor(Z,J,K,X){super();this.index=Z,this.removed=J,this.changes=K,this.children=X}}class Of extends O{constructor(Z,J){super();this.kind=Z,this.content=J}}class Tf extends O{constructor(Z,J){super();this.kind=Z,this.inner_html=J}}class Pf extends O{constructor(Z,J,K){super();this.kind=Z,this.added=J,this.removed=K}}class Sf extends O{constructor(Z,J,K){super();this.kind=Z,this.key=J,this.before=K}}class Af extends O{constructor(Z,J,K){super();this.kind=Z,this.index=J,this.with=K}}class qf extends O{constructor(Z,J){super();this.kind=Z,this.index=J}}class Ef extends O{constructor(Z,J,K){super();this.kind=Z,this.children=J,this.before=K}}var oR=0,eR=1,Zj=2,Jj=3,Kj=4,Yj=5,Xj=6;function Wj(Z,J,K,X){return new dZ(Z,J,K,X)}function Cf(Z){return new Of(oR,Z)}function xf(Z){return new Tf(eR,Z)}function Qj(Z,J){return new Pf(Zj,Z,J)}function wf(Z,J){return new Sf(Jj,Z,J)}function Uf(Z){return new qf(Kj,Z)}function v5(Z,J){return new Af(Yj,Z,J)}function Vj(Z,J){return new Ef(Xj,Z,J)}class Rf extends O{constructor(Z,J,K,X,W,Y,V,G){super();this.kind=Z,this.open_shadow_root=J,this.will_adopt_styles=K,this.observed_attributes=X,this.observed_properties=W,this.requested_contexts=Y,this.provided_contexts=V,this.vdom=G}}class jf extends O{constructor(Z,J){super();this.kind=Z,this.patch=J}}class Lf extends O{constructor(Z,J,K){super();this.kind=Z,this.name=J,this.data=K}}class yf extends O{constructor(Z,J,K){super();this.kind=Z,this.key=J,this.value=K}}class MK extends O{constructor(Z,J){super();this.kind=Z,this.messages=J}}class RK extends O{constructor(Z,J,K){super();this.kind=Z,this.name=J,this.value=K}}class jK extends O{constructor(Z,J,K){super();this.kind=Z,this.name=J,this.value=K}}class LK extends O{constructor(Z,J,K,X){super();this.kind=Z,this.path=J,this.name=K,this.event=X}}class Gj extends O{constructor(Z,J,K){super();this.kind=Z,this.key=J,this.value=K}}var U$=0,M$=1,R$=2,j$=3;function ff(Z,J,K,X,W,Y,V){return new Rf(U$,Z,J,K,X,W,Y,V)}function Ij(Z){return new jf(M$,Z)}function kf(Z,J){return new Lf(R$,Z,J)}function bf(Z,J){return new yf(j$,Z,J)}class yK extends O{constructor(Z,J){super();this.patch=Z,this.events=J}}class $f extends O{constructor(Z,J,K){super();this.added=Z,this.removed=J,this.events=K}}function L$(Z,J,K,X){if(K==="input"&&J==="")return wK(Z,X);else if(K==="select"&&J==="")return wK(Z,X);else if(K==="textarea"&&J==="")return wK(Z,X);else return!1}function vf(Z,J,K,X,W,Y,V,G){while(!0){let I=Z,z=J,N=K,F=X,D=W,B=Y,T=V,P=G;if(D instanceof M)if(B instanceof M)return new $f(T,P,F);else{let S=B.head;if(S instanceof T1){let q=S,x=B.tail,U=S.name,k=S.handler,w=A(q,T),f=P4(F,N,z,U,k);Z=I,J=z,K=N,X=f,W=D,Y=x,V=w,G=P}else{let q=S,x=B.tail,U=A(q,T);Z=I,J=z,K=N,X=F,W=D,Y=x,V=U,G=P}}else if(B instanceof M){let S=D.head;if(S instanceof T1){let q=S,x=D.tail,U=S.name,k=A(q,P),w=CK(F,z,U);Z=I,J=z,K=N,X=w,W=x,Y=B,V=T,G=k}else{let q=S,x=D.tail,U=A(q,P);Z=I,J=z,K=N,X=F,W=x,Y=B,V=T,G=U}}else{let{head:S,tail:q}=D,x=B.head,U=B.tail,k=PK(S,x);if(k instanceof Z1)if(S instanceof T1){let w=S.name,f=A(S,P),g=CK(F,z,w);Z=I,J=z,K=N,X=g,W=q,Y=B,V=T,G=f}else{let w=A(S,P);Z=I,J=z,K=N,X=F,W=q,Y=B,V=T,G=w}else if(k instanceof J1)if(S instanceof a1)if(x instanceof a1){let w,f=x.name;if(f==="value")w=I||S.value!==x.value;else if(f==="checked")w=I||S.value!==x.value;else if(f==="selected")w=I||S.value!==x.value;else w=S.value!==x.value;let g=w,d;if(g)d=A(x,T);else d=T;let n=d;Z=I,J=z,K=N,X=F,W=q,Y=U,V=n,G=P}else if(x instanceof T1){let{name:w,handler:f}=x,g=A(x,T),d=A(S,P),n=P4(F,N,z,w,f);Z=I,J=z,K=N,X=n,W=q,Y=U,V=g,G=d}else{let w=A(x,T),f=A(S,P);Z=I,J=z,K=N,X=F,W=q,Y=U,V=w,G=f}else if(S instanceof kZ)if(x instanceof kZ){let w,f=x.name;if(f==="scrollLeft")w=!0;else if(f==="scrollRight")w=!0;else if(f==="value")w=I||!X8(S.value,x.value);else if(f==="checked")w=I||!X8(S.value,x.value);else if(f==="selected")w=I||!X8(S.value,x.value);else w=!X8(S.value,x.value);let g=w,d;if(g)d=A(x,T);else d=T;let n=d;Z=I,J=z,K=N,X=F,W=q,Y=U,V=n,G=P}else if(x instanceof T1){let{name:w,handler:f}=x,g=A(x,T),d=A(S,P),n=P4(F,N,z,w,f);Z=I,J=z,K=N,X=n,W=q,Y=U,V=g,G=d}else{let w=A(x,T),f=A(S,P);Z=I,J=z,K=N,X=F,W=q,Y=U,V=w,G=f}else if(x instanceof T1){let{name:w,handler:f}=x,g=S.prevent_default.kind!==x.prevent_default.kind||S.stop_propagation.kind!==x.stop_propagation.kind||S.debounce!==x.debounce||S.throttle!==x.throttle,d;if(g)d=A(x,T);else d=T;let n=d,r=P4(F,N,z,w,f);Z=I,J=z,K=N,X=r,W=q,Y=U,V=n,G=P}else{let w=S.name,f=A(x,T),g=A(S,P),d=CK(F,z,w);Z=I,J=z,K=N,X=d,W=q,Y=U,V=f,G=g}else if(x instanceof T1){let{name:w,handler:f}=x,g=A(x,T),d=P4(F,N,z,w,f);Z=I,J=z,K=N,X=d,W=D,Y=U,V=g,G=P}else{let w=A(x,T);Z=I,J=z,K=N,X=F,W=D,Y=U,V=w,G=P}}}}function zj(Z,J,K,X,W,Y,V,G,I,z,N,F,D,B){while(!0){let T=Z,P=J,S=K,q=X,x=W,U=Y,k=V,w=G,f=I,g=z,d=N,n=F,r=D,X0=B;if(T instanceof M)if(S instanceof M)return new yK(new dZ(f,k,d,n),X0);else{let T0=zf(X0,r,g,w,S),b0=Vj(S,w-U),G0=A(b0,d);return new yK(new dZ(f,k,G0,n),T0)}else if(S instanceof M){let{head:T0,tail:b0}=T,G0;if(T0.key===""||!gZ(x,T0.key))G0=k+1;else G0=k;let Q0=G0,J0=k8(X0,g,w,T0);Z=b0,J=P,K=S,X=q,W=x,Y=U,V=Q0,G=w,I=f,z=g,N=d,F=n,D=r,B=J0}else{let T0=T.head,b0=S.head;if(T0.key!==b0.key){let G0=T.tail,B0=S.tail,Q0=$Z(P,b0.key);if(gZ(q,T0.key))if(Q0 instanceof E){let Z0=Q0[0];if(gZ(x,T0.key))Z=G0,J=P,K=S,X=q,W=x,Y=U-1,V=k,G=w,I=f,z=g,N=d,F=n,D=r,B=X0;else{let y=w-U,_=A(wf(b0.key,y),d),t=f5(x,b0.key,void 0),o=U+1;Z=A(Z0,T),J=P,K=S,X=q,W=t,Y=o,V=k,G=w,I=f,z=g,N=_,F=n,D=r,B=X0}}else{let Z0=w-U,m=b8(X0,r,g,w,b0),y=Vj(Q([b0]),Z0),_=A(y,d);Z=T,J=P,K=B0,X=q,W=x,Y=U+1,V=k,G=w+1,I=f,z=g,N=_,F=n,D=r,B=m}else if(Q0 instanceof E){let Z0=w-U,m=A(Uf(Z0),d),y=k8(X0,g,w,T0),_=U-1;Z=G0,J=P,K=S,X=q,W=x,Y=_,V=k,G=w,I=f,z=g,N=m,F=n,D=r,B=y}else{let Z0=v5(w-U,b0),m,_=k8(X0,g,w,T0);m=b8(_,r,g,w,b0);let t=m;Z=G0,J=P,K=B0,X=q,W=x,Y=U,V=k,G=w+1,I=f,z=g,N=A(Z0,d),F=n,D=r,B=t}}else{let G0=T.head;if(G0 instanceof L1){let B0=S.head;if(B0 instanceof L1){let Q0=G0,J0=T.tail,Z0=B0,m=S.tail,y=y8(r,Z0.mapper),_=o1(g,w,Z0.key),t=zj(Q0.children,Q0.keyed_children,Z0.children,Z0.keyed_children,C1(),0,0,0,w,_,e,e,y,X0),o,Y0=t.patch;if(Y0.changes instanceof M)if(Y0.children instanceof M)if(Y0.removed===0)o=n;else o=A(t.patch,n);else o=A(t.patch,n);else o=A(t.patch,n);let M0=o;Z=J0,J=P,K=m,X=q,W=x,Y=U,V=k,G=w+1,I=f,z=g,N=d,F=M0,D=r,B=t.events}else{let Q0=G0,J0=T.tail,Z0=B0,m=S.tail,y=v5(w-U,Z0),_,o=k8(X0,g,w,Q0);_=b8(o,r,g,w,Z0);let Y0=_;Z=J0,J=P,K=m,X=q,W=x,Y=U,V=k,G=w+1,I=f,z=g,N=A(y,d),F=n,D=r,B=Y0}}else if(G0 instanceof x1){let B0=S.head;if(B0 instanceof x1){let Q0=G0,J0=B0;if(Q0.namespace===J0.namespace&&Q0.tag===J0.tag){let Z0=T.tail,m=S.tail,y=y8(r,J0.mapper),_=o1(g,w,J0.key),t=L$(X0,J0.namespace,J0.tag,_),o=vf(t,_,y,X0,Q0.attributes,J0.attributes,e,e),Y0,j0,M0;Y0=o.added,j0=o.removed,M0=o.events;let h0;if(Y0 instanceof M&&j0 instanceof M)h0=e;else h0=Q([Qj(Y0,j0)]);let D1=h0,S1=zj(Q0.children,Q0.keyed_children,J0.children,J0.keyed_children,C1(),0,0,0,w,_,D1,e,y,M0),A1,M1=S1.patch;if(M1.changes instanceof M)if(M1.children instanceof M)if(M1.removed===0)A1=n;else A1=A(S1.patch,n);else A1=A(S1.patch,n);else A1=A(S1.patch,n);let x8=A1;Z=Z0,J=P,K=m,X=q,W=x,Y=U,V=k,G=w+1,I=f,z=g,N=d,F=x8,D=r,B=S1.events}else{let Z0=G0,m=T.tail,y=B0,_=S.tail,t=v5(w-U,y),o,j0=k8(X0,g,w,Z0);o=b8(j0,r,g,w,y);let M0=o;Z=m,J=P,K=_,X=q,W=x,Y=U,V=k,G=w+1,I=f,z=g,N=A(t,d),F=n,D=r,B=M0}}else{let Q0=G0,J0=T.tail,Z0=B0,m=S.tail,y=v5(w-U,Z0),_,o=k8(X0,g,w,Q0);_=b8(o,r,g,w,Z0);let Y0=_;Z=J0,J=P,K=m,X=q,W=x,Y=U,V=k,G=w+1,I=f,z=g,N=A(y,d),F=n,D=r,B=Y0}}else if(G0 instanceof $1){let B0=S.head;if(B0 instanceof $1){let Q0=G0,J0=B0;if(Q0.content===J0.content){let Z0=T.tail,m=S.tail;Z=Z0,J=P,K=m,X=q,W=x,Y=U,V=k,G=w+1,I=f,z=g,N=d,F=n,D=r,B=X0}else{let Z0=T.tail,m=B0,y=S.tail,_=Wj(w,0,Q([Cf(m.content)]),e);Z=Z0,J=P,K=y,X=q,W=x,Y=U,V=k,G=w+1,I=f,z=g,N=d,F=A(_,n),D=r,B=X0}}else{let Q0=G0,J0=T.tail,Z0=B0,m=S.tail,y=v5(w-U,Z0),_,o=k8(X0,g,w,Q0);_=b8(o,r,g,w,Z0);let Y0=_;Z=J0,J=P,K=m,X=q,W=x,Y=U,V=k,G=w+1,I=f,z=g,N=A(y,d),F=n,D=r,B=Y0}}else{let B0=S.head;if(B0 instanceof Y5){let Q0=G0,J0=T.tail,Z0=B0,m=S.tail,y=y8(r,Z0.mapper),_=o1(g,w,Z0.key),t=vf(!1,_,y,X0,Q0.attributes,Z0.attributes,e,e),o,Y0,j0;o=t.added,Y0=t.removed,j0=t.events;let M0;if(o instanceof M&&Y0 instanceof M)M0=e;else M0=Q([Qj(o,Y0)]);let h0=M0,D1;if(Q0.inner_html===Z0.inner_html)D1=h0;else D1=A(xf(Z0.inner_html),h0);let A1=D1,M1;if(A1 instanceof M)M1=n;else M1=A(Wj(w,0,A1,Q([])),n);let Q8=M1;Z=J0,J=P,K=m,X=q,W=x,Y=U,V=k,G=w+1,I=f,z=g,N=d,F=Q8,D=r,B=j0}else{let Q0=G0,J0=T.tail,Z0=B0,m=S.tail,y=v5(w-U,Z0),_,o=k8(X0,g,w,Q0);_=b8(o,r,g,w,Z0);let Y0=_;Z=J0,J=P,K=m,X=q,W=x,Y=U,V=k,G=w+1,I=f,z=g,N=A(y,d),F=n,D=r,B=Y0}}}}}}function A4(Z,J,K){return zj(Q([J]),C1(),Q([K]),C1(),C1(),0,0,0,0,D4,e,e,S0,Wf(Z))}var{setTimeout:y$,clearTimeout:Nj}=globalThis,f$=(Z,J)=>r1().createElementNS(Z,J),k$=(Z)=>r1().createTextNode(Z),b$=()=>r1().createDocumentFragment(),q4=(Z,J,K)=>Z.insertBefore(J,K),_f=ky?(Z,J,K)=>Z.moveBefore(J,K):q4,h$=(Z,J)=>Z.removeChild(J),v$=(Z,J)=>Z.getAttribute(J),mf=(Z,J,K)=>Z.setAttribute(J,K),$$=(Z,J)=>Z.removeAttribute(J),g$=(Z,J,K,X)=>Z.addEventListener(J,K,X),uf=(Z,J,K)=>Z.removeEventListener(J,K),_$=(Z,J)=>Z.innerHTML=J,m$=(Z,J)=>Z.data=J,g8=Symbol("lustre");class pf{constructor(Z,J,K,X){this.kind=Z,this.key=X,this.parent=J,this.children=[],this.node=K,this.handlers=new Map,this.throttles=new Map,this.debouncers=new Map}get parentNode(){return this.kind===Y8?this.node.parentNode:this.node}}var _8=(Z,J,K,X,W)=>{let Y=new pf(Z,J,K,W);return K[g8]=Y,J?.children.splice(X,0,Y),Y},u$=(Z)=>{let J="";for(let K=Z[g8];K.parent;K=K.parent)if(K.key)J=`${mZ}${K.key}${J}`;else{let X=K.parent.children.indexOf(K);J=`${mZ}${X}${J}`}return J.slice(1)};class Hj{#Z=null;#X;#K;#Y=!1;constructor(Z,J,K,{exposeKeys:X=!1}={}){this.#Z=Z,this.#X=J,this.#K=K,this.#Y=X}mount(Z){_8(k5,null,this.#Z,0,null),this.#P(this.#Z,null,this.#Z[g8],0,Z)}push(Z){this.#J.push({node:this.#Z[g8],patch:Z}),this.#W()}#J=[];#W(){let Z=this.#J;while(Z.length){let{node:J,patch:K}=Z.pop(),{children:X}=J,{changes:W,removed:Y,children:V}=K;if($5(W,(G)=>this.#Q(J,G)),Y)this.#F(J,X.length-Y,Y);$5(V,(G)=>{let I=X[G.index|0];this.#J.push({node:I,patch:G})})}}#Q(Z,J){switch(J.kind){case oR:this.#C(Z,J);break;case eR:this.#S(Z,J);break;case Zj:this.#D(Z,J);break;case Jj:this.#z(Z,J);break;case Kj:this.#O(Z,J);break;case Yj:this.#N(Z,J);break;case Xj:this.#G(Z,J);break}}#G(Z,{children:J,before:K}){let X=b$(),W=this.#I(Z,K);this.#T(X,null,Z,K|0,J),q4(Z.parentNode,X,W)}#N(Z,{index:J,with:K}){this.#F(Z,J|0,1);let X=this.#I(Z,J);this.#P(Z.parentNode,X,Z,J|0,K)}#I(Z,J){J=J|0;let{children:K}=Z,X=K.length;if(J<X)return K[J].node;let W=K[X-1];if(!W&&Z.kind!==Y8)return null;if(!W)W=Z;while(W.kind===Y8&&W.children.length)W=W.children[W.children.length-1];return W.node.nextSibling}#z(Z,{key:J,before:K}){K=K|0;let{children:X,parentNode:W}=Z,Y=X[K].node,V=X[K];for(let N=K+1;N<X.length;++N){let F=X[N];if(X[N]=V,V=F,F.key===J){X[K]=F;break}}let{kind:G,node:I,children:z}=V;if(_f(W,I,Y),G===Y8)this.#V(W,z,Y)}#V(Z,J,K){for(let X=0;X<J.length;++X){let{kind:W,node:Y,children:V}=J[X];if(_f(Z,Y,K),W===Y8)this.#V(Z,V,K)}}#O(Z,{index:J}){this.#F(Z,J,1)}#F(Z,J,K){let{children:X,parentNode:W}=Z,Y=X.splice(J,K);for(let V=0;V<Y.length;++V){let{kind:G,node:I,children:z}=Y[V];if(h$(W,I),this.#H(Y[V]),G===Y8)Y.push(...z)}}#H(Z){let{debouncers:J,children:K}=Z;for(let{timeout:X}of J.values())if(X)Nj(X);J.clear(),$5(K,(X)=>this.#H(X))}#D({node:Z,handlers:J,throttles:K,debouncers:X},{added:W,removed:Y}){$5(Y,({name:V})=>{if(J.delete(V))uf(Z,V,Fj),this.#B(K,V,0),this.#B(X,V,0);else $$(Z,V),cf[V]?.removed?.(Z,V)}),$5(W,(V)=>this.#E(Z,V))}#C({node:Z},{content:J}){m$(Z,J??"")}#S({node:Z},{inner_html:J}){_$(Z,J??"")}#T(Z,J,K,X,W){$5(W,(Y)=>this.#P(Z,J,K,X++,Y))}#P(Z,J,K,X,W){switch(W.kind){case k5:{let Y=this.#A(K,X,W);this.#T(Y,null,Y[g8],0,W.children),q4(Z,Y,J);break}case B4:{let Y=this.#q(K,X,W);q4(Z,Y,J);break}case Y8:{let Y=this.#q(K,X,W);q4(Z,Y,J),this.#T(Z,J,Y[g8],0,W.children);break}case Zf:{let Y=this.#A(K,X,W);this.#S({node:Y},W),q4(Z,Y,J);break}}}#A(Z,J,{kind:K,key:X,tag:W,namespace:Y,attributes:V}){let G=f$(Y||BK,W);if(_8(K,Z,G,J,X),this.#Y&&X)mf(G,"data-lustre-key",X);return $5(V,(I)=>this.#E(G,I)),G}#q(Z,J,{kind:K,key:X,content:W}){let Y=k$(W??"");return _8(K,Z,Y,J,X),Y}#E(Z,J){let{debouncers:K,handlers:X,throttles:W}=Z[g8],{kind:Y,name:V,value:G,prevent_default:I,debounce:z,throttle:N}=J;switch(Y){case wR:{let F=G??"";if(V==="virtual:defaultValue"){Z.defaultValue=F;return}else if(V==="virtual:defaultChecked"){Z.defaultChecked=!0;return}else if(V==="virtual:defaultSelected"){Z.defaultSelected=!0;return}if(F!==v$(Z,V))mf(Z,V,F);cf[V]?.added?.(Z,F);break}case UR:Z[V]=G;break;case MR:{if(X.has(V))uf(Z,V,Fj);let F=I.kind===RR;g$(Z,V,Fj,{passive:F}),this.#B(W,V,N),this.#B(K,V,z),X.set(V,(D)=>this.#x(J,D));break}}}#B(Z,J,K){let X=Z.get(J);if(K>0)if(X)X.delay=K;else Z.set(J,{delay:K});else if(X){let{timeout:W}=X;if(W)Nj(W);Z.delete(J)}}#x(Z,J){let{currentTarget:K,type:X}=J,{debouncers:W,throttles:Y}=K[g8],V=u$(K),{prevent_default:G,stop_propagation:I,include:z}=Z;if(G.kind===SK)J.preventDefault();if(I.kind===SK)J.stopPropagation();if(X==="submit")J.detail??={},J.detail.formData=[...new FormData(J.target,J.submitter).entries()];let N=this.#X(J,V,X,z),F=Y.get(X);if(F){let B=Date.now(),T=F.last||0;if(B>T+F.delay)F.last=B,F.lastEvent=J,this.#K(J,N)}let D=W.get(X);if(D)Nj(D.timeout),D.timeout=y$(()=>{if(J===Y.get(X)?.lastEvent)return;this.#K(J,N)},D.delay);if(!F&&!D)this.#K(J,N)}}var $5=(Z,J)=>{if(Array.isArray(Z))for(let K=0;K<Z.length;K++)J(Z[K]);else if(Z)for(Z;Z.head;Z=Z.tail)J(Z.head)},Fj=(Z)=>{let{currentTarget:J,type:K}=Z;J[g8].handlers.get(K)(Z)},df=(Z)=>{return{added(J){J[Z]=!0},removed(J){J[Z]=!1}}},d$=(Z)=>{return{added(J,K){J[Z]=K}}},cf={checked:df("checked"),selected:df("selected"),value:d$("value"),autofocus:{added(Z){queueMicrotask(()=>{Z.focus?.()})}},autoplay:{added(Z){try{Z.play?.()}catch(J){console.error(J)}}}};function c$(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof M)return[W,F0(Y)];else{let V=X.tail,G=X.head[0],I=X.head[1],z=Jf(G,I),N;if(G==="")N=W;else N=f5(W,G,z);let F=N,D=A(z,Y);Z=V,J=F,K=D}}}function Dj(Z){return c$(Z,C1(),e)}function nf(Z,J,K){let X=Dj(K),W,Y;return W=X[0],Y=X[1],T4("",S0,"",Z,J,Y,W,!1,O4(Z,""))}function lf(Z,J,K,X){let W=Dj(X),Y,V;return Y=W[0],V=W[1],T4("",S0,Z,J,K,V,Y,!1,O4(J,Z))}function sf(Z){let J=Dj(Z),K,X;return K=J[0],X=J[1],EK("",S0,X,K)}var rf=(Z)=>{let J=_8(k5,null,Z,0,null),K=0;for(let V=Z.firstChild;V;V=V.nextSibling)if(af(V))K+=1;if(K===0){let V=r1().createTextNode("");return _8(B4,J,V,0,null),Z.replaceChildren(V),H0()}if(K===1)return Bj(J,Z).head[1];let X=r1().createTextNode(""),W=_8(Y8,J,X,0,null),Y=Bj(W,Z);return Z.insertBefore(X,Z.firstChild),sf(Y)},af=(Z)=>{switch(Z.nodeType){case OK:return!0;case CR:return!!Z.data;default:return!1}},p$=(Z,J,K,X)=>{if(!af(J))return null;switch(J.nodeType){case OK:{let W=_8(k5,Z,J,X,K),Y=J.localName,V=J.namespaceURI,G=!V||V===BK;if(G&&n$.includes(Y))i$(Y,J);let I=l$(J),z=Bj(W,J);return G?nf(Y,I,z):lf(V,Y,I,z)}case CR:return _8(B4,Z,J,X,null),C(J.data);default:return null}},n$=["input","select","textarea"],i$=(Z,J)=>{let{value:K,checked:X}=J;if(Z==="input"&&J.type==="checkbox"&&!X)return;if(Z==="input"&&J.type==="radio"&&!X)return;if(J.type!=="checkbox"&&J.type!=="radio"&&!K)return;queueMicrotask(()=>{if(J.value=K,J.checked=X,J.dispatchEvent(new Event("input",{bubbles:!0})),J.dispatchEvent(new Event("change",{bubbles:!0})),r1().activeElement!==J)J.dispatchEvent(new Event("blur",{bubbles:!0}))})},Bj=(Z,J)=>{let K=null,X=J.firstChild,W=null,Y=0;while(X){let V=X.nodeType===OK?X.getAttribute("data-lustre-key"):null;if(V!=null)X.removeAttribute("data-lustre-key");let G=p$(Z,X,V,Y),I=X.nextSibling;if(G){let z=new k1([V??"",G],null);if(W)W=W.tail=z;else W=K=z;Y+=1}else J.removeChild(X);X=I}if(!W)return e;return W.tail=e,K},l$=(Z)=>{let J=Z.attributes.length,K=e;while(J-- >0){let X=Z.attributes[J];if(X.name==="xmlns")continue;K=new k1(s$(X),K)}return K},s$=(Z)=>{let{localName:J,value:K}=Z;return j(J,K)};var X5=()=>!!r1();class fK{constructor(Z,[J,K],X,W){this.root=Z,this.#Z=J,this.#X=X,this.#K=W,this.root.addEventListener("context-request",(G)=>{if(!(G.context&&G.callback))return;if(!this.#Q.has(G.context))return;G.stopImmediatePropagation();let I=this.#Q.get(G.context);if(G.subscribe){let z=()=>{I.subscribers=I.subscribers.filter((N)=>N!==G.callback)};I.subscribers.push([G.callback,z]),G.callback(I.value,z)}else G.callback(I.value)});let Y=(G,I,z)=>lR(this.#J,I,z,G),V=(G,I)=>{let[z,N]=sR(this.#J,I);if(this.#J=z,N.isOk()){let F=N[0];if(F.stop_propagation)G.stopPropagation();if(F.prevent_default)G.preventDefault();this.dispatch(F.message,!1)}};this.#W=new Hj(this.root,Y,V),this.#Y=rf(this.root),this.#J=iR(),this.#H(K),this.#D()}root=null;dispatch(Z,J=!1){if(this.#G)this.#N.push(Z);else{let[K,X]=this.#K(this.#Z,Z);this.#Z=K,this.#F(X,J)}}emit(Z,J){(this.root.host??this.root).dispatchEvent(new CustomEvent(Z,{detail:J,bubbles:!0,composed:!0}))}provide(Z,J){if(!this.#Q.has(Z))this.#Q.set(Z,{value:J,subscribers:[]});else{let K=this.#Q.get(Z);if(X8(K.value,J))return;K.value=J;for(let X=K.subscribers.length-1;X>=0;X--){let[W,Y]=K.subscribers[X];if(!W){K.subscribers.splice(X,1);continue}W(J,Y)}}}#Z;#X;#K;#Y;#J;#W;#Q=new Map;#G=!1;#N=[];#I=e;#z=e;#V=null;#O={dispatch:(Z)=>this.dispatch(Z),emit:(Z,J)=>this.emit(Z,J),select:()=>{},root:()=>this.root,provide:(Z,J)=>this.provide(Z,J)};#F(Z,J=!1){if(this.#H(Z),!this.#V)if(J)this.#V="sync",queueMicrotask(()=>this.#D());else this.#V=requestAnimationFrame(()=>this.#D())}#H(Z){this.#G=!0;while(!0){for(let K=Z.synchronous;K.tail;K=K.tail)K.head(this.#O);if(this.#I=of(this.#I,Z.before_paint),this.#z=of(this.#z,Z.after_paint),!this.#N.length)break;let J=this.#N.shift();[this.#Z,Z]=this.#K(this.#Z,J)}this.#G=!1}#D(){this.#V=null;let Z=this.#X(this.#Z),{patch:J,events:K}=A4(this.#J,this.#Y,Z);if(this.#J=K,this.#Y=Z,this.#W.push(J),this.#I instanceof k1){let X=tf(this.#I);this.#I=e,queueMicrotask(()=>{this.#F(X,!0)})}if(this.#z instanceof k1){let X=tf(this.#z);this.#z=e,requestAnimationFrame(()=>{this.#F(X,!0)})}}}function tf(Z){return{synchronous:Z,after_paint:e,before_paint:e}}function of(Z,J){if(Z instanceof M)return J;else if(J instanceof M)return Z;else return _0(Z,J)}class Tj extends O{constructor(Z){super();this.message=Z}}class Pj extends O{constructor(Z){super();this.callback=Z}}class Sj extends O{constructor(Z){super();this.callback=Z}}class W5 extends O{constructor(Z){super();this.message=Z}}class g5 extends O{constructor(Z,J){super();this.name=Z,this.data=J}}class kK extends O{constructor(Z,J){super();this.key=Z,this.value=J}}class _5 extends O{}class Jk extends O{constructor(Z,J,K,X,W,Y,V,G,I,z){super();this.open_shadow_root=Z,this.adopt_styles=J,this.delegates_focus=K,this.attributes=X,this.properties=W,this.contexts=Y,this.is_form_associated=V,this.on_form_autofill=G,this.on_form_reset=I,this.on_form_restore=z}}function Kk(Z){let J=new Jk(!0,!0,!1,e,e,e,!1,TK,TK,TK);return g0(Z,J,(K,X)=>{return X.apply(K)})}class Xk{#Z;constructor(Z,[J,K],X,W){this.#Z=new fK(Z,[J,K],W,X)}send(Z){switch(Z.constructor){case W5:{this.dispatch(Z.message,!1);break}case g5:{this.emit(Z.name,Z.data);break}case _5:break}}dispatch(Z){this.#Z.dispatch(Z)}emit(Z,J){this.#Z.emit(Z,J)}}var Wk=({init:Z,update:J,view:K},X,W)=>{if(!X5())return new v(new cZ);let Y=X instanceof HTMLElement?X:r1().querySelector(X);if(!Y)return new v(new Aj(X));return new E(new Xk(Y,Z(W),J,K))};class r${#Z;#X;#K;#Y;#J;#W;#Q=$0();#G=new Set;constructor([Z,J],K,X,W){this.#Z=Z,this.#X=K,this.#K=X,this.#Y=W,this.#J=this.#K(this.#Z),this.#W=rR(this.#J),this.#V(J)}send(Z){switch(Z.constructor){case Tj:{let{message:J}=Z,K=this.#N(J),X=A4(this.#W,this.#J,K);this.#J=K,this.#W=X.events,this.broadcast(Ij(X.patch));return}case Pj:{let{callback:J}=Z;this.#G.add(J),J(ff(this.#Y.open_shadow_root,this.#Y.adopt_styles,U8(this.#Y.attributes),U8(this.#Y.properties),U8(this.#Y.contexts),this.#Q,this.#J));return}case Sj:{let{callback:J}=Z;this.#G.delete(J);return}case W5:{let{message:J}=Z,[K,X]=this.#X(this.#Z,J),W=this.#K(K),Y=A4(this.#W,this.#J,W);this.#V(X),this.#Z=K,this.#J=W,this.#W=Y.events,this.broadcast(Ij(Y.patch));return}case g5:{let{name:J,data:K}=Z;this.broadcast(kf(J,K));return}case kK:{let{key:J,value:K}=Z,X=P0(this.#Q,J);if(X.isOk()&&X8(X[0],K))return;this.#Q=a0(this.#Q,J,K),this.broadcast(bf(J,K));return}case _5:{this.#Z=null,this.#X=null,this.#K=null,this.#Y=null,this.#J=null,this.#W=null,this.#Q=null,this.#G.clear();return}default:return}}broadcast(Z){for(let J of this.#G)J(Z)}#N(Z){switch(Z.constructor){case MK:{let{messages:J}=Z,K=this.#Z,X=i();for(let W=J;W.head;W=W.tail){let Y=this.#N(W.head);if(Y instanceof E){K=Y[0][0],X=G1(r0.fromArray([X,Y[0][1]]));break}}return this.#V(X),this.#Z=K,this.#K(this.#Z)}case RK:{let{name:J,value:K}=Z,X=this.#I(J,K);if(X instanceof v)return this.#J;else{let[W,Y]=this.#X(this.#Z,X[0]);return this.#V(Y),this.#Z=W,this.#K(this.#Z)}}case jK:{let{name:J,value:K}=Z,X=this.#z(J,K);if(X instanceof v)return this.#J;else{let[W,Y]=this.#X(this.#Z,X[0]);return this.#V(Y),this.#Z=W,this.#K(this.#Z)}}case LK:{let{path:J,name:K,event:X}=Z,[W,Y]=xK(this.#W,J,K,X);if(this.#W=W,Y instanceof v)return this.#J;else{let[V,G]=this.#X(this.#Z,Y[0].message);return this.#V(G),this.#Z=V,this.#K(this.#Z)}}case Gj:{let{key:J,value:K}=Z,X=P0(this.#Y.contexts,J);if(X instanceof v)return this.#J;if(X=z0(K,X[0]),X instanceof v)return this.#J;let[W,Y]=this.#X(this.#Z,X[0]);return this.#V(Y),this.#Z=W,this.#K(this.#Z)}}}#I(Z,J){let K=P0(this.#Y.attributes,Z);switch(K.constructor){case E:return K[0](J);case v:return new v(void 0)}}#z(Z,J){let K=P0(this.#Y.properties,Z);switch(K.constructor){case E:return K[0](J);case v:return new v(void 0)}}#V(Z){let J=(V)=>this.send(new W5(V)),K=(V,G)=>this.send(new g5(V,G)),X=()=>{return},W=()=>{return},Y=(V,G)=>this.send(new kK(V,G));globalThis.queueMicrotask(()=>{ry(Z,J,K,X,W,Y)})}}class Qk extends O{constructor(Z,J,K,X){super();this.init=Z,this.update=J,this.view=K,this.config=X}}class Aj extends O{constructor(Z){super();this.selector=Z}}class cZ extends O{}function Vk(Z,J,K){return new Qk(Z,J,K,Kk(e))}function Gk(Z,J,K){return F4(!X5(),new v(new cZ),()=>{return Wk(Z,J,K)})}function Nk(Z,J){return[Z,J]}var o$={handle_external_links:!1,handle_internal_links:!0},Hk=globalThis?.window?.location?.href,Cj=()=>{if(!Hk)return new v(void 0);else return new E(Ej(new URL(Hk)))},xj=(Z,J=o$)=>{document.addEventListener("click",(K)=>{let X=Bk(K.target);if(!X)return;try{let W=new URL(X.href),Y=Ej(W),V=W.host!==window.location.host||X.target==="_blank";if(!J.handle_external_links&&V)return;if(!J.handle_internal_links&&!V)return;if(K.preventDefault(),!V)window.history.pushState({},"",X.href),window.requestAnimationFrame(()=>{if(W.hash)document.getElementById(W.hash.slice(1))?.scrollIntoView();else window.scrollTo(0,0)});return Z(Y)}catch{return}}),window.addEventListener("popstate",(K)=>{K.preventDefault();let X=new URL(window.location.href),W=Ej(X);window.requestAnimationFrame(()=>{if(X.hash)document.getElementById(X.hash.slice(1))?.scrollIntoView();else window.scrollTo(0,0)}),Z(W)}),window.addEventListener("modem-push",({detail:K})=>{Z(K)}),window.addEventListener("modem-replace",({detail:K})=>{Z(K)})},Dk=(Z)=>{window.history.pushState({},"",HK(Z)),window.requestAnimationFrame(()=>{if(Z.fragment[0])document.getElementById(Z.fragment[0])?.scrollIntoView()}),window.dispatchEvent(new CustomEvent("modem-push",{detail:Z}))};var Bk=(Z)=>{if(!Z||Z.tagName==="BODY")return null;else if(Z.tagName==="A")return Z;else return Bk(Z.parentElement)},Ej=(Z)=>{return new V0(Z.protocol?new L(Z.protocol.slice(0,-1)):new b,new b,Z.hostname?new L(Z.hostname):new b,Z.port?new L(Number(Z.port)):new b,Z.pathname,Z.search?new L(Z.search.slice(1)):new b,Z.hash?new L(Z.hash.slice(1)):new b)};var bK=new V0(new b,new b,new b,new b,"",new b,new b);function Tk(Z){return F1((J)=>{return F4(!X5(),void 0,()=>{return xj((K)=>{let W=Z(K);return J(W)})})})}function Ok(Z){if(Z==="")return new b;else return new L(Z)}function m5(Z,J,K){return F1((X)=>{return F4(!X5(),void 0,()=>{return Dk(new V0(bK.scheme,bK.userinfo,bK.host,bK.port,Z,pM(J,Ok),pM(K,Ok)))})})}class Pk extends O{constructor(Z,J){super();this.query=Z,this.module_path=J}}class wj extends O{constructor(Z){super();this.queries=Z}}function Sk(){return new wj($0())}function K1(Z,J,K,X){let W=new Pk(K,X);return new wj(a0(Z.queries,J,W))}function Uj(Z,J){return P0(Z.queries,J)}class vK extends O{}class $K extends O{}class Ak extends O{}class qk extends O{}class Ek extends O{}class Ck extends O{}class xk extends O{}class wk extends O{}class Uk extends O{}class Mj extends O{}class gK extends O{}function Mk(Z){if(Z instanceof vK)return"GET";else if(Z instanceof $K)return"POST";else if(Z instanceof Ak)return"HEAD";else if(Z instanceof qk)return"PUT";else if(Z instanceof Ek)return"DELETE";else if(Z instanceof Ck)return"TRACE";else if(Z instanceof xk)return"CONNECT";else if(Z instanceof wk)return"OPTIONS";else if(Z instanceof Uk)return"PATCH";else return Z[0]}function Rk(Z){if(Z instanceof Mj)return"http";else return"https"}function jk(Z){let J=i1(Z);if(J==="http")return new E(new Mj);else if(J==="https")return new E(new gK);else return new v(void 0)}class pZ extends O{constructor(Z,J,K,X,W,Y,V,G){super();this.method=Z,this.headers=J,this.body=K,this.scheme=X,this.host=W,this.port=Y,this.path=V,this.query=G}}function yk(Z){return new V0(new L(Rk(Z.scheme)),new b,new L(Z.host),Z.port,Z.path,Z.query,new b)}function Jg(Z){return j1((()=>{let J=Z.scheme,K=LL(J,"");return jk(K)})(),(J)=>{return j1((()=>{let K=Z.host;return dM(K,void 0)})(),(K)=>{let X=new pZ(new vK,Q([]),"",J,K,Z.port,Z.path,Z.query);return new E(X)})})}function Rj(Z,J,K){let X=VR(Z.headers,i1(J),K);return new pZ(Z.method,X,Z.body,Z.scheme,Z.host,Z.port,Z.path,Z.query)}function fk(Z,J){return new pZ(Z.method,Z.headers,J,Z.scheme,Z.host,Z.port,Z.path,Z.query)}function kk(Z,J){return new pZ(J,Z.headers,Z.body,Z.scheme,Z.host,Z.port,Z.path,Z.query)}function bk(Z){let K=AR(Z);return j1(K,Jg)}class jj extends O{constructor(Z,J,K){super();this.status=Z,this.headers=J,this.body=K}}class u5{constructor(Z){this.promise=Z}static wrap(Z){return Z instanceof Promise?new u5(Z):Z}static unwrap(Z){return Z instanceof u5?Z.promise:Z}}function B8(Z){return Promise.resolve(u5.wrap(Z))}function mK(Z,J){return Z.then((K)=>J(u5.unwrap(K)))}function uK(Z,J){return Z.then((K)=>u5.wrap(J(u5.unwrap(K))))}function yj(Z){return new jj(Z.status,r0.fromArray([...Z.headers]),Z)}function Wg(Z){let J=HK(yk(Z)),K=Mk(Z.method).toUpperCase(),X={headers:Qg(Z.headers),method:K};return[J,X]}function fj(Z){let[J,K]=Wg(Z);if(K.method!=="GET"&&K.method!=="HEAD")K.body=Z.body;return new globalThis.Request(J,K)}function Qg(Z){let J=new globalThis.Headers;for(let[K,X]of Z)J.append(K.toLowerCase(),X);return J}async function dK(Z){let J;try{J=await Z.body.text()}catch(K){return new v(new kj)}return new E(Z.withFields({body:J}))}class cK extends O{constructor(Z){super();this[0]=Z}}class kj extends O{}class vk extends O{constructor(Z,J){super();this.endpoint=Z,this.headers=J}}function bj(Z,J){return new vk(Z,J)}function X1(Z,J,K){let X=h(Q([["query",c(J)],["variables",K]]));return j1((()=>{let W=bk(Z.endpoint);return G4(W,(Y)=>{return"Invalid endpoint URL"})})(),(W)=>{let Y,G=kk(W,new $K),I=fk(G,R8(X));Y=Rj(I,"content-type","application/json");let z=Y,N=g0(Z.headers,z,(F,D)=>{return Rj(F,D[0],D[1])});return new E(N)})}function q0(Z,J){return j1((()=>{let K=l1(Z,v0);return G4(K,(X)=>{return"Failed to decode JSON response"})})(),(K)=>{let X=$("data",J,(Y)=>{return s(Y)}),W=z0(K,X);return G4(W,(Y)=>{return"Failed to decode response data: "+IK(Y)+". Response body: "+Z})})}async function hj(Z){try{let J=fj(Z),K=new Request(J,{credentials:"include"}),X=await fetch(K),W=yj(X);return new E(W)}catch(J){return new v(new cK(J.toString()))}}var uk="src/squall_cache.gleam";class w1 extends O{}class U1 extends O{constructor(Z){super();this[0]=Z}}class e1 extends O{constructor(Z){super();this[0]=Z}}class pK extends O{}class dk extends O{}class vj extends O{}class iZ extends O{constructor(Z,J,K){super();this.data=Z,this.timestamp=J,this.status=K}}class y1 extends O{constructor(Z,J,K,X,W,Y,V,G){super();this.entities=Z,this.optimistic_entities=J,this.optimistic_mutations=K,this.queries=X,this.pending_fetches=W,this.get_headers=Y,this.mutation_counter=V,this.endpoint=G}}function ck(Z){return new y1($0(),$0(),$0(),$0(),M5(),()=>{return Q([])},0,Z)}function nK(Z,J){return Z+":"+R8(J)}function $k(Z){let J=YK(Z);if(J instanceof E){let K=J[0][0],X=J[0][1];return XK(K)+X}else return Z}function $j(Z){let K=F0(Z),X=JK(K,(W)=>{if(W==="data")return new v(void 0);else if(W==="results")return new v(void 0);else if(W==="edges")return new v(void 0);else if(W==="node")return new v(void 0);else if(WK(W,"s")){let V=J8(W),G=Fy(W,0,V-1);return new E($k(G))}else return new E($k(W))});return z8(X,"Entity")}function Ig(Z){if(P0(Z,"node")instanceof E)return!0;else return!1}function zg(Z){let J=z0(Z,L0(v0));if(J instanceof E){let K=J[0];if(K instanceof M)return!1;else{let X=K.head,W=z0(X,M8(u,v0));if(W instanceof E){let Y=W[0];return Ig(Y)}else return!1}}else return!1}function Ng(Z,J,K){let X=nK(J,K),W=P0(Z.queries,X);if(W instanceof E){let Y=W[0],V=new iZ(Y.data,Y.timestamp,new vj),G=a0(Z.queries,X,V);return new y1(Z.entities,Z.optimistic_entities,Z.optimistic_mutations,G,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}else{let Y=new iZ("",0,new vj),V=a0(Z.queries,X,Y);return new y1(Z.entities,Z.optimistic_entities,Z.optimistic_mutations,V,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}}function u0(Z,J,K){let X=nK(J,K),W=I8(Z.queries,X);return new y1(Z.entities,Z.optimistic_entities,Z.optimistic_mutations,W,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}function Fg(Z,J,K,X){let W,Y=P0(Z.optimistic_entities,K);if(Y instanceof E){let I=Y[0];W=new L(I)}else{let I=P0(Z.entities,K);if(I instanceof E){let z=I[0];W=new L(z)}else W=new b}let G=X(W);return new y1(Z.entities,a0(Z.optimistic_entities,K,G),a0(Z.optimistic_mutations,J,K),Z.queries,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}function gj(Z,J){let K=P0(Z.optimistic_mutations,J);if(K instanceof E){let X=K[0];return new y1(Z.entities,I8(Z.optimistic_entities,X),I8(Z.optimistic_mutations,J),Z.queries,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}else return Z}function pk(Z){return!YR(Z.optimistic_mutations)}function E4(Z){let J=z0(Z,M8(u,v0));if(J instanceof E){let X=J[0],W=r8(X),Y=I0(W,(V)=>{let G,I;return G=V[0],I=V[1],[G,E4(I)]});return h(Y)}else{let K=z0(Z,L0(v0));if(K instanceof E){let X=K[0];return k0(X,E4)}else{let X=z0(Z,u);if(X instanceof E){let W=X[0];return c(W)}else{let W=z0(Z,l0);if(W instanceof E){let Y=W[0];return Q1(Y)}else{let Y=z0(Z,lL);if(Y instanceof E){let V=Y[0];return wy(V)}else{let V=z0(Z,z1);if(V instanceof E){let G=V[0];return s1(G)}else return PR()}}}}}}function Hg(Z,J){let K=R8(Z),X=R8(J),W=l1(K,v0),Y=l1(X,v0);if(W instanceof E&&Y instanceof E){let V=W[0],G=Y[0],I=z0(V,M8(u,v0)),z=z0(G,M8(u,v0));if(I instanceof E&&z instanceof E){let N=I[0],F=z[0],D,B=_0(U8(N),U8(F));D=dL(B);let P=E5(D,(S)=>{let q,x=P0(F,S);if(x instanceof E)q=x;else q=P0(N,S);let U=q;if(U instanceof E){let k=U[0];return new E([S,E4(k)])}else return new v(void 0)});return h(P)}else return J}else return J}function m8(Z,J){return Z4(J,Z,(K,X,W)=>{let Y=P0(K,X);if(Y instanceof E){let V=Y[0],G=Hg(V,W);return a0(K,X,G)}else return a0(K,X,W)})}function gk(Z){let J=w5(Z,":");if(J instanceof E){let K=J[0][0],X=J[0][1],W=l1(X,v0);if(W instanceof E){let Y=W[0];return new E([K,E4(Y)])}else return new E([K,PR()])}else return new v(void 0)}function Dg(Z,J,K,X,W,Y,V){let G=Uj(J,K);if(G instanceof E){let I=G[0];return F1((z)=>{let N=Z.get_headers(),F=bj(Z.endpoint,N),D=X1(F,I.query,X),B;if(D instanceof E)B=D[0];else throw l8("let_assert",uk,"squall_cache",767,"create_mutation_effect","Pattern match failed, no pattern matched the value.",{value:D,start:24617,end:24701,pattern_start:24628,pattern_end:24635});let T,P=hj(B);T=uK(P,(q)=>{if(q instanceof E){let x=q[0],U=dK(x);return mK(U,(k)=>{if(k instanceof E){let w=k[0],f=Y(w.body);if(f instanceof E){let g=f[0];return z(V(W,new E(g),w.body)),B8(void 0)}else{let g=f[0];return z(V(W,new v("Parse error: "+g),w.body)),B8(void 0)}}else return z(V(W,new v("Failed to read response"),"")),B8(void 0)})}else return z(V(W,new v("Failed to fetch"),"")),B8(void 0)});let S=T;return})}else return F1((I)=>{I(V(W,new v("Query not found in registry"),""));return})}function sZ(Z,J,K,X,W,Y,V,G){let I="mutation-"+E1(Z.mutation_counter),z=Fg(Z,I,W,Y),N=new y1(z.entities,z.optimistic_entities,z.optimistic_mutations,z.queries,z.pending_fetches,z.get_headers,Z.mutation_counter+1,z.endpoint),F=Dg(N,J,K,X,I,V,G);return[N,I,F]}function Bg(Z,J,K,X,W){return F1((Y)=>{let V=Z.get_headers(),G=bj(Z.endpoint,V),I=X1(G,J,X),z;if(I instanceof E)z=I[0];else throw l8("let_assert",uk,"squall_cache",1073,"create_fetch_effect","Pattern match failed, no pattern matched the value.",{value:I,start:34411,end:34480,pattern_start:34422,pattern_end:34429});let N,F=hj(z);N=uK(F,(B)=>{if(B instanceof E){let T=B[0],P=dK(T);return mK(P,(S)=>{if(S instanceof E){let q=S[0];return Y(W(K,X,new E(q.body))),B8(void 0)}else return Y(W(K,X,new v("Failed to read response"))),B8(void 0)})}else return Y(W(K,X,new v("Failed to fetch"))),B8(void 0)});let D=N;return})}function d0(Z,J,K,X){let W=Ry(Z.pending_fetches),Y=E5(W,(I)=>{let z=gk(I);if(z instanceof E){let N=z[0][0],F=z[0][1],D=Uj(J,N);if(D instanceof E){let B=D[0];return new E(Bg(Z,B.query,N,F,K))}else return new v(void 0)}else return new v(void 0)}),V=g0(W,Z,(I,z)=>{let N=gk(z);if(N instanceof E){let F=N[0][0],D=N[0][1];return Ng(I,F,D)}else return I});return[new y1(V.entities,V.optimistic_entities,V.optimistic_mutations,V.queries,M5(),V.get_headers,V.mutation_counter,V.endpoint),Y]}function _k(Z,J,K){let X=r8(Z),W=I0(X,(Y)=>{let V,G;return V=Y[0],G=Y[1],[V,_j(G,J,K)]});return h(W)}function _j(Z,J,K){let X=z0(Z,M8(u,v0));if(X instanceof E){let W=X[0],Y=P0(W,"__ref");if(Y instanceof E){let V=Y[0],G=z0(V,u);if(G instanceof E){let I=G[0],z=P0(J,I);if(z instanceof E)return z[0];else{let N=P0(K,I);if(N instanceof E)return N[0];else return h(Q([["__ref",c(I)]]))}}else return _k(W,J,K)}else return _k(W,J,K)}else{let W=z0(Z,L0(v0));if(W instanceof E){let Y=W[0];return k0(Y,(V)=>{return _j(V,J,K)})}else return E4(Z)}}function mk(Z,J,K){let X=l1(Z,v0);if(X instanceof E){let W=X[0],Y=_j(W,J,K);return R8(Y)}else return Z}function a(Z,J,K,X){let W=nK(J,K),Y=P0(Z.queries,W);if(Y instanceof E){let V=Y[0],G=V.status;if(G instanceof pK){let I=mk(V.data,Z.optimistic_entities,Z.entities),z=X(I);if(z instanceof E){let N=z[0];return[Z,new e1(N)]}else{let N=z[0];return[Z,new U1("Parse error: "+N)]}}else if(G instanceof dk){let I=mk(V.data,Z.optimistic_entities,Z.entities),z=X(I);if(z instanceof E){let N=z[0];return[Z,new e1(N)]}else{let N=z[0];return[Z,new U1("Parse error: "+N)]}}else return[Z,new w1]}else return[new y1(Z.entities,Z.optimistic_entities,Z.optimistic_mutations,Z.queries,fZ(Z.pending_fetches,W),Z.get_headers,Z.mutation_counter,Z.endpoint),new w1]}function Og(Z,J){let K=g0(Z,[$0(),Q([]),M5()],(Y,V)=>{let G,I,z;G=Y[0],I=Y[1],z=Y[2];let N=z0(V,M8(u,v0));if(N instanceof E){let F=N[0],D=P0(F,"node");if(D instanceof E){let B=D[0],T,P=z0(B,M8(u,v0));if(P instanceof E){let q=P[0],x=P0(q,"id");if(x instanceof E){let U=x[0],k=z0(U,u);if(k instanceof E){let w=k[0],f,g=P0(q,"__typename");if(g instanceof E){let n=g[0],r=z0(n,u);if(r instanceof E)f=r[0];else f="Node"}else f=$j(_0(J,Q(["node"])));T=new L(f+":"+w)}else T=new b}else T=new b}else T=new b;let S=T;if(S instanceof L){let q=S[0];if(z4(z,q))return Y;else{let U=nZ(F,J),k,w;return k=U[0],w=U[1],[m8(G,k),_0(I,Q([w])),fZ(z,q)]}}else{let q=nZ(F,J),x,U;return x=q[0],U=q[1],[m8(G,x),_0(I,Q([U])),z]}}else{let B=nZ(F,J),T,P;return T=B[0],P=B[1],[m8(G,T),_0(I,Q([P])),z]}}else{let F=lZ(V,J),D,B;return D=F[0],B=F[1],[m8(G,D),_0(I,Q([B])),z]}}),X,W;return X=K[0],W=K[1],[X,k0(W,(Y)=>{return Y})]}function nZ(Z,J){let K,X=r8(Z);K=I0(X,(z)=>{let N,F;N=z[0],F=z[1];let D=_0(J,Q([N])),B=lZ(F,D),T,P;return T=B[0],P=B[1],[N,T,P]});let W=K,Y=g0(W,$0(),(z,N)=>{let F;return F=N[1],m8(z,F)}),V,G=I0(W,(z)=>{let N,F;return N=z[0],F=z[2],[N,F]});return V=h(G),[Y,V]}function lZ(Z,J){let K=z0(Z,M8(u,v0));if(K instanceof E){let X=K[0],W=P0(X,"id");if(W instanceof E){let Y=W[0],V=z0(Y,u);if(V instanceof E){let G=V[0],I,z=P0(X,"__typename");if(z instanceof E){let k=z[0],w=z0(k,u);if(w instanceof E)I=w[0];else I=$j(J)}else I=$j(J);let F=I+":"+G,D,B=r8(X);D=I0(B,(k)=>{let w,f;w=k[0],f=k[1];let g=_0(J,Q([w])),d=lZ(f,g),n,r;return n=d[0],r=d[1],[w,n,r]});let T=D,P=g0(T,$0(),(k,w)=>{let f;return f=w[1],m8(k,f)}),S,q=I0(T,(k)=>{let w,f;return w=k[0],f=k[2],[w,f]});return S=h(q),[a0(P,F,S),h(Q([["__ref",c(F)]]))]}else return nZ(X,J)}else return nZ(X,J)}else{let X=z0(Z,L0(v0));if(X instanceof E){let W=X[0];if(zg(Z))return Og(W,J);else{let V=I0(W,(z)=>{return lZ(z,J)}),G=g0(V,$0(),(z,N)=>{let F;return F=N[0],m8(z,F)}),I=I0(V,(z)=>{let N;return N=z[1],N});return[G,k0(I,(z)=>{return z})]}}else return[$0(),E4(Z)]}}function nk(Z){return lZ(Z,Q([]))}function ik(Z,J,K,X,W){let Y=nK(J,K),V=l1(X,v0);if(V instanceof E){let G=V[0],I=nk(G),z,N;z=I[0],N=I[1];let F=m8(Z.entities,z),D=R8(N),B=new iZ(D,W,new pK),T=a0(Z.queries,Y,B);return new y1(F,Z.optimistic_entities,Z.optimistic_mutations,T,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}else{let G=new iZ(X,W,new pK),I=a0(Z.queries,Y,G);return new y1(Z.entities,Z.optimistic_entities,Z.optimistic_mutations,I,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}}function mj(Z,J,K){let X=P0(Z.optimistic_mutations,J);if(X instanceof E){let W=X[0],Y=l1(K,v0);if(Y instanceof E){let V=Y[0],G=nk(V),I;I=G[0];let z=m8(Z.entities,I);return new y1(z,I8(Z.optimistic_entities,W),I8(Z.optimistic_mutations,J),Z.queries,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}else return new y1(Z.entities,I8(Z.optimistic_entities,W),I8(Z.optimistic_mutations,J),Z.queries,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}else return Z}class lk extends O{constructor(Z){super();this.is_backfilling=Z}}function Tg(){return $("isBackfilling",z1,(Z)=>{return s(new lk(Z))})}function rZ(Z){return q0(Z,Tg())}class iK extends O{}class d8 extends O{}class O8 extends O{}class d5 extends O{}function rk(Z,J,K){let X=h(Q([])),W=u0(Z,"IsBackfilling",X),Y=a(W,"IsBackfilling",X,rZ),V;return V=Y[0],d0(V,J,K,()=>{return 0})}function ak(Z,J){if(J)if(Z instanceof d8)return new O8;else if(Z instanceof O8)return Z;else return Z;else if(Z instanceof d8)return Z;else if(Z instanceof O8)return new d5;else return Z}function c5(Z){if(Z instanceof d8)return!0;else if(Z instanceof O8)return!0;else return!1}function c8(Z,J){return py(Z,C5(J,(K)=>{return new bZ(!1,!1,K)}),e,jR,jR,0,0)}function Pg(Z){if(Z instanceof T1)return new T1(Z.kind,Z.name,Z.handler,Z.include,my,Z.stop_propagation,Z.debounce,Z.throttle);else return Z}function f0(Z){return c8("click",s(Z))}function c0(Z){return c8("input",RZ(Q(["target","value"]),u,(J)=>{return s(Z(J))}))}function ok(Z){return c8("change",RZ(Q(["target","value"]),u,(J)=>{return s(Z(J))}))}function Sg(){let J=$(0,u,(X)=>{return $(1,IR(C5(u,(W)=>{return new E(W)}),Q([s(new v(void 0))])),(W)=>{let V=OR(W,(G)=>{return Nk(X,G)});return s(V)})}),K=L0(J);return C5(K,Oy)}function ek(Z){let J=c8("submit",RZ(Q(["detail","formData"]),Sg(),(K)=>{let W=Z(K);return s(W)}));return Pg(J)}var C4=null;function Zb(Z,J,K){if(C4)clearTimeout(C4);if(!Z||Z.trim()===""){K(new E(Q([])));return}C4=setTimeout(async()=>{try{let X=new URL("https://public.api.bsky.app/xrpc/app.bsky.actor.searchActorsTypeahead");X.searchParams.set("q",Z),X.searchParams.set("limit","5");let W=await fetch(X.toString());if(!W.ok){K(new v("Search failed"));return}let V=((await W.json()).actors||[]).map((G)=>new aZ(G.did||"",G.handle||"",G.displayName||"",G.avatar?new L(G.avatar):new b));K(new E(Q(V)))}catch(X){K(new v(X.message||"Search failed"))}},J)}function Jb(){if(C4)clearTimeout(C4),C4=null}class aZ extends O{constructor(Z,J,K,X){super();this.did=Z,this.handle=J,this.display_name=K,this.avatar=X}}class T8 extends O{constructor(Z,J,K,X){super();this.query=Z,this.actors=J,this.highlighted_index=K,this.is_open=X}}class lK extends O{constructor(Z){super();this[0]=Z}}class x4 extends O{constructor(Z){super();this[0]=Z}}class tZ extends O{constructor(Z){super();this[0]=Z}}class sK extends O{}class rK extends O{}class oZ extends O{}class uj extends O{}function Kb(){return new T8("",Q([]),-1,!1)}function P8(Z,J){if(J instanceof lK){let K=J[0],X=F1((W)=>{return Zb(K,300,(Y)=>{return W(new x4(Y))})});return[new T8(K,Z.actors,Z.highlighted_index,K!==""),X]}else if(J instanceof x4){let K=J[0];if(K instanceof E){let X=K[0];return[new T8(Z.query,X,-1,Z.is_open),i()]}else return[new T8(Z.query,Q([]),-1,Z.is_open),i()]}else if(J instanceof tZ){let K=J[0];return[new T8(K.handle,Q([]),-1,!1),i()]}else if(J instanceof sK){let K=t8(Z.actors),X;if(Z.highlighted_index<K-1)X=Z.highlighted_index+1;else X=0;let Y=X;return[new T8(Z.query,Z.actors,Y,Z.is_open),i()]}else if(J instanceof rK){let K=t8(Z.actors),X;if(Z.highlighted_index>0)X=Z.highlighted_index-1;else X=K-1;let Y=X;return[new T8(Z.query,Z.actors,Y,Z.is_open),i()]}else if(J instanceof oZ)return Jb(),[new T8(Z.query,Z.actors,-1,!1),i()];else return[new T8(Z.query,Z.actors,Z.highlighted_index,Z.query!==""),i()]}function Yb(Z){if(Z.highlighted_index>=0){let K=Z.actors,X=K4(K,Z.highlighted_index),W=mL(X);return cM(W)}else return new b}function Ag(Z,J,K){let X;if(J)X="bg-zinc-700";else X="hover:bg-zinc-700";return R(Q([H("flex items-center gap-2 px-3 py-2 cursor-pointer transition-colors "+X),c8("mousedown",s(K(Z.handle)))]),Q([(()=>{let Y=Z.avatar;if(Y instanceof L){let V=Y[0];return Ff(Q([iy(V),H("w-8 h-8 rounded-full flex-shrink-0"),ny("")]))}else return H0()})(),R(Q([H("flex-1 min-w-0")]),Q([(()=>{let Y=Z.display_name;if(Y==="")return H0();else{let V=Y;return R(Q([H("text-sm text-zinc-200 truncate")]),Q([C(V)]))}})(),R(Q([H("text-xs text-zinc-400 truncate")]),Q([C("@"+Z.handle)]))]))]))}function qg(Z,J){return R(Q([H("absolute z-50 w-full mt-1 bg-zinc-800 border border-zinc-700 rounded shadow-lg max-h-60 overflow-y-auto")]),eJ(Z.actors,(K,X)=>{return Ag(K,X===Z.highlighted_index,J)}))}function eZ(Z,J,K,X,W,Y,V,G,I,z){return R(Q([H("relative")]),Q([s0(Q([C0("text"),H8(J),sy(K),i0(Z.query),V1(X),H(W),K5(!0),j("autocomplete","off"),c0(Y),c8("blur",s(I())),c8("focus",s(z())),c8("keydown",$("key",u,(N)=>{return s(G(N))}))])),(()=>{if(Z.is_open&&!x0(Z.actors,Q([])))return qg(Z,V);else return H0()})()]))}class p5 extends O{}class p8 extends O{}class n8 extends O{}class cj extends O{}function w4(Z,J){let K;if(Z instanceof p5)K=["bg-green-900/30","border-green-800","text-green-300","โœ“"];else if(Z instanceof p8)K=["bg-red-900/30","border-red-800","text-red-300","โœ—"];else if(Z instanceof n8)K=["bg-blue-900/30","border-blue-800","text-blue-300","โ„น"];else K=["bg-yellow-900/30","border-yellow-800","text-yellow-300","โš "];let X=K,W,Y,V,G;return W=X[0],Y=X[1],V=X[2],G=X[3],R(Q([H("mb-6 p-4 rounded border "+W+" "+Y)]),Q([R(Q([H("flex items-center gap-3")]),Q([p(Q([H("text-lg "+V)]),Q([C(G)])),p(Q([H("text-sm "+V)]),Q([C(J)]))]))]))}function pj(Z,J,K,X){let W;if(Z instanceof p5)W=["bg-green-900/30","border-green-800","text-green-300","โœ“"];else if(Z instanceof p8)W=["bg-red-900/30","border-red-800","text-red-300","โœ—"];else if(Z instanceof n8)W=["bg-blue-900/30","border-blue-800","text-blue-300","โ„น"];else W=["bg-yellow-900/30","border-yellow-800","text-yellow-300","โš "];let Y=W,V,G,I,z;return V=Y[0],G=Y[1],I=Y[2],z=Y[3],R(Q([H("mb-6 p-4 rounded border "+V+" "+G)]),Q([R(Q([H("flex items-center gap-3")]),Q([p(Q([H("text-lg "+I)]),Q([C(z)])),p(Q([H("text-sm "+I)]),Q([C(J+" "),m1(Q([v1(X),H("underline hover:no-underline")]),Q([C(K)]))]))]))]))}var n5="http://www.w3.org/2000/svg";function Q5(Z){return g1(n5,"ellipse",Z,e)}function ZJ(Z){return g1(n5,"rect",Z,e)}function tK(Z,J){return g1(n5,"defs",Z,J)}function i5(Z,J){return g1(n5,"g",Z,J)}function U4(Z,J){return g1(n5,"svg",Z,J)}function M4(Z,J){return g1(n5,"linearGradient",Z,J)}function S8(Z){return g1(n5,"stop",Z,e)}function Xb(Z){return U4(Q([j("viewBox","0 0 128 128"),j("xmlns","http://www.w3.org/2000/svg"),j("overflow","visible"),H(Z)]),Q([tK(Q([]),Q([M4(Q([H8("backfill-board1"),j("x1","0%"),j("y1","0%"),j("x2","100%"),j("y2","100%")]),Q([S8(Q([j("offset","0%"),j("stop-color","#FF6347"),j("stop-opacity","1")])),S8(Q([j("offset","100%"),j("stop-color","#FF4500"),j("stop-opacity","1")]))])),M4(Q([H8("backfill-board2"),j("x1","0%"),j("y1","0%"),j("x2","100%"),j("y2","100%")]),Q([S8(Q([j("offset","0%"),j("stop-color","#00CED1"),j("stop-opacity","1")])),S8(Q([j("offset","100%"),j("stop-color","#4682B4"),j("stop-opacity","1")]))])),y0("style",Q([]),Q([C(` 6 .backfill-ellipse1 { animation: backfill-pulse 1.5s ease-in-out infinite; } 7 .backfill-ellipse2 { animation: backfill-pulse 1.5s ease-in-out infinite 0.2s; } 8 .backfill-ellipse3 { animation: backfill-pulse 1.5s ease-in-out infinite 0.4s; } ··· 10 0%, 100% { transform: scale(1); opacity: 1; } 11 50% { transform: scale(1.1); opacity: 0.8; } 12 } 13 + `)]))])),i5(Q([j("transform","translate(64, 64)")]),Q([Q5(Q([H("backfill-ellipse1"),j("cx","0"),j("cy","-28"),j("rx","50"),j("ry","20"),j("fill","url(#backfill-board1)"),j("style","transform-origin: 0 -28px;")])),Q5(Q([H("backfill-ellipse2"),j("cx","0"),j("cy","0"),j("rx","60"),j("ry","20"),j("fill","url(#backfill-board2)"),j("style","transform-origin: 0 0;")])),Q5(Q([H("backfill-ellipse3"),j("cx","0"),j("cy","28"),j("rx","40"),j("ry","20"),j("fill","#32CD32"),j("style","transform-origin: 0 28px;")]))]))]))}var sj={};AL(sj,{icons:()=>lj,createIcons:()=>Qb,createElement:()=>eK,ZoomOut:()=>SM,ZoomIn:()=>PM,ZapOff:()=>OM,Zap:()=>TM,Youtube:()=>BM,XSquare:()=>a9,XOctagon:()=>L6,XCircle:()=>b7,X:()=>HM,Wrench:()=>FM,WrapText:()=>YZ,Worm:()=>DM,Workflow:()=>NM,WineOff:()=>IM,Wine:()=>zM,WindArrowDown:()=>VM,Wind:()=>GM,WifiZero:()=>XM,WifiSync:()=>WM,WifiPen:()=>YM,WifiOff:()=>KM,WifiLow:()=>JM,WifiHigh:()=>ZM,WifiCog:()=>eU,Wifi:()=>QM,WholeWord:()=>oU,WheatOff:()=>aU,Wheat:()=>tU,Weight:()=>rU,WebhookOff:()=>lU,Webhook:()=>sU,Webcam:()=>iU,Waypoints:()=>pU,WavesLadder:()=>cU,Waves:()=>nU,Watch:()=>dU,WashingMachine:()=>uU,Warehouse:()=>mU,WandSparkles:()=>SZ,Wand2:()=>SZ,Wand:()=>_U,Wallpaper:()=>gU,WalletMinimal:()=>PZ,WalletCards:()=>vU,Wallet2:()=>PZ,Wallet:()=>$U,Vote:()=>hU,VolumeX:()=>kU,VolumeOff:()=>fU,Volume2:()=>yU,Volume1:()=>LU,Volume:()=>bU,Volleyball:()=>jU,Voicemail:()=>RU,View:()=>MU,Videotape:()=>UU,VideoOff:()=>xU,Video:()=>wU,VibrateOff:()=>EU,Vibrate:()=>CU,Verified:()=>g4,VenusAndMars:()=>AU,Venus:()=>qU,VenetianMask:()=>SU,Vegan:()=>PU,VectorSquare:()=>TU,Vault:()=>OU,Variable:()=>DU,UtilityPole:()=>BU,UtensilsCrossed:()=>OZ,Utensils:()=>TZ,UsersRound:()=>BZ,Users2:()=>BZ,Users:()=>HU,UserX2:()=>HZ,UserX:()=>NU,UserStar:()=>zU,UserSquare2:()=>s9,UserSquare:()=>r9,UserSearch:()=>IU,UserRoundX:()=>HZ,UserRoundSearch:()=>GU,UserRoundPlus:()=>FZ,UserRoundPen:()=>VU,UserRoundMinus:()=>NZ,UserRoundCog:()=>zZ,UserRoundCheck:()=>IZ,UserRound:()=>DZ,UserPlus2:()=>FZ,UserPlus:()=>QU,UserPen:()=>WU,UserMinus2:()=>NZ,UserMinus:()=>XU,UserLock:()=>YU,UserCog2:()=>zZ,UserCog:()=>KU,UserCircle2:()=>f7,UserCircle:()=>k7,UserCheck2:()=>IZ,UserCheck:()=>ZU,User2:()=>DZ,User:()=>FU,Usb:()=>JU,UploadCloud:()=>g7,Upload:()=>ow,Unplug:()=>ew,UnlockKeyhole:()=>q6,Unlock:()=>E6,Unlink2:()=>aw,Unlink:()=>tw,University:()=>GZ,Ungroup:()=>rw,UnfoldVertical:()=>sw,UnfoldHorizontal:()=>lw,UndoDot:()=>iw,Undo2:()=>pw,Undo:()=>nw,Underline:()=>cw,UmbrellaOff:()=>uw,Umbrella:()=>dw,TypeOutline:()=>_w,Type:()=>mw,Twitter:()=>gw,Twitch:()=>vw,TvMinimalPlay:()=>hw,TvMinimal:()=>VZ,Tv2:()=>VZ,Tv:()=>$w,Turtle:()=>bw,Turntable:()=>kw,TurkishLira:()=>fw,TruckElectric:()=>Lw,Truck:()=>yw,Trophy:()=>jw,TriangleRight:()=>Rw,TriangleDashed:()=>Uw,TriangleAlert:()=>QZ,Triangle:()=>Mw,TrendingUpDown:()=>xw,TrendingUp:()=>ww,TrendingDown:()=>Ew,Trello:()=>Cw,Trees:()=>qw,TreePine:()=>Aw,TreePalm:()=>WZ,TreeDeciduous:()=>Sw,Trash2:()=>Tw,Trash:()=>Pw,Transgender:()=>Ow,TramFront:()=>XZ,TrainTrack:()=>Bw,TrainFrontTunnel:()=>Dw,TrainFront:()=>Hw,Train:()=>XZ,TrafficCone:()=>Fw,Tractor:()=>Nw,ToyBrick:()=>zw,TowerControl:()=>Iw,TouchpadOff:()=>Qw,Touchpad:()=>Vw,Torus:()=>Gw,Tornado:()=>Ww,ToolCase:()=>Xw,Toilet:()=>Yw,ToggleRight:()=>Kw,ToggleLeft:()=>Jw,TimerReset:()=>ex,TimerOff:()=>ox,Timer:()=>Zw,TicketsPlane:()=>ax,Tickets:()=>tx,TicketX:()=>sx,TicketSlash:()=>lx,TicketPlus:()=>ix,TicketPercent:()=>nx,TicketMinus:()=>px,TicketCheck:()=>cx,Ticket:()=>rx,ThumbsUp:()=>dx,ThumbsDown:()=>ux,ThermometerSun:()=>_x,ThermometerSnowflake:()=>gx,Thermometer:()=>mx,Theater:()=>$x,TextWrap:()=>YZ,TextSelection:()=>KZ,TextSelect:()=>KZ,TextSearch:()=>vx,TextQuote:()=>hx,TextInitial:()=>JZ,TextCursorInput:()=>kx,TextCursor:()=>bx,TextAlignStart:()=>H5,TextAlignJustify:()=>e9,TextAlignEnd:()=>ZZ,TextAlignCenter:()=>o9,Text:()=>H5,TestTubes:()=>yx,TestTubeDiagonal:()=>t9,TestTube2:()=>t9,TestTube:()=>fx,TerminalSquare:()=>l9,Terminal:()=>Lx,TentTree:()=>Rx,Tent:()=>jx,Telescope:()=>Mx,Target:()=>wx,Tangent:()=>Ux,Tally5:()=>xx,Tally4:()=>Cx,Tally3:()=>Ex,Tally2:()=>qx,Tally1:()=>Ax,Tags:()=>Sx,Tag:()=>Px,Tablets:()=>Tx,TabletSmartphone:()=>Bx,Tablet:()=>Ox,TableRowsSplit:()=>Hx,TableProperties:()=>Fx,TableOfContents:()=>Nx,TableConfig:()=>G5,TableColumnsSplit:()=>zx,TableCellsSplit:()=>Ix,TableCellsMerge:()=>Gx,Table2:()=>Vx,Table:()=>Dx,Syringe:()=>Qx,Swords:()=>Wx,Sword:()=>Xx,SwitchCamera:()=>Yx,SwissFranc:()=>Kx,SwatchBook:()=>Jx,Superscript:()=>Zx,Sunset:()=>eC,Sunrise:()=>oC,SunSnow:()=>aC,SunMoon:()=>rC,SunMedium:()=>sC,SunDim:()=>lC,Sun:()=>tC,Subtitles:()=>p4,Subscript:()=>iC,Strikethrough:()=>nC,StretchVertical:()=>pC,StretchHorizontal:()=>cC,Store:()=>dC,StopCircle:()=>y7,StickyNote:()=>uC,Sticker:()=>mC,Stethoscope:()=>_C,StepForward:()=>gC,StepBack:()=>$C,Stars:()=>o6,StarOff:()=>hC,StarHalf:()=>bC,Star:()=>vC,Stamp:()=>kC,Squirrel:()=>fC,SquircleDashed:()=>LC,Squircle:()=>yC,SquaresUnite:()=>jC,SquaresSubtract:()=>MC,SquaresIntersect:()=>RC,SquaresExclude:()=>UC,SquareX:()=>a9,SquareUserRound:()=>s9,SquareUser:()=>r9,SquareTerminal:()=>l9,SquareStop:()=>xC,SquareStar:()=>CC,SquareStack:()=>EC,SquareSquare:()=>qC,SquareSplitVertical:()=>i9,SquareSplitHorizontal:()=>n9,SquareSlash:()=>p9,SquareSigma:()=>c9,SquareScissors:()=>d9,SquareRoundCorner:()=>AC,SquareRadical:()=>SC,SquarePower:()=>u9,SquarePlus:()=>m9,SquarePlay:()=>_9,SquarePilcrow:()=>g9,SquarePi:()=>$9,SquarePercent:()=>v9,SquarePen:()=>A8,SquarePause:()=>PC,SquareParkingOff:()=>b9,SquareParking:()=>h9,SquareMousePointer:()=>k9,SquareMinus:()=>f9,SquareMenu:()=>y9,SquareM:()=>L9,SquareLibrary:()=>j9,SquareKanban:()=>R9,SquareGanttChart:()=>F5,SquareFunction:()=>M9,SquareEqual:()=>U9,SquareDot:()=>w9,SquareDivide:()=>x9,SquareDashedTopSolid:()=>TC,SquareDashedMousePointer:()=>E9,SquareDashedKanban:()=>q9,SquareDashedBottomCode:()=>BC,SquareDashedBottom:()=>OC,SquareDashed:()=>C9,SquareCode:()=>A9,SquareChevronUp:()=>S9,SquareChevronRight:()=>P9,SquareChevronLeft:()=>T9,SquareChevronDown:()=>O9,SquareCheckBig:()=>D9,SquareCheck:()=>B9,SquareChartGantt:()=>F5,SquareBottomDashedScissors:()=>H9,SquareAsterisk:()=>F9,SquareArrowUpRight:()=>z9,SquareArrowUpLeft:()=>I9,SquareArrowUp:()=>N9,SquareArrowRight:()=>G9,SquareArrowOutUpRight:()=>V9,SquareArrowOutUpLeft:()=>Q9,SquareArrowOutDownRight:()=>W9,SquareArrowOutDownLeft:()=>X9,SquareArrowLeft:()=>Y9,SquareArrowDownRight:()=>J9,SquareArrowDownLeft:()=>Z9,SquareArrowDown:()=>K9,SquareActivity:()=>e6,Square:()=>wC,Sprout:()=>DC,SprayCan:()=>HC,Spotlight:()=>FC,Spool:()=>NC,SplitSquareVertical:()=>i9,SplitSquareHorizontal:()=>n9,Split:()=>zC,SplinePointer:()=>GC,Spline:()=>IC,SpellCheck2:()=>QC,SpellCheck:()=>VC,Speech:()=>WC,Speaker:()=>XC,Sparkles:()=>o6,Sparkle:()=>YC,Spade:()=>KC,Space:()=>JC,Soup:()=>ZC,SortDesc:()=>f4,SortAsc:()=>h4,Sofa:()=>eE,SoapDispenserDroplet:()=>tE,Snowflake:()=>oE,Snail:()=>aE,SmilePlus:()=>sE,Smile:()=>rE,SmartphoneNfc:()=>iE,SmartphoneCharging:()=>nE,Smartphone:()=>lE,SlidersVertical:()=>t6,SlidersHorizontal:()=>pE,Sliders:()=>t6,Slice:()=>cE,SlashSquare:()=>p9,Slash:()=>dE,Slack:()=>uE,Skull:()=>mE,SkipForward:()=>_E,SkipBack:()=>gE,Siren:()=>$E,SignpostBig:()=>hE,Signpost:()=>vE,Signature:()=>bE,SignalZero:()=>fE,SignalMedium:()=>yE,SignalLow:()=>LE,SignalHigh:()=>jE,Signal:()=>kE,SigmaSquare:()=>c9,Sigma:()=>RE,SidebarOpen:()=>h6,SidebarClose:()=>k6,Sidebar:()=>v6,Shuffle:()=>ME,Shrub:()=>UE,Shrink:()=>wE,Shrimp:()=>xE,Shredder:()=>CE,ShowerHead:()=>EE,Shovel:()=>qE,ShoppingCart:()=>AE,ShoppingBasket:()=>SE,ShoppingBag:()=>PE,Shirt:()=>TE,ShipWheel:()=>BE,Ship:()=>OE,ShieldX:()=>a6,ShieldUser:()=>HE,ShieldQuestionMark:()=>r6,ShieldQuestion:()=>r6,ShieldPlus:()=>FE,ShieldOff:()=>NE,ShieldMinus:()=>zE,ShieldHalf:()=>IE,ShieldEllipsis:()=>GE,ShieldClose:()=>a6,ShieldCheck:()=>VE,ShieldBan:()=>WE,ShieldAlert:()=>QE,Shield:()=>DE,Shell:()=>YE,Sheet:()=>XE,Share2:()=>JE,Share:()=>KE,Shapes:()=>ZE,Settings2:()=>oq,Settings:()=>eq,ServerOff:()=>aq,ServerCrash:()=>rq,ServerCog:()=>lq,Server:()=>tq,SeparatorVertical:()=>sq,SeparatorHorizontal:()=>iq,SendToBack:()=>pq,SendHorizontal:()=>s6,SendHorizonal:()=>s6,Send:()=>nq,Section:()=>cq,SearchX:()=>uq,SearchSlash:()=>mq,SearchCode:()=>gq,SearchCheck:()=>_q,Search:()=>dq,ScrollText:()=>vq,Scroll:()=>$q,ScreenShareOff:()=>bq,ScreenShare:()=>hq,ScissorsSquareDashedBottom:()=>H9,ScissorsSquare:()=>d9,ScissorsLineDashed:()=>fq,Scissors:()=>kq,School2:()=>GZ,School:()=>yq,ScatterChart:()=>Y7,ScanText:()=>jq,ScanSearch:()=>Rq,ScanQrCode:()=>Mq,ScanLine:()=>Uq,ScanHeart:()=>wq,ScanFace:()=>xq,ScanEye:()=>Cq,ScanBarcode:()=>Eq,Scan:()=>Lq,Scaling:()=>qq,Scale3d:()=>l6,Scale3D:()=>l6,Scale:()=>Aq,SaveOff:()=>Pq,SaveAll:()=>Tq,Save:()=>Sq,SaudiRiyal:()=>Oq,SatelliteDish:()=>Dq,Satellite:()=>Bq,Sandwich:()=>Hq,Salad:()=>Fq,Sailboat:()=>Nq,RussianRuble:()=>zq,RulerDimensionLine:()=>Gq,Ruler:()=>Iq,Rss:()=>Qq,Rows4:()=>Vq,Rows3:()=>i6,Rows2:()=>n6,Rows:()=>n6,Router:()=>Wq,RouteOff:()=>Yq,Route:()=>Xq,RotateCwSquare:()=>Jq,RotateCw:()=>Kq,RotateCcwSquare:()=>eA,RotateCcwKey:()=>oA,RotateCcw:()=>Zq,Rotate3d:()=>p6,Rotate3D:()=>p6,Rose:()=>tA,RollerCoaster:()=>aA,RockingChair:()=>rA,Rocket:()=>sA,Ribbon:()=>lA,Rewind:()=>iA,ReplyAll:()=>pA,Reply:()=>nA,ReplaceAll:()=>dA,Replace:()=>cA,Repeat2:()=>mA,Repeat1:()=>_A,Repeat:()=>uA,RemoveFormatting:()=>gA,Regex:()=>$A,Refrigerator:()=>vA,RefreshCwOff:()=>bA,RefreshCw:()=>hA,RefreshCcwDot:()=>fA,RefreshCcw:()=>kA,RedoDot:()=>LA,Redo2:()=>jA,Redo:()=>yA,Recycle:()=>RA,RectangleVertical:()=>MA,RectangleHorizontal:()=>UA,RectangleGoggles:()=>wA,RectangleEllipsis:()=>c6,RectangleCircle:()=>xA,ReceiptTurkishLira:()=>CA,ReceiptText:()=>qA,ReceiptSwissFranc:()=>AA,ReceiptRussianRuble:()=>SA,ReceiptPoundSterling:()=>PA,ReceiptJapaneseYen:()=>TA,ReceiptIndianRupee:()=>OA,ReceiptEuro:()=>BA,ReceiptCent:()=>DA,Receipt:()=>EA,Ratio:()=>HA,Rat:()=>NA,Rainbow:()=>FA,RailSymbol:()=>zA,Radius:()=>IA,RadioTower:()=>VA,RadioReceiver:()=>QA,Radio:()=>GA,Radical:()=>WA,Radiation:()=>XA,Radar:()=>YA,Rabbit:()=>KA,Quote:()=>JA,QrCode:()=>eS,Pyramid:()=>ZA,Puzzle:()=>oS,Proportions:()=>tS,Projector:()=>aS,PrinterCheck:()=>sS,Printer:()=>rS,Presentation:()=>lS,PowerSquare:()=>u9,PowerOff:()=>nS,PowerCircle:()=>j7,Power:()=>iS,PoundSterling:()=>pS,Popsicle:()=>cS,Popcorn:()=>dS,PointerOff:()=>mS,Pointer:()=>uS,Podcast:()=>_S,PocketKnife:()=>$S,Pocket:()=>gS,PlusSquare:()=>m9,PlusCircle:()=>R7,Plus:()=>vS,PlugZap2:()=>d6,PlugZap:()=>d6,Plug2:()=>bS,Plug:()=>hS,PlaySquare:()=>_9,PlayCircle:()=>M7,Play:()=>kS,PlaneTakeoff:()=>yS,PlaneLanding:()=>LS,Plane:()=>fS,Pizza:()=>jS,Pipette:()=>MS,PinOff:()=>RS,Pin:()=>US,PillBottle:()=>xS,Pill:()=>wS,PilcrowSquare:()=>g9,PilcrowRight:()=>ES,PilcrowLeft:()=>AS,Pilcrow:()=>CS,PiggyBank:()=>qS,PieChart:()=>K7,PictureInPicture2:()=>PS,PictureInPicture:()=>SS,Pickaxe:()=>TS,Piano:()=>OS,PiSquare:()=>$9,Pi:()=>BS,PhoneOutgoing:()=>HS,PhoneOff:()=>FS,PhoneMissed:()=>NS,PhoneIncoming:()=>zS,PhoneForwarded:()=>IS,PhoneCall:()=>GS,Phone:()=>DS,PhilippinePeso:()=>VS,PersonStanding:()=>QS,PercentSquare:()=>v9,PercentDiamond:()=>c7,PercentCircle:()=>U7,Percent:()=>WS,Pentagon:()=>XS,PencilRuler:()=>KS,PencilOff:()=>JS,PencilLine:()=>ZS,Pencil:()=>YS,PenTool:()=>eP,PenSquare:()=>A8,PenOff:()=>oP,PenLine:()=>m6,PenBox:()=>A8,Pen:()=>u6,PcCase:()=>tP,PawPrint:()=>aP,PauseOctagon:()=>j6,PauseCircle:()=>w7,Pause:()=>rP,PartyPopper:()=>sP,ParkingSquareOff:()=>b9,ParkingSquare:()=>h9,ParkingMeter:()=>iP,ParkingCircleOff:()=>C7,ParkingCircle:()=>x7,Parentheses:()=>lP,Paperclip:()=>nP,PanelsTopLeft:()=>_6,PanelsTopBottom:()=>i6,PanelsRightBottom:()=>pP,PanelsLeftRight:()=>u7,PanelsLeftBottom:()=>dP,PanelTopOpen:()=>uP,PanelTopInactive:()=>g6,PanelTopDashed:()=>g6,PanelTopClose:()=>mP,PanelTopBottomDashed:()=>_P,PanelTop:()=>cP,PanelRightOpen:()=>gP,PanelRightInactive:()=>$6,PanelRightDashed:()=>$6,PanelRightClose:()=>vP,PanelRight:()=>$P,PanelLeftRightDashed:()=>hP,PanelLeftOpen:()=>h6,PanelLeftInactive:()=>b6,PanelLeftDashed:()=>b6,PanelLeftClose:()=>k6,PanelLeft:()=>v6,PanelBottomOpen:()=>kP,PanelBottomInactive:()=>f6,PanelBottomDashed:()=>f6,PanelBottomClose:()=>fP,PanelBottom:()=>bP,Panda:()=>yP,Palmtree:()=>WZ,Palette:()=>LP,PaintbrushVertical:()=>y6,Paintbrush2:()=>y6,Paintbrush:()=>jP,PaintRoller:()=>RP,PaintBucket:()=>MP,PackageX:()=>wP,PackageSearch:()=>xP,PackagePlus:()=>CP,PackageOpen:()=>EP,PackageMinus:()=>qP,PackageCheck:()=>AP,Package2:()=>SP,Package:()=>UP,Outdent:()=>z5,Origami:()=>PP,Orbit:()=>TP,Option:()=>OP,Omega:()=>BP,OctagonX:()=>L6,OctagonPause:()=>j6,OctagonMinus:()=>HP,OctagonAlert:()=>R6,Octagon:()=>DP,NutOff:()=>NP,Nut:()=>FP,NotepadTextDashed:()=>IP,NotepadText:()=>zP,NotebookText:()=>VP,NotebookTabs:()=>QP,NotebookPen:()=>WP,Notebook:()=>GP,NonBinary:()=>XP,Nfc:()=>YP,Newspaper:()=>KP,Network:()=>JP,NavigationOff:()=>eT,Navigation2Off:()=>tT,Navigation2:()=>oT,Navigation:()=>ZP,Music4:()=>rT,Music3:()=>sT,Music2:()=>lT,Music:()=>aT,MoveVertical:()=>nT,MoveUpRight:()=>cT,MoveUpLeft:()=>dT,MoveUp:()=>pT,MoveRight:()=>uT,MoveLeft:()=>mT,MoveHorizontal:()=>_T,MoveDownRight:()=>$T,MoveDownLeft:()=>vT,MoveDown:()=>gT,MoveDiagonal2:()=>bT,MoveDiagonal:()=>hT,Move3d:()=>M6,Move3D:()=>M6,Move:()=>iT,MousePointerSquareDashed:()=>E9,MousePointerClick:()=>yT,MousePointerBan:()=>LT,MousePointer2:()=>jT,MousePointer:()=>fT,MouseOff:()=>RT,Mouse:()=>kT,MountainSnow:()=>UT,Mountain:()=>MT,Motorbike:()=>wT,MoreVertical:()=>n7,MoreHorizontal:()=>i7,MoonStar:()=>CT,Moon:()=>xT,MonitorX:()=>qT,MonitorUp:()=>AT,MonitorStop:()=>ST,MonitorSpeaker:()=>PT,MonitorSmartphone:()=>TT,MonitorPlay:()=>OT,MonitorPause:()=>BT,MonitorOff:()=>DT,MonitorDown:()=>HT,MonitorDot:()=>FT,MonitorCog:()=>NT,MonitorCloud:()=>zT,MonitorCheck:()=>IT,Monitor:()=>ET,MinusSquare:()=>f9,MinusCircle:()=>E7,Minus:()=>GT,Minimize2:()=>QT,Minimize:()=>VT,MilkOff:()=>WT,Milk:()=>XT,Milestone:()=>YT,Microwave:()=>KT,Microscope:()=>JT,Microchip:()=>ZT,MicVocal:()=>U6,MicOff:()=>oO,Mic2:()=>U6,Mic:()=>eO,MessagesSquare:()=>tO,MessageSquareX:()=>rO,MessageSquareWarning:()=>sO,MessageSquareText:()=>lO,MessageSquareShare:()=>nO,MessageSquareReply:()=>iO,MessageSquareQuote:()=>pO,MessageSquarePlus:()=>cO,MessageSquareOff:()=>dO,MessageSquareMore:()=>uO,MessageSquareLock:()=>mO,MessageSquareHeart:()=>_O,MessageSquareDot:()=>gO,MessageSquareDiff:()=>$O,MessageSquareDashed:()=>vO,MessageSquareCode:()=>hO,MessageSquare:()=>aO,MessageCircleX:()=>kO,MessageCircleWarning:()=>fO,MessageCircleReply:()=>yO,MessageCircleQuestionMark:()=>w6,MessageCircleQuestion:()=>w6,MessageCirclePlus:()=>LO,MessageCircleOff:()=>jO,MessageCircleMore:()=>RO,MessageCircleHeart:()=>MO,MessageCircleDashed:()=>UO,MessageCircleCode:()=>wO,MessageCircle:()=>bO,Merge:()=>xO,MenuSquare:()=>y9,Menu:()=>CO,MemoryStick:()=>EO,Meh:()=>qO,MegaphoneOff:()=>SO,Megaphone:()=>AO,Medal:()=>PO,Maximize2:()=>OO,Maximize:()=>TO,Martini:()=>BO,MarsStroke:()=>HO,Mars:()=>DO,MapPlus:()=>FO,MapPinned:()=>zO,MapPinXInside:()=>VO,MapPinX:()=>GO,MapPinPlusInside:()=>WO,MapPinPlus:()=>QO,MapPinPen:()=>x6,MapPinOff:()=>XO,MapPinMinusInside:()=>YO,MapPinMinus:()=>KO,MapPinHouse:()=>JO,MapPinCheckInside:()=>e2,MapPinCheck:()=>ZO,MapPin:()=>IO,MapMinus:()=>o2,Map:()=>NO,Mails:()=>t2,Mailbox:()=>a2,MailX:()=>s2,MailWarning:()=>l2,MailSearch:()=>i2,MailQuestionMark:()=>C6,MailQuestion:()=>C6,MailPlus:()=>n2,MailOpen:()=>p2,MailMinus:()=>c2,MailCheck:()=>d2,Mail:()=>r2,Magnet:()=>u2,MSquare:()=>L9,Luggage:()=>m2,Lollipop:()=>_2,Logs:()=>g2,LogOut:()=>$2,LogIn:()=>v2,LockOpen:()=>E6,LockKeyholeOpen:()=>q6,LockKeyhole:()=>b2,Lock:()=>h2,LocationEdit:()=>x6,LocateOff:()=>f2,LocateFixed:()=>y2,Locate:()=>k2,LoaderPinwheel:()=>j2,LoaderCircle:()=>A6,Loader2:()=>A6,Loader:()=>L2,ListX:()=>M2,ListVideo:()=>U2,ListTree:()=>w2,ListTodo:()=>x2,ListStart:()=>C2,ListRestart:()=>q2,ListPlus:()=>A2,ListOrdered:()=>E2,ListMusic:()=>S2,ListMinus:()=>P2,ListIndentIncrease:()=>N5,ListIndentDecrease:()=>z5,ListFilterPlus:()=>T2,ListFilter:()=>O2,ListEnd:()=>B2,ListCollapse:()=>D2,ListChevronsUpDown:()=>H2,ListChevronsDownUp:()=>F2,ListChecks:()=>N2,ListCheck:()=>z2,List:()=>R2,Linkedin:()=>I2,Link2Off:()=>Q2,Link2:()=>V2,Link:()=>G2,LineSquiggle:()=>W2,LineChart:()=>o4,LightbulbOff:()=>Y2,Lightbulb:()=>X2,Ligature:()=>K2,LifeBuoy:()=>Z2,LibrarySquare:()=>j9,LibraryBig:()=>eB,Library:()=>J2,LetterText:()=>JZ,Lectern:()=>oB,LeafyGreen:()=>tB,Leaf:()=>aB,LayoutTemplate:()=>rB,LayoutPanelTop:()=>sB,LayoutPanelLeft:()=>lB,LayoutList:()=>iB,LayoutGrid:()=>nB,LayoutDashboard:()=>pB,Layout:()=>_6,Layers3:()=>S6,Layers2:()=>cB,Layers:()=>S6,Laugh:()=>dB,LassoSelect:()=>mB,Lasso:()=>uB,LaptopMinimalCheck:()=>gB,LaptopMinimal:()=>P6,Laptop2:()=>P6,Laptop:()=>_B,Languages:()=>$B,Landmark:()=>vB,LandPlot:()=>hB,LampWallUp:()=>kB,LampWallDown:()=>fB,LampFloor:()=>yB,LampDesk:()=>LB,LampCeiling:()=>jB,Lamp:()=>bB,KeyboardOff:()=>MB,KeyboardMusic:()=>UB,Keyboard:()=>RB,KeySquare:()=>xB,KeyRound:()=>CB,Key:()=>wB,Kayak:()=>EB,KanbanSquareDashed:()=>q9,KanbanSquare:()=>R9,Kanban:()=>qB,Joystick:()=>AB,JapaneseYen:()=>SB,IterationCw:()=>PB,IterationCcw:()=>OB,Italic:()=>BB,Instagram:()=>TB,InspectionPanel:()=>DB,Inspect:()=>k9,Info:()=>FB,Infinity:()=>HB,IndianRupee:()=>NB,IndentIncrease:()=>N5,IndentDecrease:()=>z5,Indent:()=>N5,Inbox:()=>zB,Import:()=>IB,Images:()=>GB,ImageUpscale:()=>QB,ImageUp:()=>WB,ImagePlus:()=>XB,ImagePlay:()=>YB,ImageOff:()=>KB,ImageMinus:()=>JB,ImageDown:()=>ZB,Image:()=>VB,IdCardLanyard:()=>eD,IdCard:()=>oD,IceCreamCone:()=>T6,IceCreamBowl:()=>O6,IceCream2:()=>O6,IceCream:()=>T6,HouseWifi:()=>aD,HousePlus:()=>tD,HousePlug:()=>sD,HouseHeart:()=>rD,House:()=>B6,Hourglass:()=>lD,Hotel:()=>iD,Hospital:()=>nD,HopOff:()=>cD,Hop:()=>pD,Home:()=>B6,History:()=>dD,Highlighter:()=>mD,Hexagon:()=>uD,HelpingHand:()=>D6,HelpCircle:()=>V5,Heater:()=>_D,HeartPulse:()=>$D,HeartPlus:()=>vD,HeartOff:()=>hD,HeartMinus:()=>bD,HeartHandshake:()=>kD,HeartCrack:()=>fD,Heart:()=>gD,Headset:()=>yD,Headphones:()=>LD,HeadphoneOff:()=>jD,Heading6:()=>MD,Heading5:()=>UD,Heading4:()=>wD,Heading3:()=>xD,Heading2:()=>CD,Heading1:()=>ED,Heading:()=>RD,HdmiPort:()=>qD,Haze:()=>AD,HatGlasses:()=>SD,Hash:()=>PD,HardHat:()=>TD,HardDriveUpload:()=>BD,HardDriveDownload:()=>DD,HardDrive:()=>OD,Handshake:()=>HD,Handbag:()=>FD,HandPlatter:()=>zD,HandMetal:()=>ID,HandHelping:()=>D6,HandHeart:()=>GD,HandGrab:()=>H6,HandFist:()=>VD,HandCoins:()=>QD,Hand:()=>ND,Hammer:()=>WD,Hamburger:()=>XD,Ham:()=>YD,Guitar:()=>KD,Group:()=>JD,GripVertical:()=>eH,GripHorizontal:()=>oH,Grip:()=>ZD,Grid3x3:()=>I5,Grid3x2:()=>tH,Grid3X3:()=>I5,Grid2x2X:()=>N6,Grid2x2Plus:()=>z6,Grid2x2Check:()=>I6,Grid2x2:()=>F6,Grid2X2X:()=>N6,Grid2X2Plus:()=>z6,Grid2X2Check:()=>I6,Grid2X2:()=>F6,Grid:()=>I5,Grape:()=>aH,GraduationCap:()=>rH,Grab:()=>H6,Gpu:()=>sH,Goal:()=>lH,GlobeLock:()=>nH,Globe2:()=>p7,Globe:()=>iH,Glasses:()=>pH,GlassWater:()=>cH,Gitlab:()=>dH,Github:()=>uH,GitPullRequestDraft:()=>_H,GitPullRequestCreateArrow:()=>vH,GitPullRequestCreate:()=>gH,GitPullRequestClosed:()=>$H,GitPullRequestArrow:()=>hH,GitPullRequest:()=>mH,GitMerge:()=>bH,GitGraph:()=>kH,GitFork:()=>fH,GitCompareArrows:()=>LH,GitCompare:()=>yH,GitCommitVertical:()=>jH,GitCommitHorizontal:()=>G6,GitCommit:()=>G6,GitBranchPlus:()=>MH,GitBranch:()=>RH,Gift:()=>UH,Ghost:()=>wH,GeorgianLari:()=>xH,Gem:()=>CH,Gavel:()=>EH,GaugeCircle:()=>q7,Gauge:()=>qH,GanttChartSquare:()=>F5,GanttChart:()=>J7,GamepadDirectional:()=>SH,Gamepad2:()=>PH,Gamepad:()=>AH,GalleryVerticalEnd:()=>OH,GalleryVertical:()=>TH,GalleryThumbnails:()=>BH,GalleryHorizontalEnd:()=>HH,GalleryHorizontal:()=>DH,FunnelX:()=>Q6,FunnelPlus:()=>FH,Funnel:()=>V6,FunctionSquare:()=>M9,Fullscreen:()=>NH,Fuel:()=>zH,Frown:()=>IH,Framer:()=>GH,Frame:()=>VH,Forward:()=>QH,FormInput:()=>c6,Forklift:()=>WH,ForkKnifeCrossed:()=>OZ,ForkKnife:()=>TZ,Footprints:()=>XH,Folders:()=>YH,FolderX:()=>JH,FolderUp:()=>ZH,FolderTree:()=>eF,FolderSync:()=>oF,FolderSymlink:()=>tF,FolderSearch2:()=>rF,FolderSearch:()=>aF,FolderRoot:()=>sF,FolderPlus:()=>lF,FolderPen:()=>W6,FolderOutput:()=>iF,FolderOpenDot:()=>pF,FolderOpen:()=>nF,FolderMinus:()=>cF,FolderLock:()=>dF,FolderKey:()=>uF,FolderKanban:()=>mF,FolderInput:()=>_F,FolderHeart:()=>gF,FolderGit2:()=>hF,FolderGit:()=>$F,FolderEdit:()=>W6,FolderDown:()=>vF,FolderDot:()=>bF,FolderCog2:()=>X6,FolderCog:()=>X6,FolderCode:()=>kF,FolderClosed:()=>fF,FolderClock:()=>yF,FolderCheck:()=>LF,FolderArchive:()=>jF,Folder:()=>KH,FoldVertical:()=>RF,FoldHorizontal:()=>MF,Focus:()=>UF,Flower2:()=>xF,Flower:()=>wF,FlipVertical2:()=>EF,FlipVertical:()=>CF,FlipHorizontal2:()=>AF,FlipHorizontal:()=>qF,FlaskRound:()=>SF,FlaskConicalOff:()=>TF,FlaskConical:()=>PF,FlashlightOff:()=>BF,Flashlight:()=>OF,FlameKindling:()=>HF,Flame:()=>DF,FlagTriangleRight:()=>NF,FlagTriangleLeft:()=>zF,FlagOff:()=>GF,Flag:()=>FF,FishSymbol:()=>VF,FishOff:()=>QF,Fish:()=>IF,FireExtinguisher:()=>WF,Fingerprint:()=>XF,FilterX:()=>Q6,Filter:()=>V6,Film:()=>YF,Files:()=>JF,FileX2:()=>eN,FileX:()=>ZF,FileWarning:()=>oN,FileVolume2:()=>aN,FileVolume:()=>tN,FileVideoCamera:()=>Y6,FileVideo2:()=>Y6,FileVideo:()=>J6,FileUser:()=>rN,FileUp:()=>sN,FileType2:()=>iN,FileType:()=>lN,FileText:()=>nN,FileTerminal:()=>pN,FileSymlink:()=>cN,FileStack:()=>dN,FileSpreadsheet:()=>uN,FileSliders:()=>mN,FileSignature:()=>e7,FileSearch2:()=>gN,FileSearch:()=>_N,FileScan:()=>$N,FileQuestionMark:()=>K6,FileQuestion:()=>K6,FilePlus2:()=>vN,FilePlus:()=>hN,FilePlay:()=>J6,FilePieChart:()=>a7,FilePenLine:()=>e7,FilePen:()=>Z6,FileOutput:()=>bN,FileMusic:()=>kN,FileMinus2:()=>fN,FileMinus:()=>yN,FileLock2:()=>jN,FileLock:()=>LN,FileLineChart:()=>t7,FileKey2:()=>MN,FileKey:()=>RN,FileJson2:()=>wN,FileJson:()=>UN,FileInput:()=>xN,FileImage:()=>CN,FileHeart:()=>EN,FileEdit:()=>Z6,FileDown:()=>qN,FileDigit:()=>AN,FileDiff:()=>SN,FileCog2:()=>o7,FileCog:()=>o7,FileCode2:()=>TN,FileCode:()=>PN,FileClock:()=>ON,FileCheck2:()=>DN,FileCheck:()=>BN,FileChartPie:()=>a7,FileChartLine:()=>t7,FileChartColumnIncreasing:()=>s7,FileChartColumn:()=>r7,FileBox:()=>FN,FileBarChart2:()=>r7,FileBarChart:()=>s7,FileBadge2:()=>NN,FileBadge:()=>HN,FileAxis3d:()=>l7,FileAxis3D:()=>l7,FileAudio2:()=>IN,FileAudio:()=>zN,FileArchive:()=>GN,File:()=>KF,Figma:()=>VN,FerrisWheel:()=>QN,Fence:()=>WN,Feather:()=>XN,FastForward:()=>YN,Fan:()=>KN,Factory:()=>JN,Facebook:()=>ZN,EyeOff:()=>tz,EyeClosed:()=>az,Eye:()=>ez,ExternalLink:()=>oz,Expand:()=>rz,EvCharger:()=>sz,Euro:()=>lz,EthernetPort:()=>iz,Eraser:()=>nz,EqualSquare:()=>U9,EqualNot:()=>cz,EqualApproximately:()=>dz,Equal:()=>pz,EllipsisVertical:()=>n7,Ellipsis:()=>i7,EggOff:()=>mz,EggFried:()=>_z,Egg:()=>uz,Edit3:()=>m6,Edit2:()=>u6,Edit:()=>A8,Eclipse:()=>gz,EarthLock:()=>vz,Earth:()=>p7,EarOff:()=>hz,Ear:()=>$z,Dumbbell:()=>bz,Drumstick:()=>kz,Drum:()=>yz,Droplets:()=>fz,DropletOff:()=>jz,Droplet:()=>Lz,Drone:()=>Rz,Drill:()=>Mz,Dribbble:()=>Uz,Drama:()=>wz,DraftingCompass:()=>xz,DownloadCloud:()=>$7,Download:()=>Cz,DotSquare:()=>w9,Dot:()=>Ez,DoorOpen:()=>qz,DoorClosedLocked:()=>Sz,DoorClosed:()=>Az,Donut:()=>Pz,DollarSign:()=>Tz,Dog:()=>Oz,Dock:()=>Bz,DnaOff:()=>Hz,Dna:()=>Dz,DivideSquare:()=>x9,DivideCircle:()=>A7,Divide:()=>Fz,DiscAlbum:()=>zz,Disc3:()=>Iz,Disc2:()=>Gz,Disc:()=>Nz,Diff:()=>Vz,Dices:()=>Wz,Dice6:()=>Qz,Dice5:()=>Xz,Dice4:()=>Yz,Dice3:()=>Kz,Dice2:()=>Jz,Dice1:()=>Zz,DiamondPlus:()=>oI,DiamondPercent:()=>c7,DiamondMinus:()=>tI,Diamond:()=>eI,Diameter:()=>aI,Dessert:()=>sI,Delete:()=>rI,DecimalsArrowRight:()=>lI,DecimalsArrowLeft:()=>nI,DatabaseZap:()=>cI,DatabaseBackup:()=>pI,Database:()=>iI,Dam:()=>dI,Cylinder:()=>uI,Currency:()=>mI,CurlyBraces:()=>c4,CupSoda:()=>_I,Cuboid:()=>gI,Crown:()=>$I,Crosshair:()=>vI,Cross:()=>hI,Crop:()=>bI,Croissant:()=>kI,CreditCard:()=>fI,CreativeCommons:()=>yI,Cpu:()=>LI,CornerUpRight:()=>jI,CornerUpLeft:()=>RI,CornerRightUp:()=>MI,CornerRightDown:()=>UI,CornerLeftUp:()=>wI,CornerLeftDown:()=>xI,CornerDownRight:()=>EI,CornerDownLeft:()=>CI,Copyright:()=>qI,Copyleft:()=>AI,CopyX:()=>PI,CopySlash:()=>TI,CopyPlus:()=>OI,CopyMinus:()=>BI,CopyCheck:()=>DI,Copy:()=>SI,CookingPot:()=>HI,Cookie:()=>FI,Contrast:()=>NI,Container:()=>II,ContactRound:()=>d7,Contact2:()=>d7,Contact:()=>zI,Construction:()=>GI,Cone:()=>VI,ConciergeBell:()=>QI,Computer:()=>WI,Component:()=>XI,Compass:()=>KI,Command:()=>YI,Combine:()=>JI,ColumnsSettings:()=>G5,Columns4:()=>ZI,Columns3Cog:()=>G5,Columns3:()=>u7,Columns2:()=>m7,Columns:()=>m7,Coins:()=>e3,Cog:()=>o3,Coffee:()=>t3,Codesandbox:()=>a3,Codepen:()=>r3,CodeXml:()=>_7,CodeSquare:()=>A9,Code2:()=>_7,Code:()=>s3,Club:()=>l3,Clover:()=>i3,Cloudy:()=>n3,CloudUpload:()=>g7,CloudSunRain:()=>d3,CloudSun:()=>c3,CloudSnow:()=>u3,CloudRainWind:()=>_3,CloudRain:()=>m3,CloudOff:()=>$3,CloudMoonRain:()=>v3,CloudMoon:()=>g3,CloudLightning:()=>h3,CloudHail:()=>b3,CloudFog:()=>k3,CloudDrizzle:()=>f3,CloudDownload:()=>$7,CloudCog:()=>y3,CloudCheck:()=>L3,CloudAlert:()=>j3,Cloud:()=>p3,ClosedCaption:()=>R3,ClockPlus:()=>U3,ClockFading:()=>w3,ClockArrowUp:()=>x3,ClockArrowDown:()=>C3,ClockAlert:()=>E3,Clock9:()=>q3,Clock8:()=>A3,Clock7:()=>S3,Clock6:()=>P3,Clock5:()=>T3,Clock4:()=>O3,Clock3:()=>B3,Clock2:()=>D3,Clock12:()=>H3,Clock11:()=>F3,Clock10:()=>N3,Clock1:()=>z3,Clock:()=>M3,ClipboardX:()=>V3,ClipboardType:()=>Q3,ClipboardSignature:()=>h7,ClipboardPlus:()=>G3,ClipboardPenLine:()=>h7,ClipboardPen:()=>v7,ClipboardPaste:()=>W3,ClipboardMinus:()=>X3,ClipboardList:()=>Y3,ClipboardEdit:()=>v7,ClipboardCopy:()=>K3,ClipboardClock:()=>J3,ClipboardCheck:()=>Z3,Clipboard:()=>I3,Clapperboard:()=>eG,Citrus:()=>oG,CircuitBoard:()=>tG,CircleX:()=>b7,CircleUserRound:()=>f7,CircleUser:()=>k7,CircleStop:()=>y7,CircleStar:()=>rG,CircleSmall:()=>sG,CircleSlashed:()=>L7,CircleSlash2:()=>L7,CircleSlash:()=>lG,CircleQuestionMark:()=>V5,CirclePower:()=>j7,CirclePoundSterling:()=>iG,CirclePlus:()=>R7,CirclePlay:()=>M7,CirclePercent:()=>U7,CirclePause:()=>w7,CircleParkingOff:()=>C7,CircleParking:()=>x7,CircleOff:()=>nG,CircleMinus:()=>E7,CircleHelp:()=>V5,CircleGauge:()=>q7,CircleFadingPlus:()=>pG,CircleFadingArrowUp:()=>cG,CircleEqual:()=>dG,CircleEllipsis:()=>uG,CircleDotDashed:()=>_G,CircleDot:()=>mG,CircleDollarSign:()=>gG,CircleDivide:()=>A7,CircleDashed:()=>$G,CircleChevronUp:()=>S7,CircleChevronRight:()=>P7,CircleChevronLeft:()=>T7,CircleChevronDown:()=>B7,CircleCheckBig:()=>D7,CircleCheck:()=>O7,CircleArrowUp:()=>H7,CircleArrowRight:()=>F7,CircleArrowOutUpRight:()=>N7,CircleArrowOutUpLeft:()=>z7,CircleArrowOutDownRight:()=>I7,CircleArrowOutDownLeft:()=>G7,CircleArrowLeft:()=>V7,CircleArrowDown:()=>Q7,CircleAlert:()=>W7,Circle:()=>aG,CigaretteOff:()=>hG,Cigarette:()=>vG,Church:()=>bG,Chromium:()=>X7,Chrome:()=>X7,ChevronsUpDown:()=>kG,ChevronsUp:()=>fG,ChevronsRightLeft:()=>LG,ChevronsRight:()=>yG,ChevronsLeftRightEllipsis:()=>MG,ChevronsLeftRight:()=>RG,ChevronsLeft:()=>jG,ChevronsDownUp:()=>wG,ChevronsDown:()=>UG,ChevronUpSquare:()=>S9,ChevronUpCircle:()=>S7,ChevronUp:()=>CG,ChevronRightSquare:()=>P9,ChevronRightCircle:()=>P7,ChevronRight:()=>EG,ChevronLeftSquare:()=>T9,ChevronLeftCircle:()=>T7,ChevronLeft:()=>xG,ChevronLast:()=>qG,ChevronFirst:()=>AG,ChevronDownSquare:()=>O9,ChevronDownCircle:()=>B7,ChevronDown:()=>SG,Cherry:()=>PG,ChefHat:()=>TG,CheckSquare2:()=>B9,CheckSquare:()=>D9,CheckLine:()=>OG,CheckCircle2:()=>O7,CheckCircle:()=>D7,CheckCheck:()=>DG,Check:()=>BG,ChartSpline:()=>HG,ChartScatter:()=>Y7,ChartPie:()=>K7,ChartNoAxesGantt:()=>J7,ChartNoAxesCombined:()=>FG,ChartNoAxesColumnIncreasing:()=>e4,ChartNoAxesColumnDecreasing:()=>NG,ChartNoAxesColumn:()=>Z7,ChartNetwork:()=>zG,ChartLine:()=>o4,ChartGantt:()=>IG,ChartColumnStacked:()=>GG,ChartColumnIncreasing:()=>a4,ChartColumnDecreasing:()=>VG,ChartColumnBig:()=>r4,ChartColumn:()=>t4,ChartCandlestick:()=>s4,ChartBarStacked:()=>QG,ChartBarIncreasing:()=>WG,ChartBarDecreasing:()=>XG,ChartBarBig:()=>i4,ChartBar:()=>l4,ChartArea:()=>n4,Cctv:()=>YG,Cat:()=>KG,Castle:()=>JG,Cast:()=>eV,CassetteTape:()=>ZG,CaseUpper:()=>oV,CaseSensitive:()=>tV,CaseLower:()=>aV,Carrot:()=>sV,CardSim:()=>rV,Caravan:()=>lV,CarTaxiFront:()=>nV,CarFront:()=>pV,Car:()=>iV,CaptionsOff:()=>cV,Captions:()=>p4,Cannabis:()=>dV,CandyOff:()=>mV,CandyCane:()=>_V,Candy:()=>uV,CandlestickChart:()=>s4,CameraOff:()=>gV,Camera:()=>$V,CalendarX2:()=>bV,CalendarX:()=>hV,CalendarSync:()=>kV,CalendarSearch:()=>fV,CalendarRange:()=>yV,CalendarPlus2:()=>jV,CalendarPlus:()=>LV,CalendarOff:()=>RV,CalendarMinus2:()=>UV,CalendarMinus:()=>MV,CalendarHeart:()=>wV,CalendarFold:()=>xV,CalendarDays:()=>CV,CalendarCog:()=>EV,CalendarClock:()=>qV,CalendarCheck2:()=>SV,CalendarCheck:()=>AV,CalendarArrowUp:()=>PV,CalendarArrowDown:()=>TV,Calendar1:()=>OV,Calendar:()=>vV,Calculator:()=>BV,CakeSlice:()=>HV,Cake:()=>DV,CableCar:()=>NV,Cable:()=>FV,BusFront:()=>IV,Bus:()=>zV,Building2:()=>VV,Building:()=>GV,BugPlay:()=>WV,BugOff:()=>XV,Bug:()=>QV,Bubbles:()=>YV,BrushCleaning:()=>JV,Brush:()=>KV,BringToFront:()=>ZV,BriefcaseMedical:()=>oQ,BriefcaseConveyorBelt:()=>tQ,BriefcaseBusiness:()=>aQ,Briefcase:()=>eQ,BrickWallShield:()=>sQ,BrickWallFire:()=>lQ,BrickWall:()=>rQ,BrainCog:()=>nQ,BrainCircuit:()=>pQ,Brain:()=>iQ,Brackets:()=>cQ,Braces:()=>c4,Boxes:()=>dQ,BoxSelect:()=>C9,Box:()=>uQ,BowArrow:()=>mQ,BottleWine:()=>_Q,BotOff:()=>$Q,BotMessageSquare:()=>hQ,Bot:()=>gQ,BoomBox:()=>vQ,BookmarkX:()=>kQ,BookmarkPlus:()=>fQ,BookmarkMinus:()=>yQ,BookmarkCheck:()=>LQ,Bookmark:()=>bQ,BookX:()=>RQ,BookUser:()=>MQ,BookUp2:()=>wQ,BookUp:()=>UQ,BookType:()=>xQ,BookText:()=>CQ,BookTemplate:()=>d4,BookPlus:()=>EQ,BookOpenText:()=>AQ,BookOpenCheck:()=>SQ,BookOpen:()=>qQ,BookMinus:()=>PQ,BookMarked:()=>TQ,BookLock:()=>OQ,BookKey:()=>BQ,BookImage:()=>DQ,BookHeart:()=>HQ,BookHeadphones:()=>NQ,BookDown:()=>FQ,BookDashed:()=>d4,BookCopy:()=>zQ,BookCheck:()=>IQ,BookAudio:()=>GQ,BookAlert:()=>VQ,BookA:()=>QQ,Book:()=>jQ,Bone:()=>WQ,Bomb:()=>XQ,Bolt:()=>YQ,Bold:()=>JQ,BluetoothSearching:()=>KQ,BluetoothOff:()=>eW,BluetoothConnected:()=>oW,Bluetooth:()=>ZQ,Blocks:()=>tW,Blinds:()=>rW,Blend:()=>sW,Bitcoin:()=>aW,Birdhouse:()=>lW,Bird:()=>iW,Biohazard:()=>nW,Binoculars:()=>pW,Binary:()=>cW,Bike:()=>dW,BicepsFlexed:()=>uW,BetweenVerticalStart:()=>mW,BetweenVerticalEnd:()=>_W,BetweenHorizontalStart:()=>u4,BetweenHorizontalEnd:()=>m4,BetweenHorizonalStart:()=>u4,BetweenHorizonalEnd:()=>m4,BellRing:()=>$W,BellPlus:()=>vW,BellOff:()=>hW,BellMinus:()=>bW,BellElectric:()=>fW,BellDot:()=>kW,Bell:()=>gW,BeerOff:()=>LW,Beer:()=>yW,Beef:()=>RW,BedSingle:()=>MW,BedDouble:()=>wW,Bed:()=>jW,BeanOff:()=>xW,Bean:()=>UW,Beaker:()=>CW,BatteryWarning:()=>qW,BatteryPlus:()=>SW,BatteryMedium:()=>AW,BatteryLow:()=>PW,BatteryFull:()=>TW,BatteryCharging:()=>OW,Battery:()=>EW,Bath:()=>BW,Baseline:()=>DW,Barrel:()=>HW,Barcode:()=>FW,BarChartHorizontalBig:()=>i4,BarChartHorizontal:()=>l4,BarChartBig:()=>r4,BarChart4:()=>a4,BarChart3:()=>t4,BarChart2:()=>Z7,BarChart:()=>e4,BanknoteX:()=>IW,BanknoteArrowUp:()=>zW,BanknoteArrowDown:()=>GW,Banknote:()=>NW,Bandage:()=>VW,Banana:()=>QW,Ban:()=>WW,BaggageClaim:()=>XW,BadgeX:()=>KW,BadgeTurkishLira:()=>JW,BadgeSwissFranc:()=>ZW,BadgeRussianRuble:()=>eX,BadgeQuestionMark:()=>_4,BadgePoundSterling:()=>oX,BadgePlus:()=>tX,BadgePercent:()=>aX,BadgeMinus:()=>rX,BadgeJapaneseYen:()=>sX,BadgeInfo:()=>lX,BadgeIndianRupee:()=>iX,BadgeHelp:()=>_4,BadgeEuro:()=>nX,BadgeDollarSign:()=>pX,BadgeCheck:()=>g4,BadgeCent:()=>cX,BadgeAlert:()=>dX,Badge:()=>YW,Backpack:()=>uX,Baby:()=>mX,Axis3d:()=>$4,Axis3D:()=>$4,Axe:()=>_X,Award:()=>gX,AudioWaveform:()=>$X,AudioLines:()=>vX,Atom:()=>hX,AtSign:()=>bX,AsteriskSquare:()=>F9,Asterisk:()=>kX,ArrowsUpFromLine:()=>fX,ArrowUpZa:()=>v4,ArrowUpZA:()=>v4,ArrowUpWideNarrow:()=>LX,ArrowUpToLine:()=>jX,ArrowUpSquare:()=>N9,ArrowUpRightSquare:()=>z9,ArrowUpRightFromSquare:()=>V9,ArrowUpRightFromCircle:()=>N7,ArrowUpRight:()=>RX,ArrowUpNarrowWide:()=>h4,ArrowUpLeftSquare:()=>I9,ArrowUpLeftFromSquare:()=>Q9,ArrowUpLeftFromCircle:()=>z7,ArrowUpLeft:()=>MX,ArrowUpFromLine:()=>UX,ArrowUpFromDot:()=>wX,ArrowUpDown:()=>xX,ArrowUpCircle:()=>H7,ArrowUpAz:()=>b4,ArrowUpAZ:()=>b4,ArrowUp10:()=>CX,ArrowUp01:()=>EX,ArrowUp:()=>yX,ArrowRightToLine:()=>AX,ArrowRightSquare:()=>G9,ArrowRightLeft:()=>SX,ArrowRightFromLine:()=>PX,ArrowRightCircle:()=>F7,ArrowRight:()=>qX,ArrowLeftToLine:()=>OX,ArrowLeftSquare:()=>Y9,ArrowLeftRight:()=>DX,ArrowLeftFromLine:()=>BX,ArrowLeftCircle:()=>V7,ArrowLeft:()=>TX,ArrowDownZa:()=>k4,ArrowDownZA:()=>k4,ArrowDownWideNarrow:()=>f4,ArrowDownUp:()=>FX,ArrowDownToLine:()=>NX,ArrowDownToDot:()=>zX,ArrowDownSquare:()=>K9,ArrowDownRightSquare:()=>J9,ArrowDownRightFromSquare:()=>W9,ArrowDownRightFromCircle:()=>I7,ArrowDownRight:()=>IX,ArrowDownNarrowWide:()=>GX,ArrowDownLeftSquare:()=>Z9,ArrowDownLeftFromSquare:()=>X9,ArrowDownLeftFromCircle:()=>G7,ArrowDownLeft:()=>VX,ArrowDownFromLine:()=>QX,ArrowDownCircle:()=>Q7,ArrowDownAz:()=>y4,ArrowDownAZ:()=>y4,ArrowDown10:()=>WX,ArrowDown01:()=>XX,ArrowDown:()=>HX,ArrowBigUpDash:()=>KX,ArrowBigUp:()=>YX,ArrowBigRightDash:()=>ZX,ArrowBigRight:()=>JX,ArrowBigLeftDash:()=>oY,ArrowBigLeft:()=>eY,ArrowBigDownDash:()=>aY,ArrowBigDown:()=>tY,Armchair:()=>rY,AreaChart:()=>n4,ArchiveX:()=>lY,ArchiveRestore:()=>iY,Archive:()=>sY,Apple:()=>nY,AppWindowMac:()=>cY,AppWindow:()=>pY,Aperture:()=>dY,Anvil:()=>uY,Antenna:()=>mY,Annoyed:()=>_Y,Angry:()=>gY,Anchor:()=>$Y,Amphora:()=>vY,Ampersands:()=>hY,Ampersand:()=>bY,Ambulance:()=>kY,AlignVerticalSpaceBetween:()=>fY,AlignVerticalSpaceAround:()=>yY,AlignVerticalJustifyStart:()=>LY,AlignVerticalJustifyEnd:()=>jY,AlignVerticalJustifyCenter:()=>RY,AlignVerticalDistributeStart:()=>MY,AlignVerticalDistributeEnd:()=>UY,AlignVerticalDistributeCenter:()=>wY,AlignStartVertical:()=>xY,AlignStartHorizontal:()=>CY,AlignRight:()=>ZZ,AlignLeft:()=>H5,AlignJustify:()=>e9,AlignHorizontalSpaceBetween:()=>EY,AlignHorizontalSpaceAround:()=>qY,AlignHorizontalJustifyStart:()=>AY,AlignHorizontalJustifyEnd:()=>SY,AlignHorizontalJustifyCenter:()=>PY,AlignHorizontalDistributeStart:()=>TY,AlignHorizontalDistributeEnd:()=>OY,AlignHorizontalDistributeCenter:()=>BY,AlignEndVertical:()=>DY,AlignEndHorizontal:()=>HY,AlignCenterVertical:()=>FY,AlignCenterHorizontal:()=>NY,AlignCenter:()=>o9,AlertTriangle:()=>QZ,AlertOctagon:()=>R6,AlertCircle:()=>W7,Album:()=>zY,AlarmSmoke:()=>IY,AlarmPlus:()=>L4,AlarmMinus:()=>j4,AlarmClockPlus:()=>L4,AlarmClockOff:()=>VY,AlarmClockMinus:()=>j4,AlarmClockCheck:()=>R4,AlarmClock:()=>GY,AlarmCheck:()=>R4,Airplay:()=>QY,AirVent:()=>WY,ActivitySquare:()=>e6,Activity:()=>XY,Accessibility:()=>YY,ALargeSmall:()=>KY,AArrowUp:()=>JY,AArrowDown:()=>ZY});var oK={xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":2,"stroke-linecap":"round","stroke-linejoin":"round"};var Wb=([Z,J,K])=>{let X=document.createElementNS("http://www.w3.org/2000/svg",Z);if(Object.keys(J).forEach((W)=>{X.setAttribute(W,String(J[W]))}),K?.length)K.forEach((W)=>{let Y=Wb(W);X.appendChild(Y)});return X},eK=(Z,J={})=>{let X={...oK,...J};return Wb(["svg",X,Z])};var Cg=(Z)=>Array.from(Z.attributes).reduce((J,K)=>{return J[K.name]=K.value,J},{}),xg=(Z)=>{if(typeof Z==="string")return Z;if(!Z||!Z.class)return"";if(Z.class&&typeof Z.class==="string")return Z.class.split(" ");if(Z.class&&Array.isArray(Z.class))return Z.class;return""},wg=(Z)=>{return Z.flatMap(xg).map((K)=>K.trim()).filter(Boolean).filter((K,X,W)=>W.indexOf(K)===X).join(" ")},Ug=(Z)=>Z.replace(/(\w)(\w*)(_|-|\s*)/g,(J,K,X)=>K.toUpperCase()+X.toLowerCase()),ij=(Z,{nameAttr:J,icons:K,attrs:X})=>{let W=Z.getAttribute(J);if(W==null)return;let Y=Ug(W),V=K[Y];if(!V)return console.warn(`${Z.outerHTML} icon name was not found in the provided icons object.`);let G=Cg(Z),I={...oK,"data-lucide":W,...X,...G},z=wg(["lucide",`lucide-${W}`,G,X]);if(z)Object.assign(I,{class:z});let N=eK(V,I);return Z.parentNode?.replaceChild(N,Z)};var lj={};AL(lj,{ZoomOut:()=>SM,ZoomIn:()=>PM,ZapOff:()=>OM,Zap:()=>TM,Youtube:()=>BM,XSquare:()=>a9,XOctagon:()=>L6,XCircle:()=>b7,X:()=>HM,Wrench:()=>FM,WrapText:()=>YZ,Worm:()=>DM,Workflow:()=>NM,WineOff:()=>IM,Wine:()=>zM,WindArrowDown:()=>VM,Wind:()=>GM,WifiZero:()=>XM,WifiSync:()=>WM,WifiPen:()=>YM,WifiOff:()=>KM,WifiLow:()=>JM,WifiHigh:()=>ZM,WifiCog:()=>eU,Wifi:()=>QM,WholeWord:()=>oU,WheatOff:()=>aU,Wheat:()=>tU,Weight:()=>rU,WebhookOff:()=>lU,Webhook:()=>sU,Webcam:()=>iU,Waypoints:()=>pU,WavesLadder:()=>cU,Waves:()=>nU,Watch:()=>dU,WashingMachine:()=>uU,Warehouse:()=>mU,WandSparkles:()=>SZ,Wand2:()=>SZ,Wand:()=>_U,Wallpaper:()=>gU,WalletMinimal:()=>PZ,WalletCards:()=>vU,Wallet2:()=>PZ,Wallet:()=>$U,Vote:()=>hU,VolumeX:()=>kU,VolumeOff:()=>fU,Volume2:()=>yU,Volume1:()=>LU,Volume:()=>bU,Volleyball:()=>jU,Voicemail:()=>RU,View:()=>MU,Videotape:()=>UU,VideoOff:()=>xU,Video:()=>wU,VibrateOff:()=>EU,Vibrate:()=>CU,Verified:()=>g4,VenusAndMars:()=>AU,Venus:()=>qU,VenetianMask:()=>SU,Vegan:()=>PU,VectorSquare:()=>TU,Vault:()=>OU,Variable:()=>DU,UtilityPole:()=>BU,UtensilsCrossed:()=>OZ,Utensils:()=>TZ,UsersRound:()=>BZ,Users2:()=>BZ,Users:()=>HU,UserX2:()=>HZ,UserX:()=>NU,UserStar:()=>zU,UserSquare2:()=>s9,UserSquare:()=>r9,UserSearch:()=>IU,UserRoundX:()=>HZ,UserRoundSearch:()=>GU,UserRoundPlus:()=>FZ,UserRoundPen:()=>VU,UserRoundMinus:()=>NZ,UserRoundCog:()=>zZ,UserRoundCheck:()=>IZ,UserRound:()=>DZ,UserPlus2:()=>FZ,UserPlus:()=>QU,UserPen:()=>WU,UserMinus2:()=>NZ,UserMinus:()=>XU,UserLock:()=>YU,UserCog2:()=>zZ,UserCog:()=>KU,UserCircle2:()=>f7,UserCircle:()=>k7,UserCheck2:()=>IZ,UserCheck:()=>ZU,User2:()=>DZ,User:()=>FU,Usb:()=>JU,UploadCloud:()=>g7,Upload:()=>ow,Unplug:()=>ew,UnlockKeyhole:()=>q6,Unlock:()=>E6,Unlink2:()=>aw,Unlink:()=>tw,University:()=>GZ,Ungroup:()=>rw,UnfoldVertical:()=>sw,UnfoldHorizontal:()=>lw,UndoDot:()=>iw,Undo2:()=>pw,Undo:()=>nw,Underline:()=>cw,UmbrellaOff:()=>uw,Umbrella:()=>dw,TypeOutline:()=>_w,Type:()=>mw,Twitter:()=>gw,Twitch:()=>vw,TvMinimalPlay:()=>hw,TvMinimal:()=>VZ,Tv2:()=>VZ,Tv:()=>$w,Turtle:()=>bw,Turntable:()=>kw,TurkishLira:()=>fw,TruckElectric:()=>Lw,Truck:()=>yw,Trophy:()=>jw,TriangleRight:()=>Rw,TriangleDashed:()=>Uw,TriangleAlert:()=>QZ,Triangle:()=>Mw,TrendingUpDown:()=>xw,TrendingUp:()=>ww,TrendingDown:()=>Ew,Trello:()=>Cw,Trees:()=>qw,TreePine:()=>Aw,TreePalm:()=>WZ,TreeDeciduous:()=>Sw,Trash2:()=>Tw,Trash:()=>Pw,Transgender:()=>Ow,TramFront:()=>XZ,TrainTrack:()=>Bw,TrainFrontTunnel:()=>Dw,TrainFront:()=>Hw,Train:()=>XZ,TrafficCone:()=>Fw,Tractor:()=>Nw,ToyBrick:()=>zw,TowerControl:()=>Iw,TouchpadOff:()=>Qw,Touchpad:()=>Vw,Torus:()=>Gw,Tornado:()=>Ww,ToolCase:()=>Xw,Toilet:()=>Yw,ToggleRight:()=>Kw,ToggleLeft:()=>Jw,TimerReset:()=>ex,TimerOff:()=>ox,Timer:()=>Zw,TicketsPlane:()=>ax,Tickets:()=>tx,TicketX:()=>sx,TicketSlash:()=>lx,TicketPlus:()=>ix,TicketPercent:()=>nx,TicketMinus:()=>px,TicketCheck:()=>cx,Ticket:()=>rx,ThumbsUp:()=>dx,ThumbsDown:()=>ux,ThermometerSun:()=>_x,ThermometerSnowflake:()=>gx,Thermometer:()=>mx,Theater:()=>$x,TextWrap:()=>YZ,TextSelection:()=>KZ,TextSelect:()=>KZ,TextSearch:()=>vx,TextQuote:()=>hx,TextInitial:()=>JZ,TextCursorInput:()=>kx,TextCursor:()=>bx,TextAlignStart:()=>H5,TextAlignJustify:()=>e9,TextAlignEnd:()=>ZZ,TextAlignCenter:()=>o9,Text:()=>H5,TestTubes:()=>yx,TestTubeDiagonal:()=>t9,TestTube2:()=>t9,TestTube:()=>fx,TerminalSquare:()=>l9,Terminal:()=>Lx,TentTree:()=>Rx,Tent:()=>jx,Telescope:()=>Mx,Target:()=>wx,Tangent:()=>Ux,Tally5:()=>xx,Tally4:()=>Cx,Tally3:()=>Ex,Tally2:()=>qx,Tally1:()=>Ax,Tags:()=>Sx,Tag:()=>Px,Tablets:()=>Tx,TabletSmartphone:()=>Bx,Tablet:()=>Ox,TableRowsSplit:()=>Hx,TableProperties:()=>Fx,TableOfContents:()=>Nx,TableConfig:()=>G5,TableColumnsSplit:()=>zx,TableCellsSplit:()=>Ix,TableCellsMerge:()=>Gx,Table2:()=>Vx,Table:()=>Dx,Syringe:()=>Qx,Swords:()=>Wx,Sword:()=>Xx,SwitchCamera:()=>Yx,SwissFranc:()=>Kx,SwatchBook:()=>Jx,Superscript:()=>Zx,Sunset:()=>eC,Sunrise:()=>oC,SunSnow:()=>aC,SunMoon:()=>rC,SunMedium:()=>sC,SunDim:()=>lC,Sun:()=>tC,Subtitles:()=>p4,Subscript:()=>iC,Strikethrough:()=>nC,StretchVertical:()=>pC,StretchHorizontal:()=>cC,Store:()=>dC,StopCircle:()=>y7,StickyNote:()=>uC,Sticker:()=>mC,Stethoscope:()=>_C,StepForward:()=>gC,StepBack:()=>$C,Stars:()=>o6,StarOff:()=>hC,StarHalf:()=>bC,Star:()=>vC,Stamp:()=>kC,Squirrel:()=>fC,SquircleDashed:()=>LC,Squircle:()=>yC,SquaresUnite:()=>jC,SquaresSubtract:()=>MC,SquaresIntersect:()=>RC,SquaresExclude:()=>UC,SquareX:()=>a9,SquareUserRound:()=>s9,SquareUser:()=>r9,SquareTerminal:()=>l9,SquareStop:()=>xC,SquareStar:()=>CC,SquareStack:()=>EC,SquareSquare:()=>qC,SquareSplitVertical:()=>i9,SquareSplitHorizontal:()=>n9,SquareSlash:()=>p9,SquareSigma:()=>c9,SquareScissors:()=>d9,SquareRoundCorner:()=>AC,SquareRadical:()=>SC,SquarePower:()=>u9,SquarePlus:()=>m9,SquarePlay:()=>_9,SquarePilcrow:()=>g9,SquarePi:()=>$9,SquarePercent:()=>v9,SquarePen:()=>A8,SquarePause:()=>PC,SquareParkingOff:()=>b9,SquareParking:()=>h9,SquareMousePointer:()=>k9,SquareMinus:()=>f9,SquareMenu:()=>y9,SquareM:()=>L9,SquareLibrary:()=>j9,SquareKanban:()=>R9,SquareGanttChart:()=>F5,SquareFunction:()=>M9,SquareEqual:()=>U9,SquareDot:()=>w9,SquareDivide:()=>x9,SquareDashedTopSolid:()=>TC,SquareDashedMousePointer:()=>E9,SquareDashedKanban:()=>q9,SquareDashedBottomCode:()=>BC,SquareDashedBottom:()=>OC,SquareDashed:()=>C9,SquareCode:()=>A9,SquareChevronUp:()=>S9,SquareChevronRight:()=>P9,SquareChevronLeft:()=>T9,SquareChevronDown:()=>O9,SquareCheckBig:()=>D9,SquareCheck:()=>B9,SquareChartGantt:()=>F5,SquareBottomDashedScissors:()=>H9,SquareAsterisk:()=>F9,SquareArrowUpRight:()=>z9,SquareArrowUpLeft:()=>I9,SquareArrowUp:()=>N9,SquareArrowRight:()=>G9,SquareArrowOutUpRight:()=>V9,SquareArrowOutUpLeft:()=>Q9,SquareArrowOutDownRight:()=>W9,SquareArrowOutDownLeft:()=>X9,SquareArrowLeft:()=>Y9,SquareArrowDownRight:()=>J9,SquareArrowDownLeft:()=>Z9,SquareArrowDown:()=>K9,SquareActivity:()=>e6,Square:()=>wC,Sprout:()=>DC,SprayCan:()=>HC,Spotlight:()=>FC,Spool:()=>NC,SplitSquareVertical:()=>i9,SplitSquareHorizontal:()=>n9,Split:()=>zC,SplinePointer:()=>GC,Spline:()=>IC,SpellCheck2:()=>QC,SpellCheck:()=>VC,Speech:()=>WC,Speaker:()=>XC,Sparkles:()=>o6,Sparkle:()=>YC,Spade:()=>KC,Space:()=>JC,Soup:()=>ZC,SortDesc:()=>f4,SortAsc:()=>h4,Sofa:()=>eE,SoapDispenserDroplet:()=>tE,Snowflake:()=>oE,Snail:()=>aE,SmilePlus:()=>sE,Smile:()=>rE,SmartphoneNfc:()=>iE,SmartphoneCharging:()=>nE,Smartphone:()=>lE,SlidersVertical:()=>t6,SlidersHorizontal:()=>pE,Sliders:()=>t6,Slice:()=>cE,SlashSquare:()=>p9,Slash:()=>dE,Slack:()=>uE,Skull:()=>mE,SkipForward:()=>_E,SkipBack:()=>gE,Siren:()=>$E,SignpostBig:()=>hE,Signpost:()=>vE,Signature:()=>bE,SignalZero:()=>fE,SignalMedium:()=>yE,SignalLow:()=>LE,SignalHigh:()=>jE,Signal:()=>kE,SigmaSquare:()=>c9,Sigma:()=>RE,SidebarOpen:()=>h6,SidebarClose:()=>k6,Sidebar:()=>v6,Shuffle:()=>ME,Shrub:()=>UE,Shrink:()=>wE,Shrimp:()=>xE,Shredder:()=>CE,ShowerHead:()=>EE,Shovel:()=>qE,ShoppingCart:()=>AE,ShoppingBasket:()=>SE,ShoppingBag:()=>PE,Shirt:()=>TE,ShipWheel:()=>BE,Ship:()=>OE,ShieldX:()=>a6,ShieldUser:()=>HE,ShieldQuestionMark:()=>r6,ShieldQuestion:()=>r6,ShieldPlus:()=>FE,ShieldOff:()=>NE,ShieldMinus:()=>zE,ShieldHalf:()=>IE,ShieldEllipsis:()=>GE,ShieldClose:()=>a6,ShieldCheck:()=>VE,ShieldBan:()=>WE,ShieldAlert:()=>QE,Shield:()=>DE,Shell:()=>YE,Sheet:()=>XE,Share2:()=>JE,Share:()=>KE,Shapes:()=>ZE,Settings2:()=>oq,Settings:()=>eq,ServerOff:()=>aq,ServerCrash:()=>rq,ServerCog:()=>lq,Server:()=>tq,SeparatorVertical:()=>sq,SeparatorHorizontal:()=>iq,SendToBack:()=>pq,SendHorizontal:()=>s6,SendHorizonal:()=>s6,Send:()=>nq,Section:()=>cq,SearchX:()=>uq,SearchSlash:()=>mq,SearchCode:()=>gq,SearchCheck:()=>_q,Search:()=>dq,ScrollText:()=>vq,Scroll:()=>$q,ScreenShareOff:()=>bq,ScreenShare:()=>hq,ScissorsSquareDashedBottom:()=>H9,ScissorsSquare:()=>d9,ScissorsLineDashed:()=>fq,Scissors:()=>kq,School2:()=>GZ,School:()=>yq,ScatterChart:()=>Y7,ScanText:()=>jq,ScanSearch:()=>Rq,ScanQrCode:()=>Mq,ScanLine:()=>Uq,ScanHeart:()=>wq,ScanFace:()=>xq,ScanEye:()=>Cq,ScanBarcode:()=>Eq,Scan:()=>Lq,Scaling:()=>qq,Scale3d:()=>l6,Scale3D:()=>l6,Scale:()=>Aq,SaveOff:()=>Pq,SaveAll:()=>Tq,Save:()=>Sq,SaudiRiyal:()=>Oq,SatelliteDish:()=>Dq,Satellite:()=>Bq,Sandwich:()=>Hq,Salad:()=>Fq,Sailboat:()=>Nq,RussianRuble:()=>zq,RulerDimensionLine:()=>Gq,Ruler:()=>Iq,Rss:()=>Qq,Rows4:()=>Vq,Rows3:()=>i6,Rows2:()=>n6,Rows:()=>n6,Router:()=>Wq,RouteOff:()=>Yq,Route:()=>Xq,RotateCwSquare:()=>Jq,RotateCw:()=>Kq,RotateCcwSquare:()=>eA,RotateCcwKey:()=>oA,RotateCcw:()=>Zq,Rotate3d:()=>p6,Rotate3D:()=>p6,Rose:()=>tA,RollerCoaster:()=>aA,RockingChair:()=>rA,Rocket:()=>sA,Ribbon:()=>lA,Rewind:()=>iA,ReplyAll:()=>pA,Reply:()=>nA,ReplaceAll:()=>dA,Replace:()=>cA,Repeat2:()=>mA,Repeat1:()=>_A,Repeat:()=>uA,RemoveFormatting:()=>gA,Regex:()=>$A,Refrigerator:()=>vA,RefreshCwOff:()=>bA,RefreshCw:()=>hA,RefreshCcwDot:()=>fA,RefreshCcw:()=>kA,RedoDot:()=>LA,Redo2:()=>jA,Redo:()=>yA,Recycle:()=>RA,RectangleVertical:()=>MA,RectangleHorizontal:()=>UA,RectangleGoggles:()=>wA,RectangleEllipsis:()=>c6,RectangleCircle:()=>xA,ReceiptTurkishLira:()=>CA,ReceiptText:()=>qA,ReceiptSwissFranc:()=>AA,ReceiptRussianRuble:()=>SA,ReceiptPoundSterling:()=>PA,ReceiptJapaneseYen:()=>TA,ReceiptIndianRupee:()=>OA,ReceiptEuro:()=>BA,ReceiptCent:()=>DA,Receipt:()=>EA,Ratio:()=>HA,Rat:()=>NA,Rainbow:()=>FA,RailSymbol:()=>zA,Radius:()=>IA,RadioTower:()=>VA,RadioReceiver:()=>QA,Radio:()=>GA,Radical:()=>WA,Radiation:()=>XA,Radar:()=>YA,Rabbit:()=>KA,Quote:()=>JA,QrCode:()=>eS,Pyramid:()=>ZA,Puzzle:()=>oS,Proportions:()=>tS,Projector:()=>aS,PrinterCheck:()=>sS,Printer:()=>rS,Presentation:()=>lS,PowerSquare:()=>u9,PowerOff:()=>nS,PowerCircle:()=>j7,Power:()=>iS,PoundSterling:()=>pS,Popsicle:()=>cS,Popcorn:()=>dS,PointerOff:()=>mS,Pointer:()=>uS,Podcast:()=>_S,PocketKnife:()=>$S,Pocket:()=>gS,PlusSquare:()=>m9,PlusCircle:()=>R7,Plus:()=>vS,PlugZap2:()=>d6,PlugZap:()=>d6,Plug2:()=>bS,Plug:()=>hS,PlaySquare:()=>_9,PlayCircle:()=>M7,Play:()=>kS,PlaneTakeoff:()=>yS,PlaneLanding:()=>LS,Plane:()=>fS,Pizza:()=>jS,Pipette:()=>MS,PinOff:()=>RS,Pin:()=>US,PillBottle:()=>xS,Pill:()=>wS,PilcrowSquare:()=>g9,PilcrowRight:()=>ES,PilcrowLeft:()=>AS,Pilcrow:()=>CS,PiggyBank:()=>qS,PieChart:()=>K7,PictureInPicture2:()=>PS,PictureInPicture:()=>SS,Pickaxe:()=>TS,Piano:()=>OS,PiSquare:()=>$9,Pi:()=>BS,PhoneOutgoing:()=>HS,PhoneOff:()=>FS,PhoneMissed:()=>NS,PhoneIncoming:()=>zS,PhoneForwarded:()=>IS,PhoneCall:()=>GS,Phone:()=>DS,PhilippinePeso:()=>VS,PersonStanding:()=>QS,PercentSquare:()=>v9,PercentDiamond:()=>c7,PercentCircle:()=>U7,Percent:()=>WS,Pentagon:()=>XS,PencilRuler:()=>KS,PencilOff:()=>JS,PencilLine:()=>ZS,Pencil:()=>YS,PenTool:()=>eP,PenSquare:()=>A8,PenOff:()=>oP,PenLine:()=>m6,PenBox:()=>A8,Pen:()=>u6,PcCase:()=>tP,PawPrint:()=>aP,PauseOctagon:()=>j6,PauseCircle:()=>w7,Pause:()=>rP,PartyPopper:()=>sP,ParkingSquareOff:()=>b9,ParkingSquare:()=>h9,ParkingMeter:()=>iP,ParkingCircleOff:()=>C7,ParkingCircle:()=>x7,Parentheses:()=>lP,Paperclip:()=>nP,PanelsTopLeft:()=>_6,PanelsTopBottom:()=>i6,PanelsRightBottom:()=>pP,PanelsLeftRight:()=>u7,PanelsLeftBottom:()=>dP,PanelTopOpen:()=>uP,PanelTopInactive:()=>g6,PanelTopDashed:()=>g6,PanelTopClose:()=>mP,PanelTopBottomDashed:()=>_P,PanelTop:()=>cP,PanelRightOpen:()=>gP,PanelRightInactive:()=>$6,PanelRightDashed:()=>$6,PanelRightClose:()=>vP,PanelRight:()=>$P,PanelLeftRightDashed:()=>hP,PanelLeftOpen:()=>h6,PanelLeftInactive:()=>b6,PanelLeftDashed:()=>b6,PanelLeftClose:()=>k6,PanelLeft:()=>v6,PanelBottomOpen:()=>kP,PanelBottomInactive:()=>f6,PanelBottomDashed:()=>f6,PanelBottomClose:()=>fP,PanelBottom:()=>bP,Panda:()=>yP,Palmtree:()=>WZ,Palette:()=>LP,PaintbrushVertical:()=>y6,Paintbrush2:()=>y6,Paintbrush:()=>jP,PaintRoller:()=>RP,PaintBucket:()=>MP,PackageX:()=>wP,PackageSearch:()=>xP,PackagePlus:()=>CP,PackageOpen:()=>EP,PackageMinus:()=>qP,PackageCheck:()=>AP,Package2:()=>SP,Package:()=>UP,Outdent:()=>z5,Origami:()=>PP,Orbit:()=>TP,Option:()=>OP,Omega:()=>BP,OctagonX:()=>L6,OctagonPause:()=>j6,OctagonMinus:()=>HP,OctagonAlert:()=>R6,Octagon:()=>DP,NutOff:()=>NP,Nut:()=>FP,NotepadTextDashed:()=>IP,NotepadText:()=>zP,NotebookText:()=>VP,NotebookTabs:()=>QP,NotebookPen:()=>WP,Notebook:()=>GP,NonBinary:()=>XP,Nfc:()=>YP,Newspaper:()=>KP,Network:()=>JP,NavigationOff:()=>eT,Navigation2Off:()=>tT,Navigation2:()=>oT,Navigation:()=>ZP,Music4:()=>rT,Music3:()=>sT,Music2:()=>lT,Music:()=>aT,MoveVertical:()=>nT,MoveUpRight:()=>cT,MoveUpLeft:()=>dT,MoveUp:()=>pT,MoveRight:()=>uT,MoveLeft:()=>mT,MoveHorizontal:()=>_T,MoveDownRight:()=>$T,MoveDownLeft:()=>vT,MoveDown:()=>gT,MoveDiagonal2:()=>bT,MoveDiagonal:()=>hT,Move3d:()=>M6,Move3D:()=>M6,Move:()=>iT,MousePointerSquareDashed:()=>E9,MousePointerClick:()=>yT,MousePointerBan:()=>LT,MousePointer2:()=>jT,MousePointer:()=>fT,MouseOff:()=>RT,Mouse:()=>kT,MountainSnow:()=>UT,Mountain:()=>MT,Motorbike:()=>wT,MoreVertical:()=>n7,MoreHorizontal:()=>i7,MoonStar:()=>CT,Moon:()=>xT,MonitorX:()=>qT,MonitorUp:()=>AT,MonitorStop:()=>ST,MonitorSpeaker:()=>PT,MonitorSmartphone:()=>TT,MonitorPlay:()=>OT,MonitorPause:()=>BT,MonitorOff:()=>DT,MonitorDown:()=>HT,MonitorDot:()=>FT,MonitorCog:()=>NT,MonitorCloud:()=>zT,MonitorCheck:()=>IT,Monitor:()=>ET,MinusSquare:()=>f9,MinusCircle:()=>E7,Minus:()=>GT,Minimize2:()=>QT,Minimize:()=>VT,MilkOff:()=>WT,Milk:()=>XT,Milestone:()=>YT,Microwave:()=>KT,Microscope:()=>JT,Microchip:()=>ZT,MicVocal:()=>U6,MicOff:()=>oO,Mic2:()=>U6,Mic:()=>eO,MessagesSquare:()=>tO,MessageSquareX:()=>rO,MessageSquareWarning:()=>sO,MessageSquareText:()=>lO,MessageSquareShare:()=>nO,MessageSquareReply:()=>iO,MessageSquareQuote:()=>pO,MessageSquarePlus:()=>cO,MessageSquareOff:()=>dO,MessageSquareMore:()=>uO,MessageSquareLock:()=>mO,MessageSquareHeart:()=>_O,MessageSquareDot:()=>gO,MessageSquareDiff:()=>$O,MessageSquareDashed:()=>vO,MessageSquareCode:()=>hO,MessageSquare:()=>aO,MessageCircleX:()=>kO,MessageCircleWarning:()=>fO,MessageCircleReply:()=>yO,MessageCircleQuestionMark:()=>w6,MessageCircleQuestion:()=>w6,MessageCirclePlus:()=>LO,MessageCircleOff:()=>jO,MessageCircleMore:()=>RO,MessageCircleHeart:()=>MO,MessageCircleDashed:()=>UO,MessageCircleCode:()=>wO,MessageCircle:()=>bO,Merge:()=>xO,MenuSquare:()=>y9,Menu:()=>CO,MemoryStick:()=>EO,Meh:()=>qO,MegaphoneOff:()=>SO,Megaphone:()=>AO,Medal:()=>PO,Maximize2:()=>OO,Maximize:()=>TO,Martini:()=>BO,MarsStroke:()=>HO,Mars:()=>DO,MapPlus:()=>FO,MapPinned:()=>zO,MapPinXInside:()=>VO,MapPinX:()=>GO,MapPinPlusInside:()=>WO,MapPinPlus:()=>QO,MapPinPen:()=>x6,MapPinOff:()=>XO,MapPinMinusInside:()=>YO,MapPinMinus:()=>KO,MapPinHouse:()=>JO,MapPinCheckInside:()=>e2,MapPinCheck:()=>ZO,MapPin:()=>IO,MapMinus:()=>o2,Map:()=>NO,Mails:()=>t2,Mailbox:()=>a2,MailX:()=>s2,MailWarning:()=>l2,MailSearch:()=>i2,MailQuestionMark:()=>C6,MailQuestion:()=>C6,MailPlus:()=>n2,MailOpen:()=>p2,MailMinus:()=>c2,MailCheck:()=>d2,Mail:()=>r2,Magnet:()=>u2,MSquare:()=>L9,Luggage:()=>m2,Lollipop:()=>_2,Logs:()=>g2,LogOut:()=>$2,LogIn:()=>v2,LockOpen:()=>E6,LockKeyholeOpen:()=>q6,LockKeyhole:()=>b2,Lock:()=>h2,LocationEdit:()=>x6,LocateOff:()=>f2,LocateFixed:()=>y2,Locate:()=>k2,LoaderPinwheel:()=>j2,LoaderCircle:()=>A6,Loader2:()=>A6,Loader:()=>L2,ListX:()=>M2,ListVideo:()=>U2,ListTree:()=>w2,ListTodo:()=>x2,ListStart:()=>C2,ListRestart:()=>q2,ListPlus:()=>A2,ListOrdered:()=>E2,ListMusic:()=>S2,ListMinus:()=>P2,ListIndentIncrease:()=>N5,ListIndentDecrease:()=>z5,ListFilterPlus:()=>T2,ListFilter:()=>O2,ListEnd:()=>B2,ListCollapse:()=>D2,ListChevronsUpDown:()=>H2,ListChevronsDownUp:()=>F2,ListChecks:()=>N2,ListCheck:()=>z2,List:()=>R2,Linkedin:()=>I2,Link2Off:()=>Q2,Link2:()=>V2,Link:()=>G2,LineSquiggle:()=>W2,LineChart:()=>o4,LightbulbOff:()=>Y2,Lightbulb:()=>X2,Ligature:()=>K2,LifeBuoy:()=>Z2,LibrarySquare:()=>j9,LibraryBig:()=>eB,Library:()=>J2,LetterText:()=>JZ,Lectern:()=>oB,LeafyGreen:()=>tB,Leaf:()=>aB,LayoutTemplate:()=>rB,LayoutPanelTop:()=>sB,LayoutPanelLeft:()=>lB,LayoutList:()=>iB,LayoutGrid:()=>nB,LayoutDashboard:()=>pB,Layout:()=>_6,Layers3:()=>S6,Layers2:()=>cB,Layers:()=>S6,Laugh:()=>dB,LassoSelect:()=>mB,Lasso:()=>uB,LaptopMinimalCheck:()=>gB,LaptopMinimal:()=>P6,Laptop2:()=>P6,Laptop:()=>_B,Languages:()=>$B,Landmark:()=>vB,LandPlot:()=>hB,LampWallUp:()=>kB,LampWallDown:()=>fB,LampFloor:()=>yB,LampDesk:()=>LB,LampCeiling:()=>jB,Lamp:()=>bB,KeyboardOff:()=>MB,KeyboardMusic:()=>UB,Keyboard:()=>RB,KeySquare:()=>xB,KeyRound:()=>CB,Key:()=>wB,Kayak:()=>EB,KanbanSquareDashed:()=>q9,KanbanSquare:()=>R9,Kanban:()=>qB,Joystick:()=>AB,JapaneseYen:()=>SB,IterationCw:()=>PB,IterationCcw:()=>OB,Italic:()=>BB,Instagram:()=>TB,InspectionPanel:()=>DB,Inspect:()=>k9,Info:()=>FB,Infinity:()=>HB,IndianRupee:()=>NB,IndentIncrease:()=>N5,IndentDecrease:()=>z5,Indent:()=>N5,Inbox:()=>zB,Import:()=>IB,Images:()=>GB,ImageUpscale:()=>QB,ImageUp:()=>WB,ImagePlus:()=>XB,ImagePlay:()=>YB,ImageOff:()=>KB,ImageMinus:()=>JB,ImageDown:()=>ZB,Image:()=>VB,IdCardLanyard:()=>eD,IdCard:()=>oD,IceCreamCone:()=>T6,IceCreamBowl:()=>O6,IceCream2:()=>O6,IceCream:()=>T6,HouseWifi:()=>aD,HousePlus:()=>tD,HousePlug:()=>sD,HouseHeart:()=>rD,House:()=>B6,Hourglass:()=>lD,Hotel:()=>iD,Hospital:()=>nD,HopOff:()=>cD,Hop:()=>pD,Home:()=>B6,History:()=>dD,Highlighter:()=>mD,Hexagon:()=>uD,HelpingHand:()=>D6,HelpCircle:()=>V5,Heater:()=>_D,HeartPulse:()=>$D,HeartPlus:()=>vD,HeartOff:()=>hD,HeartMinus:()=>bD,HeartHandshake:()=>kD,HeartCrack:()=>fD,Heart:()=>gD,Headset:()=>yD,Headphones:()=>LD,HeadphoneOff:()=>jD,Heading6:()=>MD,Heading5:()=>UD,Heading4:()=>wD,Heading3:()=>xD,Heading2:()=>CD,Heading1:()=>ED,Heading:()=>RD,HdmiPort:()=>qD,Haze:()=>AD,HatGlasses:()=>SD,Hash:()=>PD,HardHat:()=>TD,HardDriveUpload:()=>BD,HardDriveDownload:()=>DD,HardDrive:()=>OD,Handshake:()=>HD,Handbag:()=>FD,HandPlatter:()=>zD,HandMetal:()=>ID,HandHelping:()=>D6,HandHeart:()=>GD,HandGrab:()=>H6,HandFist:()=>VD,HandCoins:()=>QD,Hand:()=>ND,Hammer:()=>WD,Hamburger:()=>XD,Ham:()=>YD,Guitar:()=>KD,Group:()=>JD,GripVertical:()=>eH,GripHorizontal:()=>oH,Grip:()=>ZD,Grid3x3:()=>I5,Grid3x2:()=>tH,Grid3X3:()=>I5,Grid2x2X:()=>N6,Grid2x2Plus:()=>z6,Grid2x2Check:()=>I6,Grid2x2:()=>F6,Grid2X2X:()=>N6,Grid2X2Plus:()=>z6,Grid2X2Check:()=>I6,Grid2X2:()=>F6,Grid:()=>I5,Grape:()=>aH,GraduationCap:()=>rH,Grab:()=>H6,Gpu:()=>sH,Goal:()=>lH,GlobeLock:()=>nH,Globe2:()=>p7,Globe:()=>iH,Glasses:()=>pH,GlassWater:()=>cH,Gitlab:()=>dH,Github:()=>uH,GitPullRequestDraft:()=>_H,GitPullRequestCreateArrow:()=>vH,GitPullRequestCreate:()=>gH,GitPullRequestClosed:()=>$H,GitPullRequestArrow:()=>hH,GitPullRequest:()=>mH,GitMerge:()=>bH,GitGraph:()=>kH,GitFork:()=>fH,GitCompareArrows:()=>LH,GitCompare:()=>yH,GitCommitVertical:()=>jH,GitCommitHorizontal:()=>G6,GitCommit:()=>G6,GitBranchPlus:()=>MH,GitBranch:()=>RH,Gift:()=>UH,Ghost:()=>wH,GeorgianLari:()=>xH,Gem:()=>CH,Gavel:()=>EH,GaugeCircle:()=>q7,Gauge:()=>qH,GanttChartSquare:()=>F5,GanttChart:()=>J7,GamepadDirectional:()=>SH,Gamepad2:()=>PH,Gamepad:()=>AH,GalleryVerticalEnd:()=>OH,GalleryVertical:()=>TH,GalleryThumbnails:()=>BH,GalleryHorizontalEnd:()=>HH,GalleryHorizontal:()=>DH,FunnelX:()=>Q6,FunnelPlus:()=>FH,Funnel:()=>V6,FunctionSquare:()=>M9,Fullscreen:()=>NH,Fuel:()=>zH,Frown:()=>IH,Framer:()=>GH,Frame:()=>VH,Forward:()=>QH,FormInput:()=>c6,Forklift:()=>WH,ForkKnifeCrossed:()=>OZ,ForkKnife:()=>TZ,Footprints:()=>XH,Folders:()=>YH,FolderX:()=>JH,FolderUp:()=>ZH,FolderTree:()=>eF,FolderSync:()=>oF,FolderSymlink:()=>tF,FolderSearch2:()=>rF,FolderSearch:()=>aF,FolderRoot:()=>sF,FolderPlus:()=>lF,FolderPen:()=>W6,FolderOutput:()=>iF,FolderOpenDot:()=>pF,FolderOpen:()=>nF,FolderMinus:()=>cF,FolderLock:()=>dF,FolderKey:()=>uF,FolderKanban:()=>mF,FolderInput:()=>_F,FolderHeart:()=>gF,FolderGit2:()=>hF,FolderGit:()=>$F,FolderEdit:()=>W6,FolderDown:()=>vF,FolderDot:()=>bF,FolderCog2:()=>X6,FolderCog:()=>X6,FolderCode:()=>kF,FolderClosed:()=>fF,FolderClock:()=>yF,FolderCheck:()=>LF,FolderArchive:()=>jF,Folder:()=>KH,FoldVertical:()=>RF,FoldHorizontal:()=>MF,Focus:()=>UF,Flower2:()=>xF,Flower:()=>wF,FlipVertical2:()=>EF,FlipVertical:()=>CF,FlipHorizontal2:()=>AF,FlipHorizontal:()=>qF,FlaskRound:()=>SF,FlaskConicalOff:()=>TF,FlaskConical:()=>PF,FlashlightOff:()=>BF,Flashlight:()=>OF,FlameKindling:()=>HF,Flame:()=>DF,FlagTriangleRight:()=>NF,FlagTriangleLeft:()=>zF,FlagOff:()=>GF,Flag:()=>FF,FishSymbol:()=>VF,FishOff:()=>QF,Fish:()=>IF,FireExtinguisher:()=>WF,Fingerprint:()=>XF,FilterX:()=>Q6,Filter:()=>V6,Film:()=>YF,Files:()=>JF,FileX2:()=>eN,FileX:()=>ZF,FileWarning:()=>oN,FileVolume2:()=>aN,FileVolume:()=>tN,FileVideoCamera:()=>Y6,FileVideo2:()=>Y6,FileVideo:()=>J6,FileUser:()=>rN,FileUp:()=>sN,FileType2:()=>iN,FileType:()=>lN,FileText:()=>nN,FileTerminal:()=>pN,FileSymlink:()=>cN,FileStack:()=>dN,FileSpreadsheet:()=>uN,FileSliders:()=>mN,FileSignature:()=>e7,FileSearch2:()=>gN,FileSearch:()=>_N,FileScan:()=>$N,FileQuestionMark:()=>K6,FileQuestion:()=>K6,FilePlus2:()=>vN,FilePlus:()=>hN,FilePlay:()=>J6,FilePieChart:()=>a7,FilePenLine:()=>e7,FilePen:()=>Z6,FileOutput:()=>bN,FileMusic:()=>kN,FileMinus2:()=>fN,FileMinus:()=>yN,FileLock2:()=>jN,FileLock:()=>LN,FileLineChart:()=>t7,FileKey2:()=>MN,FileKey:()=>RN,FileJson2:()=>wN,FileJson:()=>UN,FileInput:()=>xN,FileImage:()=>CN,FileHeart:()=>EN,FileEdit:()=>Z6,FileDown:()=>qN,FileDigit:()=>AN,FileDiff:()=>SN,FileCog2:()=>o7,FileCog:()=>o7,FileCode2:()=>TN,FileCode:()=>PN,FileClock:()=>ON,FileCheck2:()=>DN,FileCheck:()=>BN,FileChartPie:()=>a7,FileChartLine:()=>t7,FileChartColumnIncreasing:()=>s7,FileChartColumn:()=>r7,FileBox:()=>FN,FileBarChart2:()=>r7,FileBarChart:()=>s7,FileBadge2:()=>NN,FileBadge:()=>HN,FileAxis3d:()=>l7,FileAxis3D:()=>l7,FileAudio2:()=>IN,FileAudio:()=>zN,FileArchive:()=>GN,File:()=>KF,Figma:()=>VN,FerrisWheel:()=>QN,Fence:()=>WN,Feather:()=>XN,FastForward:()=>YN,Fan:()=>KN,Factory:()=>JN,Facebook:()=>ZN,EyeOff:()=>tz,EyeClosed:()=>az,Eye:()=>ez,ExternalLink:()=>oz,Expand:()=>rz,EvCharger:()=>sz,Euro:()=>lz,EthernetPort:()=>iz,Eraser:()=>nz,EqualSquare:()=>U9,EqualNot:()=>cz,EqualApproximately:()=>dz,Equal:()=>pz,EllipsisVertical:()=>n7,Ellipsis:()=>i7,EggOff:()=>mz,EggFried:()=>_z,Egg:()=>uz,Edit3:()=>m6,Edit2:()=>u6,Edit:()=>A8,Eclipse:()=>gz,EarthLock:()=>vz,Earth:()=>p7,EarOff:()=>hz,Ear:()=>$z,Dumbbell:()=>bz,Drumstick:()=>kz,Drum:()=>yz,Droplets:()=>fz,DropletOff:()=>jz,Droplet:()=>Lz,Drone:()=>Rz,Drill:()=>Mz,Dribbble:()=>Uz,Drama:()=>wz,DraftingCompass:()=>xz,DownloadCloud:()=>$7,Download:()=>Cz,DotSquare:()=>w9,Dot:()=>Ez,DoorOpen:()=>qz,DoorClosedLocked:()=>Sz,DoorClosed:()=>Az,Donut:()=>Pz,DollarSign:()=>Tz,Dog:()=>Oz,Dock:()=>Bz,DnaOff:()=>Hz,Dna:()=>Dz,DivideSquare:()=>x9,DivideCircle:()=>A7,Divide:()=>Fz,DiscAlbum:()=>zz,Disc3:()=>Iz,Disc2:()=>Gz,Disc:()=>Nz,Diff:()=>Vz,Dices:()=>Wz,Dice6:()=>Qz,Dice5:()=>Xz,Dice4:()=>Yz,Dice3:()=>Kz,Dice2:()=>Jz,Dice1:()=>Zz,DiamondPlus:()=>oI,DiamondPercent:()=>c7,DiamondMinus:()=>tI,Diamond:()=>eI,Diameter:()=>aI,Dessert:()=>sI,Delete:()=>rI,DecimalsArrowRight:()=>lI,DecimalsArrowLeft:()=>nI,DatabaseZap:()=>cI,DatabaseBackup:()=>pI,Database:()=>iI,Dam:()=>dI,Cylinder:()=>uI,Currency:()=>mI,CurlyBraces:()=>c4,CupSoda:()=>_I,Cuboid:()=>gI,Crown:()=>$I,Crosshair:()=>vI,Cross:()=>hI,Crop:()=>bI,Croissant:()=>kI,CreditCard:()=>fI,CreativeCommons:()=>yI,Cpu:()=>LI,CornerUpRight:()=>jI,CornerUpLeft:()=>RI,CornerRightUp:()=>MI,CornerRightDown:()=>UI,CornerLeftUp:()=>wI,CornerLeftDown:()=>xI,CornerDownRight:()=>EI,CornerDownLeft:()=>CI,Copyright:()=>qI,Copyleft:()=>AI,CopyX:()=>PI,CopySlash:()=>TI,CopyPlus:()=>OI,CopyMinus:()=>BI,CopyCheck:()=>DI,Copy:()=>SI,CookingPot:()=>HI,Cookie:()=>FI,Contrast:()=>NI,Container:()=>II,ContactRound:()=>d7,Contact2:()=>d7,Contact:()=>zI,Construction:()=>GI,Cone:()=>VI,ConciergeBell:()=>QI,Computer:()=>WI,Component:()=>XI,Compass:()=>KI,Command:()=>YI,Combine:()=>JI,ColumnsSettings:()=>G5,Columns4:()=>ZI,Columns3Cog:()=>G5,Columns3:()=>u7,Columns2:()=>m7,Columns:()=>m7,Coins:()=>e3,Cog:()=>o3,Coffee:()=>t3,Codesandbox:()=>a3,Codepen:()=>r3,CodeXml:()=>_7,CodeSquare:()=>A9,Code2:()=>_7,Code:()=>s3,Club:()=>l3,Clover:()=>i3,Cloudy:()=>n3,CloudUpload:()=>g7,CloudSunRain:()=>d3,CloudSun:()=>c3,CloudSnow:()=>u3,CloudRainWind:()=>_3,CloudRain:()=>m3,CloudOff:()=>$3,CloudMoonRain:()=>v3,CloudMoon:()=>g3,CloudLightning:()=>h3,CloudHail:()=>b3,CloudFog:()=>k3,CloudDrizzle:()=>f3,CloudDownload:()=>$7,CloudCog:()=>y3,CloudCheck:()=>L3,CloudAlert:()=>j3,Cloud:()=>p3,ClosedCaption:()=>R3,ClockPlus:()=>U3,ClockFading:()=>w3,ClockArrowUp:()=>x3,ClockArrowDown:()=>C3,ClockAlert:()=>E3,Clock9:()=>q3,Clock8:()=>A3,Clock7:()=>S3,Clock6:()=>P3,Clock5:()=>T3,Clock4:()=>O3,Clock3:()=>B3,Clock2:()=>D3,Clock12:()=>H3,Clock11:()=>F3,Clock10:()=>N3,Clock1:()=>z3,Clock:()=>M3,ClipboardX:()=>V3,ClipboardType:()=>Q3,ClipboardSignature:()=>h7,ClipboardPlus:()=>G3,ClipboardPenLine:()=>h7,ClipboardPen:()=>v7,ClipboardPaste:()=>W3,ClipboardMinus:()=>X3,ClipboardList:()=>Y3,ClipboardEdit:()=>v7,ClipboardCopy:()=>K3,ClipboardClock:()=>J3,ClipboardCheck:()=>Z3,Clipboard:()=>I3,Clapperboard:()=>eG,Citrus:()=>oG,CircuitBoard:()=>tG,CircleX:()=>b7,CircleUserRound:()=>f7,CircleUser:()=>k7,CircleStop:()=>y7,CircleStar:()=>rG,CircleSmall:()=>sG,CircleSlashed:()=>L7,CircleSlash2:()=>L7,CircleSlash:()=>lG,CircleQuestionMark:()=>V5,CirclePower:()=>j7,CirclePoundSterling:()=>iG,CirclePlus:()=>R7,CirclePlay:()=>M7,CirclePercent:()=>U7,CirclePause:()=>w7,CircleParkingOff:()=>C7,CircleParking:()=>x7,CircleOff:()=>nG,CircleMinus:()=>E7,CircleHelp:()=>V5,CircleGauge:()=>q7,CircleFadingPlus:()=>pG,CircleFadingArrowUp:()=>cG,CircleEqual:()=>dG,CircleEllipsis:()=>uG,CircleDotDashed:()=>_G,CircleDot:()=>mG,CircleDollarSign:()=>gG,CircleDivide:()=>A7,CircleDashed:()=>$G,CircleChevronUp:()=>S7,CircleChevronRight:()=>P7,CircleChevronLeft:()=>T7,CircleChevronDown:()=>B7,CircleCheckBig:()=>D7,CircleCheck:()=>O7,CircleArrowUp:()=>H7,CircleArrowRight:()=>F7,CircleArrowOutUpRight:()=>N7,CircleArrowOutUpLeft:()=>z7,CircleArrowOutDownRight:()=>I7,CircleArrowOutDownLeft:()=>G7,CircleArrowLeft:()=>V7,CircleArrowDown:()=>Q7,CircleAlert:()=>W7,Circle:()=>aG,CigaretteOff:()=>hG,Cigarette:()=>vG,Church:()=>bG,Chromium:()=>X7,Chrome:()=>X7,ChevronsUpDown:()=>kG,ChevronsUp:()=>fG,ChevronsRightLeft:()=>LG,ChevronsRight:()=>yG,ChevronsLeftRightEllipsis:()=>MG,ChevronsLeftRight:()=>RG,ChevronsLeft:()=>jG,ChevronsDownUp:()=>wG,ChevronsDown:()=>UG,ChevronUpSquare:()=>S9,ChevronUpCircle:()=>S7,ChevronUp:()=>CG,ChevronRightSquare:()=>P9,ChevronRightCircle:()=>P7,ChevronRight:()=>EG,ChevronLeftSquare:()=>T9,ChevronLeftCircle:()=>T7,ChevronLeft:()=>xG,ChevronLast:()=>qG,ChevronFirst:()=>AG,ChevronDownSquare:()=>O9,ChevronDownCircle:()=>B7,ChevronDown:()=>SG,Cherry:()=>PG,ChefHat:()=>TG,CheckSquare2:()=>B9,CheckSquare:()=>D9,CheckLine:()=>OG,CheckCircle2:()=>O7,CheckCircle:()=>D7,CheckCheck:()=>DG,Check:()=>BG,ChartSpline:()=>HG,ChartScatter:()=>Y7,ChartPie:()=>K7,ChartNoAxesGantt:()=>J7,ChartNoAxesCombined:()=>FG,ChartNoAxesColumnIncreasing:()=>e4,ChartNoAxesColumnDecreasing:()=>NG,ChartNoAxesColumn:()=>Z7,ChartNetwork:()=>zG,ChartLine:()=>o4,ChartGantt:()=>IG,ChartColumnStacked:()=>GG,ChartColumnIncreasing:()=>a4,ChartColumnDecreasing:()=>VG,ChartColumnBig:()=>r4,ChartColumn:()=>t4,ChartCandlestick:()=>s4,ChartBarStacked:()=>QG,ChartBarIncreasing:()=>WG,ChartBarDecreasing:()=>XG,ChartBarBig:()=>i4,ChartBar:()=>l4,ChartArea:()=>n4,Cctv:()=>YG,Cat:()=>KG,Castle:()=>JG,Cast:()=>eV,CassetteTape:()=>ZG,CaseUpper:()=>oV,CaseSensitive:()=>tV,CaseLower:()=>aV,Carrot:()=>sV,CardSim:()=>rV,Caravan:()=>lV,CarTaxiFront:()=>nV,CarFront:()=>pV,Car:()=>iV,CaptionsOff:()=>cV,Captions:()=>p4,Cannabis:()=>dV,CandyOff:()=>mV,CandyCane:()=>_V,Candy:()=>uV,CandlestickChart:()=>s4,CameraOff:()=>gV,Camera:()=>$V,CalendarX2:()=>bV,CalendarX:()=>hV,CalendarSync:()=>kV,CalendarSearch:()=>fV,CalendarRange:()=>yV,CalendarPlus2:()=>jV,CalendarPlus:()=>LV,CalendarOff:()=>RV,CalendarMinus2:()=>UV,CalendarMinus:()=>MV,CalendarHeart:()=>wV,CalendarFold:()=>xV,CalendarDays:()=>CV,CalendarCog:()=>EV,CalendarClock:()=>qV,CalendarCheck2:()=>SV,CalendarCheck:()=>AV,CalendarArrowUp:()=>PV,CalendarArrowDown:()=>TV,Calendar1:()=>OV,Calendar:()=>vV,Calculator:()=>BV,CakeSlice:()=>HV,Cake:()=>DV,CableCar:()=>NV,Cable:()=>FV,BusFront:()=>IV,Bus:()=>zV,Building2:()=>VV,Building:()=>GV,BugPlay:()=>WV,BugOff:()=>XV,Bug:()=>QV,Bubbles:()=>YV,BrushCleaning:()=>JV,Brush:()=>KV,BringToFront:()=>ZV,BriefcaseMedical:()=>oQ,BriefcaseConveyorBelt:()=>tQ,BriefcaseBusiness:()=>aQ,Briefcase:()=>eQ,BrickWallShield:()=>sQ,BrickWallFire:()=>lQ,BrickWall:()=>rQ,BrainCog:()=>nQ,BrainCircuit:()=>pQ,Brain:()=>iQ,Brackets:()=>cQ,Braces:()=>c4,Boxes:()=>dQ,BoxSelect:()=>C9,Box:()=>uQ,BowArrow:()=>mQ,BottleWine:()=>_Q,BotOff:()=>$Q,BotMessageSquare:()=>hQ,Bot:()=>gQ,BoomBox:()=>vQ,BookmarkX:()=>kQ,BookmarkPlus:()=>fQ,BookmarkMinus:()=>yQ,BookmarkCheck:()=>LQ,Bookmark:()=>bQ,BookX:()=>RQ,BookUser:()=>MQ,BookUp2:()=>wQ,BookUp:()=>UQ,BookType:()=>xQ,BookText:()=>CQ,BookTemplate:()=>d4,BookPlus:()=>EQ,BookOpenText:()=>AQ,BookOpenCheck:()=>SQ,BookOpen:()=>qQ,BookMinus:()=>PQ,BookMarked:()=>TQ,BookLock:()=>OQ,BookKey:()=>BQ,BookImage:()=>DQ,BookHeart:()=>HQ,BookHeadphones:()=>NQ,BookDown:()=>FQ,BookDashed:()=>d4,BookCopy:()=>zQ,BookCheck:()=>IQ,BookAudio:()=>GQ,BookAlert:()=>VQ,BookA:()=>QQ,Book:()=>jQ,Bone:()=>WQ,Bomb:()=>XQ,Bolt:()=>YQ,Bold:()=>JQ,BluetoothSearching:()=>KQ,BluetoothOff:()=>eW,BluetoothConnected:()=>oW,Bluetooth:()=>ZQ,Blocks:()=>tW,Blinds:()=>rW,Blend:()=>sW,Bitcoin:()=>aW,Birdhouse:()=>lW,Bird:()=>iW,Biohazard:()=>nW,Binoculars:()=>pW,Binary:()=>cW,Bike:()=>dW,BicepsFlexed:()=>uW,BetweenVerticalStart:()=>mW,BetweenVerticalEnd:()=>_W,BetweenHorizontalStart:()=>u4,BetweenHorizontalEnd:()=>m4,BetweenHorizonalStart:()=>u4,BetweenHorizonalEnd:()=>m4,BellRing:()=>$W,BellPlus:()=>vW,BellOff:()=>hW,BellMinus:()=>bW,BellElectric:()=>fW,BellDot:()=>kW,Bell:()=>gW,BeerOff:()=>LW,Beer:()=>yW,Beef:()=>RW,BedSingle:()=>MW,BedDouble:()=>wW,Bed:()=>jW,BeanOff:()=>xW,Bean:()=>UW,Beaker:()=>CW,BatteryWarning:()=>qW,BatteryPlus:()=>SW,BatteryMedium:()=>AW,BatteryLow:()=>PW,BatteryFull:()=>TW,BatteryCharging:()=>OW,Battery:()=>EW,Bath:()=>BW,Baseline:()=>DW,Barrel:()=>HW,Barcode:()=>FW,BarChartHorizontalBig:()=>i4,BarChartHorizontal:()=>l4,BarChartBig:()=>r4,BarChart4:()=>a4,BarChart3:()=>t4,BarChart2:()=>Z7,BarChart:()=>e4,BanknoteX:()=>IW,BanknoteArrowUp:()=>zW,BanknoteArrowDown:()=>GW,Banknote:()=>NW,Bandage:()=>VW,Banana:()=>QW,Ban:()=>WW,BaggageClaim:()=>XW,BadgeX:()=>KW,BadgeTurkishLira:()=>JW,BadgeSwissFranc:()=>ZW,BadgeRussianRuble:()=>eX,BadgeQuestionMark:()=>_4,BadgePoundSterling:()=>oX,BadgePlus:()=>tX,BadgePercent:()=>aX,BadgeMinus:()=>rX,BadgeJapaneseYen:()=>sX,BadgeInfo:()=>lX,BadgeIndianRupee:()=>iX,BadgeHelp:()=>_4,BadgeEuro:()=>nX,BadgeDollarSign:()=>pX,BadgeCheck:()=>g4,BadgeCent:()=>cX,BadgeAlert:()=>dX,Badge:()=>YW,Backpack:()=>uX,Baby:()=>mX,Axis3d:()=>$4,Axis3D:()=>$4,Axe:()=>_X,Award:()=>gX,AudioWaveform:()=>$X,AudioLines:()=>vX,Atom:()=>hX,AtSign:()=>bX,AsteriskSquare:()=>F9,Asterisk:()=>kX,ArrowsUpFromLine:()=>fX,ArrowUpZa:()=>v4,ArrowUpZA:()=>v4,ArrowUpWideNarrow:()=>LX,ArrowUpToLine:()=>jX,ArrowUpSquare:()=>N9,ArrowUpRightSquare:()=>z9,ArrowUpRightFromSquare:()=>V9,ArrowUpRightFromCircle:()=>N7,ArrowUpRight:()=>RX,ArrowUpNarrowWide:()=>h4,ArrowUpLeftSquare:()=>I9,ArrowUpLeftFromSquare:()=>Q9,ArrowUpLeftFromCircle:()=>z7,ArrowUpLeft:()=>MX,ArrowUpFromLine:()=>UX,ArrowUpFromDot:()=>wX,ArrowUpDown:()=>xX,ArrowUpCircle:()=>H7,ArrowUpAz:()=>b4,ArrowUpAZ:()=>b4,ArrowUp10:()=>CX,ArrowUp01:()=>EX,ArrowUp:()=>yX,ArrowRightToLine:()=>AX,ArrowRightSquare:()=>G9,ArrowRightLeft:()=>SX,ArrowRightFromLine:()=>PX,ArrowRightCircle:()=>F7,ArrowRight:()=>qX,ArrowLeftToLine:()=>OX,ArrowLeftSquare:()=>Y9,ArrowLeftRight:()=>DX,ArrowLeftFromLine:()=>BX,ArrowLeftCircle:()=>V7,ArrowLeft:()=>TX,ArrowDownZa:()=>k4,ArrowDownZA:()=>k4,ArrowDownWideNarrow:()=>f4,ArrowDownUp:()=>FX,ArrowDownToLine:()=>NX,ArrowDownToDot:()=>zX,ArrowDownSquare:()=>K9,ArrowDownRightSquare:()=>J9,ArrowDownRightFromSquare:()=>W9,ArrowDownRightFromCircle:()=>I7,ArrowDownRight:()=>IX,ArrowDownNarrowWide:()=>GX,ArrowDownLeftSquare:()=>Z9,ArrowDownLeftFromSquare:()=>X9,ArrowDownLeftFromCircle:()=>G7,ArrowDownLeft:()=>VX,ArrowDownFromLine:()=>QX,ArrowDownCircle:()=>Q7,ArrowDownAz:()=>y4,ArrowDownAZ:()=>y4,ArrowDown10:()=>WX,ArrowDown01:()=>XX,ArrowDown:()=>HX,ArrowBigUpDash:()=>KX,ArrowBigUp:()=>YX,ArrowBigRightDash:()=>ZX,ArrowBigRight:()=>JX,ArrowBigLeftDash:()=>oY,ArrowBigLeft:()=>eY,ArrowBigDownDash:()=>aY,ArrowBigDown:()=>tY,Armchair:()=>rY,AreaChart:()=>n4,ArchiveX:()=>lY,ArchiveRestore:()=>iY,Archive:()=>sY,Apple:()=>nY,AppWindowMac:()=>cY,AppWindow:()=>pY,Aperture:()=>dY,Anvil:()=>uY,Antenna:()=>mY,Annoyed:()=>_Y,Angry:()=>gY,Anchor:()=>$Y,Amphora:()=>vY,Ampersands:()=>hY,Ampersand:()=>bY,Ambulance:()=>kY,AlignVerticalSpaceBetween:()=>fY,AlignVerticalSpaceAround:()=>yY,AlignVerticalJustifyStart:()=>LY,AlignVerticalJustifyEnd:()=>jY,AlignVerticalJustifyCenter:()=>RY,AlignVerticalDistributeStart:()=>MY,AlignVerticalDistributeEnd:()=>UY,AlignVerticalDistributeCenter:()=>wY,AlignStartVertical:()=>xY,AlignStartHorizontal:()=>CY,AlignRight:()=>ZZ,AlignLeft:()=>H5,AlignJustify:()=>e9,AlignHorizontalSpaceBetween:()=>EY,AlignHorizontalSpaceAround:()=>qY,AlignHorizontalJustifyStart:()=>AY,AlignHorizontalJustifyEnd:()=>SY,AlignHorizontalJustifyCenter:()=>PY,AlignHorizontalDistributeStart:()=>TY,AlignHorizontalDistributeEnd:()=>OY,AlignHorizontalDistributeCenter:()=>BY,AlignEndVertical:()=>DY,AlignEndHorizontal:()=>HY,AlignCenterVertical:()=>FY,AlignCenterHorizontal:()=>NY,AlignCenter:()=>o9,AlertTriangle:()=>QZ,AlertOctagon:()=>R6,AlertCircle:()=>W7,Album:()=>zY,AlarmSmoke:()=>IY,AlarmPlus:()=>L4,AlarmMinus:()=>j4,AlarmClockPlus:()=>L4,AlarmClockOff:()=>VY,AlarmClockMinus:()=>j4,AlarmClockCheck:()=>R4,AlarmClock:()=>GY,AlarmCheck:()=>R4,Airplay:()=>QY,AirVent:()=>WY,ActivitySquare:()=>e6,Activity:()=>XY,Accessibility:()=>YY,ALargeSmall:()=>KY,AArrowUp:()=>JY,AArrowDown:()=>ZY});var ZY=[["path",{d:"m14 12 4 4 4-4"}],["path",{d:"M18 16V7"}],["path",{d:"m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16"}],["path",{d:"M3.304 13h6.392"}]];var JY=[["path",{d:"m14 11 4-4 4 4"}],["path",{d:"M18 16V7"}],["path",{d:"m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16"}],["path",{d:"M3.304 13h6.392"}]];var KY=[["path",{d:"m15 16 2.536-7.328a1.02 1.02 1 0 1 1.928 0L22 16"}],["path",{d:"M15.697 14h5.606"}],["path",{d:"m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16"}],["path",{d:"M3.304 13h6.392"}]];var YY=[["circle",{cx:"16",cy:"4",r:"1"}],["path",{d:"m18 19 1-7-6 1"}],["path",{d:"m5 8 3-3 5.5 3-2.36 3.5"}],["path",{d:"M4.24 14.5a5 5 0 0 0 6.88 6"}],["path",{d:"M13.76 17.5a5 5 0 0 0-6.88-6"}]];var XY=[["path",{d:"M22 12h-2.48a2 2 0 0 0-1.93 1.46l-2.35 8.36a.25.25 0 0 1-.48 0L9.24 2.18a.25.25 0 0 0-.48 0l-2.35 8.36A2 2 0 0 1 4.49 12H2"}]];var WY=[["path",{d:"M18 17.5a2.5 2.5 0 1 1-4 2.03V12"}],["path",{d:"M6 12H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2"}],["path",{d:"M6 8h12"}],["path",{d:"M6.6 15.572A2 2 0 1 0 10 17v-5"}]];var QY=[["path",{d:"M5 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-1"}],["path",{d:"m12 15 5 6H7Z"}]];var R4=[["circle",{cx:"12",cy:"13",r:"8"}],["path",{d:"M5 3 2 6"}],["path",{d:"m22 6-3-3"}],["path",{d:"M6.38 18.7 4 21"}],["path",{d:"M17.64 18.67 20 21"}],["path",{d:"m9 13 2 2 4-4"}]];var j4=[["circle",{cx:"12",cy:"13",r:"8"}],["path",{d:"M5 3 2 6"}],["path",{d:"m22 6-3-3"}],["path",{d:"M6.38 18.7 4 21"}],["path",{d:"M17.64 18.67 20 21"}],["path",{d:"M9 13h6"}]];var VY=[["path",{d:"M6.87 6.87a8 8 0 1 0 11.26 11.26"}],["path",{d:"M19.9 14.25a8 8 0 0 0-9.15-9.15"}],["path",{d:"m22 6-3-3"}],["path",{d:"M6.26 18.67 4 21"}],["path",{d:"m2 2 20 20"}],["path",{d:"M4 4 2 6"}]];var L4=[["circle",{cx:"12",cy:"13",r:"8"}],["path",{d:"M5 3 2 6"}],["path",{d:"m22 6-3-3"}],["path",{d:"M6.38 18.7 4 21"}],["path",{d:"M17.64 18.67 20 21"}],["path",{d:"M12 10v6"}],["path",{d:"M9 13h6"}]];var GY=[["circle",{cx:"12",cy:"13",r:"8"}],["path",{d:"M12 9v4l2 2"}],["path",{d:"M5 3 2 6"}],["path",{d:"m22 6-3-3"}],["path",{d:"M6.38 18.7 4 21"}],["path",{d:"M17.64 18.67 20 21"}]];var IY=[["path",{d:"M11 21c0-2.5 2-2.5 2-5"}],["path",{d:"M16 21c0-2.5 2-2.5 2-5"}],["path",{d:"m19 8-.8 3a1.25 1.25 0 0 1-1.2 1H7a1.25 1.25 0 0 1-1.2-1L5 8"}],["path",{d:"M21 3a1 1 0 0 1 1 1v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4a1 1 0 0 1 1-1z"}],["path",{d:"M6 21c0-2.5 2-2.5 2-5"}]];var zY=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["polyline",{points:"11 3 11 11 14 8 17 11 17 3"}]];var NY=[["path",{d:"M2 12h20"}],["path",{d:"M10 16v4a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-4"}],["path",{d:"M10 8V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v4"}],["path",{d:"M20 16v1a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2v-1"}],["path",{d:"M14 8V7c0-1.1.9-2 2-2h2a2 2 0 0 1 2 2v1"}]];var FY=[["path",{d:"M12 2v20"}],["path",{d:"M8 10H4a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h4"}],["path",{d:"M16 10h4a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-4"}],["path",{d:"M8 20H7a2 2 0 0 1-2-2v-2c0-1.1.9-2 2-2h1"}],["path",{d:"M16 14h1a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-1"}]];var HY=[["rect",{width:"6",height:"16",x:"4",y:"2",rx:"2"}],["rect",{width:"6",height:"9",x:"14",y:"9",rx:"2"}],["path",{d:"M22 22H2"}]];var DY=[["rect",{width:"16",height:"6",x:"2",y:"4",rx:"2"}],["rect",{width:"9",height:"6",x:"9",y:"14",rx:"2"}],["path",{d:"M22 22V2"}]];var BY=[["rect",{width:"6",height:"14",x:"4",y:"5",rx:"2"}],["rect",{width:"6",height:"10",x:"14",y:"7",rx:"2"}],["path",{d:"M17 22v-5"}],["path",{d:"M17 7V2"}],["path",{d:"M7 22v-3"}],["path",{d:"M7 5V2"}]];var OY=[["rect",{width:"6",height:"14",x:"4",y:"5",rx:"2"}],["rect",{width:"6",height:"10",x:"14",y:"7",rx:"2"}],["path",{d:"M10 2v20"}],["path",{d:"M20 2v20"}]];var TY=[["rect",{width:"6",height:"14",x:"4",y:"5",rx:"2"}],["rect",{width:"6",height:"10",x:"14",y:"7",rx:"2"}],["path",{d:"M4 2v20"}],["path",{d:"M14 2v20"}]];var PY=[["rect",{width:"6",height:"14",x:"2",y:"5",rx:"2"}],["rect",{width:"6",height:"10",x:"16",y:"7",rx:"2"}],["path",{d:"M12 2v20"}]];var SY=[["rect",{width:"6",height:"14",x:"2",y:"5",rx:"2"}],["rect",{width:"6",height:"10",x:"12",y:"7",rx:"2"}],["path",{d:"M22 2v20"}]];var AY=[["rect",{width:"6",height:"14",x:"6",y:"5",rx:"2"}],["rect",{width:"6",height:"10",x:"16",y:"7",rx:"2"}],["path",{d:"M2 2v20"}]];var qY=[["rect",{width:"6",height:"10",x:"9",y:"7",rx:"2"}],["path",{d:"M4 22V2"}],["path",{d:"M20 22V2"}]];var EY=[["rect",{width:"6",height:"14",x:"3",y:"5",rx:"2"}],["rect",{width:"6",height:"10",x:"15",y:"7",rx:"2"}],["path",{d:"M3 2v20"}],["path",{d:"M21 2v20"}]];var CY=[["rect",{width:"6",height:"16",x:"4",y:"6",rx:"2"}],["rect",{width:"6",height:"9",x:"14",y:"6",rx:"2"}],["path",{d:"M22 2H2"}]];var xY=[["rect",{width:"9",height:"6",x:"6",y:"14",rx:"2"}],["rect",{width:"16",height:"6",x:"6",y:"4",rx:"2"}],["path",{d:"M2 2v20"}]];var wY=[["path",{d:"M22 17h-3"}],["path",{d:"M22 7h-5"}],["path",{d:"M5 17H2"}],["path",{d:"M7 7H2"}],["rect",{x:"5",y:"14",width:"14",height:"6",rx:"2"}],["rect",{x:"7",y:"4",width:"10",height:"6",rx:"2"}]];var UY=[["rect",{width:"14",height:"6",x:"5",y:"14",rx:"2"}],["rect",{width:"10",height:"6",x:"7",y:"4",rx:"2"}],["path",{d:"M2 20h20"}],["path",{d:"M2 10h20"}]];var MY=[["rect",{width:"14",height:"6",x:"5",y:"14",rx:"2"}],["rect",{width:"10",height:"6",x:"7",y:"4",rx:"2"}],["path",{d:"M2 14h20"}],["path",{d:"M2 4h20"}]];var RY=[["rect",{width:"14",height:"6",x:"5",y:"16",rx:"2"}],["rect",{width:"10",height:"6",x:"7",y:"2",rx:"2"}],["path",{d:"M2 12h20"}]];var jY=[["rect",{width:"14",height:"6",x:"5",y:"12",rx:"2"}],["rect",{width:"10",height:"6",x:"7",y:"2",rx:"2"}],["path",{d:"M2 22h20"}]];var LY=[["rect",{width:"14",height:"6",x:"5",y:"16",rx:"2"}],["rect",{width:"10",height:"6",x:"7",y:"6",rx:"2"}],["path",{d:"M2 2h20"}]];var yY=[["rect",{width:"10",height:"6",x:"7",y:"9",rx:"2"}],["path",{d:"M22 20H2"}],["path",{d:"M22 4H2"}]];var fY=[["rect",{width:"14",height:"6",x:"5",y:"15",rx:"2"}],["rect",{width:"10",height:"6",x:"7",y:"3",rx:"2"}],["path",{d:"M2 21h20"}],["path",{d:"M2 3h20"}]];var kY=[["path",{d:"M10 10H6"}],["path",{d:"M14 18V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v11a1 1 0 0 0 1 1h2"}],["path",{d:"M19 18h2a1 1 0 0 0 1-1v-3.28a1 1 0 0 0-.684-.948l-1.923-.641a1 1 0 0 1-.578-.502l-1.539-3.076A1 1 0 0 0 16.382 8H14"}],["path",{d:"M8 8v4"}],["path",{d:"M9 18h6"}],["circle",{cx:"17",cy:"18",r:"2"}],["circle",{cx:"7",cy:"18",r:"2"}]];var bY=[["path",{d:"M17.5 12c0 4.4-3.6 8-8 8A4.5 4.5 0 0 1 5 15.5c0-6 8-4 8-8.5a3 3 0 1 0-6 0c0 3 2.5 8.5 12 13"}],["path",{d:"M16 12h3"}]];var hY=[["path",{d:"M10 17c-5-3-7-7-7-9a2 2 0 0 1 4 0c0 2.5-5 2.5-5 6 0 1.7 1.3 3 3 3 2.8 0 5-2.2 5-5"}],["path",{d:"M22 17c-5-3-7-7-7-9a2 2 0 0 1 4 0c0 2.5-5 2.5-5 6 0 1.7 1.3 3 3 3 2.8 0 5-2.2 5-5"}]];var vY=[["path",{d:"M10 2v5.632c0 .424-.272.795-.653.982A6 6 0 0 0 6 14c.006 4 3 7 5 8"}],["path",{d:"M10 5H8a2 2 0 0 0 0 4h.68"}],["path",{d:"M14 2v5.632c0 .424.272.795.652.982A6 6 0 0 1 18 14c0 4-3 7-5 8"}],["path",{d:"M14 5h2a2 2 0 0 1 0 4h-.68"}],["path",{d:"M18 22H6"}],["path",{d:"M9 2h6"}]];var $Y=[["path",{d:"M12 22V8"}],["path",{d:"M5 12H2a10 10 0 0 0 20 0h-3"}],["circle",{cx:"12",cy:"5",r:"3"}]];var gY=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M16 16s-1.5-2-4-2-4 2-4 2"}],["path",{d:"M7.5 8 10 9"}],["path",{d:"m14 9 2.5-1"}],["path",{d:"M9 10h.01"}],["path",{d:"M15 10h.01"}]];var _Y=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M8 15h8"}],["path",{d:"M8 9h2"}],["path",{d:"M14 9h2"}]];var mY=[["path",{d:"M2 12 7 2"}],["path",{d:"m7 12 5-10"}],["path",{d:"m12 12 5-10"}],["path",{d:"m17 12 5-10"}],["path",{d:"M4.5 7h15"}],["path",{d:"M12 16v6"}]];var uY=[["path",{d:"M7 10H6a4 4 0 0 1-4-4 1 1 0 0 1 1-1h4"}],["path",{d:"M7 5a1 1 0 0 1 1-1h13a1 1 0 0 1 1 1 7 7 0 0 1-7 7H8a1 1 0 0 1-1-1z"}],["path",{d:"M9 12v5"}],["path",{d:"M15 12v5"}],["path",{d:"M5 20a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3 1 1 0 0 1-1 1H6a1 1 0 0 1-1-1"}]];var dY=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m14.31 8 5.74 9.94"}],["path",{d:"M9.69 8h11.48"}],["path",{d:"m7.38 12 5.74-9.94"}],["path",{d:"M9.69 16 3.95 6.06"}],["path",{d:"M14.31 16H2.83"}],["path",{d:"m16.62 12-5.74 9.94"}]];var cY=[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2"}],["path",{d:"M6 8h.01"}],["path",{d:"M10 8h.01"}],["path",{d:"M14 8h.01"}]];var pY=[["rect",{x:"2",y:"4",width:"20",height:"16",rx:"2"}],["path",{d:"M10 4v4"}],["path",{d:"M2 8h20"}],["path",{d:"M6 4v4"}]];var nY=[["path",{d:"M12 6.528V3a1 1 0 0 1 1-1h0"}],["path",{d:"M18.237 21A15 15 0 0 0 22 11a6 6 0 0 0-10-4.472A6 6 0 0 0 2 11a15.1 15.1 0 0 0 3.763 10 3 3 0 0 0 3.648.648 5.5 5.5 0 0 1 5.178 0A3 3 0 0 0 18.237 21"}]];var iY=[["rect",{width:"20",height:"5",x:"2",y:"3",rx:"1"}],["path",{d:"M4 8v11a2 2 0 0 0 2 2h2"}],["path",{d:"M20 8v11a2 2 0 0 1-2 2h-2"}],["path",{d:"m9 15 3-3 3 3"}],["path",{d:"M12 12v9"}]];var lY=[["rect",{width:"20",height:"5",x:"2",y:"3",rx:"1"}],["path",{d:"M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8"}],["path",{d:"m9.5 17 5-5"}],["path",{d:"m9.5 12 5 5"}]];var sY=[["rect",{width:"20",height:"5",x:"2",y:"3",rx:"1"}],["path",{d:"M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8"}],["path",{d:"M10 12h4"}]];var rY=[["path",{d:"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{d:"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{d:"M5 18v2"}],["path",{d:"M19 18v2"}]];var aY=[["path",{d:"M15 11a1 1 0 0 0 1 1h2.939a1 1 0 0 1 .75 1.811l-6.835 6.836a1.207 1.207 0 0 1-1.707 0L4.31 13.81a1 1 0 0 1 .75-1.811H8a1 1 0 0 0 1-1V9a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1z"}],["path",{d:"M9 4h6"}]];var tY=[["path",{d:"M15 11a1 1 0 0 0 1 1h2.939a1 1 0 0 1 .75 1.811l-6.835 6.836a1.207 1.207 0 0 1-1.707 0L4.31 13.81a1 1 0 0 1 .75-1.811H8a1 1 0 0 0 1-1V5a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1z"}]];var oY=[["path",{d:"M13 9a1 1 0 0 1-1-1V5.061a1 1 0 0 0-1.811-.75l-6.835 6.836a1.207 1.207 0 0 0 0 1.707l6.835 6.835a1 1 0 0 0 1.811-.75V16a1 1 0 0 1 1-1h2a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1z"}],["path",{d:"M20 9v6"}]];var eY=[["path",{d:"M13 9a1 1 0 0 1-1-1V5.061a1 1 0 0 0-1.811-.75l-6.835 6.836a1.207 1.207 0 0 0 0 1.707l6.835 6.835a1 1 0 0 0 1.811-.75V16a1 1 0 0 1 1-1h6a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1z"}]];var ZX=[["path",{d:"M11 9a1 1 0 0 0 1-1V5.061a1 1 0 0 1 1.811-.75l6.836 6.836a1.207 1.207 0 0 1 0 1.707l-6.836 6.835a1 1 0 0 1-1.811-.75V16a1 1 0 0 0-1-1H9a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1z"}],["path",{d:"M4 9v6"}]];var JX=[["path",{d:"M11 9a1 1 0 0 0 1-1V5.061a1 1 0 0 1 1.811-.75l6.836 6.836a1.207 1.207 0 0 1 0 1.707l-6.836 6.835a1 1 0 0 1-1.811-.75V16a1 1 0 0 0-1-1H5a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1z"}]];var KX=[["path",{d:"M9 13a1 1 0 0 0-1-1H5.061a1 1 0 0 1-.75-1.811l6.836-6.835a1.207 1.207 0 0 1 1.707 0l6.835 6.835a1 1 0 0 1-.75 1.811H16a1 1 0 0 0-1 1v2a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1z"}],["path",{d:"M9 20h6"}]];var YX=[["path",{d:"M9 13a1 1 0 0 0-1-1H5.061a1 1 0 0 1-.75-1.811l6.836-6.835a1.207 1.207 0 0 1 1.707 0l6.835 6.835a1 1 0 0 1-.75 1.811H16a1 1 0 0 0-1 1v6a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1z"}]];var XX=[["path",{d:"m3 16 4 4 4-4"}],["path",{d:"M7 20V4"}],["rect",{x:"15",y:"4",width:"4",height:"6",ry:"2"}],["path",{d:"M17 20v-6h-2"}],["path",{d:"M15 20h4"}]];var WX=[["path",{d:"m3 16 4 4 4-4"}],["path",{d:"M7 20V4"}],["path",{d:"M17 10V4h-2"}],["path",{d:"M15 10h4"}],["rect",{x:"15",y:"14",width:"4",height:"6",ry:"2"}]];var y4=[["path",{d:"m3 16 4 4 4-4"}],["path",{d:"M7 20V4"}],["path",{d:"M20 8h-5"}],["path",{d:"M15 10V6.5a2.5 2.5 0 0 1 5 0V10"}],["path",{d:"M15 14h5l-5 6h5"}]];var QX=[["path",{d:"M19 3H5"}],["path",{d:"M12 21V7"}],["path",{d:"m6 15 6 6 6-6"}]];var VX=[["path",{d:"M17 7 7 17"}],["path",{d:"M17 17H7V7"}]];var GX=[["path",{d:"m3 16 4 4 4-4"}],["path",{d:"M7 20V4"}],["path",{d:"M11 4h4"}],["path",{d:"M11 8h7"}],["path",{d:"M11 12h10"}]];var IX=[["path",{d:"m7 7 10 10"}],["path",{d:"M17 7v10H7"}]];var zX=[["path",{d:"M12 2v14"}],["path",{d:"m19 9-7 7-7-7"}],["circle",{cx:"12",cy:"21",r:"1"}]];var NX=[["path",{d:"M12 17V3"}],["path",{d:"m6 11 6 6 6-6"}],["path",{d:"M19 21H5"}]];var FX=[["path",{d:"m3 16 4 4 4-4"}],["path",{d:"M7 20V4"}],["path",{d:"m21 8-4-4-4 4"}],["path",{d:"M17 4v16"}]];var f4=[["path",{d:"m3 16 4 4 4-4"}],["path",{d:"M7 20V4"}],["path",{d:"M11 4h10"}],["path",{d:"M11 8h7"}],["path",{d:"M11 12h4"}]];var k4=[["path",{d:"m3 16 4 4 4-4"}],["path",{d:"M7 4v16"}],["path",{d:"M15 4h5l-5 6h5"}],["path",{d:"M15 20v-3.5a2.5 2.5 0 0 1 5 0V20"}],["path",{d:"M20 18h-5"}]];var HX=[["path",{d:"M12 5v14"}],["path",{d:"m19 12-7 7-7-7"}]];var DX=[["path",{d:"M8 3 4 7l4 4"}],["path",{d:"M4 7h16"}],["path",{d:"m16 21 4-4-4-4"}],["path",{d:"M20 17H4"}]];var BX=[["path",{d:"m9 6-6 6 6 6"}],["path",{d:"M3 12h14"}],["path",{d:"M21 19V5"}]];var OX=[["path",{d:"M3 19V5"}],["path",{d:"m13 6-6 6 6 6"}],["path",{d:"M7 12h14"}]];var TX=[["path",{d:"m12 19-7-7 7-7"}],["path",{d:"M19 12H5"}]];var PX=[["path",{d:"M3 5v14"}],["path",{d:"M21 12H7"}],["path",{d:"m15 18 6-6-6-6"}]];var SX=[["path",{d:"m16 3 4 4-4 4"}],["path",{d:"M20 7H4"}],["path",{d:"m8 21-4-4 4-4"}],["path",{d:"M4 17h16"}]];var AX=[["path",{d:"M17 12H3"}],["path",{d:"m11 18 6-6-6-6"}],["path",{d:"M21 5v14"}]];var qX=[["path",{d:"M5 12h14"}],["path",{d:"m12 5 7 7-7 7"}]];var EX=[["path",{d:"m3 8 4-4 4 4"}],["path",{d:"M7 4v16"}],["rect",{x:"15",y:"4",width:"4",height:"6",ry:"2"}],["path",{d:"M17 20v-6h-2"}],["path",{d:"M15 20h4"}]];var CX=[["path",{d:"m3 8 4-4 4 4"}],["path",{d:"M7 4v16"}],["path",{d:"M17 10V4h-2"}],["path",{d:"M15 10h4"}],["rect",{x:"15",y:"14",width:"4",height:"6",ry:"2"}]];var b4=[["path",{d:"m3 8 4-4 4 4"}],["path",{d:"M7 4v16"}],["path",{d:"M20 8h-5"}],["path",{d:"M15 10V6.5a2.5 2.5 0 0 1 5 0V10"}],["path",{d:"M15 14h5l-5 6h5"}]];var xX=[["path",{d:"m21 16-4 4-4-4"}],["path",{d:"M17 20V4"}],["path",{d:"m3 8 4-4 4 4"}],["path",{d:"M7 4v16"}]];var wX=[["path",{d:"m5 9 7-7 7 7"}],["path",{d:"M12 16V2"}],["circle",{cx:"12",cy:"21",r:"1"}]];var UX=[["path",{d:"m18 9-6-6-6 6"}],["path",{d:"M12 3v14"}],["path",{d:"M5 21h14"}]];var MX=[["path",{d:"M7 17V7h10"}],["path",{d:"M17 17 7 7"}]];var h4=[["path",{d:"m3 8 4-4 4 4"}],["path",{d:"M7 4v16"}],["path",{d:"M11 12h4"}],["path",{d:"M11 16h7"}],["path",{d:"M11 20h10"}]];var RX=[["path",{d:"M7 7h10v10"}],["path",{d:"M7 17 17 7"}]];var jX=[["path",{d:"M5 3h14"}],["path",{d:"m18 13-6-6-6 6"}],["path",{d:"M12 7v14"}]];var LX=[["path",{d:"m3 8 4-4 4 4"}],["path",{d:"M7 4v16"}],["path",{d:"M11 12h10"}],["path",{d:"M11 16h7"}],["path",{d:"M11 20h4"}]];var v4=[["path",{d:"m3 8 4-4 4 4"}],["path",{d:"M7 4v16"}],["path",{d:"M15 4h5l-5 6h5"}],["path",{d:"M15 20v-3.5a2.5 2.5 0 0 1 5 0V20"}],["path",{d:"M20 18h-5"}]];var yX=[["path",{d:"m5 12 7-7 7 7"}],["path",{d:"M12 19V5"}]];var fX=[["path",{d:"m4 6 3-3 3 3"}],["path",{d:"M7 17V3"}],["path",{d:"m14 6 3-3 3 3"}],["path",{d:"M17 17V3"}],["path",{d:"M4 21h16"}]];var kX=[["path",{d:"M12 6v12"}],["path",{d:"M17.196 9 6.804 15"}],["path",{d:"m6.804 9 10.392 6"}]];var bX=[["circle",{cx:"12",cy:"12",r:"4"}],["path",{d:"M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-4 8"}]];var hX=[["circle",{cx:"12",cy:"12",r:"1"}],["path",{d:"M20.2 20.2c2.04-2.03.02-7.36-4.5-11.9-4.54-4.52-9.87-6.54-11.9-4.5-2.04 2.03-.02 7.36 4.5 11.9 4.54 4.52 9.87 6.54 11.9 4.5Z"}],["path",{d:"M15.7 15.7c4.52-4.54 6.54-9.87 4.5-11.9-2.03-2.04-7.36-.02-11.9 4.5-4.52 4.54-6.54 9.87-4.5 11.9 2.03 2.04 7.36.02 11.9-4.5Z"}]];var vX=[["path",{d:"M2 10v3"}],["path",{d:"M6 6v11"}],["path",{d:"M10 3v18"}],["path",{d:"M14 8v7"}],["path",{d:"M18 5v13"}],["path",{d:"M22 10v3"}]];var $X=[["path",{d:"M2 13a2 2 0 0 0 2-2V7a2 2 0 0 1 4 0v13a2 2 0 0 0 4 0V4a2 2 0 0 1 4 0v13a2 2 0 0 0 4 0v-4a2 2 0 0 1 2-2"}]];var gX=[["path",{d:"m15.477 12.89 1.515 8.526a.5.5 0 0 1-.81.47l-3.58-2.687a1 1 0 0 0-1.197 0l-3.586 2.686a.5.5 0 0 1-.81-.469l1.514-8.526"}],["circle",{cx:"12",cy:"8",r:"6"}]];var _X=[["path",{d:"m14 12-8.381 8.38a1 1 0 0 1-3.001-3L11 9"}],["path",{d:"M15 15.5a.5.5 0 0 0 .5.5A6.5 6.5 0 0 0 22 9.5a.5.5 0 0 0-.5-.5h-1.672a2 2 0 0 1-1.414-.586l-5.062-5.062a1.205 1.205 0 0 0-1.704 0L9.352 5.648a1.205 1.205 0 0 0 0 1.704l5.062 5.062A2 2 0 0 1 15 13.828z"}]];var $4=[["path",{d:"M13.5 10.5 15 9"}],["path",{d:"M4 4v15a1 1 0 0 0 1 1h15"}],["path",{d:"M4.293 19.707 6 18"}],["path",{d:"m9 15 1.5-1.5"}]];var mX=[["path",{d:"M10 16c.5.3 1.2.5 2 .5s1.5-.2 2-.5"}],["path",{d:"M15 12h.01"}],["path",{d:"M19.38 6.813A9 9 0 0 1 20.8 10.2a2 2 0 0 1 0 3.6 9 9 0 0 1-17.6 0 2 2 0 0 1 0-3.6A9 9 0 0 1 12 3c2 0 3.5 1.1 3.5 2.5s-.9 2.5-2 2.5c-.8 0-1.5-.4-1.5-1"}],["path",{d:"M9 12h.01"}]];var uX=[["path",{d:"M4 10a4 4 0 0 1 4-4h8a4 4 0 0 1 4 4v10a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2z"}],["path",{d:"M8 10h8"}],["path",{d:"M8 18h8"}],["path",{d:"M8 22v-6a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v6"}],["path",{d:"M9 6V4a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v2"}]];var dX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16"}]];var cX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"M12 7v10"}],["path",{d:"M15.4 10a4 4 0 1 0 0 4"}]];var g4=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"m9 12 2 2 4-4"}]];var pX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8"}],["path",{d:"M12 18V6"}]];var nX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"M7 12h5"}],["path",{d:"M15 9.4a4 4 0 1 0 0 5.2"}]];var iX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"M8 8h8"}],["path",{d:"M8 12h8"}],["path",{d:"m13 17-5-1h1a4 4 0 0 0 0-8"}]];var lX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["line",{x1:"12",x2:"12",y1:"16",y2:"12"}],["line",{x1:"12",x2:"12.01",y1:"8",y2:"8"}]];var sX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"m9 8 3 3v7"}],["path",{d:"m12 11 3-3"}],["path",{d:"M9 12h6"}],["path",{d:"M9 16h6"}]];var rX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["line",{x1:"8",x2:"16",y1:"12",y2:"12"}]];var aX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"m15 9-6 6"}],["path",{d:"M9 9h.01"}],["path",{d:"M15 15h.01"}]];var tX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["line",{x1:"12",x2:"12",y1:"8",y2:"16"}],["line",{x1:"8",x2:"16",y1:"12",y2:"12"}]];var oX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"M8 12h4"}],["path",{d:"M10 16V9.5a2.5 2.5 0 0 1 5 0"}],["path",{d:"M8 16h7"}]];var _4=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"}],["line",{x1:"12",x2:"12.01",y1:"17",y2:"17"}]];var eX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"M9 16h5"}],["path",{d:"M9 12h5a2 2 0 1 0 0-4h-3v9"}]];var ZW=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"M11 17V8h4"}],["path",{d:"M11 12h3"}],["path",{d:"M9 16h4"}]];var JW=[["path",{d:"M11 7v10a5 5 0 0 0 5-5"}],["path",{d:"m15 8-6 3"}],["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76"}]];var KW=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["line",{x1:"15",x2:"9",y1:"9",y2:"15"}],["line",{x1:"9",x2:"15",y1:"9",y2:"15"}]];var YW=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}]];var XW=[["path",{d:"M22 18H6a2 2 0 0 1-2-2V7a2 2 0 0 0-2-2"}],["path",{d:"M17 14V4a2 2 0 0 0-2-2h-1a2 2 0 0 0-2 2v10"}],["rect",{width:"13",height:"8",x:"8",y:"6",rx:"1"}],["circle",{cx:"18",cy:"20",r:"2"}],["circle",{cx:"9",cy:"20",r:"2"}]];var WW=[["path",{d:"M4.929 4.929 19.07 19.071"}],["circle",{cx:"12",cy:"12",r:"10"}]];var QW=[["path",{d:"M4 13c3.5-2 8-2 10 2a5.5 5.5 0 0 1 8 5"}],["path",{d:"M5.15 17.89c5.52-1.52 8.65-6.89 7-12C11.55 4 11.5 2 13 2c3.22 0 5 5.5 5 8 0 6.5-4.2 12-10.49 12C5.11 22 2 22 2 20c0-1.5 1.14-1.55 3.15-2.11Z"}]];var VW=[["path",{d:"M10 10.01h.01"}],["path",{d:"M10 14.01h.01"}],["path",{d:"M14 10.01h.01"}],["path",{d:"M14 14.01h.01"}],["path",{d:"M18 6v11.5"}],["path",{d:"M6 6v12"}],["rect",{x:"2",y:"6",width:"20",height:"12",rx:"2"}]];var GW=[["path",{d:"M12 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5"}],["path",{d:"m16 19 3 3 3-3"}],["path",{d:"M18 12h.01"}],["path",{d:"M19 16v6"}],["path",{d:"M6 12h.01"}],["circle",{cx:"12",cy:"12",r:"2"}]];var IW=[["path",{d:"M13 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5"}],["path",{d:"m17 17 5 5"}],["path",{d:"M18 12h.01"}],["path",{d:"m22 17-5 5"}],["path",{d:"M6 12h.01"}],["circle",{cx:"12",cy:"12",r:"2"}]];var zW=[["path",{d:"M12 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5"}],["path",{d:"M18 12h.01"}],["path",{d:"M19 22v-6"}],["path",{d:"m22 19-3-3-3 3"}],["path",{d:"M6 12h.01"}],["circle",{cx:"12",cy:"12",r:"2"}]];var NW=[["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2"}],["circle",{cx:"12",cy:"12",r:"2"}],["path",{d:"M6 12h.01M18 12h.01"}]];var FW=[["path",{d:"M3 5v14"}],["path",{d:"M8 5v14"}],["path",{d:"M12 5v14"}],["path",{d:"M17 5v14"}],["path",{d:"M21 5v14"}]];var HW=[["path",{d:"M10 3a41 41 0 0 0 0 18"}],["path",{d:"M14 3a41 41 0 0 1 0 18"}],["path",{d:"M17 3a2 2 0 0 1 1.68.92 15.25 15.25 0 0 1 0 16.16A2 2 0 0 1 17 21H7a2 2 0 0 1-1.68-.92 15.25 15.25 0 0 1 0-16.16A2 2 0 0 1 7 3z"}],["path",{d:"M3.84 17h16.32"}],["path",{d:"M3.84 7h16.32"}]];var DW=[["path",{d:"M4 20h16"}],["path",{d:"m6 16 6-12 6 12"}],["path",{d:"M8 12h8"}]];var BW=[["path",{d:"M10 4 8 6"}],["path",{d:"M17 19v2"}],["path",{d:"M2 12h20"}],["path",{d:"M7 19v2"}],["path",{d:"M9 5 7.621 3.621A2.121 2.121 0 0 0 4 5v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-5"}]];var OW=[["path",{d:"m11 7-3 5h4l-3 5"}],["path",{d:"M14.856 6H16a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2.935"}],["path",{d:"M22 14v-4"}],["path",{d:"M5.14 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2.936"}]];var TW=[["path",{d:"M10 10v4"}],["path",{d:"M14 10v4"}],["path",{d:"M22 14v-4"}],["path",{d:"M6 10v4"}],["rect",{x:"2",y:"6",width:"16",height:"12",rx:"2"}]];var PW=[["path",{d:"M22 14v-4"}],["path",{d:"M6 14v-4"}],["rect",{x:"2",y:"6",width:"16",height:"12",rx:"2"}]];var SW=[["path",{d:"M10 9v6"}],["path",{d:"M12.543 6H16a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-3.605"}],["path",{d:"M22 14v-4"}],["path",{d:"M7 12h6"}],["path",{d:"M7.606 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3.606"}]];var AW=[["path",{d:"M10 14v-4"}],["path",{d:"M22 14v-4"}],["path",{d:"M6 14v-4"}],["rect",{x:"2",y:"6",width:"16",height:"12",rx:"2"}]];var qW=[["path",{d:"M10 17h.01"}],["path",{d:"M10 7v6"}],["path",{d:"M14 6h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2"}],["path",{d:"M22 14v-4"}],["path",{d:"M6 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2"}]];var EW=[["path",{d:"M 22 14 L 22 10"}],["rect",{x:"2",y:"6",width:"16",height:"12",rx:"2"}]];var CW=[["path",{d:"M4.5 3h15"}],["path",{d:"M6 3v16a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V3"}],["path",{d:"M6 14h12"}]];var xW=[["path",{d:"M9 9c-.64.64-1.521.954-2.402 1.165A6 6 0 0 0 8 22a13.96 13.96 0 0 0 9.9-4.1"}],["path",{d:"M10.75 5.093A6 6 0 0 1 22 8c0 2.411-.61 4.68-1.683 6.66"}],["path",{d:"M5.341 10.62a4 4 0 0 0 6.487 1.208M10.62 5.341a4.015 4.015 0 0 1 2.039 2.04"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var wW=[["path",{d:"M2 20v-8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v8"}],["path",{d:"M4 10V6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v4"}],["path",{d:"M12 4v6"}],["path",{d:"M2 18h20"}]];var UW=[["path",{d:"M10.165 6.598C9.954 7.478 9.64 8.36 9 9c-.64.64-1.521.954-2.402 1.165A6 6 0 0 0 8 22c7.732 0 14-6.268 14-14a6 6 0 0 0-11.835-1.402Z"}],["path",{d:"M5.341 10.62a4 4 0 1 0 5.279-5.28"}]];var MW=[["path",{d:"M3 20v-8a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v8"}],["path",{d:"M5 10V6a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v4"}],["path",{d:"M3 18h18"}]];var RW=[["path",{d:"M16.4 13.7A6.5 6.5 0 1 0 6.28 6.6c-1.1 3.13-.78 3.9-3.18 6.08A3 3 0 0 0 5 18c4 0 8.4-1.8 11.4-4.3"}],["path",{d:"m18.5 6 2.19 4.5a6.48 6.48 0 0 1-2.29 7.2C15.4 20.2 11 22 7 22a3 3 0 0 1-2.68-1.66L2.4 16.5"}],["circle",{cx:"12.5",cy:"8.5",r:"2.5"}]];var jW=[["path",{d:"M2 4v16"}],["path",{d:"M2 8h18a2 2 0 0 1 2 2v10"}],["path",{d:"M2 17h20"}],["path",{d:"M6 8v9"}]];var LW=[["path",{d:"M13 13v5"}],["path",{d:"M17 11.47V8"}],["path",{d:"M17 11h1a3 3 0 0 1 2.745 4.211"}],["path",{d:"m2 2 20 20"}],["path",{d:"M5 8v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2v-3"}],["path",{d:"M7.536 7.535C6.766 7.649 6.154 8 5.5 8a2.5 2.5 0 0 1-1.768-4.268"}],["path",{d:"M8.727 3.204C9.306 2.767 9.885 2 11 2c1.56 0 2 1.5 3 1.5s1.72-.5 2.5-.5a1 1 0 1 1 0 5c-.78 0-1.5-.5-2.5-.5a3.149 3.149 0 0 0-.842.12"}],["path",{d:"M9 14.6V18"}]];var yW=[["path",{d:"M17 11h1a3 3 0 0 1 0 6h-1"}],["path",{d:"M9 12v6"}],["path",{d:"M13 12v6"}],["path",{d:"M14 7.5c-1 0-1.44.5-3 .5s-2-.5-3-.5-1.72.5-2.5.5a2.5 2.5 0 0 1 0-5c.78 0 1.57.5 2.5.5S9.44 2 11 2s2 1.5 3 1.5 1.72-.5 2.5-.5a2.5 2.5 0 0 1 0 5c-.78 0-1.5-.5-2.5-.5Z"}],["path",{d:"M5 8v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V8"}]];var fW=[["path",{d:"M18.518 17.347A7 7 0 0 1 14 19"}],["path",{d:"M18.8 4A11 11 0 0 1 20 9"}],["path",{d:"M9 9h.01"}],["circle",{cx:"20",cy:"16",r:"2"}],["circle",{cx:"9",cy:"9",r:"7"}],["rect",{x:"4",y:"16",width:"10",height:"6",rx:"2"}]];var kW=[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0"}],["path",{d:"M13.916 2.314A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.74 7.327A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673 9 9 0 0 1-.585-.665"}],["circle",{cx:"18",cy:"8",r:"3"}]];var bW=[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0"}],["path",{d:"M15 8h6"}],["path",{d:"M16.243 3.757A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673A9.4 9.4 0 0 1 18.667 12"}]];var hW=[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0"}],["path",{d:"M17 17H4a1 1 0 0 1-.74-1.673C4.59 13.956 6 12.499 6 8a6 6 0 0 1 .258-1.742"}],["path",{d:"m2 2 20 20"}],["path",{d:"M8.668 3.01A6 6 0 0 1 18 8c0 2.687.77 4.653 1.707 6.05"}]];var vW=[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0"}],["path",{d:"M15 8h6"}],["path",{d:"M18 5v6"}],["path",{d:"M20.002 14.464a9 9 0 0 0 .738.863A1 1 0 0 1 20 17H4a1 1 0 0 1-.74-1.673C4.59 13.956 6 12.499 6 8a6 6 0 0 1 8.75-5.332"}]];var $W=[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0"}],["path",{d:"M22 8c0-2.3-.8-4.3-2-6"}],["path",{d:"M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326"}],["path",{d:"M4 2C2.8 3.7 2 5.7 2 8"}]];var gW=[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0"}],["path",{d:"M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326"}]];var m4=[["rect",{width:"13",height:"7",x:"3",y:"3",rx:"1"}],["path",{d:"m22 15-3-3 3-3"}],["rect",{width:"13",height:"7",x:"3",y:"14",rx:"1"}]];var u4=[["rect",{width:"13",height:"7",x:"8",y:"3",rx:"1"}],["path",{d:"m2 9 3 3-3 3"}],["rect",{width:"13",height:"7",x:"8",y:"14",rx:"1"}]];var _W=[["rect",{width:"7",height:"13",x:"3",y:"3",rx:"1"}],["path",{d:"m9 22 3-3 3 3"}],["rect",{width:"7",height:"13",x:"14",y:"3",rx:"1"}]];var mW=[["rect",{width:"7",height:"13",x:"3",y:"8",rx:"1"}],["path",{d:"m15 2-3 3-3-3"}],["rect",{width:"7",height:"13",x:"14",y:"8",rx:"1"}]];var uW=[["path",{d:"M12.409 13.017A5 5 0 0 1 22 15c0 3.866-4 7-9 7-4.077 0-8.153-.82-10.371-2.462-.426-.316-.631-.832-.62-1.362C2.118 12.723 2.627 2 10 2a3 3 0 0 1 3 3 2 2 0 0 1-2 2c-1.105 0-1.64-.444-2-1"}],["path",{d:"M15 14a5 5 0 0 0-7.584 2"}],["path",{d:"M9.964 6.825C8.019 7.977 9.5 13 8 15"}]];var dW=[["circle",{cx:"18.5",cy:"17.5",r:"3.5"}],["circle",{cx:"5.5",cy:"17.5",r:"3.5"}],["circle",{cx:"15",cy:"5",r:"1"}],["path",{d:"M12 17.5V14l-3-3 4-3 2 3h2"}]];var cW=[["rect",{x:"14",y:"14",width:"4",height:"6",rx:"2"}],["rect",{x:"6",y:"4",width:"4",height:"6",rx:"2"}],["path",{d:"M6 20h4"}],["path",{d:"M14 10h4"}],["path",{d:"M6 14h2v6"}],["path",{d:"M14 4h2v6"}]];var pW=[["path",{d:"M10 10h4"}],["path",{d:"M19 7V4a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1v3"}],["path",{d:"M20 21a2 2 0 0 0 2-2v-3.851c0-1.39-2-2.962-2-4.829V8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v11a2 2 0 0 0 2 2z"}],["path",{d:"M 22 16 L 2 16"}],["path",{d:"M4 21a2 2 0 0 1-2-2v-3.851c0-1.39 2-2.962 2-4.829V8a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v11a2 2 0 0 1-2 2z"}],["path",{d:"M9 7V4a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v3"}]];var nW=[["circle",{cx:"12",cy:"11.9",r:"2"}],["path",{d:"M6.7 3.4c-.9 2.5 0 5.2 2.2 6.7C6.5 9 3.7 9.6 2 11.6"}],["path",{d:"m8.9 10.1 1.4.8"}],["path",{d:"M17.3 3.4c.9 2.5 0 5.2-2.2 6.7 2.4-1.2 5.2-.6 6.9 1.5"}],["path",{d:"m15.1 10.1-1.4.8"}],["path",{d:"M16.7 20.8c-2.6-.4-4.6-2.6-4.7-5.3-.2 2.6-2.1 4.8-4.7 5.2"}],["path",{d:"M12 13.9v1.6"}],["path",{d:"M13.5 5.4c-1-.2-2-.2-3 0"}],["path",{d:"M17 16.4c.7-.7 1.2-1.6 1.5-2.5"}],["path",{d:"M5.5 13.9c.3.9.8 1.8 1.5 2.5"}]];var iW=[["path",{d:"M16 7h.01"}],["path",{d:"M3.4 18H12a8 8 0 0 0 8-8V7a4 4 0 0 0-7.28-2.3L2 20"}],["path",{d:"m20 7 2 .5-2 .5"}],["path",{d:"M10 18v3"}],["path",{d:"M14 17.75V21"}],["path",{d:"M7 18a6 6 0 0 0 3.84-10.61"}]];var lW=[["path",{d:"M12 18v4"}],["path",{d:"m17 18 1.956-11.468"}],["path",{d:"m3 8 7.82-5.615a2 2 0 0 1 2.36 0L21 8"}],["path",{d:"M4 18h16"}],["path",{d:"M7 18 5.044 6.532"}],["circle",{cx:"12",cy:"10",r:"2"}]];var sW=[["circle",{cx:"9",cy:"9",r:"7"}],["circle",{cx:"15",cy:"15",r:"7"}]];var rW=[["path",{d:"M3 3h18"}],["path",{d:"M20 7H8"}],["path",{d:"M20 11H8"}],["path",{d:"M10 19h10"}],["path",{d:"M8 15h12"}],["path",{d:"M4 3v14"}],["circle",{cx:"4",cy:"19",r:"2"}]];var aW=[["path",{d:"M11.767 19.089c4.924.868 6.14-6.025 1.216-6.894m-1.216 6.894L5.86 18.047m5.908 1.042-.347 1.97m1.563-8.864c4.924.869 6.14-6.025 1.215-6.893m-1.215 6.893-3.94-.694m5.155-6.2L8.29 4.26m5.908 1.042.348-1.97M7.48 20.364l3.126-17.727"}]];var tW=[["path",{d:"M10 22V7a1 1 0 0 0-1-1H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-5a1 1 0 0 0-1-1H2"}],["rect",{x:"14",y:"2",width:"8",height:"8",rx:"1"}]];var oW=[["path",{d:"m7 7 10 10-5 5V2l5 5L7 17"}],["line",{x1:"18",x2:"21",y1:"12",y2:"12"}],["line",{x1:"3",x2:"6",y1:"12",y2:"12"}]];var eW=[["path",{d:"m17 17-5 5V12l-5 5"}],["path",{d:"m2 2 20 20"}],["path",{d:"M14.5 9.5 17 7l-5-5v4.5"}]];var ZQ=[["path",{d:"m7 7 10 10-5 5V2l5 5L7 17"}]];var JQ=[["path",{d:"M6 12h9a4 4 0 0 1 0 8H7a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h7a4 4 0 0 1 0 8"}]];var KQ=[["path",{d:"m7 7 10 10-5 5V2l5 5L7 17"}],["path",{d:"M20.83 14.83a4 4 0 0 0 0-5.66"}],["path",{d:"M18 12h.01"}]];var YQ=[["path",{d:"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"}],["circle",{cx:"12",cy:"12",r:"4"}]];var XQ=[["circle",{cx:"11",cy:"13",r:"9"}],["path",{d:"M14.35 4.65 16.3 2.7a2.41 2.41 0 0 1 3.4 0l1.6 1.6a2.4 2.4 0 0 1 0 3.4l-1.95 1.95"}],["path",{d:"m22 2-1.5 1.5"}]];var WQ=[["path",{d:"M17 10c.7-.7 1.69 0 2.5 0a2.5 2.5 0 1 0 0-5 .5.5 0 0 1-.5-.5 2.5 2.5 0 1 0-5 0c0 .81.7 1.8 0 2.5l-7 7c-.7.7-1.69 0-2.5 0a2.5 2.5 0 0 0 0 5c.28 0 .5.22.5.5a2.5 2.5 0 1 0 5 0c0-.81-.7-1.8 0-2.5Z"}]];var QQ=[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"m8 13 4-7 4 7"}],["path",{d:"M9.1 11h5.7"}]];var VQ=[["path",{d:"M12 13h.01"}],["path",{d:"M12 6v3"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}]];var GQ=[["path",{d:"M12 6v7"}],["path",{d:"M16 8v3"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"M8 8v3"}]];var IQ=[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"m9 9.5 2 2 4-4"}]];var zQ=[["path",{d:"M5 7a2 2 0 0 0-2 2v11"}],["path",{d:"M5.803 18H5a2 2 0 0 0 0 4h9.5a.5.5 0 0 0 .5-.5V21"}],["path",{d:"M9 15V4a2 2 0 0 1 2-2h9.5a.5.5 0 0 1 .5.5v14a.5.5 0 0 1-.5.5H11a2 2 0 0 1 0-4h10"}]];var d4=[["path",{d:"M12 17h1.5"}],["path",{d:"M12 22h1.5"}],["path",{d:"M12 2h1.5"}],["path",{d:"M17.5 22H19a1 1 0 0 0 1-1"}],["path",{d:"M17.5 2H19a1 1 0 0 1 1 1v1.5"}],["path",{d:"M20 14v3h-2.5"}],["path",{d:"M20 8.5V10"}],["path",{d:"M4 10V8.5"}],["path",{d:"M4 19.5V14"}],["path",{d:"M4 4.5A2.5 2.5 0 0 1 6.5 2H8"}],["path",{d:"M8 22H6.5a1 1 0 0 1 0-5H8"}]];var NQ=[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"M8 12v-2a4 4 0 0 1 8 0v2"}],["circle",{cx:"15",cy:"12",r:"1"}],["circle",{cx:"9",cy:"12",r:"1"}]];var FQ=[["path",{d:"M12 13V7"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"m9 10 3 3 3-3"}]];var HQ=[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"M8.62 9.8A2.25 2.25 0 1 1 12 6.836a2.25 2.25 0 1 1 3.38 2.966l-2.626 2.856a.998.998 0 0 1-1.507 0z"}]];var DQ=[["path",{d:"m20 13.7-2.1-2.1a2 2 0 0 0-2.8 0L9.7 17"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["circle",{cx:"10",cy:"8",r:"2"}]];var BQ=[["path",{d:"m19 3 1 1"}],["path",{d:"m20 2-4.5 4.5"}],["path",{d:"M20 7.898V21a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2h7.844"}],["circle",{cx:"14",cy:"8",r:"2"}]];var OQ=[["path",{d:"M18 6V4a2 2 0 1 0-4 0v2"}],["path",{d:"M20 15v6a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H10"}],["rect",{x:"12",y:"6",width:"8",height:"5",rx:"1"}]];var TQ=[["path",{d:"M10 2v8l3-3 3 3V2"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}]];var PQ=[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"M9 10h6"}]];var SQ=[["path",{d:"M12 21V7"}],["path",{d:"m16 12 2 2 4-4"}],["path",{d:"M22 6V4a1 1 0 0 0-1-1h-5a4 4 0 0 0-4 4 4 4 0 0 0-4-4H3a1 1 0 0 0-1 1v13a1 1 0 0 0 1 1h6a3 3 0 0 1 3 3 3 3 0 0 1 3-3h6a1 1 0 0 0 1-1v-1.3"}]];var AQ=[["path",{d:"M12 7v14"}],["path",{d:"M16 12h2"}],["path",{d:"M16 8h2"}],["path",{d:"M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z"}],["path",{d:"M6 12h2"}],["path",{d:"M6 8h2"}]];var qQ=[["path",{d:"M12 7v14"}],["path",{d:"M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z"}]];var EQ=[["path",{d:"M12 7v6"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"M9 10h6"}]];var CQ=[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"M8 11h8"}],["path",{d:"M8 7h6"}]];var xQ=[["path",{d:"M10 13h4"}],["path",{d:"M12 6v7"}],["path",{d:"M16 8V6H8v2"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}]];var wQ=[["path",{d:"M12 13V7"}],["path",{d:"M18 2h1a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2"}],["path",{d:"m9 10 3-3 3 3"}],["path",{d:"m9 5 3-3 3 3"}]];var UQ=[["path",{d:"M12 13V7"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"m9 10 3-3 3 3"}]];var MQ=[["path",{d:"M15 13a3 3 0 1 0-6 0"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["circle",{cx:"12",cy:"8",r:"2"}]];var RQ=[["path",{d:"m14.5 7-5 5"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"m9.5 7 5 5"}]];var jQ=[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}]];var LQ=[["path",{d:"m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2Z"}],["path",{d:"m9 10 2 2 4-4"}]];var yQ=[["path",{d:"m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z"}],["line",{x1:"15",x2:"9",y1:"10",y2:"10"}]];var fQ=[["path",{d:"m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z"}],["line",{x1:"12",x2:"12",y1:"7",y2:"13"}],["line",{x1:"15",x2:"9",y1:"10",y2:"10"}]];var kQ=[["path",{d:"m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2Z"}],["path",{d:"m14.5 7.5-5 5"}],["path",{d:"m9.5 7.5 5 5"}]];var bQ=[["path",{d:"m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z"}]];var hQ=[["path",{d:"M12 6V2H8"}],["path",{d:"M15 11v2"}],["path",{d:"M2 12h2"}],["path",{d:"M20 12h2"}],["path",{d:"M20 16a2 2 0 0 1-2 2H8.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 4 20.286V8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2z"}],["path",{d:"M9 11v2"}]];var vQ=[["path",{d:"M4 9V5a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v4"}],["path",{d:"M8 8v1"}],["path",{d:"M12 8v1"}],["path",{d:"M16 8v1"}],["rect",{width:"20",height:"12",x:"2",y:"9",rx:"2"}],["circle",{cx:"8",cy:"15",r:"2"}],["circle",{cx:"16",cy:"15",r:"2"}]];var $Q=[["path",{d:"M13.67 8H18a2 2 0 0 1 2 2v4.33"}],["path",{d:"M2 14h2"}],["path",{d:"M20 14h2"}],["path",{d:"M22 22 2 2"}],["path",{d:"M8 8H6a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 1.414-.586"}],["path",{d:"M9 13v2"}],["path",{d:"M9.67 4H12v2.33"}]];var gQ=[["path",{d:"M12 8V4H8"}],["rect",{width:"16",height:"12",x:"4",y:"8",rx:"2"}],["path",{d:"M2 14h2"}],["path",{d:"M20 14h2"}],["path",{d:"M15 13v2"}],["path",{d:"M9 13v2"}]];var _Q=[["path",{d:"M10 3a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a6 6 0 0 0 1.2 3.6l.6.8A6 6 0 0 1 17 13v8a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1v-8a6 6 0 0 1 1.2-3.6l.6-.8A6 6 0 0 0 10 5z"}],["path",{d:"M17 13h-4a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h4"}]];var mQ=[["path",{d:"M17 3h4v4"}],["path",{d:"M18.575 11.082a13 13 0 0 1 1.048 9.027 1.17 1.17 0 0 1-1.914.597L14 17"}],["path",{d:"M7 10 3.29 6.29a1.17 1.17 0 0 1 .6-1.91 13 13 0 0 1 9.03 1.05"}],["path",{d:"M7 14a1.7 1.7 0 0 0-1.207.5l-2.646 2.646A.5.5 0 0 0 3.5 18H5a1 1 0 0 1 1 1v1.5a.5.5 0 0 0 .854.354L9.5 18.207A1.7 1.7 0 0 0 10 17v-2a1 1 0 0 0-1-1z"}],["path",{d:"M9.707 14.293 21 3"}]];var uQ=[["path",{d:"M21 8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16Z"}],["path",{d:"m3.3 7 8.7 5 8.7-5"}],["path",{d:"M12 22V12"}]];var dQ=[["path",{d:"M2.97 12.92A2 2 0 0 0 2 14.63v3.24a2 2 0 0 0 .97 1.71l3 1.8a2 2 0 0 0 2.06 0L12 19v-5.5l-5-3-4.03 2.42Z"}],["path",{d:"m7 16.5-4.74-2.85"}],["path",{d:"m7 16.5 5-3"}],["path",{d:"M7 16.5v5.17"}],["path",{d:"M12 13.5V19l3.97 2.38a2 2 0 0 0 2.06 0l3-1.8a2 2 0 0 0 .97-1.71v-3.24a2 2 0 0 0-.97-1.71L17 10.5l-5 3Z"}],["path",{d:"m17 16.5-5-3"}],["path",{d:"m17 16.5 4.74-2.85"}],["path",{d:"M17 16.5v5.17"}],["path",{d:"M7.97 4.42A2 2 0 0 0 7 6.13v4.37l5 3 5-3V6.13a2 2 0 0 0-.97-1.71l-3-1.8a2 2 0 0 0-2.06 0l-3 1.8Z"}],["path",{d:"M12 8 7.26 5.15"}],["path",{d:"m12 8 4.74-2.85"}],["path",{d:"M12 13.5V8"}]];var c4=[["path",{d:"M8 3H7a2 2 0 0 0-2 2v5a2 2 0 0 1-2 2 2 2 0 0 1 2 2v5c0 1.1.9 2 2 2h1"}],["path",{d:"M16 21h1a2 2 0 0 0 2-2v-5c0-1.1.9-2 2-2a2 2 0 0 1-2-2V5a2 2 0 0 0-2-2h-1"}]];var cQ=[["path",{d:"M16 3h3a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1h-3"}],["path",{d:"M8 21H5a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h3"}]];var pQ=[["path",{d:"M12 5a3 3 0 1 0-5.997.125 4 4 0 0 0-2.526 5.77 4 4 0 0 0 .556 6.588A4 4 0 1 0 12 18Z"}],["path",{d:"M9 13a4.5 4.5 0 0 0 3-4"}],["path",{d:"M6.003 5.125A3 3 0 0 0 6.401 6.5"}],["path",{d:"M3.477 10.896a4 4 0 0 1 .585-.396"}],["path",{d:"M6 18a4 4 0 0 1-1.967-.516"}],["path",{d:"M12 13h4"}],["path",{d:"M12 18h6a2 2 0 0 1 2 2v1"}],["path",{d:"M12 8h8"}],["path",{d:"M16 8V5a2 2 0 0 1 2-2"}],["circle",{cx:"16",cy:"13",r:".5"}],["circle",{cx:"18",cy:"3",r:".5"}],["circle",{cx:"20",cy:"21",r:".5"}],["circle",{cx:"20",cy:"8",r:".5"}]];var nQ=[["path",{d:"m10.852 14.772-.383.923"}],["path",{d:"m10.852 9.228-.383-.923"}],["path",{d:"m13.148 14.772.382.924"}],["path",{d:"m13.531 8.305-.383.923"}],["path",{d:"m14.772 10.852.923-.383"}],["path",{d:"m14.772 13.148.923.383"}],["path",{d:"M17.598 6.5A3 3 0 1 0 12 5a3 3 0 0 0-5.63-1.446 3 3 0 0 0-.368 1.571 4 4 0 0 0-2.525 5.771"}],["path",{d:"M17.998 5.125a4 4 0 0 1 2.525 5.771"}],["path",{d:"M19.505 10.294a4 4 0 0 1-1.5 7.706"}],["path",{d:"M4.032 17.483A4 4 0 0 0 11.464 20c.18-.311.892-.311 1.072 0a4 4 0 0 0 7.432-2.516"}],["path",{d:"M4.5 10.291A4 4 0 0 0 6 18"}],["path",{d:"M6.002 5.125a3 3 0 0 0 .4 1.375"}],["path",{d:"m9.228 10.852-.923-.383"}],["path",{d:"m9.228 13.148-.923.383"}],["circle",{cx:"12",cy:"12",r:"3"}]];var iQ=[["path",{d:"M12 18V5"}],["path",{d:"M15 13a4.17 4.17 0 0 1-3-4 4.17 4.17 0 0 1-3 4"}],["path",{d:"M17.598 6.5A3 3 0 1 0 12 5a3 3 0 1 0-5.598 1.5"}],["path",{d:"M17.997 5.125a4 4 0 0 1 2.526 5.77"}],["path",{d:"M18 18a4 4 0 0 0 2-7.464"}],["path",{d:"M19.967 17.483A4 4 0 1 1 12 18a4 4 0 1 1-7.967-.517"}],["path",{d:"M6 18a4 4 0 0 1-2-7.464"}],["path",{d:"M6.003 5.125a4 4 0 0 0-2.526 5.77"}]];var lQ=[["path",{d:"M16 3v2.107"}],["path",{d:"M17 9c1 3 2.5 3.5 3.5 4.5A5 5 0 0 1 22 17a5 5 0 0 1-10 0c0-.3 0-.6.1-.9a2 2 0 1 0 3.3-2C13 11.5 16 9 17 9"}],["path",{d:"M21 8.274V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h3.938"}],["path",{d:"M3 15h5.253"}],["path",{d:"M3 9h8.228"}],["path",{d:"M8 15v6"}],["path",{d:"M8 3v6"}]];var sQ=[["path",{d:"M12 9v1.258"}],["path",{d:"M16 3v5.46"}],["path",{d:"M21 9.118V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h5.75"}],["path",{d:"M22 17.5c0 2.499-1.75 3.749-3.83 4.474a.5.5 0 0 1-.335-.005c-2.085-.72-3.835-1.97-3.835-4.47V14a.5.5 0 0 1 .5-.499c1 0 2.25-.6 3.12-1.36a.6.6 0 0 1 .76-.001c.875.765 2.12 1.36 3.12 1.36a.5.5 0 0 1 .5.5z"}],["path",{d:"M3 15h7"}],["path",{d:"M3 9h12.142"}],["path",{d:"M8 15v6"}],["path",{d:"M8 3v6"}]];var rQ=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M12 9v6"}],["path",{d:"M16 15v6"}],["path",{d:"M16 3v6"}],["path",{d:"M3 15h18"}],["path",{d:"M3 9h18"}],["path",{d:"M8 15v6"}],["path",{d:"M8 3v6"}]];var aQ=[["path",{d:"M12 12h.01"}],["path",{d:"M16 6V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2"}],["path",{d:"M22 13a18.15 18.15 0 0 1-20 0"}],["rect",{width:"20",height:"14",x:"2",y:"6",rx:"2"}]];var tQ=[["path",{d:"M10 20v2"}],["path",{d:"M14 20v2"}],["path",{d:"M18 20v2"}],["path",{d:"M21 20H3"}],["path",{d:"M6 20v2"}],["path",{d:"M8 16V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v12"}],["rect",{x:"4",y:"6",width:"16",height:"10",rx:"2"}]];var oQ=[["path",{d:"M12 11v4"}],["path",{d:"M14 13h-4"}],["path",{d:"M16 6V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2"}],["path",{d:"M18 6v14"}],["path",{d:"M6 6v14"}],["rect",{width:"20",height:"14",x:"2",y:"6",rx:"2"}]];var eQ=[["path",{d:"M16 20V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"}],["rect",{width:"20",height:"14",x:"2",y:"6",rx:"2"}]];var ZV=[["rect",{x:"8",y:"8",width:"8",height:"8",rx:"2"}],["path",{d:"M4 10a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2"}],["path",{d:"M14 20a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2"}]];var JV=[["path",{d:"m16 22-1-4"}],["path",{d:"M19 13.99a1 1 0 0 0 1-1V12a2 2 0 0 0-2-2h-3a1 1 0 0 1-1-1V4a2 2 0 0 0-4 0v5a1 1 0 0 1-1 1H6a2 2 0 0 0-2 2v.99a1 1 0 0 0 1 1"}],["path",{d:"M5 14h14l1.973 6.767A1 1 0 0 1 20 22H4a1 1 0 0 1-.973-1.233z"}],["path",{d:"m8 22 1-4"}]];var KV=[["path",{d:"m11 10 3 3"}],["path",{d:"M6.5 21A3.5 3.5 0 1 0 3 17.5a2.62 2.62 0 0 1-.708 1.792A1 1 0 0 0 3 21z"}],["path",{d:"M9.969 17.031 21.378 5.624a1 1 0 0 0-3.002-3.002L6.967 14.031"}]];var YV=[["path",{d:"M7.2 14.8a2 2 0 0 1 2 2"}],["circle",{cx:"18.5",cy:"8.5",r:"3.5"}],["circle",{cx:"7.5",cy:"16.5",r:"5.5"}],["circle",{cx:"7.5",cy:"4.5",r:"2.5"}]];var XV=[["path",{d:"M12 20v-8"}],["path",{d:"M14.12 3.88 16 2"}],["path",{d:"M15 7.13V6a3 3 0 0 0-5.14-2.1L8 2"}],["path",{d:"M18 12.34V11a4 4 0 0 0-4-4h-1.3"}],["path",{d:"m2 2 20 20"}],["path",{d:"M21 5a4 4 0 0 1-3.55 3.97"}],["path",{d:"M22 13h-3.34"}],["path",{d:"M3 21a4 4 0 0 1 3.81-4"}],["path",{d:"M6 13H2"}],["path",{d:"M7.7 7.7A4 4 0 0 0 6 11v3a6 6 0 0 0 11.13 3.13"}]];var WV=[["path",{d:"M10 19.655A6 6 0 0 1 6 14v-3a4 4 0 0 1 4-4h4a4 4 0 0 1 4 3.97"}],["path",{d:"M14 15.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997a1 1 0 0 1-1.517-.86z"}],["path",{d:"M14.12 3.88 16 2"}],["path",{d:"M21 5a4 4 0 0 1-3.55 3.97"}],["path",{d:"M3 21a4 4 0 0 1 3.81-4"}],["path",{d:"M3 5a4 4 0 0 0 3.55 3.97"}],["path",{d:"M6 13H2"}],["path",{d:"m8 2 1.88 1.88"}],["path",{d:"M9 7.13V6a3 3 0 1 1 6 0v1.13"}]];var QV=[["path",{d:"M12 20v-9"}],["path",{d:"M14 7a4 4 0 0 1 4 4v3a6 6 0 0 1-12 0v-3a4 4 0 0 1 4-4z"}],["path",{d:"M14.12 3.88 16 2"}],["path",{d:"M21 21a4 4 0 0 0-3.81-4"}],["path",{d:"M21 5a4 4 0 0 1-3.55 3.97"}],["path",{d:"M22 13h-4"}],["path",{d:"M3 21a4 4 0 0 1 3.81-4"}],["path",{d:"M3 5a4 4 0 0 0 3.55 3.97"}],["path",{d:"M6 13H2"}],["path",{d:"m8 2 1.88 1.88"}],["path",{d:"M9 7.13V6a3 3 0 1 1 6 0v1.13"}]];var VV=[["path",{d:"M10 12h4"}],["path",{d:"M10 8h4"}],["path",{d:"M14 21v-3a2 2 0 0 0-4 0v3"}],["path",{d:"M6 10H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-2"}],["path",{d:"M6 21V5a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v16"}]];var GV=[["path",{d:"M12 10h.01"}],["path",{d:"M12 14h.01"}],["path",{d:"M12 6h.01"}],["path",{d:"M16 10h.01"}],["path",{d:"M16 14h.01"}],["path",{d:"M16 6h.01"}],["path",{d:"M8 10h.01"}],["path",{d:"M8 14h.01"}],["path",{d:"M8 6h.01"}],["path",{d:"M9 22v-3a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v3"}],["rect",{x:"4",y:"2",width:"16",height:"20",rx:"2"}]];var IV=[["path",{d:"M4 6 2 7"}],["path",{d:"M10 6h4"}],["path",{d:"m22 7-2-1"}],["rect",{width:"16",height:"16",x:"4",y:"3",rx:"2"}],["path",{d:"M4 11h16"}],["path",{d:"M8 15h.01"}],["path",{d:"M16 15h.01"}],["path",{d:"M6 19v2"}],["path",{d:"M18 21v-2"}]];var zV=[["path",{d:"M8 6v6"}],["path",{d:"M15 6v6"}],["path",{d:"M2 12h19.6"}],["path",{d:"M18 18h3s.5-1.7.8-2.8c.1-.4.2-.8.2-1.2 0-.4-.1-.8-.2-1.2l-1.4-5C20.1 6.8 19.1 6 18 6H4a2 2 0 0 0-2 2v10h3"}],["circle",{cx:"7",cy:"18",r:"2"}],["path",{d:"M9 18h5"}],["circle",{cx:"16",cy:"18",r:"2"}]];var NV=[["path",{d:"M10 3h.01"}],["path",{d:"M14 2h.01"}],["path",{d:"m2 9 20-5"}],["path",{d:"M12 12V6.5"}],["rect",{width:"16",height:"10",x:"4",y:"12",rx:"3"}],["path",{d:"M9 12v5"}],["path",{d:"M15 12v5"}],["path",{d:"M4 17h16"}]];var FV=[["path",{d:"M17 19a1 1 0 0 1-1-1v-2a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v2a1 1 0 0 1-1 1z"}],["path",{d:"M17 21v-2"}],["path",{d:"M19 14V6.5a1 1 0 0 0-7 0v11a1 1 0 0 1-7 0V10"}],["path",{d:"M21 21v-2"}],["path",{d:"M3 5V3"}],["path",{d:"M4 10a2 2 0 0 1-2-2V6a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v2a2 2 0 0 1-2 2z"}],["path",{d:"M7 5V3"}]];var HV=[["path",{d:"M16 13H3"}],["path",{d:"M16 17H3"}],["path",{d:"m7.2 7.9-3.388 2.5A2 2 0 0 0 3 12.01V20a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1v-8.654c0-2-2.44-6.026-6.44-8.026a1 1 0 0 0-1.082.057L10.4 5.6"}],["circle",{cx:"9",cy:"7",r:"2"}]];var DV=[["path",{d:"M20 21v-8a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v8"}],["path",{d:"M4 16s.5-1 2-1 2.5 2 4 2 2.5-2 4-2 2.5 2 4 2 2-1 2-1"}],["path",{d:"M2 21h20"}],["path",{d:"M7 8v3"}],["path",{d:"M12 8v3"}],["path",{d:"M17 8v3"}],["path",{d:"M7 4h.01"}],["path",{d:"M12 4h.01"}],["path",{d:"M17 4h.01"}]];var BV=[["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2"}],["line",{x1:"8",x2:"16",y1:"6",y2:"6"}],["line",{x1:"16",x2:"16",y1:"14",y2:"18"}],["path",{d:"M16 10h.01"}],["path",{d:"M12 10h.01"}],["path",{d:"M8 10h.01"}],["path",{d:"M12 14h.01"}],["path",{d:"M8 14h.01"}],["path",{d:"M12 18h.01"}],["path",{d:"M8 18h.01"}]];var OV=[["path",{d:"M11 14h1v4"}],["path",{d:"M16 2v4"}],["path",{d:"M3 10h18"}],["path",{d:"M8 2v4"}],["rect",{x:"3",y:"4",width:"18",height:"18",rx:"2"}]];var TV=[["path",{d:"m14 18 4 4 4-4"}],["path",{d:"M16 2v4"}],["path",{d:"M18 14v8"}],["path",{d:"M21 11.354V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7.343"}],["path",{d:"M3 10h18"}],["path",{d:"M8 2v4"}]];var PV=[["path",{d:"m14 18 4-4 4 4"}],["path",{d:"M16 2v4"}],["path",{d:"M18 22v-8"}],["path",{d:"M21 11.343V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h9"}],["path",{d:"M3 10h18"}],["path",{d:"M8 2v4"}]];var SV=[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["path",{d:"M21 14V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8"}],["path",{d:"M3 10h18"}],["path",{d:"m16 20 2 2 4-4"}]];var AV=[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2"}],["path",{d:"M3 10h18"}],["path",{d:"m9 16 2 2 4-4"}]];var qV=[["path",{d:"M16 14v2.2l1.6 1"}],["path",{d:"M16 2v4"}],["path",{d:"M21 7.5V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h3.5"}],["path",{d:"M3 10h5"}],["path",{d:"M8 2v4"}],["circle",{cx:"16",cy:"16",r:"6"}]];var EV=[["path",{d:"m15.228 16.852-.923-.383"}],["path",{d:"m15.228 19.148-.923.383"}],["path",{d:"M16 2v4"}],["path",{d:"m16.47 14.305.382.923"}],["path",{d:"m16.852 20.772-.383.924"}],["path",{d:"m19.148 15.228.383-.923"}],["path",{d:"m19.53 21.696-.382-.924"}],["path",{d:"m20.772 16.852.924-.383"}],["path",{d:"m20.772 19.148.924.383"}],["path",{d:"M21 10.592V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6"}],["path",{d:"M3 10h18"}],["path",{d:"M8 2v4"}],["circle",{cx:"18",cy:"18",r:"3"}]];var CV=[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2"}],["path",{d:"M3 10h18"}],["path",{d:"M8 14h.01"}],["path",{d:"M12 14h.01"}],["path",{d:"M16 14h.01"}],["path",{d:"M8 18h.01"}],["path",{d:"M12 18h.01"}],["path",{d:"M16 18h.01"}]];var xV=[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["path",{d:"M21 17V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h11Z"}],["path",{d:"M3 10h18"}],["path",{d:"M15 22v-4a2 2 0 0 1 2-2h4"}]];var wV=[["path",{d:"M12.127 22H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v5.125"}],["path",{d:"M14.62 18.8A2.25 2.25 0 1 1 18 15.836a2.25 2.25 0 1 1 3.38 2.966l-2.626 2.856a.998.998 0 0 1-1.507 0z"}],["path",{d:"M16 2v4"}],["path",{d:"M3 10h18"}],["path",{d:"M8 2v4"}]];var UV=[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2"}],["path",{d:"M3 10h18"}],["path",{d:"M10 16h4"}]];var MV=[["path",{d:"M16 19h6"}],["path",{d:"M16 2v4"}],["path",{d:"M21 15V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8.5"}],["path",{d:"M3 10h18"}],["path",{d:"M8 2v4"}]];var RV=[["path",{d:"M4.2 4.2A2 2 0 0 0 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 1.82-1.18"}],["path",{d:"M21 15.5V6a2 2 0 0 0-2-2H9.5"}],["path",{d:"M16 2v4"}],["path",{d:"M3 10h7"}],["path",{d:"M21 10h-5.5"}],["path",{d:"m2 2 20 20"}]];var jV=[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2"}],["path",{d:"M3 10h18"}],["path",{d:"M10 16h4"}],["path",{d:"M12 14v4"}]];var LV=[["path",{d:"M16 19h6"}],["path",{d:"M16 2v4"}],["path",{d:"M19 16v6"}],["path",{d:"M21 12.598V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8.5"}],["path",{d:"M3 10h18"}],["path",{d:"M8 2v4"}]];var yV=[["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2"}],["path",{d:"M16 2v4"}],["path",{d:"M3 10h18"}],["path",{d:"M8 2v4"}],["path",{d:"M17 14h-6"}],["path",{d:"M13 18H7"}],["path",{d:"M7 14h.01"}],["path",{d:"M17 18h.01"}]];var fV=[["path",{d:"M16 2v4"}],["path",{d:"M21 11.75V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7.25"}],["path",{d:"m22 22-1.875-1.875"}],["path",{d:"M3 10h18"}],["path",{d:"M8 2v4"}],["circle",{cx:"18",cy:"18",r:"3"}]];var kV=[["path",{d:"M11 10v4h4"}],["path",{d:"m11 14 1.535-1.605a5 5 0 0 1 8 1.5"}],["path",{d:"M16 2v4"}],["path",{d:"m21 18-1.535 1.605a5 5 0 0 1-8-1.5"}],["path",{d:"M21 22v-4h-4"}],["path",{d:"M21 8.5V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h4.3"}],["path",{d:"M3 10h4"}],["path",{d:"M8 2v4"}]];var bV=[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["path",{d:"M21 13V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8"}],["path",{d:"M3 10h18"}],["path",{d:"m17 22 5-5"}],["path",{d:"m17 17 5 5"}]];var hV=[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2"}],["path",{d:"M3 10h18"}],["path",{d:"m14 14-4 4"}],["path",{d:"m10 14 4 4"}]];var vV=[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2"}],["path",{d:"M3 10h18"}]];var $V=[["path",{d:"M13.997 4a2 2 0 0 1 1.76 1.05l.486.9A2 2 0 0 0 18.003 7H20a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h1.997a2 2 0 0 0 1.759-1.048l.489-.904A2 2 0 0 1 10.004 4z"}],["circle",{cx:"12",cy:"13",r:"3"}]];var gV=[["path",{d:"M14.564 14.558a3 3 0 1 1-4.122-4.121"}],["path",{d:"m2 2 20 20"}],["path",{d:"M20 20H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h1.997a2 2 0 0 0 .819-.175"}],["path",{d:"M9.695 4.024A2 2 0 0 1 10.004 4h3.993a2 2 0 0 1 1.76 1.05l.486.9A2 2 0 0 0 18.003 7H20a2 2 0 0 1 2 2v7.344"}]];var _V=[["path",{d:"M5.7 21a2 2 0 0 1-3.5-2l8.6-14a6 6 0 0 1 10.4 6 2 2 0 1 1-3.464-2 2 2 0 1 0-3.464-2Z"}],["path",{d:"M17.75 7 15 2.1"}],["path",{d:"M10.9 4.8 13 9"}],["path",{d:"m7.9 9.7 2 4.4"}],["path",{d:"M4.9 14.7 7 18.9"}]];var mV=[["path",{d:"M10 10v7.9"}],["path",{d:"M11.802 6.145a5 5 0 0 1 6.053 6.053"}],["path",{d:"M14 6.1v2.243"}],["path",{d:"m15.5 15.571-.964.964a5 5 0 0 1-7.071 0 5 5 0 0 1 0-7.07l.964-.965"}],["path",{d:"M16 7V3a1 1 0 0 1 1.707-.707 2.5 2.5 0 0 0 2.152.717 1 1 0 0 1 1.131 1.131 2.5 2.5 0 0 0 .717 2.152A1 1 0 0 1 21 8h-4"}],["path",{d:"m2 2 20 20"}],["path",{d:"M8 17v4a1 1 0 0 1-1.707.707 2.5 2.5 0 0 0-2.152-.717 1 1 0 0 1-1.131-1.131 2.5 2.5 0 0 0-.717-2.152A1 1 0 0 1 3 16h4"}]];var uV=[["path",{d:"M10 7v10.9"}],["path",{d:"M14 6.1V17"}],["path",{d:"M16 7V3a1 1 0 0 1 1.707-.707 2.5 2.5 0 0 0 2.152.717 1 1 0 0 1 1.131 1.131 2.5 2.5 0 0 0 .717 2.152A1 1 0 0 1 21 8h-4"}],["path",{d:"M16.536 7.465a5 5 0 0 0-7.072 0l-2 2a5 5 0 0 0 0 7.07 5 5 0 0 0 7.072 0l2-2a5 5 0 0 0 0-7.07"}],["path",{d:"M8 17v4a1 1 0 0 1-1.707.707 2.5 2.5 0 0 0-2.152-.717 1 1 0 0 1-1.131-1.131 2.5 2.5 0 0 0-.717-2.152A1 1 0 0 1 3 16h4"}]];var dV=[["path",{d:"M12 22v-4"}],["path",{d:"M7 12c-1.5 0-4.5 1.5-5 3 3.5 1.5 6 1 6 1-1.5 1.5-2 3.5-2 5 2.5 0 4.5-1.5 6-3 1.5 1.5 3.5 3 6 3 0-1.5-.5-3.5-2-5 0 0 2.5.5 6-1-.5-1.5-3.5-3-5-3 1.5-1 4-4 4-6-2.5 0-5.5 1.5-7 3 0-2.5-.5-5-2-7-1.5 2-2 4.5-2 7-1.5-1.5-4.5-3-7-3 0 2 2.5 5 4 6"}]];var cV=[["path",{d:"M10.5 5H19a2 2 0 0 1 2 2v8.5"}],["path",{d:"M17 11h-.5"}],["path",{d:"M19 19H5a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2"}],["path",{d:"m2 2 20 20"}],["path",{d:"M7 11h4"}],["path",{d:"M7 15h2.5"}]];var p4=[["rect",{width:"18",height:"14",x:"3",y:"5",rx:"2",ry:"2"}],["path",{d:"M7 15h4M15 15h2M7 11h2M13 11h4"}]];var pV=[["path",{d:"m21 8-2 2-1.5-3.7A2 2 0 0 0 15.646 5H8.4a2 2 0 0 0-1.903 1.257L5 10 3 8"}],["path",{d:"M7 14h.01"}],["path",{d:"M17 14h.01"}],["rect",{width:"18",height:"8",x:"3",y:"10",rx:"2"}],["path",{d:"M5 18v2"}],["path",{d:"M19 18v2"}]];var nV=[["path",{d:"M10 2h4"}],["path",{d:"m21 8-2 2-1.5-3.7A2 2 0 0 0 15.646 5H8.4a2 2 0 0 0-1.903 1.257L5 10 3 8"}],["path",{d:"M7 14h.01"}],["path",{d:"M17 14h.01"}],["rect",{width:"18",height:"8",x:"3",y:"10",rx:"2"}],["path",{d:"M5 18v2"}],["path",{d:"M19 18v2"}]];var iV=[["path",{d:"M19 17h2c.6 0 1-.4 1-1v-3c0-.9-.7-1.7-1.5-1.9C18.7 10.6 16 10 16 10s-1.3-1.4-2.2-2.3c-.5-.4-1.1-.7-1.8-.7H5c-.6 0-1.1.4-1.4.9l-1.4 2.9A3.7 3.7 0 0 0 2 12v4c0 .6.4 1 1 1h2"}],["circle",{cx:"7",cy:"17",r:"2"}],["path",{d:"M9 17h6"}],["circle",{cx:"17",cy:"17",r:"2"}]];var lV=[["path",{d:"M18 19V9a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v8a2 2 0 0 0 2 2h2"}],["path",{d:"M2 9h3a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H2"}],["path",{d:"M22 17v1a1 1 0 0 1-1 1H10v-9a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v9"}],["circle",{cx:"8",cy:"19",r:"2"}]];var sV=[["path",{d:"M2.27 21.7s9.87-3.5 12.73-6.36a4.5 4.5 0 0 0-6.36-6.37C5.77 11.84 2.27 21.7 2.27 21.7zM8.64 14l-2.05-2.04M15.34 15l-2.46-2.46"}],["path",{d:"M22 9s-1.33-2-3.5-2C16.86 7 15 9 15 9s1.33 2 3.5 2S22 9 22 9z"}],["path",{d:"M15 2s-2 1.33-2 3.5S15 9 15 9s2-1.84 2-3.5C17 3.33 15 2 15 2z"}]];var rV=[["path",{d:"M12 14v4"}],["path",{d:"M14.172 2a2 2 0 0 1 1.414.586l3.828 3.828A2 2 0 0 1 20 7.828V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2z"}],["path",{d:"M8 14h8"}],["rect",{x:"8",y:"10",width:"8",height:"8",rx:"1"}]];var aV=[["path",{d:"M10 9v7"}],["path",{d:"M14 6v10"}],["circle",{cx:"17.5",cy:"12.5",r:"3.5"}],["circle",{cx:"6.5",cy:"12.5",r:"3.5"}]];var tV=[["path",{d:"m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16"}],["path",{d:"M22 9v7"}],["path",{d:"M3.304 13h6.392"}],["circle",{cx:"18.5",cy:"12.5",r:"3.5"}]];var oV=[["path",{d:"M15 11h4.5a1 1 0 0 1 0 5h-4a.5.5 0 0 1-.5-.5v-9a.5.5 0 0 1 .5-.5h3a1 1 0 0 1 0 5"}],["path",{d:"m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16"}],["path",{d:"M3.304 13h6.392"}]];var eV=[["path",{d:"M2 8V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6"}],["path",{d:"M2 12a9 9 0 0 1 8 8"}],["path",{d:"M2 16a5 5 0 0 1 4 4"}],["line",{x1:"2",x2:"2.01",y1:"20",y2:"20"}]];var ZG=[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2"}],["circle",{cx:"8",cy:"10",r:"2"}],["path",{d:"M8 12h8"}],["circle",{cx:"16",cy:"10",r:"2"}],["path",{d:"m6 20 .7-2.9A1.4 1.4 0 0 1 8.1 16h7.8a1.4 1.4 0 0 1 1.4 1l.7 3"}]];var JG=[["path",{d:"M10 5V3"}],["path",{d:"M14 5V3"}],["path",{d:"M15 21v-3a3 3 0 0 0-6 0v3"}],["path",{d:"M18 3v8"}],["path",{d:"M18 5H6"}],["path",{d:"M22 11H2"}],["path",{d:"M22 9v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9"}],["path",{d:"M6 3v8"}]];var KG=[["path",{d:"M12 5c.67 0 1.35.09 2 .26 1.78-2 5.03-2.84 6.42-2.26 1.4.58-.42 7-.42 7 .57 1.07 1 2.24 1 3.44C21 17.9 16.97 21 12 21s-9-3-9-7.56c0-1.25.5-2.4 1-3.44 0 0-1.89-6.42-.5-7 1.39-.58 4.72.23 6.5 2.23A9.04 9.04 0 0 1 12 5Z"}],["path",{d:"M8 14v.5"}],["path",{d:"M16 14v.5"}],["path",{d:"M11.25 16.25h1.5L12 17l-.75-.75Z"}]];var YG=[["path",{d:"M16.75 12h3.632a1 1 0 0 1 .894 1.447l-2.034 4.069a1 1 0 0 1-1.708.134l-2.124-2.97"}],["path",{d:"M17.106 9.053a1 1 0 0 1 .447 1.341l-3.106 6.211a1 1 0 0 1-1.342.447L3.61 12.3a2.92 2.92 0 0 1-1.3-3.91L3.69 5.6a2.92 2.92 0 0 1 3.92-1.3z"}],["path",{d:"M2 19h3.76a2 2 0 0 0 1.8-1.1L9 15"}],["path",{d:"M2 21v-4"}],["path",{d:"M7 9h.01"}]];var n4=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M7 11.207a.5.5 0 0 1 .146-.353l2-2a.5.5 0 0 1 .708 0l3.292 3.292a.5.5 0 0 0 .708 0l4.292-4.292a.5.5 0 0 1 .854.353V16a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1z"}]];var i4=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["rect",{x:"7",y:"13",width:"9",height:"4",rx:"1"}],["rect",{x:"7",y:"5",width:"12",height:"4",rx:"1"}]];var XG=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M7 11h8"}],["path",{d:"M7 16h3"}],["path",{d:"M7 6h12"}]];var WG=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M7 11h8"}],["path",{d:"M7 16h12"}],["path",{d:"M7 6h3"}]];var QG=[["path",{d:"M11 13v4"}],["path",{d:"M15 5v4"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["rect",{x:"7",y:"13",width:"9",height:"4",rx:"1"}],["rect",{x:"7",y:"5",width:"12",height:"4",rx:"1"}]];var l4=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M7 16h8"}],["path",{d:"M7 11h12"}],["path",{d:"M7 6h3"}]];var s4=[["path",{d:"M9 5v4"}],["rect",{width:"4",height:"6",x:"7",y:"9",rx:"1"}],["path",{d:"M9 15v2"}],["path",{d:"M17 3v2"}],["rect",{width:"4",height:"8",x:"15",y:"5",rx:"1"}],["path",{d:"M17 13v3"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}]];var r4=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["rect",{x:"15",y:"5",width:"4",height:"12",rx:"1"}],["rect",{x:"7",y:"8",width:"4",height:"9",rx:"1"}]];var VG=[["path",{d:"M13 17V9"}],["path",{d:"M18 17v-3"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M8 17V5"}]];var a4=[["path",{d:"M13 17V9"}],["path",{d:"M18 17V5"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M8 17v-3"}]];var GG=[["path",{d:"M11 13H7"}],["path",{d:"M19 9h-4"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["rect",{x:"15",y:"5",width:"4",height:"12",rx:"1"}],["rect",{x:"7",y:"8",width:"4",height:"9",rx:"1"}]];var t4=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M18 17V9"}],["path",{d:"M13 17V5"}],["path",{d:"M8 17v-3"}]];var IG=[["path",{d:"M10 6h8"}],["path",{d:"M12 16h6"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M8 11h7"}]];var o4=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"m19 9-5 5-4-4-3 3"}]];var zG=[["path",{d:"m13.11 7.664 1.78 2.672"}],["path",{d:"m14.162 12.788-3.324 1.424"}],["path",{d:"m20 4-6.06 1.515"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["circle",{cx:"12",cy:"6",r:"2"}],["circle",{cx:"16",cy:"12",r:"2"}],["circle",{cx:"9",cy:"15",r:"2"}]];var NG=[["path",{d:"M5 21V3"}],["path",{d:"M12 21V9"}],["path",{d:"M19 21v-6"}]];var e4=[["path",{d:"M5 21v-6"}],["path",{d:"M12 21V9"}],["path",{d:"M19 21V3"}]];var Z7=[["path",{d:"M5 21v-6"}],["path",{d:"M12 21V3"}],["path",{d:"M19 21V9"}]];var J7=[["path",{d:"M6 5h12"}],["path",{d:"M4 12h10"}],["path",{d:"M12 19h8"}]];var FG=[["path",{d:"M12 16v5"}],["path",{d:"M16 14v7"}],["path",{d:"M20 10v11"}],["path",{d:"m22 3-8.646 8.646a.5.5 0 0 1-.708 0L9.354 8.354a.5.5 0 0 0-.707 0L2 15"}],["path",{d:"M4 18v3"}],["path",{d:"M8 14v7"}]];var K7=[["path",{d:"M21 12c.552 0 1.005-.449.95-.998a10 10 0 0 0-8.953-8.951c-.55-.055-.998.398-.998.95v8a1 1 0 0 0 1 1z"}],["path",{d:"M21.21 15.89A10 10 0 1 1 8 2.83"}]];var Y7=[["circle",{cx:"7.5",cy:"7.5",r:".5",fill:"currentColor"}],["circle",{cx:"18.5",cy:"5.5",r:".5",fill:"currentColor"}],["circle",{cx:"11.5",cy:"11.5",r:".5",fill:"currentColor"}],["circle",{cx:"7.5",cy:"16.5",r:".5",fill:"currentColor"}],["circle",{cx:"17.5",cy:"14.5",r:".5",fill:"currentColor"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}]];var HG=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M7 16c.5-2 1.5-7 4-7 2 0 2 3 4 3 2.5 0 4.5-5 5-7"}]];var DG=[["path",{d:"M18 6 7 17l-5-5"}],["path",{d:"m22 10-7.5 7.5L13 16"}]];var BG=[["path",{d:"M20 6 9 17l-5-5"}]];var OG=[["path",{d:"M20 4L9 15"}],["path",{d:"M21 19L3 19"}],["path",{d:"M9 15L4 10"}]];var TG=[["path",{d:"M17 21a1 1 0 0 0 1-1v-5.35c0-.457.316-.844.727-1.041a4 4 0 0 0-2.134-7.589 5 5 0 0 0-9.186 0 4 4 0 0 0-2.134 7.588c.411.198.727.585.727 1.041V20a1 1 0 0 0 1 1Z"}],["path",{d:"M6 17h12"}]];var PG=[["path",{d:"M2 17a5 5 0 0 0 10 0c0-2.76-2.5-5-5-3-2.5-2-5 .24-5 3Z"}],["path",{d:"M12 17a5 5 0 0 0 10 0c0-2.76-2.5-5-5-3-2.5-2-5 .24-5 3Z"}],["path",{d:"M7 14c3.22-2.91 4.29-8.75 5-12 1.66 2.38 4.94 9 5 12"}],["path",{d:"M22 9c-4.29 0-7.14-2.33-10-7 5.71 0 10 4.67 10 7Z"}]];var SG=[["path",{d:"m6 9 6 6 6-6"}]];var AG=[["path",{d:"m17 18-6-6 6-6"}],["path",{d:"M7 6v12"}]];var qG=[["path",{d:"m7 18 6-6-6-6"}],["path",{d:"M17 6v12"}]];var EG=[["path",{d:"m9 18 6-6-6-6"}]];var CG=[["path",{d:"m18 15-6-6-6 6"}]];var xG=[["path",{d:"m15 18-6-6 6-6"}]];var wG=[["path",{d:"m7 20 5-5 5 5"}],["path",{d:"m7 4 5 5 5-5"}]];var UG=[["path",{d:"m7 6 5 5 5-5"}],["path",{d:"m7 13 5 5 5-5"}]];var MG=[["path",{d:"M12 12h.01"}],["path",{d:"M16 12h.01"}],["path",{d:"m17 7 5 5-5 5"}],["path",{d:"m7 7-5 5 5 5"}],["path",{d:"M8 12h.01"}]];var RG=[["path",{d:"m9 7-5 5 5 5"}],["path",{d:"m15 7 5 5-5 5"}]];var jG=[["path",{d:"m11 17-5-5 5-5"}],["path",{d:"m18 17-5-5 5-5"}]];var LG=[["path",{d:"m20 17-5-5 5-5"}],["path",{d:"m4 17 5-5-5-5"}]];var yG=[["path",{d:"m6 17 5-5-5-5"}],["path",{d:"m13 17 5-5-5-5"}]];var fG=[["path",{d:"m17 11-5-5-5 5"}],["path",{d:"m17 18-5-5-5 5"}]];var kG=[["path",{d:"m7 15 5 5 5-5"}],["path",{d:"m7 9 5-5 5 5"}]];var bG=[["path",{d:"M10 9h4"}],["path",{d:"M12 7v5"}],["path",{d:"M14 21v-3a2 2 0 0 0-4 0v3"}],["path",{d:"m18 9 3.52 2.147a1 1 0 0 1 .48.854V19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-6.999a1 1 0 0 1 .48-.854L6 9"}],["path",{d:"M6 21V7a1 1 0 0 1 .376-.782l5-3.999a1 1 0 0 1 1.249.001l5 4A1 1 0 0 1 18 7v14"}]];var X7=[["path",{d:"M10.88 21.94 15.46 14"}],["path",{d:"M21.17 8H12"}],["path",{d:"M3.95 6.06 8.54 14"}],["circle",{cx:"12",cy:"12",r:"10"}],["circle",{cx:"12",cy:"12",r:"4"}]];var hG=[["path",{d:"M12 12H3a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h13"}],["path",{d:"M18 8c0-2.5-2-2.5-2-5"}],["path",{d:"m2 2 20 20"}],["path",{d:"M21 12a1 1 0 0 1 1 1v2a1 1 0 0 1-.5.866"}],["path",{d:"M22 8c0-2.5-2-2.5-2-5"}],["path",{d:"M7 12v4"}]];var vG=[["path",{d:"M17 12H3a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h14"}],["path",{d:"M18 8c0-2.5-2-2.5-2-5"}],["path",{d:"M21 16a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1"}],["path",{d:"M22 8c0-2.5-2-2.5-2-5"}],["path",{d:"M7 12v4"}]];var W7=[["circle",{cx:"12",cy:"12",r:"10"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16"}]];var Q7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 8v8"}],["path",{d:"m8 12 4 4 4-4"}]];var V7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m12 8-4 4 4 4"}],["path",{d:"M16 12H8"}]];var G7=[["path",{d:"M2 12a10 10 0 1 1 10 10"}],["path",{d:"m2 22 10-10"}],["path",{d:"M8 22H2v-6"}]];var I7=[["path",{d:"M12 22a10 10 0 1 1 10-10"}],["path",{d:"M22 22 12 12"}],["path",{d:"M22 16v6h-6"}]];var z7=[["path",{d:"M2 8V2h6"}],["path",{d:"m2 2 10 10"}],["path",{d:"M12 2A10 10 0 1 1 2 12"}]];var N7=[["path",{d:"M22 12A10 10 0 1 1 12 2"}],["path",{d:"M22 2 12 12"}],["path",{d:"M16 2h6v6"}]];var F7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m12 16 4-4-4-4"}],["path",{d:"M8 12h8"}]];var H7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m16 12-4-4-4 4"}],["path",{d:"M12 16V8"}]];var D7=[["path",{d:"M21.801 10A10 10 0 1 1 17 3.335"}],["path",{d:"m9 11 3 3L22 4"}]];var B7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m16 10-4 4-4-4"}]];var O7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m9 12 2 2 4-4"}]];var T7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m14 16-4-4 4-4"}]];var P7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m10 8 4 4-4 4"}]];var S7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m8 14 4-4 4 4"}]];var $G=[["path",{d:"M10.1 2.182a10 10 0 0 1 3.8 0"}],["path",{d:"M13.9 21.818a10 10 0 0 1-3.8 0"}],["path",{d:"M17.609 3.721a10 10 0 0 1 2.69 2.7"}],["path",{d:"M2.182 13.9a10 10 0 0 1 0-3.8"}],["path",{d:"M20.279 17.609a10 10 0 0 1-2.7 2.69"}],["path",{d:"M21.818 10.1a10 10 0 0 1 0 3.8"}],["path",{d:"M3.721 6.391a10 10 0 0 1 2.7-2.69"}],["path",{d:"M6.391 20.279a10 10 0 0 1-2.69-2.7"}]];var A7=[["line",{x1:"8",x2:"16",y1:"12",y2:"12"}],["line",{x1:"12",x2:"12",y1:"16",y2:"16"}],["line",{x1:"12",x2:"12",y1:"8",y2:"8"}],["circle",{cx:"12",cy:"12",r:"10"}]];var gG=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8"}],["path",{d:"M12 18V6"}]];var _G=[["path",{d:"M10.1 2.18a9.93 9.93 0 0 1 3.8 0"}],["path",{d:"M17.6 3.71a9.95 9.95 0 0 1 2.69 2.7"}],["path",{d:"M21.82 10.1a9.93 9.93 0 0 1 0 3.8"}],["path",{d:"M20.29 17.6a9.95 9.95 0 0 1-2.7 2.69"}],["path",{d:"M13.9 21.82a9.94 9.94 0 0 1-3.8 0"}],["path",{d:"M6.4 20.29a9.95 9.95 0 0 1-2.69-2.7"}],["path",{d:"M2.18 13.9a9.93 9.93 0 0 1 0-3.8"}],["path",{d:"M3.71 6.4a9.95 9.95 0 0 1 2.7-2.69"}],["circle",{cx:"12",cy:"12",r:"1"}]];var mG=[["circle",{cx:"12",cy:"12",r:"10"}],["circle",{cx:"12",cy:"12",r:"1"}]];var uG=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M17 12h.01"}],["path",{d:"M12 12h.01"}],["path",{d:"M7 12h.01"}]];var dG=[["path",{d:"M7 10h10"}],["path",{d:"M7 14h10"}],["circle",{cx:"12",cy:"12",r:"10"}]];var cG=[["path",{d:"M12 2a10 10 0 0 1 7.38 16.75"}],["path",{d:"m16 12-4-4-4 4"}],["path",{d:"M12 16V8"}],["path",{d:"M2.5 8.875a10 10 0 0 0-.5 3"}],["path",{d:"M2.83 16a10 10 0 0 0 2.43 3.4"}],["path",{d:"M4.636 5.235a10 10 0 0 1 .891-.857"}],["path",{d:"M8.644 21.42a10 10 0 0 0 7.631-.38"}]];var pG=[["path",{d:"M12 2a10 10 0 0 1 7.38 16.75"}],["path",{d:"M12 8v8"}],["path",{d:"M16 12H8"}],["path",{d:"M2.5 8.875a10 10 0 0 0-.5 3"}],["path",{d:"M2.83 16a10 10 0 0 0 2.43 3.4"}],["path",{d:"M4.636 5.235a10 10 0 0 1 .891-.857"}],["path",{d:"M8.644 21.42a10 10 0 0 0 7.631-.38"}]];var q7=[["path",{d:"M15.6 2.7a10 10 0 1 0 5.7 5.7"}],["circle",{cx:"12",cy:"12",r:"2"}],["path",{d:"M13.4 10.6 19 5"}]];var E7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M8 12h8"}]];var nG=[["path",{d:"m2 2 20 20"}],["path",{d:"M8.35 2.69A10 10 0 0 1 21.3 15.65"}],["path",{d:"M19.08 19.08A10 10 0 1 1 4.92 4.92"}]];var C7=[["path",{d:"M12.656 7H13a3 3 0 0 1 2.984 3.307"}],["path",{d:"M13 13H9"}],["path",{d:"M19.071 19.071A1 1 0 0 1 4.93 4.93"}],["path",{d:"m2 2 20 20"}],["path",{d:"M8.357 2.687a10 10 0 0 1 12.956 12.956"}],["path",{d:"M9 17V9"}]];var x7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M9 17V7h4a3 3 0 0 1 0 6H9"}]];var w7=[["circle",{cx:"12",cy:"12",r:"10"}],["line",{x1:"10",x2:"10",y1:"15",y2:"9"}],["line",{x1:"14",x2:"14",y1:"15",y2:"9"}]];var U7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m15 9-6 6"}],["path",{d:"M9 9h.01"}],["path",{d:"M15 15h.01"}]];var M7=[["path",{d:"M9 9.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997A1 1 0 0 1 9 14.996z"}],["circle",{cx:"12",cy:"12",r:"10"}]];var R7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M8 12h8"}],["path",{d:"M12 8v8"}]];var iG=[["path",{d:"M10 16V9.5a1 1 0 0 1 5 0"}],["path",{d:"M8 12h4"}],["path",{d:"M8 16h7"}],["circle",{cx:"12",cy:"12",r:"10"}]];var j7=[["path",{d:"M12 7v4"}],["path",{d:"M7.998 9.003a5 5 0 1 0 8-.005"}],["circle",{cx:"12",cy:"12",r:"10"}]];var V5=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"}],["path",{d:"M12 17h.01"}]];var L7=[["path",{d:"M22 2 2 22"}],["circle",{cx:"12",cy:"12",r:"10"}]];var lG=[["circle",{cx:"12",cy:"12",r:"10"}],["line",{x1:"9",x2:"15",y1:"15",y2:"9"}]];var sG=[["circle",{cx:"12",cy:"12",r:"6"}]];var rG=[["path",{d:"M11.051 7.616a1 1 0 0 1 1.909.024l.737 1.452a1 1 0 0 0 .737.535l1.634.256a1 1 0 0 1 .588 1.806l-1.172 1.168a1 1 0 0 0-.282.866l.259 1.613a1 1 0 0 1-1.541 1.134l-1.465-.75a1 1 0 0 0-.912 0l-1.465.75a1 1 0 0 1-1.539-1.133l.258-1.613a1 1 0 0 0-.282-.867l-1.156-1.152a1 1 0 0 1 .572-1.822l1.633-.256a1 1 0 0 0 .737-.535z"}],["circle",{cx:"12",cy:"12",r:"10"}]];var y7=[["circle",{cx:"12",cy:"12",r:"10"}],["rect",{x:"9",y:"9",width:"6",height:"6",rx:"1"}]];var f7=[["path",{d:"M18 20a6 6 0 0 0-12 0"}],["circle",{cx:"12",cy:"10",r:"4"}],["circle",{cx:"12",cy:"12",r:"10"}]];var k7=[["circle",{cx:"12",cy:"12",r:"10"}],["circle",{cx:"12",cy:"10",r:"3"}],["path",{d:"M7 20.662V19a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v1.662"}]];var b7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m15 9-6 6"}],["path",{d:"m9 9 6 6"}]];var aG=[["circle",{cx:"12",cy:"12",r:"10"}]];var tG=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M11 9h4a2 2 0 0 0 2-2V3"}],["circle",{cx:"9",cy:"9",r:"2"}],["path",{d:"M7 21v-4a2 2 0 0 1 2-2h4"}],["circle",{cx:"15",cy:"15",r:"2"}]];var oG=[["path",{d:"M21.66 17.67a1.08 1.08 0 0 1-.04 1.6A12 12 0 0 1 4.73 2.38a1.1 1.1 0 0 1 1.61-.04z"}],["path",{d:"M19.65 15.66A8 8 0 0 1 8.35 4.34"}],["path",{d:"m14 10-5.5 5.5"}],["path",{d:"M14 17.85V10H6.15"}]];var eG=[["path",{d:"M20.2 6 3 11l-.9-2.4c-.3-1.1.3-2.2 1.3-2.5l13.5-4c1.1-.3 2.2.3 2.5 1.3Z"}],["path",{d:"m6.2 5.3 3.1 3.9"}],["path",{d:"m12.4 3.4 3.1 4"}],["path",{d:"M3 11h18v8a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2Z"}]];var Z3=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"}],["path",{d:"m9 14 2 2 4-4"}]];var J3=[["path",{d:"M16 14v2.2l1.6 1"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v.832"}],["path",{d:"M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h2"}],["circle",{cx:"16",cy:"16",r:"6"}],["rect",{x:"8",y:"2",width:"8",height:"4",rx:"1"}]];var K3=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1"}],["path",{d:"M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-2"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v4"}],["path",{d:"M21 14H11"}],["path",{d:"m15 10-4 4 4 4"}]];var Y3=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"}],["path",{d:"M12 11h4"}],["path",{d:"M12 16h4"}],["path",{d:"M8 11h.01"}],["path",{d:"M8 16h.01"}]];var X3=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"}],["path",{d:"M9 14h6"}]];var W3=[["path",{d:"M11 14h10"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v1.344"}],["path",{d:"m17 18 4-4-4-4"}],["path",{d:"M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 1.793-1.113"}],["rect",{x:"8",y:"2",width:"8",height:"4",rx:"1"}]];var h7=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1"}],["path",{d:"M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-.5"}],["path",{d:"M16 4h2a2 2 0 0 1 1.73 1"}],["path",{d:"M8 18h1"}],["path",{d:"M21.378 12.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}]];var v7=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-5.5"}],["path",{d:"M4 13.5V6a2 2 0 0 1 2-2h2"}],["path",{d:"M13.378 15.626a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}]];var Q3=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"}],["path",{d:"M9 12v-1h6v1"}],["path",{d:"M11 17h2"}],["path",{d:"M12 11v6"}]];var V3=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"}],["path",{d:"m15 11-6 6"}],["path",{d:"m9 11 6 6"}]];var G3=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"}],["path",{d:"M9 14h6"}],["path",{d:"M12 17v-6"}]];var I3=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"}]];var z3=[["path",{d:"M12 6v6l2-4"}],["circle",{cx:"12",cy:"12",r:"10"}]];var N3=[["path",{d:"M12 6v6l-4-2"}],["circle",{cx:"12",cy:"12",r:"10"}]];var F3=[["path",{d:"M12 6v6l-2-4"}],["circle",{cx:"12",cy:"12",r:"10"}]];var H3=[["path",{d:"M12 6v6"}],["circle",{cx:"12",cy:"12",r:"10"}]];var D3=[["path",{d:"M12 6v6l4-2"}],["circle",{cx:"12",cy:"12",r:"10"}]];var B3=[["path",{d:"M12 6v6h4"}],["circle",{cx:"12",cy:"12",r:"10"}]];var O3=[["path",{d:"M12 6v6l4 2"}],["circle",{cx:"12",cy:"12",r:"10"}]];var T3=[["path",{d:"M12 6v6l2 4"}],["circle",{cx:"12",cy:"12",r:"10"}]];var P3=[["path",{d:"M12 6v10"}],["circle",{cx:"12",cy:"12",r:"10"}]];var S3=[["path",{d:"M12 6v6l-2 4"}],["circle",{cx:"12",cy:"12",r:"10"}]];var A3=[["path",{d:"M12 6v6l-4 2"}],["circle",{cx:"12",cy:"12",r:"10"}]];var q3=[["path",{d:"M12 6v6H8"}],["circle",{cx:"12",cy:"12",r:"10"}]];var E3=[["path",{d:"M12 6v6l4 2"}],["path",{d:"M20 12v5"}],["path",{d:"M20 21h.01"}],["path",{d:"M21.25 8.2A10 10 0 1 0 16 21.16"}]];var C3=[["path",{d:"M12 6v6l2 1"}],["path",{d:"M12.337 21.994a10 10 0 1 1 9.588-8.767"}],["path",{d:"m14 18 4 4 4-4"}],["path",{d:"M18 14v8"}]];var x3=[["path",{d:"M12 6v6l1.56.78"}],["path",{d:"M13.227 21.925a10 10 0 1 1 8.767-9.588"}],["path",{d:"m14 18 4-4 4 4"}],["path",{d:"M18 22v-8"}]];var w3=[["path",{d:"M12 2a10 10 0 0 1 7.38 16.75"}],["path",{d:"M12 6v6l4 2"}],["path",{d:"M2.5 8.875a10 10 0 0 0-.5 3"}],["path",{d:"M2.83 16a10 10 0 0 0 2.43 3.4"}],["path",{d:"M4.636 5.235a10 10 0 0 1 .891-.857"}],["path",{d:"M8.644 21.42a10 10 0 0 0 7.631-.38"}]];var U3=[["path",{d:"M12 6v6l3.644 1.822"}],["path",{d:"M16 19h6"}],["path",{d:"M19 16v6"}],["path",{d:"M21.92 13.267a10 10 0 1 0-8.653 8.653"}]];var M3=[["path",{d:"M12 6v6l4 2"}],["circle",{cx:"12",cy:"12",r:"10"}]];var R3=[["path",{d:"M10 9.17a3 3 0 1 0 0 5.66"}],["path",{d:"M17 9.17a3 3 0 1 0 0 5.66"}],["rect",{x:"2",y:"5",width:"20",height:"14",rx:"2"}]];var j3=[["path",{d:"M12 12v4"}],["path",{d:"M12 20h.01"}],["path",{d:"M17 18h.5a1 1 0 0 0 0-9h-1.79A7 7 0 1 0 7 17.708"}]];var L3=[["path",{d:"m17 15-5.5 5.5L9 18"}],["path",{d:"M5 17.743A7 7 0 1 1 15.71 10h1.79a4.5 4.5 0 0 1 1.5 8.742"}]];var y3=[["path",{d:"m10.852 19.772-.383.924"}],["path",{d:"m13.148 14.228.383-.923"}],["path",{d:"M13.148 19.772a3 3 0 1 0-2.296-5.544l-.383-.923"}],["path",{d:"m13.53 20.696-.382-.924a3 3 0 1 1-2.296-5.544"}],["path",{d:"m14.772 15.852.923-.383"}],["path",{d:"m14.772 18.148.923.383"}],["path",{d:"M4.2 15.1a7 7 0 1 1 9.93-9.858A7 7 0 0 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.2"}],["path",{d:"m9.228 15.852-.923-.383"}],["path",{d:"m9.228 18.148-.923.383"}]];var $7=[["path",{d:"M12 13v8l-4-4"}],["path",{d:"m12 21 4-4"}],["path",{d:"M4.393 15.269A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.436 8.284"}]];var f3=[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"}],["path",{d:"M8 19v1"}],["path",{d:"M8 14v1"}],["path",{d:"M16 19v1"}],["path",{d:"M16 14v1"}],["path",{d:"M12 21v1"}],["path",{d:"M12 16v1"}]];var k3=[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"}],["path",{d:"M16 17H7"}],["path",{d:"M17 21H9"}]];var b3=[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"}],["path",{d:"M16 14v2"}],["path",{d:"M8 14v2"}],["path",{d:"M16 20h.01"}],["path",{d:"M8 20h.01"}],["path",{d:"M12 16v2"}],["path",{d:"M12 22h.01"}]];var h3=[["path",{d:"M6 16.326A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 .5 8.973"}],["path",{d:"m13 12-3 5h4l-3 5"}]];var v3=[["path",{d:"M11 20v2"}],["path",{d:"M18.376 14.512a6 6 0 0 0 3.461-4.127c.148-.625-.659-.97-1.248-.714a4 4 0 0 1-5.259-5.26c.255-.589-.09-1.395-.716-1.248a6 6 0 0 0-4.594 5.36"}],["path",{d:"M3 20a5 5 0 1 1 8.9-4H13a3 3 0 0 1 2 5.24"}],["path",{d:"M7 19v2"}]];var $3=[["path",{d:"m2 2 20 20"}],["path",{d:"M5.782 5.782A7 7 0 0 0 9 19h8.5a4.5 4.5 0 0 0 1.307-.193"}],["path",{d:"M21.532 16.5A4.5 4.5 0 0 0 17.5 10h-1.79A7.008 7.008 0 0 0 10 5.07"}]];var g3=[["path",{d:"M13 16a3 3 0 0 1 0 6H7a5 5 0 1 1 4.9-6z"}],["path",{d:"M18.376 14.512a6 6 0 0 0 3.461-4.127c.148-.625-.659-.97-1.248-.714a4 4 0 0 1-5.259-5.26c.255-.589-.09-1.395-.716-1.248a6 6 0 0 0-4.594 5.36"}]];var _3=[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"}],["path",{d:"m9.2 22 3-7"}],["path",{d:"m9 13-3 7"}],["path",{d:"m17 13-3 7"}]];var m3=[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"}],["path",{d:"M16 14v6"}],["path",{d:"M8 14v6"}],["path",{d:"M12 16v6"}]];var u3=[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"}],["path",{d:"M8 15h.01"}],["path",{d:"M8 19h.01"}],["path",{d:"M12 17h.01"}],["path",{d:"M12 21h.01"}],["path",{d:"M16 15h.01"}],["path",{d:"M16 19h.01"}]];var d3=[["path",{d:"M12 2v2"}],["path",{d:"m4.93 4.93 1.41 1.41"}],["path",{d:"M20 12h2"}],["path",{d:"m19.07 4.93-1.41 1.41"}],["path",{d:"M15.947 12.65a4 4 0 0 0-5.925-4.128"}],["path",{d:"M3 20a5 5 0 1 1 8.9-4H13a3 3 0 0 1 2 5.24"}],["path",{d:"M11 20v2"}],["path",{d:"M7 19v2"}]];var c3=[["path",{d:"M12 2v2"}],["path",{d:"m4.93 4.93 1.41 1.41"}],["path",{d:"M20 12h2"}],["path",{d:"m19.07 4.93-1.41 1.41"}],["path",{d:"M15.947 12.65a4 4 0 0 0-5.925-4.128"}],["path",{d:"M13 22H7a5 5 0 1 1 4.9-6H13a3 3 0 0 1 0 6Z"}]];var g7=[["path",{d:"M12 13v8"}],["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"}],["path",{d:"m8 17 4-4 4 4"}]];var p3=[["path",{d:"M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z"}]];var n3=[["path",{d:"M17.5 21H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z"}],["path",{d:"M22 10a3 3 0 0 0-3-3h-2.207a5.502 5.502 0 0 0-10.702.5"}]];var i3=[["path",{d:"M16.17 7.83 2 22"}],["path",{d:"M4.02 12a2.827 2.827 0 1 1 3.81-4.17A2.827 2.827 0 1 1 12 4.02a2.827 2.827 0 1 1 4.17 3.81A2.827 2.827 0 1 1 19.98 12a2.827 2.827 0 1 1-3.81 4.17A2.827 2.827 0 1 1 12 19.98a2.827 2.827 0 1 1-4.17-3.81A1 1 0 1 1 4 12"}],["path",{d:"m7.83 7.83 8.34 8.34"}]];var l3=[["path",{d:"M17.28 9.05a5.5 5.5 0 1 0-10.56 0A5.5 5.5 0 1 0 12 17.66a5.5 5.5 0 1 0 5.28-8.6Z"}],["path",{d:"M12 17.66L12 22"}]];var _7=[["path",{d:"m18 16 4-4-4-4"}],["path",{d:"m6 8-4 4 4 4"}],["path",{d:"m14.5 4-5 16"}]];var s3=[["path",{d:"m16 18 6-6-6-6"}],["path",{d:"m8 6-6 6 6 6"}]];var r3=[["polygon",{points:"12 2 22 8.5 22 15.5 12 22 2 15.5 2 8.5 12 2"}],["line",{x1:"12",x2:"12",y1:"22",y2:"15.5"}],["polyline",{points:"22 8.5 12 15.5 2 8.5"}],["polyline",{points:"2 15.5 12 8.5 22 15.5"}],["line",{x1:"12",x2:"12",y1:"2",y2:"8.5"}]];var a3=[["path",{d:"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"}],["polyline",{points:"7.5 4.21 12 6.81 16.5 4.21"}],["polyline",{points:"7.5 19.79 7.5 14.6 3 12"}],["polyline",{points:"21 12 16.5 14.6 16.5 19.79"}],["polyline",{points:"3.27 6.96 12 12.01 20.73 6.96"}],["line",{x1:"12",x2:"12",y1:"22.08",y2:"12"}]];var t3=[["path",{d:"M10 2v2"}],["path",{d:"M14 2v2"}],["path",{d:"M16 8a1 1 0 0 1 1 1v8a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V9a1 1 0 0 1 1-1h14a4 4 0 1 1 0 8h-1"}],["path",{d:"M6 2v2"}]];var o3=[["path",{d:"M11 10.27 7 3.34"}],["path",{d:"m11 13.73-4 6.93"}],["path",{d:"M12 22v-2"}],["path",{d:"M12 2v2"}],["path",{d:"M14 12h8"}],["path",{d:"m17 20.66-1-1.73"}],["path",{d:"m17 3.34-1 1.73"}],["path",{d:"M2 12h2"}],["path",{d:"m20.66 17-1.73-1"}],["path",{d:"m20.66 7-1.73 1"}],["path",{d:"m3.34 17 1.73-1"}],["path",{d:"m3.34 7 1.73 1"}],["circle",{cx:"12",cy:"12",r:"2"}],["circle",{cx:"12",cy:"12",r:"8"}]];var e3=[["circle",{cx:"8",cy:"8",r:"6"}],["path",{d:"M18.09 10.37A6 6 0 1 1 10.34 18"}],["path",{d:"M7 6h1v4"}],["path",{d:"m16.71 13.88.7.71-2.82 2.82"}]];var m7=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M12 3v18"}]];var G5=[["path",{d:"M10.5 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v5.5"}],["path",{d:"m14.3 19.6 1-.4"}],["path",{d:"M15 3v7.5"}],["path",{d:"m15.2 16.9-.9-.3"}],["path",{d:"m16.6 21.7.3-.9"}],["path",{d:"m16.8 15.3-.4-1"}],["path",{d:"m19.1 15.2.3-.9"}],["path",{d:"m19.6 21.7-.4-1"}],["path",{d:"m20.7 16.8 1-.4"}],["path",{d:"m21.7 19.4-.9-.3"}],["path",{d:"M9 3v18"}],["circle",{cx:"18",cy:"18",r:"3"}]];var u7=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 3v18"}],["path",{d:"M15 3v18"}]];var ZI=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M7.5 3v18"}],["path",{d:"M12 3v18"}],["path",{d:"M16.5 3v18"}]];var JI=[["path",{d:"M14 3a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1"}],["path",{d:"M19 3a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1"}],["path",{d:"m7 15 3 3"}],["path",{d:"m7 21 3-3H5a2 2 0 0 1-2-2v-2"}],["rect",{x:"14",y:"14",width:"7",height:"7",rx:"1"}],["rect",{x:"3",y:"3",width:"7",height:"7",rx:"1"}]];var KI=[["path",{d:"m16.24 7.76-1.804 5.411a2 2 0 0 1-1.265 1.265L7.76 16.24l1.804-5.411a2 2 0 0 1 1.265-1.265z"}],["circle",{cx:"12",cy:"12",r:"10"}]];var YI=[["path",{d:"M15 6v12a3 3 0 1 0 3-3H6a3 3 0 1 0 3 3V6a3 3 0 1 0-3 3h12a3 3 0 1 0-3-3"}]];var XI=[["path",{d:"M15.536 11.293a1 1 0 0 0 0 1.414l2.376 2.377a1 1 0 0 0 1.414 0l2.377-2.377a1 1 0 0 0 0-1.414l-2.377-2.377a1 1 0 0 0-1.414 0z"}],["path",{d:"M2.297 11.293a1 1 0 0 0 0 1.414l2.377 2.377a1 1 0 0 0 1.414 0l2.377-2.377a1 1 0 0 0 0-1.414L6.088 8.916a1 1 0 0 0-1.414 0z"}],["path",{d:"M8.916 17.912a1 1 0 0 0 0 1.415l2.377 2.376a1 1 0 0 0 1.414 0l2.377-2.376a1 1 0 0 0 0-1.415l-2.377-2.376a1 1 0 0 0-1.414 0z"}],["path",{d:"M8.916 4.674a1 1 0 0 0 0 1.414l2.377 2.376a1 1 0 0 0 1.414 0l2.377-2.376a1 1 0 0 0 0-1.414l-2.377-2.377a1 1 0 0 0-1.414 0z"}]];var WI=[["rect",{width:"14",height:"8",x:"5",y:"2",rx:"2"}],["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2"}],["path",{d:"M6 18h2"}],["path",{d:"M12 18h6"}]];var QI=[["path",{d:"M3 20a1 1 0 0 1-1-1v-1a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1Z"}],["path",{d:"M20 16a8 8 0 1 0-16 0"}],["path",{d:"M12 4v4"}],["path",{d:"M10 4h4"}]];var VI=[["path",{d:"m20.9 18.55-8-15.98a1 1 0 0 0-1.8 0l-8 15.98"}],["ellipse",{cx:"12",cy:"19",rx:"9",ry:"3"}]];var GI=[["rect",{x:"2",y:"6",width:"20",height:"8",rx:"1"}],["path",{d:"M17 14v7"}],["path",{d:"M7 14v7"}],["path",{d:"M17 3v3"}],["path",{d:"M7 3v3"}],["path",{d:"M10 14 2.3 6.3"}],["path",{d:"m14 6 7.7 7.7"}],["path",{d:"m8 6 8 8"}]];var d7=[["path",{d:"M16 2v2"}],["path",{d:"M17.915 22a6 6 0 0 0-12 0"}],["path",{d:"M8 2v2"}],["circle",{cx:"12",cy:"12",r:"4"}],["rect",{x:"3",y:"4",width:"18",height:"18",rx:"2"}]];var II=[["path",{d:"M22 7.7c0-.6-.4-1.2-.8-1.5l-6.3-3.9a1.72 1.72 0 0 0-1.7 0l-10.3 6c-.5.2-.9.8-.9 1.4v6.6c0 .5.4 1.2.8 1.5l6.3 3.9a1.72 1.72 0 0 0 1.7 0l10.3-6c.5-.3.9-1 .9-1.5Z"}],["path",{d:"M10 21.9V14L2.1 9.1"}],["path",{d:"m10 14 11.9-6.9"}],["path",{d:"M14 19.8v-8.1"}],["path",{d:"M18 17.5V9.4"}]];var zI=[["path",{d:"M16 2v2"}],["path",{d:"M7 22v-2a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v2"}],["path",{d:"M8 2v2"}],["circle",{cx:"12",cy:"11",r:"3"}],["rect",{x:"3",y:"4",width:"18",height:"18",rx:"2"}]];var NI=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 18a6 6 0 0 0 0-12v12z"}]];var FI=[["path",{d:"M12 2a10 10 0 1 0 10 10 4 4 0 0 1-5-5 4 4 0 0 1-5-5"}],["path",{d:"M8.5 8.5v.01"}],["path",{d:"M16 15.5v.01"}],["path",{d:"M12 12v.01"}],["path",{d:"M11 17v.01"}],["path",{d:"M7 14v.01"}]];var HI=[["path",{d:"M2 12h20"}],["path",{d:"M20 12v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-8"}],["path",{d:"m4 8 16-4"}],["path",{d:"m8.86 6.78-.45-1.81a2 2 0 0 1 1.45-2.43l1.94-.48a2 2 0 0 1 2.43 1.46l.45 1.8"}]];var DI=[["path",{d:"m12 15 2 2 4-4"}],["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2"}]];var BI=[["line",{x1:"12",x2:"18",y1:"15",y2:"15"}],["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2"}]];var OI=[["line",{x1:"15",x2:"15",y1:"12",y2:"18"}],["line",{x1:"12",x2:"18",y1:"15",y2:"15"}],["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2"}]];var TI=[["line",{x1:"12",x2:"18",y1:"18",y2:"12"}],["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2"}]];var PI=[["line",{x1:"12",x2:"18",y1:"12",y2:"18"}],["line",{x1:"12",x2:"18",y1:"18",y2:"12"}],["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2"}]];var SI=[["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2"}]];var AI=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M9.17 14.83a4 4 0 1 0 0-5.66"}]];var qI=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M14.83 14.83a4 4 0 1 1 0-5.66"}]];var EI=[["path",{d:"m15 10 5 5-5 5"}],["path",{d:"M4 4v7a4 4 0 0 0 4 4h12"}]];var CI=[["path",{d:"M20 4v7a4 4 0 0 1-4 4H4"}],["path",{d:"m9 10-5 5 5 5"}]];var xI=[["path",{d:"m14 15-5 5-5-5"}],["path",{d:"M20 4h-7a4 4 0 0 0-4 4v12"}]];var wI=[["path",{d:"M14 9 9 4 4 9"}],["path",{d:"M20 20h-7a4 4 0 0 1-4-4V4"}]];var UI=[["path",{d:"m10 15 5 5 5-5"}],["path",{d:"M4 4h7a4 4 0 0 1 4 4v12"}]];var MI=[["path",{d:"m10 9 5-5 5 5"}],["path",{d:"M4 20h7a4 4 0 0 0 4-4V4"}]];var RI=[["path",{d:"M20 20v-7a4 4 0 0 0-4-4H4"}],["path",{d:"M9 14 4 9l5-5"}]];var jI=[["path",{d:"m15 14 5-5-5-5"}],["path",{d:"M4 20v-7a4 4 0 0 1 4-4h12"}]];var LI=[["path",{d:"M12 20v2"}],["path",{d:"M12 2v2"}],["path",{d:"M17 20v2"}],["path",{d:"M17 2v2"}],["path",{d:"M2 12h2"}],["path",{d:"M2 17h2"}],["path",{d:"M2 7h2"}],["path",{d:"M20 12h2"}],["path",{d:"M20 17h2"}],["path",{d:"M20 7h2"}],["path",{d:"M7 20v2"}],["path",{d:"M7 2v2"}],["rect",{x:"4",y:"4",width:"16",height:"16",rx:"2"}],["rect",{x:"8",y:"8",width:"8",height:"8",rx:"1"}]];var yI=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M10 9.3a2.8 2.8 0 0 0-3.5 1 3.1 3.1 0 0 0 0 3.4 2.7 2.7 0 0 0 3.5 1"}],["path",{d:"M17 9.3a2.8 2.8 0 0 0-3.5 1 3.1 3.1 0 0 0 0 3.4 2.7 2.7 0 0 0 3.5 1"}]];var fI=[["rect",{width:"20",height:"14",x:"2",y:"5",rx:"2"}],["line",{x1:"2",x2:"22",y1:"10",y2:"10"}]];var kI=[["path",{d:"M10.2 18H4.774a1.5 1.5 0 0 1-1.352-.97 11 11 0 0 1 .132-6.487"}],["path",{d:"M18 10.2V4.774a1.5 1.5 0 0 0-.97-1.352 11 11 0 0 0-6.486.132"}],["path",{d:"M18 5a4 3 0 0 1 4 3 2 2 0 0 1-2 2 10 10 0 0 0-5.139 1.42"}],["path",{d:"M5 18a3 4 0 0 0 3 4 2 2 0 0 0 2-2 10 10 0 0 1 1.42-5.14"}],["path",{d:"M8.709 2.554a10 10 0 0 0-6.155 6.155 1.5 1.5 0 0 0 .676 1.626l9.807 5.42a2 2 0 0 0 2.718-2.718l-5.42-9.807a1.5 1.5 0 0 0-1.626-.676"}]];var bI=[["path",{d:"M6 2v14a2 2 0 0 0 2 2h14"}],["path",{d:"M18 22V8a2 2 0 0 0-2-2H2"}]];var hI=[["path",{d:"M4 9a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h4a1 1 0 0 1 1 1v4a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-4a1 1 0 0 1 1-1h4a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2h-4a1 1 0 0 1-1-1V4a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v4a1 1 0 0 1-1 1z"}]];var vI=[["circle",{cx:"12",cy:"12",r:"10"}],["line",{x1:"22",x2:"18",y1:"12",y2:"12"}],["line",{x1:"6",x2:"2",y1:"12",y2:"12"}],["line",{x1:"12",x2:"12",y1:"6",y2:"2"}],["line",{x1:"12",x2:"12",y1:"22",y2:"18"}]];var $I=[["path",{d:"M11.562 3.266a.5.5 0 0 1 .876 0L15.39 8.87a1 1 0 0 0 1.516.294L21.183 5.5a.5.5 0 0 1 .798.519l-2.834 10.246a1 1 0 0 1-.956.734H5.81a1 1 0 0 1-.957-.734L2.02 6.02a.5.5 0 0 1 .798-.519l4.276 3.664a1 1 0 0 0 1.516-.294z"}],["path",{d:"M5 21h14"}]];var gI=[["path",{d:"m21.12 6.4-6.05-4.06a2 2 0 0 0-2.17-.05L2.95 8.41a2 2 0 0 0-.95 1.7v5.82a2 2 0 0 0 .88 1.66l6.05 4.07a2 2 0 0 0 2.17.05l9.95-6.12a2 2 0 0 0 .95-1.7V8.06a2 2 0 0 0-.88-1.66Z"}],["path",{d:"M10 22v-8L2.25 9.15"}],["path",{d:"m10 14 11.77-6.87"}]];var _I=[["path",{d:"m6 8 1.75 12.28a2 2 0 0 0 2 1.72h4.54a2 2 0 0 0 2-1.72L18 8"}],["path",{d:"M5 8h14"}],["path",{d:"M7 15a6.47 6.47 0 0 1 5 0 6.47 6.47 0 0 0 5 0"}],["path",{d:"m12 8 1-6h2"}]];var mI=[["circle",{cx:"12",cy:"12",r:"8"}],["line",{x1:"3",x2:"6",y1:"3",y2:"6"}],["line",{x1:"21",x2:"18",y1:"3",y2:"6"}],["line",{x1:"3",x2:"6",y1:"21",y2:"18"}],["line",{x1:"21",x2:"18",y1:"21",y2:"18"}]];var uI=[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3"}],["path",{d:"M3 5v14a9 3 0 0 0 18 0V5"}]];var dI=[["path",{d:"M11 11.31c1.17.56 1.54 1.69 3.5 1.69 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"}],["path",{d:"M11.75 18c.35.5 1.45 1 2.75 1 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"}],["path",{d:"M2 10h4"}],["path",{d:"M2 14h4"}],["path",{d:"M2 18h4"}],["path",{d:"M2 6h4"}],["path",{d:"M7 3a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1L10 4a1 1 0 0 0-1-1z"}]];var cI=[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3"}],["path",{d:"M3 5V19A9 3 0 0 0 15 21.84"}],["path",{d:"M21 5V8"}],["path",{d:"M21 12L18 17H22L19 22"}],["path",{d:"M3 12A9 3 0 0 0 14.59 14.87"}]];var pI=[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3"}],["path",{d:"M3 12a9 3 0 0 0 5 2.69"}],["path",{d:"M21 9.3V5"}],["path",{d:"M3 5v14a9 3 0 0 0 6.47 2.88"}],["path",{d:"M12 12v4h4"}],["path",{d:"M13 20a5 5 0 0 0 9-3 4.5 4.5 0 0 0-4.5-4.5c-1.33 0-2.54.54-3.41 1.41L12 16"}]];var nI=[["path",{d:"m13 21-3-3 3-3"}],["path",{d:"M20 18H10"}],["path",{d:"M3 11h.01"}],["rect",{x:"6",y:"3",width:"5",height:"8",rx:"2.5"}]];var iI=[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3"}],["path",{d:"M3 5V19A9 3 0 0 0 21 19V5"}],["path",{d:"M3 12A9 3 0 0 0 21 12"}]];var lI=[["path",{d:"M10 18h10"}],["path",{d:"m17 21 3-3-3-3"}],["path",{d:"M3 11h.01"}],["rect",{x:"15",y:"3",width:"5",height:"8",rx:"2.5"}],["rect",{x:"6",y:"3",width:"5",height:"8",rx:"2.5"}]];var sI=[["path",{d:"M10.162 3.167A10 10 0 0 0 2 13a2 2 0 0 0 4 0v-1a2 2 0 0 1 4 0v4a2 2 0 0 0 4 0v-4a2 2 0 0 1 4 0v1a2 2 0 0 0 4-.006 10 10 0 0 0-8.161-9.826"}],["path",{d:"M20.804 14.869a9 9 0 0 1-17.608 0"}],["circle",{cx:"12",cy:"4",r:"2"}]];var rI=[["path",{d:"M10 5a2 2 0 0 0-1.344.519l-6.328 5.74a1 1 0 0 0 0 1.481l6.328 5.741A2 2 0 0 0 10 19h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2z"}],["path",{d:"m12 9 6 6"}],["path",{d:"m18 9-6 6"}]];var aI=[["circle",{cx:"19",cy:"19",r:"2"}],["circle",{cx:"5",cy:"5",r:"2"}],["path",{d:"M6.48 3.66a10 10 0 0 1 13.86 13.86"}],["path",{d:"m6.41 6.41 11.18 11.18"}],["path",{d:"M3.66 6.48a10 10 0 0 0 13.86 13.86"}]];var tI=[["path",{d:"M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41L13.7 2.71a2.41 2.41 0 0 0-3.41 0z"}],["path",{d:"M8 12h8"}]];var c7=[["path",{d:"M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41L13.7 2.71a2.41 2.41 0 0 0-3.41 0Z"}],["path",{d:"M9.2 9.2h.01"}],["path",{d:"m14.5 9.5-5 5"}],["path",{d:"M14.7 14.8h.01"}]];var oI=[["path",{d:"M12 8v8"}],["path",{d:"M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41L13.7 2.71a2.41 2.41 0 0 0-3.41 0z"}],["path",{d:"M8 12h8"}]];var eI=[["path",{d:"M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41l-7.59-7.59a2.41 2.41 0 0 0-3.41 0Z"}]];var Zz=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["path",{d:"M12 12h.01"}]];var Jz=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["path",{d:"M15 9h.01"}],["path",{d:"M9 15h.01"}]];var Kz=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["path",{d:"M16 8h.01"}],["path",{d:"M12 12h.01"}],["path",{d:"M8 16h.01"}]];var Yz=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["path",{d:"M16 8h.01"}],["path",{d:"M8 8h.01"}],["path",{d:"M8 16h.01"}],["path",{d:"M16 16h.01"}]];var Xz=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["path",{d:"M16 8h.01"}],["path",{d:"M8 8h.01"}],["path",{d:"M8 16h.01"}],["path",{d:"M16 16h.01"}],["path",{d:"M12 12h.01"}]];var Wz=[["rect",{width:"12",height:"12",x:"2",y:"10",rx:"2",ry:"2"}],["path",{d:"m17.92 14 3.5-3.5a2.24 2.24 0 0 0 0-3l-5-4.92a2.24 2.24 0 0 0-3 0L10 6"}],["path",{d:"M6 18h.01"}],["path",{d:"M10 14h.01"}],["path",{d:"M15 6h.01"}],["path",{d:"M18 9h.01"}]];var Qz=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["path",{d:"M16 8h.01"}],["path",{d:"M16 12h.01"}],["path",{d:"M16 16h.01"}],["path",{d:"M8 8h.01"}],["path",{d:"M8 12h.01"}],["path",{d:"M8 16h.01"}]];var Vz=[["path",{d:"M12 3v14"}],["path",{d:"M5 10h14"}],["path",{d:"M5 21h14"}]];var Gz=[["circle",{cx:"12",cy:"12",r:"10"}],["circle",{cx:"12",cy:"12",r:"4"}],["path",{d:"M12 12h.01"}]];var Iz=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M6 12c0-1.7.7-3.2 1.8-4.2"}],["circle",{cx:"12",cy:"12",r:"2"}],["path",{d:"M18 12c0 1.7-.7 3.2-1.8 4.2"}]];var zz=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["circle",{cx:"12",cy:"12",r:"5"}],["path",{d:"M12 12h.01"}]];var Nz=[["circle",{cx:"12",cy:"12",r:"10"}],["circle",{cx:"12",cy:"12",r:"2"}]];var Fz=[["circle",{cx:"12",cy:"6",r:"1"}],["line",{x1:"5",x2:"19",y1:"12",y2:"12"}],["circle",{cx:"12",cy:"18",r:"1"}]];var Hz=[["path",{d:"M15 2c-1.35 1.5-2.092 3-2.5 4.5L14 8"}],["path",{d:"m17 6-2.891-2.891"}],["path",{d:"M2 15c3.333-3 6.667-3 10-3"}],["path",{d:"m2 2 20 20"}],["path",{d:"m20 9 .891.891"}],["path",{d:"M22 9c-1.5 1.35-3 2.092-4.5 2.5l-1-1"}],["path",{d:"M3.109 14.109 4 15"}],["path",{d:"m6.5 12.5 1 1"}],["path",{d:"m7 18 2.891 2.891"}],["path",{d:"M9 22c1.35-1.5 2.092-3 2.5-4.5L10 16"}]];var Dz=[["path",{d:"m10 16 1.5 1.5"}],["path",{d:"m14 8-1.5-1.5"}],["path",{d:"M15 2c-1.798 1.998-2.518 3.995-2.807 5.993"}],["path",{d:"m16.5 10.5 1 1"}],["path",{d:"m17 6-2.891-2.891"}],["path",{d:"M2 15c6.667-6 13.333 0 20-6"}],["path",{d:"m20 9 .891.891"}],["path",{d:"M3.109 14.109 4 15"}],["path",{d:"m6.5 12.5 1 1"}],["path",{d:"m7 18 2.891 2.891"}],["path",{d:"M9 22c1.798-1.998 2.518-3.995 2.807-5.993"}]];var Bz=[["path",{d:"M2 8h20"}],["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2"}],["path",{d:"M6 16h12"}]];var Oz=[["path",{d:"M11.25 16.25h1.5L12 17z"}],["path",{d:"M16 14v.5"}],["path",{d:"M4.42 11.247A13.152 13.152 0 0 0 4 14.556C4 18.728 7.582 21 12 21s8-2.272 8-6.444a11.702 11.702 0 0 0-.493-3.309"}],["path",{d:"M8 14v.5"}],["path",{d:"M8.5 8.5c-.384 1.05-1.083 2.028-2.344 2.5-1.931.722-3.576-.297-3.656-1-.113-.994 1.177-6.53 4-7 1.923-.321 3.651.845 3.651 2.235A7.497 7.497 0 0 1 14 5.277c0-1.39 1.844-2.598 3.767-2.277 2.823.47 4.113 6.006 4 7-.08.703-1.725 1.722-3.656 1-1.261-.472-1.855-1.45-2.239-2.5"}]];var Tz=[["line",{x1:"12",x2:"12",y1:"2",y2:"22"}],["path",{d:"M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"}]];var Pz=[["path",{d:"M20.5 10a2.5 2.5 0 0 1-2.4-3H18a2.95 2.95 0 0 1-2.6-4.4 10 10 0 1 0 6.3 7.1c-.3.2-.8.3-1.2.3"}],["circle",{cx:"12",cy:"12",r:"3"}]];var Sz=[["path",{d:"M10 12h.01"}],["path",{d:"M18 9V6a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v14"}],["path",{d:"M2 20h8"}],["path",{d:"M20 17v-2a2 2 0 1 0-4 0v2"}],["rect",{x:"14",y:"17",width:"8",height:"5",rx:"1"}]];var Az=[["path",{d:"M10 12h.01"}],["path",{d:"M18 20V6a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v14"}],["path",{d:"M2 20h20"}]];var qz=[["path",{d:"M11 20H2"}],["path",{d:"M11 4.562v16.157a1 1 0 0 0 1.242.97L19 20V5.562a2 2 0 0 0-1.515-1.94l-4-1A2 2 0 0 0 11 4.561z"}],["path",{d:"M11 4H8a2 2 0 0 0-2 2v14"}],["path",{d:"M14 12h.01"}],["path",{d:"M22 20h-3"}]];var Ez=[["circle",{cx:"12.1",cy:"12.1",r:"1"}]];var Cz=[["path",{d:"M12 15V3"}],["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"}],["path",{d:"m7 10 5 5 5-5"}]];var xz=[["path",{d:"m12.99 6.74 1.93 3.44"}],["path",{d:"M19.136 12a10 10 0 0 1-14.271 0"}],["path",{d:"m21 21-2.16-3.84"}],["path",{d:"m3 21 8.02-14.26"}],["circle",{cx:"12",cy:"5",r:"2"}]];var wz=[["path",{d:"M10 11h.01"}],["path",{d:"M14 6h.01"}],["path",{d:"M18 6h.01"}],["path",{d:"M6.5 13.1h.01"}],["path",{d:"M22 5c0 9-4 12-6 12s-6-3-6-12c0-2 2-3 6-3s6 1 6 3"}],["path",{d:"M17.4 9.9c-.8.8-2 .8-2.8 0"}],["path",{d:"M10.1 7.1C9 7.2 7.7 7.7 6 8.6c-3.5 2-4.7 3.9-3.7 5.6 4.5 7.8 9.5 8.4 11.2 7.4.9-.5 1.9-2.1 1.9-4.7"}],["path",{d:"M9.1 16.5c.3-1.1 1.4-1.7 2.4-1.4"}]];var Uz=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M19.13 5.09C15.22 9.14 10 10.44 2.25 10.94"}],["path",{d:"M21.75 12.84c-6.62-1.41-12.14 1-16.38 6.32"}],["path",{d:"M8.56 2.75c4.37 6 6 9.42 8 17.72"}]];var Mz=[["path",{d:"M10 18a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H5a3 3 0 0 1-3-3 1 1 0 0 1 1-1z"}],["path",{d:"M13 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1l-.81 3.242a1 1 0 0 1-.97.758H8"}],["path",{d:"M14 4h3a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-3"}],["path",{d:"M18 6h4"}],["path",{d:"m5 10-2 8"}],["path",{d:"m7 18 2-8"}]];var Rz=[["path",{d:"M10 10 7 7"}],["path",{d:"m10 14-3 3"}],["path",{d:"m14 10 3-3"}],["path",{d:"m14 14 3 3"}],["path",{d:"M14.205 4.139a4 4 0 1 1 5.439 5.863"}],["path",{d:"M19.637 14a4 4 0 1 1-5.432 5.868"}],["path",{d:"M4.367 10a4 4 0 1 1 5.438-5.862"}],["path",{d:"M9.795 19.862a4 4 0 1 1-5.429-5.873"}],["rect",{x:"10",y:"8",width:"4",height:"8",rx:"1"}]];var jz=[["path",{d:"M18.715 13.186C18.29 11.858 17.384 10.607 16 9.5c-2-1.6-3.5-4-4-6.5a10.7 10.7 0 0 1-.884 2.586"}],["path",{d:"m2 2 20 20"}],["path",{d:"M8.795 8.797A11 11 0 0 1 8 9.5C6 11.1 5 13 5 15a7 7 0 0 0 13.222 3.208"}]];var Lz=[["path",{d:"M12 22a7 7 0 0 0 7-7c0-2-1-3.9-3-5.5s-3.5-4-4-6.5c-.5 2.5-2 4.9-4 6.5C6 11.1 5 13 5 15a7 7 0 0 0 7 7z"}]];var yz=[["path",{d:"m2 2 8 8"}],["path",{d:"m22 2-8 8"}],["ellipse",{cx:"12",cy:"9",rx:"10",ry:"5"}],["path",{d:"M7 13.4v7.9"}],["path",{d:"M12 14v8"}],["path",{d:"M17 13.4v7.9"}],["path",{d:"M2 9v8a10 5 0 0 0 20 0V9"}]];var fz=[["path",{d:"M7 16.3c2.2 0 4-1.83 4-4.05 0-1.16-.57-2.26-1.71-3.19S7.29 6.75 7 5.3c-.29 1.45-1.14 2.84-2.29 3.76S3 11.1 3 12.25c0 2.22 1.8 4.05 4 4.05z"}],["path",{d:"M12.56 6.6A10.97 10.97 0 0 0 14 3.02c.5 2.5 2 4.9 4 6.5s3 3.5 3 5.5a6.98 6.98 0 0 1-11.91 4.97"}]];var kz=[["path",{d:"M15.4 15.63a7.875 6 135 1 1 6.23-6.23 4.5 3.43 135 0 0-6.23 6.23"}],["path",{d:"m8.29 12.71-2.6 2.6a2.5 2.5 0 1 0-1.65 4.65A2.5 2.5 0 1 0 8.7 18.3l2.59-2.59"}]];var bz=[["path",{d:"M17.596 12.768a2 2 0 1 0 2.829-2.829l-1.768-1.767a2 2 0 0 0 2.828-2.829l-2.828-2.828a2 2 0 0 0-2.829 2.828l-1.767-1.768a2 2 0 1 0-2.829 2.829z"}],["path",{d:"m2.5 21.5 1.4-1.4"}],["path",{d:"m20.1 3.9 1.4-1.4"}],["path",{d:"M5.343 21.485a2 2 0 1 0 2.829-2.828l1.767 1.768a2 2 0 1 0 2.829-2.829l-6.364-6.364a2 2 0 1 0-2.829 2.829l1.768 1.767a2 2 0 0 0-2.828 2.829z"}],["path",{d:"m9.6 14.4 4.8-4.8"}]];var hz=[["path",{d:"M6 18.5a3.5 3.5 0 1 0 7 0c0-1.57.92-2.52 2.04-3.46"}],["path",{d:"M6 8.5c0-.75.13-1.47.36-2.14"}],["path",{d:"M8.8 3.15A6.5 6.5 0 0 1 19 8.5c0 1.63-.44 2.81-1.09 3.76"}],["path",{d:"M12.5 6A2.5 2.5 0 0 1 15 8.5M10 13a2 2 0 0 0 1.82-1.18"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var vz=[["path",{d:"M7 3.34V5a3 3 0 0 0 3 3"}],["path",{d:"M11 21.95V18a2 2 0 0 0-2-2 2 2 0 0 1-2-2v-1a2 2 0 0 0-2-2H2.05"}],["path",{d:"M21.54 15H17a2 2 0 0 0-2 2v4.54"}],["path",{d:"M12 2a10 10 0 1 0 9.54 13"}],["path",{d:"M20 6V4a2 2 0 1 0-4 0v2"}],["rect",{width:"8",height:"5",x:"14",y:"6",rx:"1"}]];var $z=[["path",{d:"M6 8.5a6.5 6.5 0 1 1 13 0c0 6-6 6-6 10a3.5 3.5 0 1 1-7 0"}],["path",{d:"M15 8.5a2.5 2.5 0 0 0-5 0v1a2 2 0 1 1 0 4"}]];var p7=[["path",{d:"M21.54 15H17a2 2 0 0 0-2 2v4.54"}],["path",{d:"M7 3.34V5a3 3 0 0 0 3 3a2 2 0 0 1 2 2c0 1.1.9 2 2 2a2 2 0 0 0 2-2c0-1.1.9-2 2-2h3.17"}],["path",{d:"M11 21.95V18a2 2 0 0 0-2-2a2 2 0 0 1-2-2v-1a2 2 0 0 0-2-2H2.05"}],["circle",{cx:"12",cy:"12",r:"10"}]];var gz=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 2a7 7 0 1 0 10 10"}]];var _z=[["circle",{cx:"11.5",cy:"12.5",r:"3.5"}],["path",{d:"M3 8c0-3.5 2.5-6 6.5-6 5 0 4.83 3 7.5 5s5 2 5 6c0 4.5-2.5 6.5-7 6.5-2.5 0-2.5 2.5-6 2.5s-7-2-7-5.5c0-3 1.5-3 1.5-5C3.5 10 3 9 3 8Z"}]];var mz=[["path",{d:"m2 2 20 20"}],["path",{d:"M20 14.347V14c0-6-4-12-8-12-1.078 0-2.157.436-3.157 1.19"}],["path",{d:"M6.206 6.21C4.871 8.4 4 11.2 4 14a8 8 0 0 0 14.568 4.568"}]];var uz=[["path",{d:"M12 2C8 2 4 8 4 14a8 8 0 0 0 16 0c0-6-4-12-8-12"}]];var n7=[["circle",{cx:"12",cy:"12",r:"1"}],["circle",{cx:"12",cy:"5",r:"1"}],["circle",{cx:"12",cy:"19",r:"1"}]];var i7=[["circle",{cx:"12",cy:"12",r:"1"}],["circle",{cx:"19",cy:"12",r:"1"}],["circle",{cx:"5",cy:"12",r:"1"}]];var dz=[["path",{d:"M5 15a6.5 6.5 0 0 1 7 0 6.5 6.5 0 0 0 7 0"}],["path",{d:"M5 9a6.5 6.5 0 0 1 7 0 6.5 6.5 0 0 0 7 0"}]];var cz=[["line",{x1:"5",x2:"19",y1:"9",y2:"9"}],["line",{x1:"5",x2:"19",y1:"15",y2:"15"}],["line",{x1:"19",x2:"5",y1:"5",y2:"19"}]];var pz=[["line",{x1:"5",x2:"19",y1:"9",y2:"9"}],["line",{x1:"5",x2:"19",y1:"15",y2:"15"}]];var nz=[["path",{d:"M21 21H8a2 2 0 0 1-1.42-.587l-3.994-3.999a2 2 0 0 1 0-2.828l10-10a2 2 0 0 1 2.829 0l5.999 6a2 2 0 0 1 0 2.828L12.834 21"}],["path",{d:"m5.082 11.09 8.828 8.828"}]];var iz=[["path",{d:"m15 20 3-3h2a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h2l3 3z"}],["path",{d:"M6 8v1"}],["path",{d:"M10 8v1"}],["path",{d:"M14 8v1"}],["path",{d:"M18 8v1"}]];var lz=[["path",{d:"M4 10h12"}],["path",{d:"M4 14h9"}],["path",{d:"M19 6a7.7 7.7 0 0 0-5.2-2A7.9 7.9 0 0 0 6 12c0 4.4 3.5 8 7.8 8 2 0 3.8-.8 5.2-2"}]];var sz=[["path",{d:"M14 13h2a2 2 0 0 1 2 2v2a2 2 0 0 0 4 0v-6.998a2 2 0 0 0-.59-1.42L18 5"}],["path",{d:"M14 21V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v16"}],["path",{d:"M2 21h13"}],["path",{d:"M3 7h11"}],["path",{d:"m9 11-2 3h3l-2 3"}]];var rz=[["path",{d:"m15 15 6 6"}],["path",{d:"m15 9 6-6"}],["path",{d:"M21 16v5h-5"}],["path",{d:"M21 8V3h-5"}],["path",{d:"M3 16v5h5"}],["path",{d:"m3 21 6-6"}],["path",{d:"M3 8V3h5"}],["path",{d:"M9 9 3 3"}]];var az=[["path",{d:"m15 18-.722-3.25"}],["path",{d:"M2 8a10.645 10.645 0 0 0 20 0"}],["path",{d:"m20 15-1.726-2.05"}],["path",{d:"m4 15 1.726-2.05"}],["path",{d:"m9 18 .722-3.25"}]];var tz=[["path",{d:"M10.733 5.076a10.744 10.744 0 0 1 11.205 6.575 1 1 0 0 1 0 .696 10.747 10.747 0 0 1-1.444 2.49"}],["path",{d:"M14.084 14.158a3 3 0 0 1-4.242-4.242"}],["path",{d:"M17.479 17.499a10.75 10.75 0 0 1-15.417-5.151 1 1 0 0 1 0-.696 10.75 10.75 0 0 1 4.446-5.143"}],["path",{d:"m2 2 20 20"}]];var oz=[["path",{d:"M15 3h6v6"}],["path",{d:"M10 14 21 3"}],["path",{d:"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"}]];var ez=[["path",{d:"M2.062 12.348a1 1 0 0 1 0-.696 10.75 10.75 0 0 1 19.876 0 1 1 0 0 1 0 .696 10.75 10.75 0 0 1-19.876 0"}],["circle",{cx:"12",cy:"12",r:"3"}]];var ZN=[["path",{d:"M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z"}]];var JN=[["path",{d:"M12 16h.01"}],["path",{d:"M16 16h.01"}],["path",{d:"M3 19a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V8.5a.5.5 0 0 0-.769-.422l-4.462 2.844A.5.5 0 0 1 15 10.5v-2a.5.5 0 0 0-.769-.422L9.77 10.922A.5.5 0 0 1 9 10.5V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2z"}],["path",{d:"M8 16h.01"}]];var KN=[["path",{d:"M10.827 16.379a6.082 6.082 0 0 1-8.618-7.002l5.412 1.45a6.082 6.082 0 0 1 7.002-8.618l-1.45 5.412a6.082 6.082 0 0 1 8.618 7.002l-5.412-1.45a6.082 6.082 0 0 1-7.002 8.618l1.45-5.412Z"}],["path",{d:"M12 12v.01"}]];var YN=[["path",{d:"M12 6a2 2 0 0 1 3.414-1.414l6 6a2 2 0 0 1 0 2.828l-6 6A2 2 0 0 1 12 18z"}],["path",{d:"M2 6a2 2 0 0 1 3.414-1.414l6 6a2 2 0 0 1 0 2.828l-6 6A2 2 0 0 1 2 18z"}]];var XN=[["path",{d:"M12.67 19a2 2 0 0 0 1.416-.588l6.154-6.172a6 6 0 0 0-8.49-8.49L5.586 9.914A2 2 0 0 0 5 11.328V18a1 1 0 0 0 1 1z"}],["path",{d:"M16 8 2 22"}],["path",{d:"M17.5 15H9"}]];var WN=[["path",{d:"M4 3 2 5v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z"}],["path",{d:"M6 8h4"}],["path",{d:"M6 18h4"}],["path",{d:"m12 3-2 2v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z"}],["path",{d:"M14 8h4"}],["path",{d:"M14 18h4"}],["path",{d:"m20 3-2 2v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z"}]];var QN=[["circle",{cx:"12",cy:"12",r:"2"}],["path",{d:"M12 2v4"}],["path",{d:"m6.8 15-3.5 2"}],["path",{d:"m20.7 7-3.5 2"}],["path",{d:"M6.8 9 3.3 7"}],["path",{d:"m20.7 17-3.5-2"}],["path",{d:"m9 22 3-8 3 8"}],["path",{d:"M8 22h8"}],["path",{d:"M18 18.7a9 9 0 1 0-12 0"}]];var VN=[["path",{d:"M5 5.5A3.5 3.5 0 0 1 8.5 2H12v7H8.5A3.5 3.5 0 0 1 5 5.5z"}],["path",{d:"M12 2h3.5a3.5 3.5 0 1 1 0 7H12V2z"}],["path",{d:"M12 12.5a3.5 3.5 0 1 1 7 0 3.5 3.5 0 1 1-7 0z"}],["path",{d:"M5 19.5A3.5 3.5 0 0 1 8.5 16H12v3.5a3.5 3.5 0 1 1-7 0z"}],["path",{d:"M5 12.5A3.5 3.5 0 0 1 8.5 9H12v7H8.5A3.5 3.5 0 0 1 5 12.5z"}]];var GN=[["path",{d:"M10 12v-1"}],["path",{d:"M10 18v-2"}],["path",{d:"M10 7V6"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M15.5 22H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v16a2 2 0 0 0 .274 1.01"}],["circle",{cx:"10",cy:"20",r:"2"}]];var IN=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v2"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["circle",{cx:"3",cy:"17",r:"1"}],["path",{d:"M2 17v-3a4 4 0 0 1 8 0v3"}],["circle",{cx:"9",cy:"17",r:"1"}]];var zN=[["path",{d:"M17.5 22h.5a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M2 19a2 2 0 1 1 4 0v1a2 2 0 1 1-4 0v-4a6 6 0 0 1 12 0v4a2 2 0 1 1-4 0v-1a2 2 0 1 1 4 0"}]];var NN=[["path",{d:"m13.69 12.479 1.29 4.88a.5.5 0 0 1-.697.591l-1.844-.849a1 1 0 0 0-.88.001l-1.846.85a.5.5 0 0 1-.693-.593l1.29-4.88"}],["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z"}],["circle",{cx:"12",cy:"10",r:"3"}]];var l7=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"m8 18 4-4"}],["path",{d:"M8 10v8h8"}]];var FN=[["path",{d:"M14.5 22H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M3 13.1a2 2 0 0 0-1 1.76v3.24a2 2 0 0 0 .97 1.78L6 21.7a2 2 0 0 0 2.03.01L11 19.9a2 2 0 0 0 1-1.76V14.9a2 2 0 0 0-.97-1.78L8 11.3a2 2 0 0 0-2.03-.01Z"}],["path",{d:"M7 17v5"}],["path",{d:"M11.7 14.2 7 17l-4.7-2.8"}]];var HN=[["path",{d:"M12 22h6a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3.072"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"m6.69 16.479 1.29 4.88a.5.5 0 0 1-.698.591l-1.843-.849a1 1 0 0 0-.88.001l-1.846.85a.5.5 0 0 1-.693-.593l1.29-4.88"}],["circle",{cx:"5",cy:"14",r:"3"}]];var s7=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M8 18v-2"}],["path",{d:"M12 18v-4"}],["path",{d:"M16 18v-6"}]];var r7=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M8 18v-1"}],["path",{d:"M12 18v-6"}],["path",{d:"M16 18v-3"}]];var a7=[["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M16 22h2a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3.5"}],["path",{d:"M4.017 11.512a6 6 0 1 0 8.466 8.475"}],["path",{d:"M9 16a1 1 0 0 1-1-1v-4c0-.552.45-1.008.995-.917a6 6 0 0 1 4.922 4.922c.091.544-.365.995-.917.995z"}]];var t7=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"m16 13-3.5 3.5-2-2L8 17"}]];var DN=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"m3 15 2 2 4-4"}]];var BN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"m9 15 2 2 4-4"}]];var ON=[["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M16 22h2a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3"}],["path",{d:"M8 14v2.2l1.6 1"}],["circle",{cx:"8",cy:"16",r:"6"}]];var TN=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"m5 12-3 3 3 3"}],["path",{d:"m9 18 3-3-3-3"}]];var PN=[["path",{d:"M10 12.5 8 15l2 2.5"}],["path",{d:"m14 12.5 2 2.5-2 2.5"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z"}]];var o7=[["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"m2.305 15.53.923-.382"}],["path",{d:"m3.228 12.852-.924-.383"}],["path",{d:"M4.677 21.5a2 2 0 0 0 1.313.5H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v2.5"}],["path",{d:"m4.852 11.228-.383-.923"}],["path",{d:"m4.852 16.772-.383.924"}],["path",{d:"m7.148 11.228.383-.923"}],["path",{d:"m7.53 17.696-.382-.924"}],["path",{d:"m8.772 12.852.923-.383"}],["path",{d:"m8.772 15.148.923.383"}],["circle",{cx:"6",cy:"14",r:"3"}]];var SN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M9 10h6"}],["path",{d:"M12 13V7"}],["path",{d:"M9 17h6"}]];var AN=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["rect",{width:"4",height:"6",x:"2",y:"12",rx:"2"}],["path",{d:"M10 12h2v6"}],["path",{d:"M10 18h4"}]];var qN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M12 18v-6"}],["path",{d:"m9 15 3 3 3-3"}]];var EN=[["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M2.62 13.8A2.25 2.25 0 1 1 6 10.836a2.25 2.25 0 1 1 3.38 2.966l-2.626 2.856a.998.998 0 0 1-1.507 0z"}],["path",{d:"M4 6.005V4a2 2 0 0 1 2-2h9l5 5v13a2 2 0 0 1-2 2H6a2 2 0 0 1-1.9-1.376"}]];var CN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["circle",{cx:"10",cy:"12",r:"2"}],["path",{d:"m20 17-1.296-1.296a2.41 2.41 0 0 0-3.408 0L9 22"}]];var xN=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M2 15h10"}],["path",{d:"m9 18 3-3-3-3"}]];var wN=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M4 12a1 1 0 0 0-1 1v1a1 1 0 0 1-1 1 1 1 0 0 1 1 1v1a1 1 0 0 0 1 1"}],["path",{d:"M8 18a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-1a1 1 0 0 0-1-1"}]];var UN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M10 12a1 1 0 0 0-1 1v1a1 1 0 0 1-1 1 1 1 0 0 1 1 1v1a1 1 0 0 0 1 1"}],["path",{d:"M14 18a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-1a1 1 0 0 0-1-1"}]];var MN=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v6"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["circle",{cx:"4",cy:"16",r:"2"}],["path",{d:"m10 10-4.5 4.5"}],["path",{d:"m9 11 1 1"}]];var RN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["circle",{cx:"10",cy:"16",r:"2"}],["path",{d:"m16 10-4.5 4.5"}],["path",{d:"m15 11 1 1"}]];var jN=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v1"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["rect",{width:"8",height:"5",x:"2",y:"13",rx:"1"}],["path",{d:"M8 13v-2a2 2 0 1 0-4 0v2"}]];var LN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["rect",{width:"8",height:"6",x:"8",y:"12",rx:"1"}],["path",{d:"M10 12v-2a2 2 0 1 1 4 0v2"}]];var yN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M9 15h6"}]];var fN=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M3 15h6"}]];var kN=[["path",{d:"M10.5 22H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v8.4"}],["path",{d:"M8 18v-7.7L16 9v7"}],["circle",{cx:"14",cy:"16",r:"2"}],["circle",{cx:"6",cy:"18",r:"2"}]];var bN=[["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M4 7V4a2 2 0 0 1 2-2 2 2 0 0 0-2 2"}],["path",{d:"M4.063 20.999a2 2 0 0 0 2 1L18 22a2 2 0 0 0 2-2V7l-5-5H6"}],["path",{d:"m5 11-3 3"}],["path",{d:"m5 17-3-3h10"}]];var e7=[["path",{d:"m18 5-2.414-2.414A2 2 0 0 0 14.172 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2"}],["path",{d:"M21.378 12.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}],["path",{d:"M8 18h1"}]];var Z6=[["path",{d:"M12.5 22H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v9.5"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M13.378 15.626a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}]];var J6=[["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z"}],["path",{d:"M15.033 13.44a.647.647 0 0 1 0 1.12l-4.065 2.352a.645.645 0 0 1-.968-.56v-4.704a.645.645 0 0 1 .967-.56z"}]];var hN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M9 15h6"}],["path",{d:"M12 18v-6"}]];var vN=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M3 15h6"}],["path",{d:"M6 12v6"}]];var K6=[["path",{d:"M12 17h.01"}],["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z"}],["path",{d:"M9.1 9a3 3 0 0 1 5.82 1c0 2-3 3-3 3"}]];var $N=[["path",{d:"M20 10V7l-5-5H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M16 14a2 2 0 0 0-2 2"}],["path",{d:"M20 14a2 2 0 0 1 2 2"}],["path",{d:"M20 22a2 2 0 0 0 2-2"}],["path",{d:"M16 22a2 2 0 0 1-2-2"}]];var gN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["circle",{cx:"11.5",cy:"14.5",r:"2.5"}],["path",{d:"M13.3 16.3 15 18"}]];var _N=[["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M4.268 21a2 2 0 0 0 1.727 1H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3"}],["path",{d:"m9 18-1.5-1.5"}],["circle",{cx:"5",cy:"14",r:"3"}]];var mN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M8 12h8"}],["path",{d:"M10 11v2"}],["path",{d:"M8 17h8"}],["path",{d:"M14 16v2"}]];var uN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M8 13h2"}],["path",{d:"M14 13h2"}],["path",{d:"M8 17h2"}],["path",{d:"M14 17h2"}]];var dN=[["path",{d:"M11 21a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-8a1 1 0 0 1 1-1"}],["path",{d:"M16 16a1 1 0 0 1-1 1H9a1 1 0 0 1-1-1V8a1 1 0 0 1 1-1"}],["path",{d:"M21 6a2 2 0 0 0-.586-1.414l-2-2A2 2 0 0 0 17 2h-3a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1z"}]];var cN=[["path",{d:"m10 18 3-3-3-3"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M4 11V4a2 2 0 0 1 2-2h9l5 5v13a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h7"}]];var pN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"m8 16 2-2-2-2"}],["path",{d:"M12 18h4"}]];var nN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M10 9H8"}],["path",{d:"M16 13H8"}],["path",{d:"M16 17H8"}]];var iN=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M2 13v-1h6v1"}],["path",{d:"M5 12v6"}],["path",{d:"M4 18h2"}]];var lN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M9 13v-1h6v1"}],["path",{d:"M12 12v6"}],["path",{d:"M11 18h2"}]];var sN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M12 12v6"}],["path",{d:"m15 15-3-3-3 3"}]];var rN=[["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M15 18a3 3 0 1 0-6 0"}],["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z"}],["circle",{cx:"12",cy:"13",r:"2"}]];var Y6=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["rect",{width:"8",height:"6",x:"2",y:"12",rx:"1"}],["path",{d:"m10 13.843 3.033-1.755a.645.645 0 0 1 .967.56v4.704a.645.645 0 0 1-.967.56L10 16.157"}]];var aN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M8 15h.01"}],["path",{d:"M11.5 13.5a2.5 2.5 0 0 1 0 3"}],["path",{d:"M15 12a5 5 0 0 1 0 6"}]];var tN=[["path",{d:"M11 11a5 5 0 0 1 0 6"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M4 6.765V4a2 2 0 0 1 2-2h9l5 5v13a2 2 0 0 1-2 2H6a2 2 0 0 1-.93-.23"}],["path",{d:"M7 10.51a.5.5 0 0 0-.826-.38l-1.893 1.628A1 1 0 0 1 3.63 12H2.5a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5h1.129a1 1 0 0 1 .652.242l1.893 1.63a.5.5 0 0 0 .826-.38z"}]];var oN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M12 9v4"}],["path",{d:"M12 17h.01"}]];var eN=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"m8 12.5-5 5"}],["path",{d:"m3 12.5 5 5"}]];var ZF=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"m14.5 12.5-5 5"}],["path",{d:"m9.5 12.5 5 5"}]];var JF=[["path",{d:"M15 2a2 2 0 0 1 1.414.586l4 4A2 2 0 0 1 21 8v7a2 2 0 0 1-2 2h-8a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2z"}],["path",{d:"M15 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M5 7a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h8a2 2 0 0 0 1.732-1"}]];var KF=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}]];var YF=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M7 3v18"}],["path",{d:"M3 7.5h4"}],["path",{d:"M3 12h18"}],["path",{d:"M3 16.5h4"}],["path",{d:"M17 3v18"}],["path",{d:"M17 7.5h4"}],["path",{d:"M17 16.5h4"}]];var XF=[["path",{d:"M12 10a2 2 0 0 0-2 2c0 1.02-.1 2.51-.26 4"}],["path",{d:"M14 13.12c0 2.38 0 6.38-1 8.88"}],["path",{d:"M17.29 21.02c.12-.6.43-2.3.5-3.02"}],["path",{d:"M2 12a10 10 0 0 1 18-6"}],["path",{d:"M2 16h.01"}],["path",{d:"M21.8 16c.2-2 .131-5.354 0-6"}],["path",{d:"M5 19.5C5.5 18 6 15 6 12a6 6 0 0 1 .34-2"}],["path",{d:"M8.65 22c.21-.66.45-1.32.57-2"}],["path",{d:"M9 6.8a6 6 0 0 1 9 5.2v2"}]];var WF=[["path",{d:"M15 6.5V3a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1v3.5"}],["path",{d:"M9 18h8"}],["path",{d:"M18 3h-3"}],["path",{d:"M11 3a6 6 0 0 0-6 6v11"}],["path",{d:"M5 13h4"}],["path",{d:"M17 10a4 4 0 0 0-8 0v10a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2Z"}]];var QF=[["path",{d:"M18 12.47v.03m0-.5v.47m-.475 5.056A6.744 6.744 0 0 1 15 18c-3.56 0-7.56-2.53-8.5-6 .348-1.28 1.114-2.433 2.121-3.38m3.444-2.088A8.802 8.802 0 0 1 15 6c3.56 0 6.06 2.54 7 6-.309 1.14-.786 2.177-1.413 3.058"}],["path",{d:"M7 10.67C7 8 5.58 5.97 2.73 5.5c-1 1.5-1 5 .23 6.5-1.24 1.5-1.24 5-.23 6.5C5.58 18.03 7 16 7 13.33m7.48-4.372A9.77 9.77 0 0 1 16 6.07m0 11.86a9.77 9.77 0 0 1-1.728-3.618"}],["path",{d:"m16.01 17.93-.23 1.4A2 2 0 0 1 13.8 21H9.5a5.96 5.96 0 0 0 1.49-3.98M8.53 3h5.27a2 2 0 0 1 1.98 1.67l.23 1.4M2 2l20 20"}]];var VF=[["path",{d:"M2 16s9-15 20-4C11 23 2 8 2 8"}]];var GF=[["path",{d:"M16 16c-3 0-5-2-8-2a6 6 0 0 0-4 1.528"}],["path",{d:"m2 2 20 20"}],["path",{d:"M4 22V4"}],["path",{d:"M7.656 2H8c3 0 5 2 7.333 2q2 0 3.067-.8A1 1 0 0 1 20 4v10.347"}]];var IF=[["path",{d:"M6.5 12c.94-3.46 4.94-6 8.5-6 3.56 0 6.06 2.54 7 6-.94 3.47-3.44 6-7 6s-7.56-2.53-8.5-6Z"}],["path",{d:"M18 12v.5"}],["path",{d:"M16 17.93a9.77 9.77 0 0 1 0-11.86"}],["path",{d:"M7 10.67C7 8 5.58 5.97 2.73 5.5c-1 1.5-1 5 .23 6.5-1.24 1.5-1.24 5-.23 6.5C5.58 18.03 7 16 7 13.33"}],["path",{d:"M10.46 7.26C10.2 5.88 9.17 4.24 8 3h5.8a2 2 0 0 1 1.98 1.67l.23 1.4"}],["path",{d:"m16.01 17.93-.23 1.4A2 2 0 0 1 13.8 21H9.5a5.96 5.96 0 0 0 1.49-3.98"}]];var zF=[["path",{d:"M18 22V2.8a.8.8 0 0 0-1.17-.71L5.45 7.78a.8.8 0 0 0 0 1.44L18 15.5"}]];var NF=[["path",{d:"M6 22V2.8a.8.8 0 0 1 1.17-.71l11.38 5.69a.8.8 0 0 1 0 1.44L6 15.5"}]];var FF=[["path",{d:"M4 22V4a1 1 0 0 1 .4-.8A6 6 0 0 1 8 2c3 0 5 2 7.333 2q2 0 3.067-.8A1 1 0 0 1 20 4v10a1 1 0 0 1-.4.8A6 6 0 0 1 16 16c-3 0-5-2-8-2a6 6 0 0 0-4 1.528"}]];var HF=[["path",{d:"M12 2c1 3 2.5 3.5 3.5 4.5A5 5 0 0 1 17 10a5 5 0 1 1-10 0c0-.3 0-.6.1-.9a2 2 0 1 0 3.3-2C8 4.5 11 2 12 2Z"}],["path",{d:"m5 22 14-4"}],["path",{d:"m5 18 14 4"}]];var DF=[["path",{d:"M12 3q1 4 4 6.5t3 5.5a1 1 0 0 1-14 0 5 5 0 0 1 1-3 1 1 0 0 0 5 0c0-2-1.5-3-1.5-5q0-2 2.5-4"}]];var BF=[["path",{d:"M16 16v4a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2V10c0-2-2-2-2-4"}],["path",{d:"M7 2h11v4c0 2-2 2-2 4v1"}],["line",{x1:"11",x2:"18",y1:"6",y2:"6"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var OF=[["path",{d:"M18 6c0 2-2 2-2 4v10a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2V10c0-2-2-2-2-4V2h12z"}],["line",{x1:"6",x2:"18",y1:"6",y2:"6"}],["line",{x1:"12",x2:"12",y1:"12",y2:"12"}]];var TF=[["path",{d:"M10 2v2.343"}],["path",{d:"M14 2v6.343"}],["path",{d:"m2 2 20 20"}],["path",{d:"M20 20a2 2 0 0 1-2 2H6a2 2 0 0 1-1.755-2.96l5.227-9.563"}],["path",{d:"M6.453 15H15"}],["path",{d:"M8.5 2h7"}]];var PF=[["path",{d:"M14 2v6a2 2 0 0 0 .245.96l5.51 10.08A2 2 0 0 1 18 22H6a2 2 0 0 1-1.755-2.96l5.51-10.08A2 2 0 0 0 10 8V2"}],["path",{d:"M6.453 15h11.094"}],["path",{d:"M8.5 2h7"}]];var SF=[["path",{d:"M10 2v6.292a7 7 0 1 0 4 0V2"}],["path",{d:"M5 15h14"}],["path",{d:"M8.5 2h7"}]];var AF=[["path",{d:"m3 7 5 5-5 5V7"}],["path",{d:"m21 7-5 5 5 5V7"}],["path",{d:"M12 20v2"}],["path",{d:"M12 14v2"}],["path",{d:"M12 8v2"}],["path",{d:"M12 2v2"}]];var qF=[["path",{d:"M8 3H5a2 2 0 0 0-2 2v14c0 1.1.9 2 2 2h3"}],["path",{d:"M16 3h3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-3"}],["path",{d:"M12 20v2"}],["path",{d:"M12 14v2"}],["path",{d:"M12 8v2"}],["path",{d:"M12 2v2"}]];var EF=[["path",{d:"m17 3-5 5-5-5h10"}],["path",{d:"m17 21-5-5-5 5h10"}],["path",{d:"M4 12H2"}],["path",{d:"M10 12H8"}],["path",{d:"M16 12h-2"}],["path",{d:"M22 12h-2"}]];var CF=[["path",{d:"M21 8V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v3"}],["path",{d:"M21 16v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-3"}],["path",{d:"M4 12H2"}],["path",{d:"M10 12H8"}],["path",{d:"M16 12h-2"}],["path",{d:"M22 12h-2"}]];var xF=[["path",{d:"M12 5a3 3 0 1 1 3 3m-3-3a3 3 0 1 0-3 3m3-3v1M9 8a3 3 0 1 0 3 3M9 8h1m5 0a3 3 0 1 1-3 3m3-3h-1m-2 3v-1"}],["circle",{cx:"12",cy:"8",r:"2"}],["path",{d:"M12 10v12"}],["path",{d:"M12 22c4.2 0 7-1.667 7-5-4.2 0-7 1.667-7 5Z"}],["path",{d:"M12 22c-4.2 0-7-1.667-7-5 4.2 0 7 1.667 7 5Z"}]];var wF=[["circle",{cx:"12",cy:"12",r:"3"}],["path",{d:"M12 16.5A4.5 4.5 0 1 1 7.5 12 4.5 4.5 0 1 1 12 7.5a4.5 4.5 0 1 1 4.5 4.5 4.5 4.5 0 1 1-4.5 4.5"}],["path",{d:"M12 7.5V9"}],["path",{d:"M7.5 12H9"}],["path",{d:"M16.5 12H15"}],["path",{d:"M12 16.5V15"}],["path",{d:"m8 8 1.88 1.88"}],["path",{d:"M14.12 9.88 16 8"}],["path",{d:"m8 16 1.88-1.88"}],["path",{d:"M14.12 14.12 16 16"}]];var UF=[["circle",{cx:"12",cy:"12",r:"3"}],["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}]];var MF=[["path",{d:"M2 12h6"}],["path",{d:"M22 12h-6"}],["path",{d:"M12 2v2"}],["path",{d:"M12 8v2"}],["path",{d:"M12 14v2"}],["path",{d:"M12 20v2"}],["path",{d:"m19 9-3 3 3 3"}],["path",{d:"m5 15 3-3-3-3"}]];var RF=[["path",{d:"M12 22v-6"}],["path",{d:"M12 8V2"}],["path",{d:"M4 12H2"}],["path",{d:"M10 12H8"}],["path",{d:"M16 12h-2"}],["path",{d:"M22 12h-2"}],["path",{d:"m15 19-3-3-3 3"}],["path",{d:"m15 5-3 3-3-3"}]];var jF=[["circle",{cx:"15",cy:"19",r:"2"}],["path",{d:"M20.9 19.8A2 2 0 0 0 22 18V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2h5.1"}],["path",{d:"M15 11v-1"}],["path",{d:"M15 17v-2"}]];var LF=[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"}],["path",{d:"m9 13 2 2 4-4"}]];var yF=[["path",{d:"M16 14v2.2l1.6 1"}],["path",{d:"M7 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2"}],["circle",{cx:"16",cy:"16",r:"6"}]];var fF=[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"}],["path",{d:"M2 10h20"}]];var kF=[["path",{d:"M10 10.5 8 13l2 2.5"}],["path",{d:"m14 10.5 2 2.5-2 2.5"}],["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2z"}]];var X6=[["path",{d:"M10.3 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.98a2 2 0 0 1 1.69.9l.66 1.2A2 2 0 0 0 12 6h8a2 2 0 0 1 2 2v3.3"}],["path",{d:"m14.305 19.53.923-.382"}],["path",{d:"m15.228 16.852-.923-.383"}],["path",{d:"m16.852 15.228-.383-.923"}],["path",{d:"m16.852 20.772-.383.924"}],["path",{d:"m19.148 15.228.383-.923"}],["path",{d:"m19.53 21.696-.382-.924"}],["path",{d:"m20.772 16.852.924-.383"}],["path",{d:"m20.772 19.148.924.383"}],["circle",{cx:"18",cy:"18",r:"3"}]];var bF=[["path",{d:"M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z"}],["circle",{cx:"12",cy:"13",r:"1"}]];var hF=[["path",{d:"M9 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v5"}],["circle",{cx:"13",cy:"12",r:"2"}],["path",{d:"M18 19c-2.8 0-5-2.2-5-5v8"}],["circle",{cx:"20",cy:"19",r:"2"}]];var vF=[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"}],["path",{d:"M12 10v6"}],["path",{d:"m15 13-3 3-3-3"}]];var $F=[["circle",{cx:"12",cy:"13",r:"2"}],["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"}],["path",{d:"M14 13h3"}],["path",{d:"M7 13h3"}]];var gF=[["path",{d:"M10.638 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v3.417"}],["path",{d:"M14.62 18.8A2.25 2.25 0 1 1 18 15.836a2.25 2.25 0 1 1 3.38 2.966l-2.626 2.856a.998.998 0 0 1-1.507 0z"}]];var _F=[["path",{d:"M2 9V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-1"}],["path",{d:"M2 13h10"}],["path",{d:"m9 16 3-3-3-3"}]];var mF=[["path",{d:"M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z"}],["path",{d:"M8 10v4"}],["path",{d:"M12 10v2"}],["path",{d:"M16 10v6"}]];var uF=[["circle",{cx:"16",cy:"20",r:"2"}],["path",{d:"M10 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v2"}],["path",{d:"m22 14-4.5 4.5"}],["path",{d:"m21 15 1 1"}]];var dF=[["rect",{width:"8",height:"5",x:"14",y:"17",rx:"1"}],["path",{d:"M10 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v2.5"}],["path",{d:"M20 17v-2a2 2 0 1 0-4 0v2"}]];var cF=[["path",{d:"M9 13h6"}],["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"}]];var pF=[["path",{d:"m6 14 1.45-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.55 6a2 2 0 0 1-1.94 1.5H4a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h3.93a2 2 0 0 1 1.66.9l.82 1.2a2 2 0 0 0 1.66.9H18a2 2 0 0 1 2 2v2"}],["circle",{cx:"14",cy:"15",r:"1"}]];var nF=[["path",{d:"m6 14 1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2"}]];var iF=[["path",{d:"M2 7.5V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-1.5"}],["path",{d:"M2 13h10"}],["path",{d:"m5 10-3 3 3 3"}]];var W6=[["path",{d:"M2 11.5V5a2 2 0 0 1 2-2h3.9c.7 0 1.3.3 1.7.9l.8 1.2c.4.6 1 .9 1.7.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-9.5"}],["path",{d:"M11.378 13.626a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}]];var lF=[["path",{d:"M12 10v6"}],["path",{d:"M9 13h6"}],["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"}]];var sF=[["path",{d:"M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z"}],["circle",{cx:"12",cy:"13",r:"2"}],["path",{d:"M12 15v5"}]];var rF=[["circle",{cx:"11.5",cy:"12.5",r:"2.5"}],["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"}],["path",{d:"M13.3 14.3 15 16"}]];var aF=[["path",{d:"M10.7 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v4.1"}],["path",{d:"m21 21-1.9-1.9"}],["circle",{cx:"17",cy:"17",r:"3"}]];var tF=[["path",{d:"M2 9.35V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h7"}],["path",{d:"m8 16 3-3-3-3"}]];var oF=[["path",{d:"M9 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v.5"}],["path",{d:"M12 10v4h4"}],["path",{d:"m12 14 1.535-1.605a5 5 0 0 1 8 1.5"}],["path",{d:"M22 22v-4h-4"}],["path",{d:"m22 18-1.535 1.605a5 5 0 0 1-8-1.5"}]];var eF=[["path",{d:"M20 10a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1h-2.5a1 1 0 0 1-.8-.4l-.9-1.2A1 1 0 0 0 15 3h-2a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1Z"}],["path",{d:"M20 21a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1h-2.9a1 1 0 0 1-.88-.55l-.42-.85a1 1 0 0 0-.92-.6H13a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1Z"}],["path",{d:"M3 5a2 2 0 0 0 2 2h3"}],["path",{d:"M3 3v13a2 2 0 0 0 2 2h3"}]];var ZH=[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"}],["path",{d:"M12 10v6"}],["path",{d:"m9 13 3-3 3 3"}]];var JH=[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"}],["path",{d:"m9.5 10.5 5 5"}],["path",{d:"m14.5 10.5-5 5"}]];var KH=[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"}]];var YH=[["path",{d:"M20 5a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2H9a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h2.5a1.5 1.5 0 0 1 1.2.6l.6.8a1.5 1.5 0 0 0 1.2.6z"}],["path",{d:"M3 8.268a2 2 0 0 0-1 1.738V19a2 2 0 0 0 2 2h11a2 2 0 0 0 1.732-1"}]];var XH=[["path",{d:"M4 16v-2.38C4 11.5 2.97 10.5 3 8c.03-2.72 1.49-6 4.5-6C9.37 2 10 3.8 10 5.5c0 3.11-2 5.66-2 8.68V16a2 2 0 1 1-4 0Z"}],["path",{d:"M20 20v-2.38c0-2.12 1.03-3.12 1-5.62-.03-2.72-1.49-6-4.5-6C14.63 6 14 7.8 14 9.5c0 3.11 2 5.66 2 8.68V20a2 2 0 1 0 4 0Z"}],["path",{d:"M16 17h4"}],["path",{d:"M4 13h4"}]];var WH=[["path",{d:"M12 12H5a2 2 0 0 0-2 2v5"}],["circle",{cx:"13",cy:"19",r:"2"}],["circle",{cx:"5",cy:"19",r:"2"}],["path",{d:"M8 19h3m5-17v17h6M6 12V7c0-1.1.9-2 2-2h3l5 5"}]];var QH=[["path",{d:"m15 17 5-5-5-5"}],["path",{d:"M4 18v-2a4 4 0 0 1 4-4h12"}]];var VH=[["line",{x1:"22",x2:"2",y1:"6",y2:"6"}],["line",{x1:"22",x2:"2",y1:"18",y2:"18"}],["line",{x1:"6",x2:"6",y1:"2",y2:"22"}],["line",{x1:"18",x2:"18",y1:"2",y2:"22"}]];var GH=[["path",{d:"M5 16V9h14V2H5l14 14h-7m-7 0 7 7v-7m-7 0h7"}]];var IH=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M16 16s-1.5-2-4-2-4 2-4 2"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9"}]];var zH=[["path",{d:"M14 13h2a2 2 0 0 1 2 2v2a2 2 0 0 0 4 0v-6.998a2 2 0 0 0-.59-1.42L18 5"}],["path",{d:"M14 21V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v16"}],["path",{d:"M2 21h13"}],["path",{d:"M3 9h11"}]];var NH=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["rect",{width:"10",height:"8",x:"7",y:"8",rx:"1"}]];var FH=[["path",{d:"M13.354 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14v6a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341l1.218-1.348"}],["path",{d:"M16 6h6"}],["path",{d:"M19 3v6"}]];var Q6=[["path",{d:"M12.531 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14v6a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341l.427-.473"}],["path",{d:"m16.5 3.5 5 5"}],["path",{d:"m21.5 3.5-5 5"}]];var V6=[["path",{d:"M10 20a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341L21.74 4.67A1 1 0 0 0 21 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14z"}]];var HH=[["path",{d:"M2 7v10"}],["path",{d:"M6 5v14"}],["rect",{width:"12",height:"18",x:"10",y:"3",rx:"2"}]];var DH=[["path",{d:"M2 3v18"}],["rect",{width:"12",height:"18",x:"6",y:"3",rx:"2"}],["path",{d:"M22 3v18"}]];var BH=[["rect",{width:"18",height:"14",x:"3",y:"3",rx:"2"}],["path",{d:"M4 21h1"}],["path",{d:"M9 21h1"}],["path",{d:"M14 21h1"}],["path",{d:"M19 21h1"}]];var OH=[["path",{d:"M7 2h10"}],["path",{d:"M5 6h14"}],["rect",{width:"18",height:"12",x:"3",y:"10",rx:"2"}]];var TH=[["path",{d:"M3 2h18"}],["rect",{width:"18",height:"12",x:"3",y:"6",rx:"2"}],["path",{d:"M3 22h18"}]];var PH=[["line",{x1:"6",x2:"10",y1:"11",y2:"11"}],["line",{x1:"8",x2:"8",y1:"9",y2:"13"}],["line",{x1:"15",x2:"15.01",y1:"12",y2:"12"}],["line",{x1:"18",x2:"18.01",y1:"10",y2:"10"}],["path",{d:"M17.32 5H6.68a4 4 0 0 0-3.978 3.59c-.006.052-.01.101-.017.152C2.604 9.416 2 14.456 2 16a3 3 0 0 0 3 3c1 0 1.5-.5 2-1l1.414-1.414A2 2 0 0 1 9.828 16h4.344a2 2 0 0 1 1.414.586L17 18c.5.5 1 1 2 1a3 3 0 0 0 3-3c0-1.545-.604-6.584-.685-7.258-.007-.05-.011-.1-.017-.151A4 4 0 0 0 17.32 5z"}]];var SH=[["path",{d:"M11.146 15.854a1.207 1.207 0 0 1 1.708 0l1.56 1.56A2 2 0 0 1 15 18.828V21a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1v-2.172a2 2 0 0 1 .586-1.414z"}],["path",{d:"M18.828 15a2 2 0 0 1-1.414-.586l-1.56-1.56a1.207 1.207 0 0 1 0-1.708l1.56-1.56A2 2 0 0 1 18.828 9H21a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1z"}],["path",{d:"M6.586 14.414A2 2 0 0 1 5.172 15H3a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h2.172a2 2 0 0 1 1.414.586l1.56 1.56a1.207 1.207 0 0 1 0 1.708z"}],["path",{d:"M9 3a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v2.172a2 2 0 0 1-.586 1.414l-1.56 1.56a1.207 1.207 0 0 1-1.708 0l-1.56-1.56A2 2 0 0 1 9 5.172z"}]];var AH=[["line",{x1:"6",x2:"10",y1:"12",y2:"12"}],["line",{x1:"8",x2:"8",y1:"10",y2:"14"}],["line",{x1:"15",x2:"15.01",y1:"13",y2:"13"}],["line",{x1:"18",x2:"18.01",y1:"11",y2:"11"}],["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2"}]];var qH=[["path",{d:"m12 14 4-4"}],["path",{d:"M3.34 19a10 10 0 1 1 17.32 0"}]];var EH=[["path",{d:"m14 13-8.381 8.38a1 1 0 0 1-3.001-3l8.384-8.381"}],["path",{d:"m16 16 6-6"}],["path",{d:"m21.5 10.5-8-8"}],["path",{d:"m8 8 6-6"}],["path",{d:"m8.5 7.5 8 8"}]];var CH=[["path",{d:"M10.5 3 8 9l4 13 4-13-2.5-6"}],["path",{d:"M17 3a2 2 0 0 1 1.6.8l3 4a2 2 0 0 1 .013 2.382l-7.99 10.986a2 2 0 0 1-3.247 0l-7.99-10.986A2 2 0 0 1 2.4 7.8l2.998-3.997A2 2 0 0 1 7 3z"}],["path",{d:"M2 9h20"}]];var xH=[["path",{d:"M11.5 21a7.5 7.5 0 1 1 7.35-9"}],["path",{d:"M13 12V3"}],["path",{d:"M4 21h16"}],["path",{d:"M9 12V3"}]];var wH=[["path",{d:"M9 10h.01"}],["path",{d:"M15 10h.01"}],["path",{d:"M12 2a8 8 0 0 0-8 8v12l3-3 2.5 2.5L12 19l2.5 2.5L17 19l3 3V10a8 8 0 0 0-8-8z"}]];var UH=[["rect",{x:"3",y:"8",width:"18",height:"4",rx:"1"}],["path",{d:"M12 8v13"}],["path",{d:"M19 12v7a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-7"}],["path",{d:"M7.5 8a2.5 2.5 0 0 1 0-5A4.8 8 0 0 1 12 8a4.8 8 0 0 1 4.5-5 2.5 2.5 0 0 1 0 5"}]];var MH=[["path",{d:"M6 3v12"}],["path",{d:"M18 9a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"}],["path",{d:"M6 21a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"}],["path",{d:"M15 6a9 9 0 0 0-9 9"}],["path",{d:"M18 15v6"}],["path",{d:"M21 18h-6"}]];var RH=[["line",{x1:"6",x2:"6",y1:"3",y2:"15"}],["circle",{cx:"18",cy:"6",r:"3"}],["circle",{cx:"6",cy:"18",r:"3"}],["path",{d:"M18 9a9 9 0 0 1-9 9"}]];var G6=[["circle",{cx:"12",cy:"12",r:"3"}],["line",{x1:"3",x2:"9",y1:"12",y2:"12"}],["line",{x1:"15",x2:"21",y1:"12",y2:"12"}]];var jH=[["path",{d:"M12 3v6"}],["circle",{cx:"12",cy:"12",r:"3"}],["path",{d:"M12 15v6"}]];var LH=[["circle",{cx:"5",cy:"6",r:"3"}],["path",{d:"M12 6h5a2 2 0 0 1 2 2v7"}],["path",{d:"m15 9-3-3 3-3"}],["circle",{cx:"19",cy:"18",r:"3"}],["path",{d:"M12 18H7a2 2 0 0 1-2-2V9"}],["path",{d:"m9 15 3 3-3 3"}]];var yH=[["circle",{cx:"18",cy:"18",r:"3"}],["circle",{cx:"6",cy:"6",r:"3"}],["path",{d:"M13 6h3a2 2 0 0 1 2 2v7"}],["path",{d:"M11 18H8a2 2 0 0 1-2-2V9"}]];var fH=[["circle",{cx:"12",cy:"18",r:"3"}],["circle",{cx:"6",cy:"6",r:"3"}],["circle",{cx:"18",cy:"6",r:"3"}],["path",{d:"M18 9v2c0 .6-.4 1-1 1H7c-.6 0-1-.4-1-1V9"}],["path",{d:"M12 12v3"}]];var kH=[["circle",{cx:"5",cy:"6",r:"3"}],["path",{d:"M5 9v6"}],["circle",{cx:"5",cy:"18",r:"3"}],["path",{d:"M12 3v18"}],["circle",{cx:"19",cy:"6",r:"3"}],["path",{d:"M16 15.7A9 9 0 0 0 19 9"}]];var bH=[["circle",{cx:"18",cy:"18",r:"3"}],["circle",{cx:"6",cy:"6",r:"3"}],["path",{d:"M6 21V9a9 9 0 0 0 9 9"}]];var hH=[["circle",{cx:"5",cy:"6",r:"3"}],["path",{d:"M5 9v12"}],["circle",{cx:"19",cy:"18",r:"3"}],["path",{d:"m15 9-3-3 3-3"}],["path",{d:"M12 6h5a2 2 0 0 1 2 2v7"}]];var vH=[["circle",{cx:"5",cy:"6",r:"3"}],["path",{d:"M5 9v12"}],["path",{d:"m15 9-3-3 3-3"}],["path",{d:"M12 6h5a2 2 0 0 1 2 2v3"}],["path",{d:"M19 15v6"}],["path",{d:"M22 18h-6"}]];var $H=[["circle",{cx:"6",cy:"6",r:"3"}],["path",{d:"M6 9v12"}],["path",{d:"m21 3-6 6"}],["path",{d:"m21 9-6-6"}],["path",{d:"M18 11.5V15"}],["circle",{cx:"18",cy:"18",r:"3"}]];var gH=[["circle",{cx:"6",cy:"6",r:"3"}],["path",{d:"M6 9v12"}],["path",{d:"M13 6h3a2 2 0 0 1 2 2v3"}],["path",{d:"M18 15v6"}],["path",{d:"M21 18h-6"}]];var _H=[["circle",{cx:"18",cy:"18",r:"3"}],["circle",{cx:"6",cy:"6",r:"3"}],["path",{d:"M18 6V5"}],["path",{d:"M18 11v-1"}],["line",{x1:"6",x2:"6",y1:"9",y2:"21"}]];var mH=[["circle",{cx:"18",cy:"18",r:"3"}],["circle",{cx:"6",cy:"6",r:"3"}],["path",{d:"M13 6h3a2 2 0 0 1 2 2v7"}],["line",{x1:"6",x2:"6",y1:"9",y2:"21"}]];var uH=[["path",{d:"M15 22v-4a4.8 4.8 0 0 0-1-3.5c3 0 6-2 6-5.5.08-1.25-.27-2.48-1-3.5.28-1.15.28-2.35 0-3.5 0 0-1 0-3 1.5-2.64-.5-5.36-.5-8 0C6 2 5 2 5 2c-.3 1.15-.3 2.35 0 3.5A5.403 5.403 0 0 0 4 9c0 3.5 3 5.5 6 5.5-.39.49-.68 1.05-.85 1.65-.17.6-.22 1.23-.15 1.85v4"}],["path",{d:"M9 18c-4.51 2-5-2-7-2"}]];var dH=[["path",{d:"m22 13.29-3.33-10a.42.42 0 0 0-.14-.18.38.38 0 0 0-.22-.11.39.39 0 0 0-.23.07.42.42 0 0 0-.14.18l-2.26 6.67H8.32L6.1 3.26a.42.42 0 0 0-.1-.18.38.38 0 0 0-.26-.08.39.39 0 0 0-.23.07.42.42 0 0 0-.14.18L2 13.29a.74.74 0 0 0 .27.83L12 21l9.69-6.88a.71.71 0 0 0 .31-.83Z"}]];var cH=[["path",{d:"M5.116 4.104A1 1 0 0 1 6.11 3h11.78a1 1 0 0 1 .994 1.105L17.19 20.21A2 2 0 0 1 15.2 22H8.8a2 2 0 0 1-2-1.79z"}],["path",{d:"M6 12a5 5 0 0 1 6 0 5 5 0 0 0 6 0"}]];var pH=[["circle",{cx:"6",cy:"15",r:"4"}],["circle",{cx:"18",cy:"15",r:"4"}],["path",{d:"M14 15a2 2 0 0 0-2-2 2 2 0 0 0-2 2"}],["path",{d:"M2.5 13 5 7c.7-1.3 1.4-2 3-2"}],["path",{d:"M21.5 13 19 7c-.7-1.3-1.5-2-3-2"}]];var nH=[["path",{d:"M15.686 15A14.5 14.5 0 0 1 12 22a14.5 14.5 0 0 1 0-20 10 10 0 1 0 9.542 13"}],["path",{d:"M2 12h8.5"}],["path",{d:"M20 6V4a2 2 0 1 0-4 0v2"}],["rect",{width:"8",height:"5",x:"14",y:"6",rx:"1"}]];var iH=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20"}],["path",{d:"M2 12h20"}]];var lH=[["path",{d:"M12 13V2l8 4-8 4"}],["path",{d:"M20.561 10.222a9 9 0 1 1-12.55-5.29"}],["path",{d:"M8.002 9.997a5 5 0 1 0 8.9 2.02"}]];var sH=[["path",{d:"M2 21V3"}],["path",{d:"M2 5h18a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2.26"}],["path",{d:"M7 17v3a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1v-3"}],["circle",{cx:"16",cy:"11",r:"2"}],["circle",{cx:"8",cy:"11",r:"2"}]];var rH=[["path",{d:"M21.42 10.922a1 1 0 0 0-.019-1.838L12.83 5.18a2 2 0 0 0-1.66 0L2.6 9.08a1 1 0 0 0 0 1.832l8.57 3.908a2 2 0 0 0 1.66 0z"}],["path",{d:"M22 10v6"}],["path",{d:"M6 12.5V16a6 3 0 0 0 12 0v-3.5"}]];var aH=[["path",{d:"M22 5V2l-5.89 5.89"}],["circle",{cx:"16.6",cy:"15.89",r:"3"}],["circle",{cx:"8.11",cy:"7.4",r:"3"}],["circle",{cx:"12.35",cy:"11.65",r:"3"}],["circle",{cx:"13.91",cy:"5.85",r:"3"}],["circle",{cx:"18.15",cy:"10.09",r:"3"}],["circle",{cx:"6.56",cy:"13.2",r:"3"}],["circle",{cx:"10.8",cy:"17.44",r:"3"}],["circle",{cx:"5",cy:"19",r:"3"}]];var I6=[["path",{d:"M12 3v17a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6a1 1 0 0 1-1 1H3"}],["path",{d:"m16 19 2 2 4-4"}]];var z6=[["path",{d:"M12 3v17a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6a1 1 0 0 1-1 1H3"}],["path",{d:"M16 19h6"}],["path",{d:"M19 22v-6"}]];var N6=[["path",{d:"M12 3v17a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6a1 1 0 0 1-1 1H3"}],["path",{d:"m16 16 5 5"}],["path",{d:"m16 21 5-5"}]];var F6=[["path",{d:"M12 3v18"}],["path",{d:"M3 12h18"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]];var tH=[["path",{d:"M15 3v18"}],["path",{d:"M3 12h18"}],["path",{d:"M9 3v18"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]];var I5=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 9h18"}],["path",{d:"M3 15h18"}],["path",{d:"M9 3v18"}],["path",{d:"M15 3v18"}]];var oH=[["circle",{cx:"12",cy:"9",r:"1"}],["circle",{cx:"19",cy:"9",r:"1"}],["circle",{cx:"5",cy:"9",r:"1"}],["circle",{cx:"12",cy:"15",r:"1"}],["circle",{cx:"19",cy:"15",r:"1"}],["circle",{cx:"5",cy:"15",r:"1"}]];var eH=[["circle",{cx:"9",cy:"12",r:"1"}],["circle",{cx:"9",cy:"5",r:"1"}],["circle",{cx:"9",cy:"19",r:"1"}],["circle",{cx:"15",cy:"12",r:"1"}],["circle",{cx:"15",cy:"5",r:"1"}],["circle",{cx:"15",cy:"19",r:"1"}]];var ZD=[["circle",{cx:"12",cy:"5",r:"1"}],["circle",{cx:"19",cy:"5",r:"1"}],["circle",{cx:"5",cy:"5",r:"1"}],["circle",{cx:"12",cy:"12",r:"1"}],["circle",{cx:"19",cy:"12",r:"1"}],["circle",{cx:"5",cy:"12",r:"1"}],["circle",{cx:"12",cy:"19",r:"1"}],["circle",{cx:"19",cy:"19",r:"1"}],["circle",{cx:"5",cy:"19",r:"1"}]];var JD=[["path",{d:"M3 7V5c0-1.1.9-2 2-2h2"}],["path",{d:"M17 3h2c1.1 0 2 .9 2 2v2"}],["path",{d:"M21 17v2c0 1.1-.9 2-2 2h-2"}],["path",{d:"M7 21H5c-1.1 0-2-.9-2-2v-2"}],["rect",{width:"7",height:"5",x:"7",y:"7",rx:"1"}],["rect",{width:"7",height:"5",x:"10",y:"12",rx:"1"}]];var KD=[["path",{d:"m11.9 12.1 4.514-4.514"}],["path",{d:"M20.1 2.3a1 1 0 0 0-1.4 0l-1.114 1.114A2 2 0 0 0 17 4.828v1.344a2 2 0 0 1-.586 1.414A2 2 0 0 1 17.828 7h1.344a2 2 0 0 0 1.414-.586L21.7 5.3a1 1 0 0 0 0-1.4z"}],["path",{d:"m6 16 2 2"}],["path",{d:"M8.23 9.85A3 3 0 0 1 11 8a5 5 0 0 1 5 5 3 3 0 0 1-1.85 2.77l-.92.38A2 2 0 0 0 12 18a4 4 0 0 1-4 4 6 6 0 0 1-6-6 4 4 0 0 1 4-4 2 2 0 0 0 1.85-1.23z"}]];var YD=[["path",{d:"M13.144 21.144A7.274 10.445 45 1 0 2.856 10.856"}],["path",{d:"M13.144 21.144A7.274 4.365 45 0 0 2.856 10.856a7.274 4.365 45 0 0 10.288 10.288"}],["path",{d:"M16.565 10.435 18.6 8.4a2.501 2.501 0 1 0 1.65-4.65 2.5 2.5 0 1 0-4.66 1.66l-2.024 2.025"}],["path",{d:"m8.5 16.5-1-1"}]];var XD=[["path",{d:"M12 16H4a2 2 0 1 1 0-4h16a2 2 0 1 1 0 4h-4.25"}],["path",{d:"M5 12a2 2 0 0 1-2-2 9 7 0 0 1 18 0 2 2 0 0 1-2 2"}],["path",{d:"M5 16a2 2 0 0 0-2 2 3 3 0 0 0 3 3h12a3 3 0 0 0 3-3 2 2 0 0 0-2-2q0 0 0 0"}],["path",{d:"m6.67 12 6.13 4.6a2 2 0 0 0 2.8-.4l3.15-4.2"}]];var WD=[["path",{d:"m15 12-9.373 9.373a1 1 0 0 1-3.001-3L12 9"}],["path",{d:"m18 15 4-4"}],["path",{d:"m21.5 11.5-1.914-1.914A2 2 0 0 1 19 8.172v-.344a2 2 0 0 0-.586-1.414l-1.657-1.657A6 6 0 0 0 12.516 3H9l1.243 1.243A6 6 0 0 1 12 8.485V10l2 2h1.172a2 2 0 0 1 1.414.586L18.5 14.5"}]];var QD=[["path",{d:"M11 15h2a2 2 0 1 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 17"}],["path",{d:"m7 21 1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a2 2 0 0 0-2.75-2.91l-4.2 3.9"}],["path",{d:"m2 16 6 6"}],["circle",{cx:"16",cy:"9",r:"2.9"}],["circle",{cx:"6",cy:"5",r:"3"}]];var VD=[["path",{d:"M12.035 17.012a3 3 0 0 0-3-3l-.311-.002a.72.72 0 0 1-.505-1.229l1.195-1.195A2 2 0 0 1 10.828 11H12a2 2 0 0 0 0-4H9.243a3 3 0 0 0-2.122.879l-2.707 2.707A4.83 4.83 0 0 0 3 14a8 8 0 0 0 8 8h2a8 8 0 0 0 8-8V7a2 2 0 1 0-4 0v2a2 2 0 1 0 4 0"}],["path",{d:"M13.888 9.662A2 2 0 0 0 17 8V5A2 2 0 1 0 13 5"}],["path",{d:"M9 5A2 2 0 1 0 5 5V10"}],["path",{d:"M9 7V4A2 2 0 1 1 13 4V7.268"}]];var GD=[["path",{d:"M11 14h2a2 2 0 0 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 16"}],["path",{d:"m14.45 13.39 5.05-4.694C20.196 8 21 6.85 21 5.75a2.75 2.75 0 0 0-4.797-1.837.276.276 0 0 1-.406 0A2.75 2.75 0 0 0 11 5.75c0 1.2.802 2.248 1.5 2.946L16 11.95"}],["path",{d:"m2 15 6 6"}],["path",{d:"m7 20 1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a1 1 0 0 0-2.75-2.91"}]];var H6=[["path",{d:"M18 11.5V9a2 2 0 0 0-2-2a2 2 0 0 0-2 2v1.4"}],["path",{d:"M14 10V8a2 2 0 0 0-2-2a2 2 0 0 0-2 2v2"}],["path",{d:"M10 9.9V9a2 2 0 0 0-2-2a2 2 0 0 0-2 2v5"}],["path",{d:"M6 14a2 2 0 0 0-2-2a2 2 0 0 0-2 2"}],["path",{d:"M18 11a2 2 0 1 1 4 0v3a8 8 0 0 1-8 8h-4a8 8 0 0 1-8-8 2 2 0 1 1 4 0"}]];var D6=[["path",{d:"M11 12h2a2 2 0 1 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 14"}],["path",{d:"m7 18 1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a2 2 0 0 0-2.75-2.91l-4.2 3.9"}],["path",{d:"m2 13 6 6"}]];var ID=[["path",{d:"M18 12.5V10a2 2 0 0 0-2-2a2 2 0 0 0-2 2v1.4"}],["path",{d:"M14 11V9a2 2 0 1 0-4 0v2"}],["path",{d:"M10 10.5V5a2 2 0 1 0-4 0v9"}],["path",{d:"m7 15-1.76-1.76a2 2 0 0 0-2.83 2.82l3.6 3.6C7.5 21.14 9.2 22 12 22h2a8 8 0 0 0 8-8V7a2 2 0 1 0-4 0v5"}]];var zD=[["path",{d:"M12 3V2"}],["path",{d:"m15.4 17.4 3.2-2.8a2 2 0 1 1 2.8 2.9l-3.6 3.3c-.7.8-1.7 1.2-2.8 1.2h-4c-1.1 0-2.1-.4-2.8-1.2l-1.302-1.464A1 1 0 0 0 6.151 19H5"}],["path",{d:"M2 14h12a2 2 0 0 1 0 4h-2"}],["path",{d:"M4 10h16"}],["path",{d:"M5 10a7 7 0 0 1 14 0"}],["path",{d:"M5 14v6a1 1 0 0 1-1 1H2"}]];var ND=[["path",{d:"M18 11V6a2 2 0 0 0-2-2a2 2 0 0 0-2 2"}],["path",{d:"M14 10V4a2 2 0 0 0-2-2a2 2 0 0 0-2 2v2"}],["path",{d:"M10 10.5V6a2 2 0 0 0-2-2a2 2 0 0 0-2 2v8"}],["path",{d:"M18 8a2 2 0 1 1 4 0v6a8 8 0 0 1-8 8h-2c-2.8 0-4.5-.86-5.99-2.34l-3.6-3.6a2 2 0 0 1 2.83-2.82L7 15"}]];var FD=[["path",{d:"M2.048 18.566A2 2 0 0 0 4 21h16a2 2 0 0 0 1.952-2.434l-2-9A2 2 0 0 0 18 8H6a2 2 0 0 0-1.952 1.566z"}],["path",{d:"M8 11V6a4 4 0 0 1 8 0v5"}]];var HD=[["path",{d:"m11 17 2 2a1 1 0 1 0 3-3"}],["path",{d:"m14 14 2.5 2.5a1 1 0 1 0 3-3l-3.88-3.88a3 3 0 0 0-4.24 0l-.88.88a1 1 0 1 1-3-3l2.81-2.81a5.79 5.79 0 0 1 7.06-.87l.47.28a2 2 0 0 0 1.42.25L21 4"}],["path",{d:"m21 3 1 11h-2"}],["path",{d:"M3 3 2 14l6.5 6.5a1 1 0 1 0 3-3"}],["path",{d:"M3 4h8"}]];var DD=[["path",{d:"M12 2v8"}],["path",{d:"m16 6-4 4-4-4"}],["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2"}],["path",{d:"M6 18h.01"}],["path",{d:"M10 18h.01"}]];var BD=[["path",{d:"m16 6-4-4-4 4"}],["path",{d:"M12 2v8"}],["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2"}],["path",{d:"M6 18h.01"}],["path",{d:"M10 18h.01"}]];var OD=[["line",{x1:"22",x2:"2",y1:"12",y2:"12"}],["path",{d:"M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"}],["line",{x1:"6",x2:"6.01",y1:"16",y2:"16"}],["line",{x1:"10",x2:"10.01",y1:"16",y2:"16"}]];var TD=[["path",{d:"M10 10V5a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v5"}],["path",{d:"M14 6a6 6 0 0 1 6 6v3"}],["path",{d:"M4 15v-3a6 6 0 0 1 6-6"}],["rect",{x:"2",y:"15",width:"20",height:"4",rx:"1"}]];var PD=[["line",{x1:"4",x2:"20",y1:"9",y2:"9"}],["line",{x1:"4",x2:"20",y1:"15",y2:"15"}],["line",{x1:"10",x2:"8",y1:"3",y2:"21"}],["line",{x1:"16",x2:"14",y1:"3",y2:"21"}]];var SD=[["path",{d:"M14 18a2 2 0 0 0-4 0"}],["path",{d:"m19 11-2.11-6.657a2 2 0 0 0-2.752-1.148l-1.276.61A2 2 0 0 1 12 4H8.5a2 2 0 0 0-1.925 1.456L5 11"}],["path",{d:"M2 11h20"}],["circle",{cx:"17",cy:"18",r:"3"}],["circle",{cx:"7",cy:"18",r:"3"}]];var AD=[["path",{d:"m5.2 6.2 1.4 1.4"}],["path",{d:"M2 13h2"}],["path",{d:"M20 13h2"}],["path",{d:"m17.4 7.6 1.4-1.4"}],["path",{d:"M22 17H2"}],["path",{d:"M22 21H2"}],["path",{d:"M16 13a4 4 0 0 0-8 0"}],["path",{d:"M12 5V2.5"}]];var qD=[["path",{d:"M22 9a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h1l2 2h12l2-2h1a1 1 0 0 0 1-1Z"}],["path",{d:"M7.5 12h9"}]];var ED=[["path",{d:"M4 12h8"}],["path",{d:"M4 18V6"}],["path",{d:"M12 18V6"}],["path",{d:"m17 12 3-2v8"}]];var CD=[["path",{d:"M4 12h8"}],["path",{d:"M4 18V6"}],["path",{d:"M12 18V6"}],["path",{d:"M21 18h-4c0-4 4-3 4-6 0-1.5-2-2.5-4-1"}]];var xD=[["path",{d:"M4 12h8"}],["path",{d:"M4 18V6"}],["path",{d:"M12 18V6"}],["path",{d:"M17.5 10.5c1.7-1 3.5 0 3.5 1.5a2 2 0 0 1-2 2"}],["path",{d:"M17 17.5c2 1.5 4 .3 4-1.5a2 2 0 0 0-2-2"}]];var wD=[["path",{d:"M12 18V6"}],["path",{d:"M17 10v3a1 1 0 0 0 1 1h3"}],["path",{d:"M21 10v8"}],["path",{d:"M4 12h8"}],["path",{d:"M4 18V6"}]];var UD=[["path",{d:"M4 12h8"}],["path",{d:"M4 18V6"}],["path",{d:"M12 18V6"}],["path",{d:"M17 13v-3h4"}],["path",{d:"M17 17.7c.4.2.8.3 1.3.3 1.5 0 2.7-1.1 2.7-2.5S19.8 13 18.3 13H17"}]];var MD=[["path",{d:"M4 12h8"}],["path",{d:"M4 18V6"}],["path",{d:"M12 18V6"}],["circle",{cx:"19",cy:"16",r:"2"}],["path",{d:"M20 10c-2 2-3 3.5-3 6"}]];var RD=[["path",{d:"M6 12h12"}],["path",{d:"M6 20V4"}],["path",{d:"M18 20V4"}]];var jD=[["path",{d:"M21 14h-1.343"}],["path",{d:"M9.128 3.47A9 9 0 0 1 21 12v3.343"}],["path",{d:"m2 2 20 20"}],["path",{d:"M20.414 20.414A2 2 0 0 1 19 21h-1a2 2 0 0 1-2-2v-3"}],["path",{d:"M3 14h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-7a9 9 0 0 1 2.636-6.364"}]];var LD=[["path",{d:"M3 14h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-7a9 9 0 0 1 18 0v7a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3"}]];var yD=[["path",{d:"M3 11h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-5Zm0 0a9 9 0 1 1 18 0m0 0v5a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3Z"}],["path",{d:"M21 16v2a4 4 0 0 1-4 4h-5"}]];var fD=[["path",{d:"M12.409 5.824c-.702.792-1.15 1.496-1.415 2.166l2.153 2.156a.5.5 0 0 1 0 .707l-2.293 2.293a.5.5 0 0 0 0 .707L12 15"}],["path",{d:"M13.508 20.313a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5a5.5 5.5 0 0 1 9.591-3.677.6.6 0 0 0 .818.001A5.5 5.5 0 0 1 22 9.5c0 2.29-1.5 4-3 5.5z"}]];var kD=[["path",{d:"M19.414 14.414C21 12.828 22 11.5 22 9.5a5.5 5.5 0 0 0-9.591-3.676.6.6 0 0 1-.818.001A5.5 5.5 0 0 0 2 9.5c0 2.3 1.5 4 3 5.5l5.535 5.362a2 2 0 0 0 2.879.052 2.12 2.12 0 0 0-.004-3 2.124 2.124 0 1 0 3-3 2.124 2.124 0 0 0 3.004 0 2 2 0 0 0 0-2.828l-1.881-1.882a2.41 2.41 0 0 0-3.409 0l-1.71 1.71a2 2 0 0 1-2.828 0 2 2 0 0 1 0-2.828l2.823-2.762"}]];var bD=[["path",{d:"m14.876 18.99-1.368 1.323a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5a5.5 5.5 0 0 1 9.591-3.676.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5a5.2 5.2 0 0 1-.244 1.572"}],["path",{d:"M15 15h6"}]];var hD=[["path",{d:"M10.5 4.893a5.5 5.5 0 0 1 1.091.931.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5c0 1.872-1.002 3.356-2.187 4.655"}],["path",{d:"m16.967 16.967-3.459 3.346a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5a5.5 5.5 0 0 1 2.747-4.761"}],["path",{d:"m2 2 20 20"}]];var vD=[["path",{d:"m14.479 19.374-.971.939a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5a5.5 5.5 0 0 1 9.591-3.676.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5a5.2 5.2 0 0 1-.219 1.49"}],["path",{d:"M15 15h6"}],["path",{d:"M18 12v6"}]];var $D=[["path",{d:"M2 9.5a5.5 5.5 0 0 1 9.591-3.676.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5c0 2.29-1.5 4-3 5.5l-5.492 5.313a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5"}],["path",{d:"M3.22 13H9.5l.5-1 2 4.5 2-7 1.5 3.5h5.27"}]];var gD=[["path",{d:"M2 9.5a5.5 5.5 0 0 1 9.591-3.676.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5c0 2.29-1.5 4-3 5.5l-5.492 5.313a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5"}]];var _D=[["path",{d:"M11 8c2-3-2-3 0-6"}],["path",{d:"M15.5 8c2-3-2-3 0-6"}],["path",{d:"M6 10h.01"}],["path",{d:"M6 14h.01"}],["path",{d:"M10 16v-4"}],["path",{d:"M14 16v-4"}],["path",{d:"M18 16v-4"}],["path",{d:"M20 6a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3"}],["path",{d:"M5 20v2"}],["path",{d:"M19 20v2"}]];var mD=[["path",{d:"m9 11-6 6v3h9l3-3"}],["path",{d:"m22 12-4.6 4.6a2 2 0 0 1-2.8 0l-5.2-5.2a2 2 0 0 1 0-2.8L14 4"}]];var uD=[["path",{d:"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"}]];var dD=[["path",{d:"M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8"}],["path",{d:"M3 3v5h5"}],["path",{d:"M12 7v5l4 2"}]];var cD=[["path",{d:"M10.82 16.12c1.69.6 3.91.79 5.18.85.28.01.53-.09.7-.27"}],["path",{d:"M11.14 20.57c.52.24 2.44 1.12 4.08 1.37.46.06.86-.25.9-.71.12-1.52-.3-3.43-.5-4.28"}],["path",{d:"M16.13 21.05c1.65.63 3.68.84 4.87.91a.9.9 0 0 0 .7-.26"}],["path",{d:"M17.99 5.52a20.83 20.83 0 0 1 3.15 4.5.8.8 0 0 1-.68 1.13c-1.17.1-2.5.02-3.9-.25"}],["path",{d:"M20.57 11.14c.24.52 1.12 2.44 1.37 4.08.04.3-.08.59-.31.75"}],["path",{d:"M4.93 4.93a10 10 0 0 0-.67 13.4c.35.43.96.4 1.17-.12.69-1.71 1.07-5.07 1.07-6.71 1.34.45 3.1.9 4.88.62a.85.85 0 0 0 .48-.24"}],["path",{d:"M5.52 17.99c1.05.95 2.91 2.42 4.5 3.15a.8.8 0 0 0 1.13-.68c.2-2.34-.33-5.3-1.57-8.28"}],["path",{d:"M8.35 2.68a10 10 0 0 1 9.98 1.58c.43.35.4.96-.12 1.17-1.5.6-4.3.98-6.07 1.05"}],["path",{d:"m2 2 20 20"}]];var pD=[["path",{d:"M10.82 16.12c1.69.6 3.91.79 5.18.85.55.03 1-.42.97-.97-.06-1.27-.26-3.5-.85-5.18"}],["path",{d:"M11.5 6.5c1.64 0 5-.38 6.71-1.07.52-.2.55-.82.12-1.17A10 10 0 0 0 4.26 18.33c.35.43.96.4 1.17-.12.69-1.71 1.07-5.07 1.07-6.71 1.34.45 3.1.9 4.88.62a.88.88 0 0 0 .73-.74c.3-2.14-.15-3.5-.61-4.88"}],["path",{d:"M15.62 16.95c.2.85.62 2.76.5 4.28a.77.77 0 0 1-.9.7 16.64 16.64 0 0 1-4.08-1.36"}],["path",{d:"M16.13 21.05c1.65.63 3.68.84 4.87.91a.9.9 0 0 0 .96-.96 17.68 17.68 0 0 0-.9-4.87"}],["path",{d:"M16.94 15.62c.86.2 2.77.62 4.29.5a.77.77 0 0 0 .7-.9 16.64 16.64 0 0 0-1.36-4.08"}],["path",{d:"M17.99 5.52a20.82 20.82 0 0 1 3.15 4.5.8.8 0 0 1-.68 1.13c-2.33.2-5.3-.32-8.27-1.57"}],["path",{d:"M4.93 4.93 3 3a.7.7 0 0 1 0-1"}],["path",{d:"M9.58 12.18c1.24 2.98 1.77 5.95 1.57 8.28a.8.8 0 0 1-1.13.68 20.82 20.82 0 0 1-4.5-3.15"}]];var nD=[["path",{d:"M12 7v4"}],["path",{d:"M14 21v-3a2 2 0 0 0-4 0v3"}],["path",{d:"M14 9h-4"}],["path",{d:"M18 11h2a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-9a2 2 0 0 1 2-2h2"}],["path",{d:"M18 21V5a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16"}]];var iD=[["path",{d:"M10 22v-6.57"}],["path",{d:"M12 11h.01"}],["path",{d:"M12 7h.01"}],["path",{d:"M14 15.43V22"}],["path",{d:"M15 16a5 5 0 0 0-6 0"}],["path",{d:"M16 11h.01"}],["path",{d:"M16 7h.01"}],["path",{d:"M8 11h.01"}],["path",{d:"M8 7h.01"}],["rect",{x:"4",y:"2",width:"16",height:"20",rx:"2"}]];var lD=[["path",{d:"M5 22h14"}],["path",{d:"M5 2h14"}],["path",{d:"M17 22v-4.172a2 2 0 0 0-.586-1.414L12 12l-4.414 4.414A2 2 0 0 0 7 17.828V22"}],["path",{d:"M7 2v4.172a2 2 0 0 0 .586 1.414L12 12l4.414-4.414A2 2 0 0 0 17 6.172V2"}]];var sD=[["path",{d:"M10 12V8.964"}],["path",{d:"M14 12V8.964"}],["path",{d:"M15 12a1 1 0 0 1 1 1v2a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2v-2a1 1 0 0 1 1-1z"}],["path",{d:"M8.5 21H5a2 2 0 0 1-2-2v-9a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2h-5a2 2 0 0 1-2-2v-2"}]];var rD=[["path",{d:"M8.62 13.8A2.25 2.25 0 1 1 12 10.836a2.25 2.25 0 1 1 3.38 2.966l-2.626 2.856a.998.998 0 0 1-1.507 0z"}],["path",{d:"M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"}]];var aD=[["path",{d:"M9.5 13.866a4 4 0 0 1 5 .01"}],["path",{d:"M12 17h.01"}],["path",{d:"M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"}],["path",{d:"M7 10.754a8 8 0 0 1 10 0"}]];var tD=[["path",{d:"M12.35 21H5a2 2 0 0 1-2-2v-9a2 2 0 0 1 .71-1.53l7-6a2 2 0 0 1 2.58 0l7 6A2 2 0 0 1 21 10v2.35"}],["path",{d:"M14.8 12.4A1 1 0 0 0 14 12h-4a1 1 0 0 0-1 1v8"}],["path",{d:"M15 18h6"}],["path",{d:"M18 15v6"}]];var B6=[["path",{d:"M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8"}],["path",{d:"M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"}]];var O6=[["path",{d:"M12 17c5 0 8-2.69 8-6H4c0 3.31 3 6 8 6m-4 4h8m-4-3v3M5.14 11a3.5 3.5 0 1 1 6.71 0"}],["path",{d:"M12.14 11a3.5 3.5 0 1 1 6.71 0"}],["path",{d:"M15.5 6.5a3.5 3.5 0 1 0-7 0"}]];var T6=[["path",{d:"m7 11 4.08 10.35a1 1 0 0 0 1.84 0L17 11"}],["path",{d:"M17 7A5 5 0 0 0 7 7"}],["path",{d:"M17 7a2 2 0 0 1 0 4H7a2 2 0 0 1 0-4"}]];var oD=[["path",{d:"M16 10h2"}],["path",{d:"M16 14h2"}],["path",{d:"M6.17 15a3 3 0 0 1 5.66 0"}],["circle",{cx:"9",cy:"11",r:"2"}],["rect",{x:"2",y:"5",width:"20",height:"14",rx:"2"}]];var eD=[["path",{d:"M13.5 8h-3"}],["path",{d:"m15 2-1 2h3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h3"}],["path",{d:"M16.899 22A5 5 0 0 0 7.1 22"}],["path",{d:"m9 2 3 6"}],["circle",{cx:"12",cy:"15",r:"3"}]];var ZB=[["path",{d:"M10.3 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10l-3.1-3.1a2 2 0 0 0-2.814.014L6 21"}],["path",{d:"m14 19 3 3v-5.5"}],["path",{d:"m17 22 3-3"}],["circle",{cx:"9",cy:"9",r:"2"}]];var JB=[["path",{d:"M21 9v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7"}],["line",{x1:"16",x2:"22",y1:"5",y2:"5"}],["circle",{cx:"9",cy:"9",r:"2"}],["path",{d:"m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21"}]];var KB=[["line",{x1:"2",x2:"22",y1:"2",y2:"22"}],["path",{d:"M10.41 10.41a2 2 0 1 1-2.83-2.83"}],["line",{x1:"13.5",x2:"6",y1:"13.5",y2:"21"}],["line",{x1:"18",x2:"21",y1:"12",y2:"15"}],["path",{d:"M3.59 3.59A1.99 1.99 0 0 0 3 5v14a2 2 0 0 0 2 2h14c.55 0 1.052-.22 1.41-.59"}],["path",{d:"M21 15V5a2 2 0 0 0-2-2H9"}]];var YB=[["path",{d:"M15 15.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997a1 1 0 0 1-1.517-.86z"}],["path",{d:"M21 12.17V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6"}],["path",{d:"m6 21 5-5"}],["circle",{cx:"9",cy:"9",r:"2"}]];var XB=[["path",{d:"M16 5h6"}],["path",{d:"M19 2v6"}],["path",{d:"M21 11.5V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7.5"}],["path",{d:"m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21"}],["circle",{cx:"9",cy:"9",r:"2"}]];var WB=[["path",{d:"M10.3 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10l-3.1-3.1a2 2 0 0 0-2.814.014L6 21"}],["path",{d:"m14 19.5 3-3 3 3"}],["path",{d:"M17 22v-5.5"}],["circle",{cx:"9",cy:"9",r:"2"}]];var QB=[["path",{d:"M16 3h5v5"}],["path",{d:"M17 21h2a2 2 0 0 0 2-2"}],["path",{d:"M21 12v3"}],["path",{d:"m21 3-5 5"}],["path",{d:"M3 7V5a2 2 0 0 1 2-2"}],["path",{d:"m5 21 4.144-4.144a1.21 1.21 0 0 1 1.712 0L13 19"}],["path",{d:"M9 3h3"}],["rect",{x:"3",y:"11",width:"10",height:"10",rx:"1"}]];var VB=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["circle",{cx:"9",cy:"9",r:"2"}],["path",{d:"m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21"}]];var GB=[["path",{d:"m22 11-1.296-1.296a2.4 2.4 0 0 0-3.408 0L11 16"}],["path",{d:"M4 8a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2"}],["circle",{cx:"13",cy:"7",r:"1",fill:"currentColor"}],["rect",{x:"8",y:"2",width:"14",height:"14",rx:"2"}]];var IB=[["path",{d:"M12 3v12"}],["path",{d:"m8 11 4 4 4-4"}],["path",{d:"M8 5H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-4"}]];var zB=[["polyline",{points:"22 12 16 12 14 15 10 15 8 12 2 12"}],["path",{d:"M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"}]];var NB=[["path",{d:"M6 3h12"}],["path",{d:"M6 8h12"}],["path",{d:"m6 13 8.5 8"}],["path",{d:"M6 13h3"}],["path",{d:"M9 13c6.667 0 6.667-10 0-10"}]];var FB=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 16v-4"}],["path",{d:"M12 8h.01"}]];var HB=[["path",{d:"M6 16c5 0 7-8 12-8a4 4 0 0 1 0 8c-5 0-7-8-12-8a4 4 0 1 0 0 8"}]];var DB=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M7 7h.01"}],["path",{d:"M17 7h.01"}],["path",{d:"M7 17h.01"}],["path",{d:"M17 17h.01"}]];var BB=[["line",{x1:"19",x2:"10",y1:"4",y2:"4"}],["line",{x1:"14",x2:"5",y1:"20",y2:"20"}],["line",{x1:"15",x2:"9",y1:"4",y2:"20"}]];var OB=[["path",{d:"m16 14 4 4-4 4"}],["path",{d:"M20 10a8 8 0 1 0-8 8h8"}]];var TB=[["rect",{width:"20",height:"20",x:"2",y:"2",rx:"5",ry:"5"}],["path",{d:"M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"}],["line",{x1:"17.5",x2:"17.51",y1:"6.5",y2:"6.5"}]];var PB=[["path",{d:"M4 10a8 8 0 1 1 8 8H4"}],["path",{d:"m8 22-4-4 4-4"}]];var SB=[["path",{d:"M12 9.5V21m0-11.5L6 3m6 6.5L18 3"}],["path",{d:"M6 15h12"}],["path",{d:"M6 11h12"}]];var AB=[["path",{d:"M21 17a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-2Z"}],["path",{d:"M6 15v-2"}],["path",{d:"M12 15V9"}],["circle",{cx:"12",cy:"6",r:"3"}]];var qB=[["path",{d:"M5 3v14"}],["path",{d:"M12 3v8"}],["path",{d:"M19 3v18"}]];var EB=[["path",{d:"M18 17a1 1 0 0 0-1 1v1a2 2 0 1 0 2-2z"}],["path",{d:"M20.97 3.61a.45.45 0 0 0-.58-.58C10.2 6.6 6.6 10.2 3.03 20.39a.45.45 0 0 0 .58.58C13.8 17.4 17.4 13.8 20.97 3.61"}],["path",{d:"m6.707 6.707 10.586 10.586"}],["path",{d:"M7 5a2 2 0 1 0-2 2h1a1 1 0 0 0 1-1z"}]];var CB=[["path",{d:"M2.586 17.414A2 2 0 0 0 2 18.828V21a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h1a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h.172a2 2 0 0 0 1.414-.586l.814-.814a6.5 6.5 0 1 0-4-4z"}],["circle",{cx:"16.5",cy:"7.5",r:".5",fill:"currentColor"}]];var xB=[["path",{d:"M12.4 2.7a2.5 2.5 0 0 1 3.4 0l5.5 5.5a2.5 2.5 0 0 1 0 3.4l-3.7 3.7a2.5 2.5 0 0 1-3.4 0L8.7 9.8a2.5 2.5 0 0 1 0-3.4z"}],["path",{d:"m14 7 3 3"}],["path",{d:"m9.4 10.6-6.814 6.814A2 2 0 0 0 2 18.828V21a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h1a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h.172a2 2 0 0 0 1.414-.586l.814-.814"}]];var wB=[["path",{d:"m15.5 7.5 2.3 2.3a1 1 0 0 0 1.4 0l2.1-2.1a1 1 0 0 0 0-1.4L19 4"}],["path",{d:"m21 2-9.6 9.6"}],["circle",{cx:"7.5",cy:"15.5",r:"5.5"}]];var UB=[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2"}],["path",{d:"M6 8h4"}],["path",{d:"M14 8h.01"}],["path",{d:"M18 8h.01"}],["path",{d:"M2 12h20"}],["path",{d:"M6 12v4"}],["path",{d:"M10 12v4"}],["path",{d:"M14 12v4"}],["path",{d:"M18 12v4"}]];var MB=[["path",{d:"M 20 4 A2 2 0 0 1 22 6"}],["path",{d:"M 22 6 L 22 16.41"}],["path",{d:"M 7 16 L 16 16"}],["path",{d:"M 9.69 4 L 20 4"}],["path",{d:"M14 8h.01"}],["path",{d:"M18 8h.01"}],["path",{d:"m2 2 20 20"}],["path",{d:"M20 20H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2"}],["path",{d:"M6 8h.01"}],["path",{d:"M8 12h.01"}]];var RB=[["path",{d:"M10 8h.01"}],["path",{d:"M12 12h.01"}],["path",{d:"M14 8h.01"}],["path",{d:"M16 12h.01"}],["path",{d:"M18 8h.01"}],["path",{d:"M6 8h.01"}],["path",{d:"M7 16h10"}],["path",{d:"M8 12h.01"}],["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2"}]];var jB=[["path",{d:"M12 2v5"}],["path",{d:"M14.829 15.998a3 3 0 1 1-5.658 0"}],["path",{d:"M20.92 14.606A1 1 0 0 1 20 16H4a1 1 0 0 1-.92-1.394l3-7A1 1 0 0 1 7 7h10a1 1 0 0 1 .92.606z"}]];var LB=[["path",{d:"M10.293 2.293a1 1 0 0 1 1.414 0l2.5 2.5 5.994 1.227a1 1 0 0 1 .506 1.687l-7 7a1 1 0 0 1-1.687-.506l-1.227-5.994-2.5-2.5a1 1 0 0 1 0-1.414z"}],["path",{d:"m14.207 4.793-3.414 3.414"}],["path",{d:"M3 20a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1z"}],["path",{d:"m9.086 6.5-4.793 4.793a1 1 0 0 0-.18 1.17L7 18"}]];var yB=[["path",{d:"M12 10v12"}],["path",{d:"M17.929 7.629A1 1 0 0 1 17 9H7a1 1 0 0 1-.928-1.371l2-5A1 1 0 0 1 9 2h6a1 1 0 0 1 .928.629z"}],["path",{d:"M9 22h6"}]];var fB=[["path",{d:"M19.929 18.629A1 1 0 0 1 19 20H9a1 1 0 0 1-.928-1.371l2-5A1 1 0 0 1 11 13h6a1 1 0 0 1 .928.629z"}],["path",{d:"M6 3a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H5a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1z"}],["path",{d:"M8 6h4a2 2 0 0 1 2 2v5"}]];var kB=[["path",{d:"M19.929 9.629A1 1 0 0 1 19 11H9a1 1 0 0 1-.928-1.371l2-5A1 1 0 0 1 11 4h6a1 1 0 0 1 .928.629z"}],["path",{d:"M6 15a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H5a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1z"}],["path",{d:"M8 18h4a2 2 0 0 0 2-2v-5"}]];var bB=[["path",{d:"M12 12v6"}],["path",{d:"M4.077 10.615A1 1 0 0 0 5 12h14a1 1 0 0 0 .923-1.385l-3.077-7.384A2 2 0 0 0 15 2H9a2 2 0 0 0-1.846 1.23Z"}],["path",{d:"M8 20a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H9a1 1 0 0 1-1-1z"}]];var hB=[["path",{d:"m12 8 6-3-6-3v10"}],["path",{d:"m8 11.99-5.5 3.14a1 1 0 0 0 0 1.74l8.5 4.86a2 2 0 0 0 2 0l8.5-4.86a1 1 0 0 0 0-1.74L16 12"}],["path",{d:"m6.49 12.85 11.02 6.3"}],["path",{d:"M17.51 12.85 6.5 19.15"}]];var vB=[["path",{d:"M10 18v-7"}],["path",{d:"M11.12 2.198a2 2 0 0 1 1.76.006l7.866 3.847c.476.233.31.949-.22.949H3.474c-.53 0-.695-.716-.22-.949z"}],["path",{d:"M14 18v-7"}],["path",{d:"M18 18v-7"}],["path",{d:"M3 22h18"}],["path",{d:"M6 18v-7"}]];var $B=[["path",{d:"m5 8 6 6"}],["path",{d:"m4 14 6-6 2-3"}],["path",{d:"M2 5h12"}],["path",{d:"M7 2h1"}],["path",{d:"m22 22-5-10-5 10"}],["path",{d:"M14 18h6"}]];var gB=[["path",{d:"M2 20h20"}],["path",{d:"m9 10 2 2 4-4"}],["rect",{x:"3",y:"4",width:"18",height:"12",rx:"2"}]];var P6=[["rect",{width:"18",height:"12",x:"3",y:"4",rx:"2",ry:"2"}],["line",{x1:"2",x2:"22",y1:"20",y2:"20"}]];var _B=[["path",{d:"M18 5a2 2 0 0 1 2 2v8.526a2 2 0 0 0 .212.897l1.068 2.127a1 1 0 0 1-.9 1.45H3.62a1 1 0 0 1-.9-1.45l1.068-2.127A2 2 0 0 0 4 15.526V7a2 2 0 0 1 2-2z"}],["path",{d:"M20.054 15.987H3.946"}]];var mB=[["path",{d:"M7 22a5 5 0 0 1-2-4"}],["path",{d:"M7 16.93c.96.43 1.96.74 2.99.91"}],["path",{d:"M3.34 14A6.8 6.8 0 0 1 2 10c0-4.42 4.48-8 10-8s10 3.58 10 8a7.19 7.19 0 0 1-.33 2"}],["path",{d:"M5 18a2 2 0 1 0 0-4 2 2 0 0 0 0 4z"}],["path",{d:"M14.33 22h-.09a.35.35 0 0 1-.24-.32v-10a.34.34 0 0 1 .33-.34c.08 0 .15.03.21.08l7.34 6a.33.33 0 0 1-.21.59h-4.49l-2.57 3.85a.35.35 0 0 1-.28.14z"}]];var uB=[["path",{d:"M3.704 14.467A10 8 0 0 1 2 10a10 8 0 0 1 20 0 10 8 0 0 1-10 8 10 8 0 0 1-5.181-1.158"}],["path",{d:"M7 22a5 5 0 0 1-2-3.994"}],["circle",{cx:"5",cy:"16",r:"2"}]];var dB=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M18 13a6 6 0 0 1-6 5 6 6 0 0 1-6-5h12Z"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9"}]];var cB=[["path",{d:"M13 13.74a2 2 0 0 1-2 0L2.5 8.87a1 1 0 0 1 0-1.74L11 2.26a2 2 0 0 1 2 0l8.5 4.87a1 1 0 0 1 0 1.74z"}],["path",{d:"m20 14.285 1.5.845a1 1 0 0 1 0 1.74L13 21.74a2 2 0 0 1-2 0l-8.5-4.87a1 1 0 0 1 0-1.74l1.5-.845"}]];var S6=[["path",{d:"M12.83 2.18a2 2 0 0 0-1.66 0L2.6 6.08a1 1 0 0 0 0 1.83l8.58 3.91a2 2 0 0 0 1.66 0l8.58-3.9a1 1 0 0 0 0-1.83z"}],["path",{d:"M2 12a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 12"}],["path",{d:"M2 17a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 17"}]];var pB=[["rect",{width:"7",height:"9",x:"3",y:"3",rx:"1"}],["rect",{width:"7",height:"5",x:"14",y:"3",rx:"1"}],["rect",{width:"7",height:"9",x:"14",y:"12",rx:"1"}],["rect",{width:"7",height:"5",x:"3",y:"16",rx:"1"}]];var nB=[["rect",{width:"7",height:"7",x:"3",y:"3",rx:"1"}],["rect",{width:"7",height:"7",x:"14",y:"3",rx:"1"}],["rect",{width:"7",height:"7",x:"14",y:"14",rx:"1"}],["rect",{width:"7",height:"7",x:"3",y:"14",rx:"1"}]];var iB=[["rect",{width:"7",height:"7",x:"3",y:"3",rx:"1"}],["rect",{width:"7",height:"7",x:"3",y:"14",rx:"1"}],["path",{d:"M14 4h7"}],["path",{d:"M14 9h7"}],["path",{d:"M14 15h7"}],["path",{d:"M14 20h7"}]];var lB=[["rect",{width:"7",height:"18",x:"3",y:"3",rx:"1"}],["rect",{width:"7",height:"7",x:"14",y:"3",rx:"1"}],["rect",{width:"7",height:"7",x:"14",y:"14",rx:"1"}]];var sB=[["rect",{width:"18",height:"7",x:"3",y:"3",rx:"1"}],["rect",{width:"7",height:"7",x:"3",y:"14",rx:"1"}],["rect",{width:"7",height:"7",x:"14",y:"14",rx:"1"}]];var rB=[["rect",{width:"18",height:"7",x:"3",y:"3",rx:"1"}],["rect",{width:"9",height:"7",x:"3",y:"14",rx:"1"}],["rect",{width:"5",height:"7",x:"16",y:"14",rx:"1"}]];var aB=[["path",{d:"M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.5-4.78 10-10 10Z"}],["path",{d:"M2 21c0-3 1.85-5.36 5.08-6C9.5 14.52 12 13 13 12"}]];var tB=[["path",{d:"M2 22c1.25-.987 2.27-1.975 3.9-2.2a5.56 5.56 0 0 1 3.8 1.5 4 4 0 0 0 6.187-2.353 3.5 3.5 0 0 0 3.69-5.116A3.5 3.5 0 0 0 20.95 8 3.5 3.5 0 1 0 16 3.05a3.5 3.5 0 0 0-5.831 1.373 3.5 3.5 0 0 0-5.116 3.69 4 4 0 0 0-2.348 6.155C3.499 15.42 4.409 16.712 4.2 18.1 3.926 19.743 3.014 20.732 2 22"}],["path",{d:"M2 22 17 7"}]];var oB=[["path",{d:"M16 12h3a2 2 0 0 0 1.902-1.38l1.056-3.333A1 1 0 0 0 21 6H3a1 1 0 0 0-.958 1.287l1.056 3.334A2 2 0 0 0 5 12h3"}],["path",{d:"M18 6V3a1 1 0 0 0-1-1h-3"}],["rect",{width:"8",height:"12",x:"8",y:"10",rx:"1"}]];var eB=[["rect",{width:"8",height:"18",x:"3",y:"3",rx:"1"}],["path",{d:"M7 3v18"}],["path",{d:"M20.4 18.9c.2.5-.1 1.1-.6 1.3l-1.9.7c-.5.2-1.1-.1-1.3-.6L11.1 5.1c-.2-.5.1-1.1.6-1.3l1.9-.7c.5-.2 1.1.1 1.3.6Z"}]];var Z2=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m4.93 4.93 4.24 4.24"}],["path",{d:"m14.83 9.17 4.24-4.24"}],["path",{d:"m14.83 14.83 4.24 4.24"}],["path",{d:"m9.17 14.83-4.24 4.24"}],["circle",{cx:"12",cy:"12",r:"4"}]];var J2=[["path",{d:"m16 6 4 14"}],["path",{d:"M12 6v14"}],["path",{d:"M8 8v12"}],["path",{d:"M4 4v16"}]];var K2=[["path",{d:"M14 12h2v8"}],["path",{d:"M14 20h4"}],["path",{d:"M6 12h4"}],["path",{d:"M6 20h4"}],["path",{d:"M8 20V8a4 4 0 0 1 7.464-2"}]];var Y2=[["path",{d:"M16.8 11.2c.8-.9 1.2-2 1.2-3.2a6 6 0 0 0-9.3-5"}],["path",{d:"m2 2 20 20"}],["path",{d:"M6.3 6.3a4.67 4.67 0 0 0 1.2 5.2c.7.7 1.3 1.5 1.5 2.5"}],["path",{d:"M9 18h6"}],["path",{d:"M10 22h4"}]];var X2=[["path",{d:"M15 14c.2-1 .7-1.7 1.5-2.5 1-.9 1.5-2.2 1.5-3.5A6 6 0 0 0 6 8c0 1 .2 2.2 1.5 3.5.7.7 1.3 1.5 1.5 2.5"}],["path",{d:"M9 18h6"}],["path",{d:"M10 22h4"}]];var W2=[["path",{d:"M7 3.5c5-2 7 2.5 3 4C1.5 10 2 15 5 16c5 2 9-10 14-7s.5 13.5-4 12c-5-2.5.5-11 6-2"}]];var Q2=[["path",{d:"M9 17H7A5 5 0 0 1 7 7"}],["path",{d:"M15 7h2a5 5 0 0 1 4 8"}],["line",{x1:"8",x2:"12",y1:"12",y2:"12"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var V2=[["path",{d:"M9 17H7A5 5 0 0 1 7 7h2"}],["path",{d:"M15 7h2a5 5 0 1 1 0 10h-2"}],["line",{x1:"8",x2:"16",y1:"12",y2:"12"}]];var G2=[["path",{d:"M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"}],["path",{d:"M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"}]];var I2=[["path",{d:"M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"}],["rect",{width:"4",height:"12",x:"2",y:"9"}],["circle",{cx:"4",cy:"4",r:"2"}]];var z2=[["path",{d:"M16 5H3"}],["path",{d:"M16 12H3"}],["path",{d:"M11 19H3"}],["path",{d:"m15 18 2 2 4-4"}]];var N2=[["path",{d:"M13 5h8"}],["path",{d:"M13 12h8"}],["path",{d:"M13 19h8"}],["path",{d:"m3 17 2 2 4-4"}],["path",{d:"m3 7 2 2 4-4"}]];var F2=[["path",{d:"M3 5h8"}],["path",{d:"M3 12h8"}],["path",{d:"M3 19h8"}],["path",{d:"m15 5 3 3 3-3"}],["path",{d:"m15 19 3-3 3 3"}]];var H2=[["path",{d:"M3 5h8"}],["path",{d:"M3 12h8"}],["path",{d:"M3 19h8"}],["path",{d:"m15 8 3-3 3 3"}],["path",{d:"m15 16 3 3 3-3"}]];var D2=[["path",{d:"M10 5h11"}],["path",{d:"M10 12h11"}],["path",{d:"M10 19h11"}],["path",{d:"m3 10 3-3-3-3"}],["path",{d:"m3 20 3-3-3-3"}]];var B2=[["path",{d:"M16 5H3"}],["path",{d:"M16 12H3"}],["path",{d:"M9 19H3"}],["path",{d:"m16 16-3 3 3 3"}],["path",{d:"M21 5v12a2 2 0 0 1-2 2h-6"}]];var O2=[["path",{d:"M2 5h20"}],["path",{d:"M6 12h12"}],["path",{d:"M9 19h6"}]];var T2=[["path",{d:"M12 5H2"}],["path",{d:"M6 12h12"}],["path",{d:"M9 19h6"}],["path",{d:"M16 5h6"}],["path",{d:"M19 8V2"}]];var z5=[["path",{d:"M21 5H11"}],["path",{d:"M21 12H11"}],["path",{d:"M21 19H11"}],["path",{d:"m7 8-4 4 4 4"}]];var N5=[["path",{d:"M21 5H11"}],["path",{d:"M21 12H11"}],["path",{d:"M21 19H11"}],["path",{d:"m3 8 4 4-4 4"}]];var P2=[["path",{d:"M16 5H3"}],["path",{d:"M11 12H3"}],["path",{d:"M16 19H3"}],["path",{d:"M21 12h-6"}]];var S2=[["path",{d:"M16 5H3"}],["path",{d:"M11 12H3"}],["path",{d:"M11 19H3"}],["path",{d:"M21 16V5"}],["circle",{cx:"18",cy:"16",r:"3"}]];var A2=[["path",{d:"M16 5H3"}],["path",{d:"M11 12H3"}],["path",{d:"M16 19H3"}],["path",{d:"M18 9v6"}],["path",{d:"M21 12h-6"}]];var q2=[["path",{d:"M21 5H3"}],["path",{d:"M7 12H3"}],["path",{d:"M7 19H3"}],["path",{d:"M12 18a5 5 0 0 0 9-3 4.5 4.5 0 0 0-4.5-4.5c-1.33 0-2.54.54-3.41 1.41L11 14"}],["path",{d:"M11 10v4h4"}]];var E2=[["path",{d:"M11 5h10"}],["path",{d:"M11 12h10"}],["path",{d:"M11 19h10"}],["path",{d:"M4 4h1v5"}],["path",{d:"M4 9h2"}],["path",{d:"M6.5 20H3.4c0-1 2.6-1.925 2.6-3.5a1.5 1.5 0 0 0-2.6-1.02"}]];var C2=[["path",{d:"M3 5h6"}],["path",{d:"M3 12h13"}],["path",{d:"M3 19h13"}],["path",{d:"m16 8-3-3 3-3"}],["path",{d:"M21 19V7a2 2 0 0 0-2-2h-6"}]];var x2=[["path",{d:"M13 5h8"}],["path",{d:"M13 12h8"}],["path",{d:"M13 19h8"}],["path",{d:"m3 17 2 2 4-4"}],["rect",{x:"3",y:"4",width:"6",height:"6",rx:"1"}]];var w2=[["path",{d:"M8 5h13"}],["path",{d:"M13 12h8"}],["path",{d:"M13 19h8"}],["path",{d:"M3 10a2 2 0 0 0 2 2h3"}],["path",{d:"M3 5v12a2 2 0 0 0 2 2h3"}]];var U2=[["path",{d:"M21 5H3"}],["path",{d:"M10 12H3"}],["path",{d:"M10 19H3"}],["path",{d:"M15 12.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997a1 1 0 0 1-1.517-.86z"}]];var M2=[["path",{d:"M16 5H3"}],["path",{d:"M11 12H3"}],["path",{d:"M16 19H3"}],["path",{d:"m15.5 9.5 5 5"}],["path",{d:"m20.5 9.5-5 5"}]];var R2=[["path",{d:"M3 5h.01"}],["path",{d:"M3 12h.01"}],["path",{d:"M3 19h.01"}],["path",{d:"M8 5h13"}],["path",{d:"M8 12h13"}],["path",{d:"M8 19h13"}]];var A6=[["path",{d:"M21 12a9 9 0 1 1-6.219-8.56"}]];var j2=[["path",{d:"M22 12a1 1 0 0 1-10 0 1 1 0 0 0-10 0"}],["path",{d:"M7 20.7a1 1 0 1 1 5-8.7 1 1 0 1 0 5-8.6"}],["path",{d:"M7 3.3a1 1 0 1 1 5 8.6 1 1 0 1 0 5 8.6"}],["circle",{cx:"12",cy:"12",r:"10"}]];var L2=[["path",{d:"M12 2v4"}],["path",{d:"m16.2 7.8 2.9-2.9"}],["path",{d:"M18 12h4"}],["path",{d:"m16.2 16.2 2.9 2.9"}],["path",{d:"M12 18v4"}],["path",{d:"m4.9 19.1 2.9-2.9"}],["path",{d:"M2 12h4"}],["path",{d:"m4.9 4.9 2.9 2.9"}]];var y2=[["line",{x1:"2",x2:"5",y1:"12",y2:"12"}],["line",{x1:"19",x2:"22",y1:"12",y2:"12"}],["line",{x1:"12",x2:"12",y1:"2",y2:"5"}],["line",{x1:"12",x2:"12",y1:"19",y2:"22"}],["circle",{cx:"12",cy:"12",r:"7"}],["circle",{cx:"12",cy:"12",r:"3"}]];var f2=[["path",{d:"M12 19v3"}],["path",{d:"M12 2v3"}],["path",{d:"M18.89 13.24a7 7 0 0 0-8.13-8.13"}],["path",{d:"M19 12h3"}],["path",{d:"M2 12h3"}],["path",{d:"m2 2 20 20"}],["path",{d:"M7.05 7.05a7 7 0 0 0 9.9 9.9"}]];var k2=[["line",{x1:"2",x2:"5",y1:"12",y2:"12"}],["line",{x1:"19",x2:"22",y1:"12",y2:"12"}],["line",{x1:"12",x2:"12",y1:"2",y2:"5"}],["line",{x1:"12",x2:"12",y1:"19",y2:"22"}],["circle",{cx:"12",cy:"12",r:"7"}]];var q6=[["circle",{cx:"12",cy:"16",r:"1"}],["rect",{width:"18",height:"12",x:"3",y:"10",rx:"2"}],["path",{d:"M7 10V7a5 5 0 0 1 9.33-2.5"}]];var b2=[["circle",{cx:"12",cy:"16",r:"1"}],["rect",{x:"3",y:"10",width:"18",height:"12",rx:"2"}],["path",{d:"M7 10V7a5 5 0 0 1 10 0v3"}]];var E6=[["rect",{width:"18",height:"11",x:"3",y:"11",rx:"2",ry:"2"}],["path",{d:"M7 11V7a5 5 0 0 1 9.9-1"}]];var h2=[["rect",{width:"18",height:"11",x:"3",y:"11",rx:"2",ry:"2"}],["path",{d:"M7 11V7a5 5 0 0 1 10 0v4"}]];var v2=[["path",{d:"m10 17 5-5-5-5"}],["path",{d:"M15 12H3"}],["path",{d:"M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4"}]];var $2=[["path",{d:"m16 17 5-5-5-5"}],["path",{d:"M21 12H9"}],["path",{d:"M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"}]];var g2=[["path",{d:"M3 5h1"}],["path",{d:"M3 12h1"}],["path",{d:"M3 19h1"}],["path",{d:"M8 5h1"}],["path",{d:"M8 12h1"}],["path",{d:"M8 19h1"}],["path",{d:"M13 5h8"}],["path",{d:"M13 12h8"}],["path",{d:"M13 19h8"}]];var _2=[["circle",{cx:"11",cy:"11",r:"8"}],["path",{d:"m21 21-4.3-4.3"}],["path",{d:"M11 11a2 2 0 0 0 4 0 4 4 0 0 0-8 0 6 6 0 0 0 12 0"}]];var m2=[["path",{d:"M6 20a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2"}],["path",{d:"M8 18V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v14"}],["path",{d:"M10 20h4"}],["circle",{cx:"16",cy:"20",r:"2"}],["circle",{cx:"8",cy:"20",r:"2"}]];var u2=[["path",{d:"m12 15 4 4"}],["path",{d:"M2.352 10.648a1.205 1.205 0 0 0 0 1.704l2.296 2.296a1.205 1.205 0 0 0 1.704 0l6.029-6.029a1 1 0 1 1 3 3l-6.029 6.029a1.205 1.205 0 0 0 0 1.704l2.296 2.296a1.205 1.205 0 0 0 1.704 0l6.365-6.367A1 1 0 0 0 8.716 4.282z"}],["path",{d:"m5 8 4 4"}]];var d2=[["path",{d:"M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"}],["path",{d:"m16 19 2 2 4-4"}]];var c2=[["path",{d:"M22 15V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"}],["path",{d:"M16 19h6"}]];var p2=[["path",{d:"M21.2 8.4c.5.38.8.97.8 1.6v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V10a2 2 0 0 1 .8-1.6l8-6a2 2 0 0 1 2.4 0l8 6Z"}],["path",{d:"m22 10-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 10"}]];var n2=[["path",{d:"M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"}],["path",{d:"M19 16v6"}],["path",{d:"M16 19h6"}]];var C6=[["path",{d:"M22 10.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h12.5"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"}],["path",{d:"M18 15.28c.2-.4.5-.8.9-1a2.1 2.1 0 0 1 2.6.4c.3.4.5.8.5 1.3 0 1.3-2 2-2 2"}],["path",{d:"M20 22v.01"}]];var i2=[["path",{d:"M22 12.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h7.5"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"}],["path",{d:"M18 21a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z"}],["circle",{cx:"18",cy:"18",r:"3"}],["path",{d:"m22 22-1.5-1.5"}]];var l2=[["path",{d:"M22 10.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h12.5"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"}],["path",{d:"M20 14v4"}],["path",{d:"M20 22v.01"}]];var s2=[["path",{d:"M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h9"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"}],["path",{d:"m17 17 4 4"}],["path",{d:"m21 17-4 4"}]];var r2=[["path",{d:"m22 7-8.991 5.727a2 2 0 0 1-2.009 0L2 7"}],["rect",{x:"2",y:"4",width:"20",height:"16",rx:"2"}]];var a2=[["path",{d:"M22 17a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9.5C2 7 4 5 6.5 5H18c2.2 0 4 1.8 4 4v8Z"}],["polyline",{points:"15,9 18,9 18,11"}],["path",{d:"M6.5 5C9 5 11 7 11 9.5V17a2 2 0 0 1-2 2"}],["line",{x1:"6",x2:"7",y1:"10",y2:"10"}]];var t2=[["path",{d:"M17 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 1-1.732"}],["path",{d:"m22 5.5-6.419 4.179a2 2 0 0 1-2.162 0L7 5.5"}],["rect",{x:"7",y:"3",width:"15",height:"12",rx:"2"}]];var o2=[["path",{d:"m11 19-1.106-.552a2 2 0 0 0-1.788 0l-3.659 1.83A1 1 0 0 1 3 19.381V6.618a1 1 0 0 1 .553-.894l4.553-2.277a2 2 0 0 1 1.788 0l4.212 2.106a2 2 0 0 0 1.788 0l3.659-1.83A1 1 0 0 1 21 4.619V14"}],["path",{d:"M15 5.764V14"}],["path",{d:"M21 18h-6"}],["path",{d:"M9 3.236v15"}]];var e2=[["path",{d:"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"}],["path",{d:"m9 10 2 2 4-4"}]];var ZO=[["path",{d:"M19.43 12.935c.357-.967.57-1.955.57-2.935a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 32.197 32.197 0 0 0 .813-.728"}],["circle",{cx:"12",cy:"10",r:"3"}],["path",{d:"m16 18 2 2 4-4"}]];var JO=[["path",{d:"M15 22a1 1 0 0 1-1-1v-4a1 1 0 0 1 .445-.832l3-2a1 1 0 0 1 1.11 0l3 2A1 1 0 0 1 22 17v4a1 1 0 0 1-1 1z"}],["path",{d:"M18 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 .601.2"}],["path",{d:"M18 22v-3"}],["circle",{cx:"10",cy:"10",r:"3"}]];var KO=[["path",{d:"M18.977 14C19.6 12.701 20 11.343 20 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 32 32 0 0 0 .824-.738"}],["circle",{cx:"12",cy:"10",r:"3"}],["path",{d:"M16 18h6"}]];var YO=[["path",{d:"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"}],["path",{d:"M9 10h6"}]];var XO=[["path",{d:"M12.75 7.09a3 3 0 0 1 2.16 2.16"}],["path",{d:"M17.072 17.072c-1.634 2.17-3.527 3.912-4.471 4.727a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 1.432-4.568"}],["path",{d:"m2 2 20 20"}],["path",{d:"M8.475 2.818A8 8 0 0 1 20 10c0 1.183-.31 2.377-.81 3.533"}],["path",{d:"M9.13 9.13a3 3 0 0 0 3.74 3.74"}]];var x6=[["path",{d:"M17.97 9.304A8 8 0 0 0 2 10c0 4.69 4.887 9.562 7.022 11.468"}],["path",{d:"M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}],["circle",{cx:"10",cy:"10",r:"3"}]];var WO=[["path",{d:"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"}],["path",{d:"M12 7v6"}],["path",{d:"M9 10h6"}]];var QO=[["path",{d:"M19.914 11.105A7.298 7.298 0 0 0 20 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 32 32 0 0 0 .824-.738"}],["circle",{cx:"12",cy:"10",r:"3"}],["path",{d:"M16 18h6"}],["path",{d:"M19 15v6"}]];var VO=[["path",{d:"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"}],["path",{d:"m14.5 7.5-5 5"}],["path",{d:"m9.5 7.5 5 5"}]];var GO=[["path",{d:"M19.752 11.901A7.78 7.78 0 0 0 20 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 19 19 0 0 0 .09-.077"}],["circle",{cx:"12",cy:"10",r:"3"}],["path",{d:"m21.5 15.5-5 5"}],["path",{d:"m21.5 20.5-5-5"}]];var IO=[["path",{d:"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"}],["circle",{cx:"12",cy:"10",r:"3"}]];var zO=[["path",{d:"M18 8c0 3.613-3.869 7.429-5.393 8.795a1 1 0 0 1-1.214 0C9.87 15.429 6 11.613 6 8a6 6 0 0 1 12 0"}],["circle",{cx:"12",cy:"8",r:"2"}],["path",{d:"M8.714 14h-3.71a1 1 0 0 0-.948.683l-2.004 6A1 1 0 0 0 3 22h18a1 1 0 0 0 .948-1.316l-2-6a1 1 0 0 0-.949-.684h-3.712"}]];var NO=[["path",{d:"M14.106 5.553a2 2 0 0 0 1.788 0l3.659-1.83A1 1 0 0 1 21 4.619v12.764a1 1 0 0 1-.553.894l-4.553 2.277a2 2 0 0 1-1.788 0l-4.212-2.106a2 2 0 0 0-1.788 0l-3.659 1.83A1 1 0 0 1 3 19.381V6.618a1 1 0 0 1 .553-.894l4.553-2.277a2 2 0 0 1 1.788 0z"}],["path",{d:"M15 5.764v15"}],["path",{d:"M9 3.236v15"}]];var FO=[["path",{d:"m11 19-1.106-.552a2 2 0 0 0-1.788 0l-3.659 1.83A1 1 0 0 1 3 19.381V6.618a1 1 0 0 1 .553-.894l4.553-2.277a2 2 0 0 1 1.788 0l4.212 2.106a2 2 0 0 0 1.788 0l3.659-1.83A1 1 0 0 1 21 4.619V12"}],["path",{d:"M15 5.764V12"}],["path",{d:"M18 15v6"}],["path",{d:"M21 18h-6"}],["path",{d:"M9 3.236v15"}]];var HO=[["path",{d:"m14 6 4 4"}],["path",{d:"M17 3h4v4"}],["path",{d:"m21 3-7.75 7.75"}],["circle",{cx:"9",cy:"15",r:"6"}]];var DO=[["path",{d:"M16 3h5v5"}],["path",{d:"m21 3-6.75 6.75"}],["circle",{cx:"10",cy:"14",r:"6"}]];var BO=[["path",{d:"M8 22h8"}],["path",{d:"M12 11v11"}],["path",{d:"m19 3-7 8-7-8Z"}]];var OO=[["path",{d:"M15 3h6v6"}],["path",{d:"m21 3-7 7"}],["path",{d:"m3 21 7-7"}],["path",{d:"M9 21H3v-6"}]];var TO=[["path",{d:"M8 3H5a2 2 0 0 0-2 2v3"}],["path",{d:"M21 8V5a2 2 0 0 0-2-2h-3"}],["path",{d:"M3 16v3a2 2 0 0 0 2 2h3"}],["path",{d:"M16 21h3a2 2 0 0 0 2-2v-3"}]];var PO=[["path",{d:"M7.21 15 2.66 7.14a2 2 0 0 1 .13-2.2L4.4 2.8A2 2 0 0 1 6 2h12a2 2 0 0 1 1.6.8l1.6 2.14a2 2 0 0 1 .14 2.2L16.79 15"}],["path",{d:"M11 12 5.12 2.2"}],["path",{d:"m13 12 5.88-9.8"}],["path",{d:"M8 7h8"}],["circle",{cx:"12",cy:"17",r:"5"}],["path",{d:"M12 18v-2h-.5"}]];var SO=[["path",{d:"M11.636 6A13 13 0 0 0 19.4 3.2 1 1 0 0 1 21 4v11.344"}],["path",{d:"M14.378 14.357A13 13 0 0 0 11 14H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h1"}],["path",{d:"m2 2 20 20"}],["path",{d:"M6 14a12 12 0 0 0 2.4 7.2 2 2 0 0 0 3.2-2.4A8 8 0 0 1 10 14"}],["path",{d:"M8 8v6"}]];var AO=[["path",{d:"M11 6a13 13 0 0 0 8.4-2.8A1 1 0 0 1 21 4v12a1 1 0 0 1-1.6.8A13 13 0 0 0 11 14H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2z"}],["path",{d:"M6 14a12 12 0 0 0 2.4 7.2 2 2 0 0 0 3.2-2.4A8 8 0 0 1 10 14"}],["path",{d:"M8 6v8"}]];var qO=[["circle",{cx:"12",cy:"12",r:"10"}],["line",{x1:"8",x2:"16",y1:"15",y2:"15"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9"}]];var EO=[["path",{d:"M6 19v-3"}],["path",{d:"M10 19v-3"}],["path",{d:"M14 19v-3"}],["path",{d:"M18 19v-3"}],["path",{d:"M8 11V9"}],["path",{d:"M16 11V9"}],["path",{d:"M12 11V9"}],["path",{d:"M2 15h20"}],["path",{d:"M2 7a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v1.1a2 2 0 0 0 0 3.837V17a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-5.1a2 2 0 0 0 0-3.837Z"}]];var CO=[["path",{d:"M4 5h16"}],["path",{d:"M4 12h16"}],["path",{d:"M4 19h16"}]];var xO=[["path",{d:"m8 6 4-4 4 4"}],["path",{d:"M12 2v10.3a4 4 0 0 1-1.172 2.872L4 22"}],["path",{d:"m20 22-5-5"}]];var wO=[["path",{d:"m10 9-3 3 3 3"}],["path",{d:"m14 15 3-3-3-3"}],["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}]];var UO=[["path",{d:"M10.1 2.182a10 10 0 0 1 3.8 0"}],["path",{d:"M13.9 21.818a10 10 0 0 1-3.8 0"}],["path",{d:"M17.609 3.72a10 10 0 0 1 2.69 2.7"}],["path",{d:"M2.182 13.9a10 10 0 0 1 0-3.8"}],["path",{d:"M20.28 17.61a10 10 0 0 1-2.7 2.69"}],["path",{d:"M21.818 10.1a10 10 0 0 1 0 3.8"}],["path",{d:"M3.721 6.391a10 10 0 0 1 2.7-2.69"}],["path",{d:"m6.163 21.117-2.906.85a1 1 0 0 1-1.236-1.169l.965-2.98"}]];var MO=[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}],["path",{d:"M7.828 13.07A3 3 0 0 1 12 8.764a3 3 0 0 1 5.004 2.224 3 3 0 0 1-.832 2.083l-3.447 3.62a1 1 0 0 1-1.45-.001z"}]];var RO=[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}],["path",{d:"M8 12h.01"}],["path",{d:"M12 12h.01"}],["path",{d:"M16 12h.01"}]];var jO=[["path",{d:"m2 2 20 20"}],["path",{d:"M4.93 4.929a10 10 0 0 0-1.938 11.412 2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 0 0 11.302-1.989"}],["path",{d:"M8.35 2.69A10 10 0 0 1 21.3 15.65"}]];var LO=[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}],["path",{d:"M8 12h8"}],["path",{d:"M12 8v8"}]];var w6=[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}],["path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"}],["path",{d:"M12 17h.01"}]];var yO=[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}],["path",{d:"m10 15-3-3 3-3"}],["path",{d:"M7 12h8a2 2 0 0 1 2 2v1"}]];var fO=[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}],["path",{d:"M12 8v4"}],["path",{d:"M12 16h.01"}]];var kO=[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}],["path",{d:"m15 9-6 6"}],["path",{d:"m9 9 6 6"}]];var bO=[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}]];var hO=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"m10 8-3 3 3 3"}],["path",{d:"m14 14 3-3-3-3"}]];var vO=[["path",{d:"M12 19h.01"}],["path",{d:"M12 3h.01"}],["path",{d:"M16 19h.01"}],["path",{d:"M16 3h.01"}],["path",{d:"M2 13h.01"}],["path",{d:"M2 17v4.286a.71.71 0 0 0 1.212.502l2.202-2.202A2 2 0 0 1 6.828 19H8"}],["path",{d:"M2 5a2 2 0 0 1 2-2"}],["path",{d:"M2 9h.01"}],["path",{d:"M20 3a2 2 0 0 1 2 2"}],["path",{d:"M22 13h.01"}],["path",{d:"M22 17a2 2 0 0 1-2 2"}],["path",{d:"M22 9h.01"}],["path",{d:"M8 3h.01"}]];var $O=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"M10 15h4"}],["path",{d:"M10 9h4"}],["path",{d:"M12 7v4"}]];var gO=[["path",{d:"M12.7 3H4a2 2 0 0 0-2 2v16.286a.71.71 0 0 0 1.212.502l2.202-2.202A2 2 0 0 1 6.828 19H20a2 2 0 0 0 2-2v-4.7"}],["circle",{cx:"19",cy:"6",r:"3"}]];var _O=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"M7.5 9.5c0 .687.265 1.383.697 1.844l3.009 3.264a1.14 1.14 0 0 0 .407.314 1 1 0 0 0 .783-.004 1.14 1.14 0 0 0 .398-.31l3.008-3.264A2.77 2.77 0 0 0 16.5 9.5 2.5 2.5 0 0 0 12 8a2.5 2.5 0 0 0-4.5 1.5"}]];var mO=[["path",{d:"M22 8.5V5a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v16.286a.71.71 0 0 0 1.212.502l2.202-2.202A2 2 0 0 1 6.828 19H10"}],["path",{d:"M20 15v-2a2 2 0 0 0-4 0v2"}],["rect",{x:"14",y:"15",width:"8",height:"5",rx:"1"}]];var uO=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"M12 11h.01"}],["path",{d:"M16 11h.01"}],["path",{d:"M8 11h.01"}]];var dO=[["path",{d:"M19 19H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.7.7 0 0 1 2 21.286V5a2 2 0 0 1 1.184-1.826"}],["path",{d:"m2 2 20 20"}],["path",{d:"M8.656 3H20a2 2 0 0 1 2 2v11.344"}]];var cO=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"M12 8v6"}],["path",{d:"M9 11h6"}]];var pO=[["path",{d:"M14 14a2 2 0 0 0 2-2V8h-2"}],["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"M8 14a2 2 0 0 0 2-2V8H8"}]];var nO=[["path",{d:"M12 3H4a2 2 0 0 0-2 2v16.286a.71.71 0 0 0 1.212.502l2.202-2.202A2 2 0 0 1 6.828 19H20a2 2 0 0 0 2-2v-4"}],["path",{d:"M16 3h6v6"}],["path",{d:"m16 9 6-6"}]];var iO=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"m10 8-3 3 3 3"}],["path",{d:"M17 14v-1a2 2 0 0 0-2-2H7"}]];var lO=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"M7 11h10"}],["path",{d:"M7 15h6"}],["path",{d:"M7 7h8"}]];var sO=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"M12 15h.01"}],["path",{d:"M12 7v4"}]];var rO=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"m14.5 8.5-5 5"}],["path",{d:"m9.5 8.5 5 5"}]];var aO=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}]];var tO=[["path",{d:"M16 10a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 14.286V4a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z"}],["path",{d:"M20 9a2 2 0 0 1 2 2v10.286a.71.71 0 0 1-1.212.502l-2.202-2.202A2 2 0 0 0 17.172 19H10a2 2 0 0 1-2-2v-1"}]];var oO=[["path",{d:"M12 19v3"}],["path",{d:"M15 9.34V5a3 3 0 0 0-5.68-1.33"}],["path",{d:"M16.95 16.95A7 7 0 0 1 5 12v-2"}],["path",{d:"M18.89 13.23A7 7 0 0 0 19 12v-2"}],["path",{d:"m2 2 20 20"}],["path",{d:"M9 9v3a3 3 0 0 0 5.12 2.12"}]];var U6=[["path",{d:"m11 7.601-5.994 8.19a1 1 0 0 0 .1 1.298l.817.818a1 1 0 0 0 1.314.087L15.09 12"}],["path",{d:"M16.5 21.174C15.5 20.5 14.372 20 13 20c-2.058 0-3.928 2.356-6 2-2.072-.356-2.775-3.369-1.5-4.5"}],["circle",{cx:"16",cy:"7",r:"5"}]];var eO=[["path",{d:"M12 19v3"}],["path",{d:"M19 10v2a7 7 0 0 1-14 0v-2"}],["rect",{x:"9",y:"2",width:"6",height:"13",rx:"3"}]];var ZT=[["path",{d:"M18 12h2"}],["path",{d:"M18 16h2"}],["path",{d:"M18 20h2"}],["path",{d:"M18 4h2"}],["path",{d:"M18 8h2"}],["path",{d:"M4 12h2"}],["path",{d:"M4 16h2"}],["path",{d:"M4 20h2"}],["path",{d:"M4 4h2"}],["path",{d:"M4 8h2"}],["path",{d:"M8 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2h-1.5c-.276 0-.494.227-.562.495a2 2 0 0 1-3.876 0C9.994 2.227 9.776 2 9.5 2z"}]];var JT=[["path",{d:"M6 18h8"}],["path",{d:"M3 22h18"}],["path",{d:"M14 22a7 7 0 1 0 0-14h-1"}],["path",{d:"M9 14h2"}],["path",{d:"M9 12a2 2 0 0 1-2-2V6h6v4a2 2 0 0 1-2 2Z"}],["path",{d:"M12 6V3a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v3"}]];var KT=[["rect",{width:"20",height:"15",x:"2",y:"4",rx:"2"}],["rect",{width:"8",height:"7",x:"6",y:"8",rx:"1"}],["path",{d:"M18 8v7"}],["path",{d:"M6 19v2"}],["path",{d:"M18 19v2"}]];var YT=[["path",{d:"M12 13v8"}],["path",{d:"M12 3v3"}],["path",{d:"M4 6a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h13a2 2 0 0 0 1.152-.365l3.424-2.317a1 1 0 0 0 0-1.635l-3.424-2.318A2 2 0 0 0 17 6z"}]];var XT=[["path",{d:"M8 2h8"}],["path",{d:"M9 2v2.789a4 4 0 0 1-.672 2.219l-.656.984A4 4 0 0 0 7 10.212V20a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-9.789a4 4 0 0 0-.672-2.219l-.656-.984A4 4 0 0 1 15 4.788V2"}],["path",{d:"M7 15a6.472 6.472 0 0 1 5 0 6.47 6.47 0 0 0 5 0"}]];var WT=[["path",{d:"M8 2h8"}],["path",{d:"M9 2v1.343M15 2v2.789a4 4 0 0 0 .672 2.219l.656.984a4 4 0 0 1 .672 2.22v1.131M7.8 7.8l-.128.192A4 4 0 0 0 7 10.212V20a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-3"}],["path",{d:"M7 15a6.47 6.47 0 0 1 5 0 6.472 6.472 0 0 0 3.435.435"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var QT=[["path",{d:"m14 10 7-7"}],["path",{d:"M20 10h-6V4"}],["path",{d:"m3 21 7-7"}],["path",{d:"M4 14h6v6"}]];var VT=[["path",{d:"M8 3v3a2 2 0 0 1-2 2H3"}],["path",{d:"M21 8h-3a2 2 0 0 1-2-2V3"}],["path",{d:"M3 16h3a2 2 0 0 1 2 2v3"}],["path",{d:"M16 21v-3a2 2 0 0 1 2-2h3"}]];var GT=[["path",{d:"M5 12h14"}]];var IT=[["path",{d:"m9 10 2 2 4-4"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2"}],["path",{d:"M12 17v4"}],["path",{d:"M8 21h8"}]];var zT=[["path",{d:"M11 13a3 3 0 1 1 2.83-4H14a2 2 0 0 1 0 4z"}],["path",{d:"M12 17v4"}],["path",{d:"M8 21h8"}],["rect",{x:"2",y:"3",width:"20",height:"14",rx:"2"}]];var NT=[["path",{d:"M12 17v4"}],["path",{d:"m14.305 7.53.923-.382"}],["path",{d:"m15.228 4.852-.923-.383"}],["path",{d:"m16.852 3.228-.383-.924"}],["path",{d:"m16.852 8.772-.383.923"}],["path",{d:"m19.148 3.228.383-.924"}],["path",{d:"m19.53 9.696-.382-.924"}],["path",{d:"m20.772 4.852.924-.383"}],["path",{d:"m20.772 7.148.924.383"}],["path",{d:"M22 13v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7"}],["path",{d:"M8 21h8"}],["circle",{cx:"18",cy:"6",r:"3"}]];var FT=[["path",{d:"M12 17v4"}],["path",{d:"M22 12.307V15a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h8.693"}],["path",{d:"M8 21h8"}],["circle",{cx:"19",cy:"6",r:"3"}]];var HT=[["path",{d:"M12 13V7"}],["path",{d:"m15 10-3 3-3-3"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2"}],["path",{d:"M12 17v4"}],["path",{d:"M8 21h8"}]];var DT=[["path",{d:"M17 17H4a2 2 0 0 1-2-2V5c0-1.5 1-2 1-2"}],["path",{d:"M22 15V5a2 2 0 0 0-2-2H9"}],["path",{d:"M8 21h8"}],["path",{d:"M12 17v4"}],["path",{d:"m2 2 20 20"}]];var BT=[["path",{d:"M10 13V7"}],["path",{d:"M14 13V7"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2"}],["path",{d:"M12 17v4"}],["path",{d:"M8 21h8"}]];var OT=[["path",{d:"M15.033 9.44a.647.647 0 0 1 0 1.12l-4.065 2.352a.645.645 0 0 1-.968-.56V7.648a.645.645 0 0 1 .967-.56z"}],["path",{d:"M12 17v4"}],["path",{d:"M8 21h8"}],["rect",{x:"2",y:"3",width:"20",height:"14",rx:"2"}]];var TT=[["path",{d:"M18 8V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h8"}],["path",{d:"M10 19v-3.96 3.15"}],["path",{d:"M7 19h5"}],["rect",{width:"6",height:"10",x:"16",y:"12",rx:"2"}]];var PT=[["path",{d:"M5.5 20H8"}],["path",{d:"M17 9h.01"}],["rect",{width:"10",height:"16",x:"12",y:"4",rx:"2"}],["path",{d:"M8 6H4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h4"}],["circle",{cx:"17",cy:"15",r:"1"}]];var ST=[["path",{d:"M12 17v4"}],["path",{d:"M8 21h8"}],["rect",{x:"2",y:"3",width:"20",height:"14",rx:"2"}],["rect",{x:"9",y:"7",width:"6",height:"6",rx:"1"}]];var AT=[["path",{d:"m9 10 3-3 3 3"}],["path",{d:"M12 13V7"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2"}],["path",{d:"M12 17v4"}],["path",{d:"M8 21h8"}]];var qT=[["path",{d:"m14.5 12.5-5-5"}],["path",{d:"m9.5 12.5 5-5"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2"}],["path",{d:"M12 17v4"}],["path",{d:"M8 21h8"}]];var ET=[["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2"}],["line",{x1:"8",x2:"16",y1:"21",y2:"21"}],["line",{x1:"12",x2:"12",y1:"17",y2:"21"}]];var CT=[["path",{d:"M18 5h4"}],["path",{d:"M20 3v4"}],["path",{d:"M20.985 12.486a9 9 0 1 1-9.473-9.472c.405-.022.617.46.402.803a6 6 0 0 0 8.268 8.268c.344-.215.825-.004.803.401"}]];var xT=[["path",{d:"M20.985 12.486a9 9 0 1 1-9.473-9.472c.405-.022.617.46.402.803a6 6 0 0 0 8.268 8.268c.344-.215.825-.004.803.401"}]];var wT=[["path",{d:"m18 14-1-3"}],["path",{d:"m3 9 6 2a2 2 0 0 1 2-2h2a2 2 0 0 1 1.99 1.81"}],["path",{d:"M8 17h3a1 1 0 0 0 1-1 6 6 0 0 1 6-6 1 1 0 0 0 1-1v-.75A5 5 0 0 0 17 5"}],["circle",{cx:"19",cy:"17",r:"3"}],["circle",{cx:"5",cy:"17",r:"3"}]];var UT=[["path",{d:"m8 3 4 8 5-5 5 15H2L8 3z"}],["path",{d:"M4.14 15.08c2.62-1.57 5.24-1.43 7.86.42 2.74 1.94 5.49 2 8.23.19"}]];var MT=[["path",{d:"m8 3 4 8 5-5 5 15H2L8 3z"}]];var RT=[["path",{d:"M12 6v.343"}],["path",{d:"M18.218 18.218A7 7 0 0 1 5 15V9a7 7 0 0 1 .782-3.218"}],["path",{d:"M19 13.343V9A7 7 0 0 0 8.56 2.902"}],["path",{d:"M22 22 2 2"}]];var jT=[["path",{d:"M4.037 4.688a.495.495 0 0 1 .651-.651l16 6.5a.5.5 0 0 1-.063.947l-6.124 1.58a2 2 0 0 0-1.438 1.435l-1.579 6.126a.5.5 0 0 1-.947.063z"}]];var LT=[["path",{d:"M2.034 2.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.944L8.204 7.545a1 1 0 0 0-.66.66l-1.066 3.443a.5.5 0 0 1-.944.033z"}],["circle",{cx:"16",cy:"16",r:"6"}],["path",{d:"m11.8 11.8 8.4 8.4"}]];var yT=[["path",{d:"M14 4.1 12 6"}],["path",{d:"m5.1 8-2.9-.8"}],["path",{d:"m6 12-1.9 2"}],["path",{d:"M7.2 2.2 8 5.1"}],["path",{d:"M9.037 9.69a.498.498 0 0 1 .653-.653l11 4.5a.5.5 0 0 1-.074.949l-4.349 1.041a1 1 0 0 0-.74.739l-1.04 4.35a.5.5 0 0 1-.95.074z"}]];var fT=[["path",{d:"M12.586 12.586 19 19"}],["path",{d:"M3.688 3.037a.497.497 0 0 0-.651.651l6.5 15.999a.501.501 0 0 0 .947-.062l1.569-6.083a2 2 0 0 1 1.448-1.479l6.124-1.579a.5.5 0 0 0 .063-.947z"}]];var kT=[["rect",{x:"5",y:"2",width:"14",height:"20",rx:"7"}],["path",{d:"M12 6v4"}]];var M6=[["path",{d:"M5 3v16h16"}],["path",{d:"m5 19 6-6"}],["path",{d:"m2 6 3-3 3 3"}],["path",{d:"m18 16 3 3-3 3"}]];var bT=[["path",{d:"M19 13v6h-6"}],["path",{d:"M5 11V5h6"}],["path",{d:"m5 5 14 14"}]];var hT=[["path",{d:"M11 19H5v-6"}],["path",{d:"M13 5h6v6"}],["path",{d:"M19 5 5 19"}]];var vT=[["path",{d:"M11 19H5V13"}],["path",{d:"M19 5L5 19"}]];var $T=[["path",{d:"M19 13V19H13"}],["path",{d:"M5 5L19 19"}]];var gT=[["path",{d:"M8 18L12 22L16 18"}],["path",{d:"M12 2V22"}]];var _T=[["path",{d:"m18 8 4 4-4 4"}],["path",{d:"M2 12h20"}],["path",{d:"m6 8-4 4 4 4"}]];var mT=[["path",{d:"M6 8L2 12L6 16"}],["path",{d:"M2 12H22"}]];var uT=[["path",{d:"M18 8L22 12L18 16"}],["path",{d:"M2 12H22"}]];var dT=[["path",{d:"M5 11V5H11"}],["path",{d:"M5 5L19 19"}]];var cT=[["path",{d:"M13 5H19V11"}],["path",{d:"M19 5L5 19"}]];var pT=[["path",{d:"M8 6L12 2L16 6"}],["path",{d:"M12 2V22"}]];var nT=[["path",{d:"M12 2v20"}],["path",{d:"m8 18 4 4 4-4"}],["path",{d:"m8 6 4-4 4 4"}]];var iT=[["path",{d:"M12 2v20"}],["path",{d:"m15 19-3 3-3-3"}],["path",{d:"m19 9 3 3-3 3"}],["path",{d:"M2 12h20"}],["path",{d:"m5 9-3 3 3 3"}],["path",{d:"m9 5 3-3 3 3"}]];var lT=[["circle",{cx:"8",cy:"18",r:"4"}],["path",{d:"M12 18V2l7 4"}]];var sT=[["circle",{cx:"12",cy:"18",r:"4"}],["path",{d:"M16 18V2"}]];var rT=[["path",{d:"M9 18V5l12-2v13"}],["path",{d:"m9 9 12-2"}],["circle",{cx:"6",cy:"18",r:"3"}],["circle",{cx:"18",cy:"16",r:"3"}]];var aT=[["path",{d:"M9 18V5l12-2v13"}],["circle",{cx:"6",cy:"18",r:"3"}],["circle",{cx:"18",cy:"16",r:"3"}]];var tT=[["path",{d:"M9.31 9.31 5 21l7-4 7 4-1.17-3.17"}],["path",{d:"M14.53 8.88 12 2l-1.17 3.17"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var oT=[["polygon",{points:"12 2 19 21 12 17 5 21 12 2"}]];var eT=[["path",{d:"M8.43 8.43 3 11l8 2 2 8 2.57-5.43"}],["path",{d:"M17.39 11.73 22 2l-9.73 4.61"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var ZP=[["polygon",{points:"3 11 22 2 13 21 11 13 3 11"}]];var JP=[["rect",{x:"16",y:"16",width:"6",height:"6",rx:"1"}],["rect",{x:"2",y:"16",width:"6",height:"6",rx:"1"}],["rect",{x:"9",y:"2",width:"6",height:"6",rx:"1"}],["path",{d:"M5 16v-3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v3"}],["path",{d:"M12 12V8"}]];var KP=[["path",{d:"M15 18h-5"}],["path",{d:"M18 14h-8"}],["path",{d:"M4 22h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16a2 2 0 0 1-4 0v-9a2 2 0 0 1 2-2h2"}],["rect",{width:"8",height:"4",x:"10",y:"6",rx:"1"}]];var YP=[["path",{d:"M6 8.32a7.43 7.43 0 0 1 0 7.36"}],["path",{d:"M9.46 6.21a11.76 11.76 0 0 1 0 11.58"}],["path",{d:"M12.91 4.1a15.91 15.91 0 0 1 .01 15.8"}],["path",{d:"M16.37 2a20.16 20.16 0 0 1 0 20"}]];var XP=[["path",{d:"M12 2v10"}],["path",{d:"m8.5 4 7 4"}],["path",{d:"m8.5 8 7-4"}],["circle",{cx:"12",cy:"17",r:"5"}]];var WP=[["path",{d:"M13.4 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-7.4"}],["path",{d:"M2 6h4"}],["path",{d:"M2 10h4"}],["path",{d:"M2 14h4"}],["path",{d:"M2 18h4"}],["path",{d:"M21.378 5.626a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}]];var QP=[["path",{d:"M2 6h4"}],["path",{d:"M2 10h4"}],["path",{d:"M2 14h4"}],["path",{d:"M2 18h4"}],["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2"}],["path",{d:"M15 2v20"}],["path",{d:"M15 7h5"}],["path",{d:"M15 12h5"}],["path",{d:"M15 17h5"}]];var VP=[["path",{d:"M2 6h4"}],["path",{d:"M2 10h4"}],["path",{d:"M2 14h4"}],["path",{d:"M2 18h4"}],["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2"}],["path",{d:"M9.5 8h5"}],["path",{d:"M9.5 12H16"}],["path",{d:"M9.5 16H14"}]];var GP=[["path",{d:"M2 6h4"}],["path",{d:"M2 10h4"}],["path",{d:"M2 14h4"}],["path",{d:"M2 18h4"}],["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2"}],["path",{d:"M16 2v20"}]];var IP=[["path",{d:"M8 2v4"}],["path",{d:"M12 2v4"}],["path",{d:"M16 2v4"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v2"}],["path",{d:"M20 12v2"}],["path",{d:"M20 18v2a2 2 0 0 1-2 2h-1"}],["path",{d:"M13 22h-2"}],["path",{d:"M7 22H6a2 2 0 0 1-2-2v-2"}],["path",{d:"M4 14v-2"}],["path",{d:"M4 8V6a2 2 0 0 1 2-2h2"}],["path",{d:"M8 10h6"}],["path",{d:"M8 14h8"}],["path",{d:"M8 18h5"}]];var zP=[["path",{d:"M8 2v4"}],["path",{d:"M12 2v4"}],["path",{d:"M16 2v4"}],["rect",{width:"16",height:"18",x:"4",y:"4",rx:"2"}],["path",{d:"M8 10h6"}],["path",{d:"M8 14h8"}],["path",{d:"M8 18h5"}]];var NP=[["path",{d:"M12 4V2"}],["path",{d:"M5 10v4a7.004 7.004 0 0 0 5.277 6.787c.412.104.802.292 1.102.592L12 22l.621-.621c.3-.3.69-.488 1.102-.592a7.01 7.01 0 0 0 4.125-2.939"}],["path",{d:"M19 10v3.343"}],["path",{d:"M12 12c-1.349-.573-1.905-1.005-2.5-2-.546.902-1.048 1.353-2.5 2-1.018-.644-1.46-1.08-2-2-1.028.71-1.69.918-3 1 1.081-1.048 1.757-2.03 2-3 .194-.776.84-1.551 1.79-2.21m11.654 5.997c.887-.457 1.28-.891 1.556-1.787 1.032.916 1.683 1.157 3 1-1.297-1.036-1.758-2.03-2-3-.5-2-4-4-8-4-.74 0-1.461.068-2.15.192"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var FP=[["path",{d:"M12 4V2"}],["path",{d:"M5 10v4a7.004 7.004 0 0 0 5.277 6.787c.412.104.802.292 1.102.592L12 22l.621-.621c.3-.3.69-.488 1.102-.592A7.003 7.003 0 0 0 19 14v-4"}],["path",{d:"M12 4C8 4 4.5 6 4 8c-.243.97-.919 1.952-2 3 1.31-.082 1.972-.29 3-1 .54.92.982 1.356 2 2 1.452-.647 1.954-1.098 2.5-2 .595.995 1.151 1.427 2.5 2 1.31-.621 1.862-1.058 2.5-2 .629.977 1.162 1.423 2.5 2 1.209-.548 1.68-.967 2-2 1.032.916 1.683 1.157 3 1-1.297-1.036-1.758-2.03-2-3-.5-2-4-4-8-4Z"}]];var R6=[["path",{d:"M12 16h.01"}],["path",{d:"M12 8v4"}],["path",{d:"M15.312 2a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586l-4.688-4.688A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2z"}]];var HP=[["path",{d:"M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z"}],["path",{d:"M8 12h8"}]];var j6=[["path",{d:"M10 15V9"}],["path",{d:"M14 15V9"}],["path",{d:"M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z"}]];var L6=[["path",{d:"m15 9-6 6"}],["path",{d:"M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z"}],["path",{d:"m9 9 6 6"}]];var DP=[["path",{d:"M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z"}]];var BP=[["path",{d:"M3 20h4.5a.5.5 0 0 0 .5-.5v-.282a.52.52 0 0 0-.247-.437 8 8 0 1 1 8.494-.001.52.52 0 0 0-.247.438v.282a.5.5 0 0 0 .5.5H21"}]];var OP=[["path",{d:"M3 3h6l6 18h6"}],["path",{d:"M14 3h7"}]];var TP=[["path",{d:"M20.341 6.484A10 10 0 0 1 10.266 21.85"}],["path",{d:"M3.659 17.516A10 10 0 0 1 13.74 2.152"}],["circle",{cx:"12",cy:"12",r:"3"}],["circle",{cx:"19",cy:"5",r:"2"}],["circle",{cx:"5",cy:"19",r:"2"}]];var PP=[["path",{d:"M12 12V4a1 1 0 0 1 1-1h6.297a1 1 0 0 1 .651 1.759l-4.696 4.025"}],["path",{d:"m12 21-7.414-7.414A2 2 0 0 1 4 12.172V6.415a1.002 1.002 0 0 1 1.707-.707L20 20.009"}],["path",{d:"m12.214 3.381 8.414 14.966a1 1 0 0 1-.167 1.199l-1.168 1.163a1 1 0 0 1-.706.291H6.351a1 1 0 0 1-.625-.219L3.25 18.8a1 1 0 0 1 .631-1.781l4.165.027"}]];var SP=[["path",{d:"M12 3v6"}],["path",{d:"M16.76 3a2 2 0 0 1 1.8 1.1l2.23 4.479a2 2 0 0 1 .21.891V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V9.472a2 2 0 0 1 .211-.894L5.45 4.1A2 2 0 0 1 7.24 3z"}],["path",{d:"M3.054 9.013h17.893"}]];var AP=[["path",{d:"m16 16 2 2 4-4"}],["path",{d:"M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14"}],["path",{d:"m7.5 4.27 9 5.15"}],["polyline",{points:"3.29 7 12 12 20.71 7"}],["line",{x1:"12",x2:"12",y1:"22",y2:"12"}]];var qP=[["path",{d:"M16 16h6"}],["path",{d:"M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14"}],["path",{d:"m7.5 4.27 9 5.15"}],["polyline",{points:"3.29 7 12 12 20.71 7"}],["line",{x1:"12",x2:"12",y1:"22",y2:"12"}]];var EP=[["path",{d:"M12 22v-9"}],["path",{d:"M15.17 2.21a1.67 1.67 0 0 1 1.63 0L21 4.57a1.93 1.93 0 0 1 0 3.36L8.82 14.79a1.655 1.655 0 0 1-1.64 0L3 12.43a1.93 1.93 0 0 1 0-3.36z"}],["path",{d:"M20 13v3.87a2.06 2.06 0 0 1-1.11 1.83l-6 3.08a1.93 1.93 0 0 1-1.78 0l-6-3.08A2.06 2.06 0 0 1 4 16.87V13"}],["path",{d:"M21 12.43a1.93 1.93 0 0 0 0-3.36L8.83 2.2a1.64 1.64 0 0 0-1.63 0L3 4.57a1.93 1.93 0 0 0 0 3.36l12.18 6.86a1.636 1.636 0 0 0 1.63 0z"}]];var CP=[["path",{d:"M16 16h6"}],["path",{d:"M19 13v6"}],["path",{d:"M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14"}],["path",{d:"m7.5 4.27 9 5.15"}],["polyline",{points:"3.29 7 12 12 20.71 7"}],["line",{x1:"12",x2:"12",y1:"22",y2:"12"}]];var xP=[["path",{d:"M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14"}],["path",{d:"m7.5 4.27 9 5.15"}],["polyline",{points:"3.29 7 12 12 20.71 7"}],["line",{x1:"12",x2:"12",y1:"22",y2:"12"}],["circle",{cx:"18.5",cy:"15.5",r:"2.5"}],["path",{d:"M20.27 17.27 22 19"}]];var wP=[["path",{d:"M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14"}],["path",{d:"m7.5 4.27 9 5.15"}],["polyline",{points:"3.29 7 12 12 20.71 7"}],["line",{x1:"12",x2:"12",y1:"22",y2:"12"}],["path",{d:"m17 13 5 5m-5 0 5-5"}]];var UP=[["path",{d:"M11 21.73a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73z"}],["path",{d:"M12 22V12"}],["polyline",{points:"3.29 7 12 12 20.71 7"}],["path",{d:"m7.5 4.27 9 5.15"}]];var MP=[["path",{d:"m19 11-8-8-8.6 8.6a2 2 0 0 0 0 2.8l5.2 5.2c.8.8 2 .8 2.8 0L19 11Z"}],["path",{d:"m5 2 5 5"}],["path",{d:"M2 13h15"}],["path",{d:"M22 20a2 2 0 1 1-4 0c0-1.6 1.7-2.4 2-4 .3 1.6 2 2.4 2 4Z"}]];var RP=[["rect",{width:"16",height:"6",x:"2",y:"2",rx:"2"}],["path",{d:"M10 16v-2a2 2 0 0 1 2-2h8a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2"}],["rect",{width:"4",height:"6",x:"8",y:"16",rx:"1"}]];var y6=[["path",{d:"M10 2v2"}],["path",{d:"M14 2v4"}],["path",{d:"M17 2a1 1 0 0 1 1 1v9H6V3a1 1 0 0 1 1-1z"}],["path",{d:"M6 12a1 1 0 0 0-1 1v1a2 2 0 0 0 2 2h2a1 1 0 0 1 1 1v2.9a2 2 0 1 0 4 0V17a1 1 0 0 1 1-1h2a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1"}]];var jP=[["path",{d:"m14.622 17.897-10.68-2.913"}],["path",{d:"M18.376 2.622a1 1 0 1 1 3.002 3.002L17.36 9.643a.5.5 0 0 0 0 .707l.944.944a2.41 2.41 0 0 1 0 3.408l-.944.944a.5.5 0 0 1-.707 0L8.354 7.348a.5.5 0 0 1 0-.707l.944-.944a2.41 2.41 0 0 1 3.408 0l.944.944a.5.5 0 0 0 .707 0z"}],["path",{d:"M9 8c-1.804 2.71-3.97 3.46-6.583 3.948a.507.507 0 0 0-.302.819l7.32 8.883a1 1 0 0 0 1.185.204C12.735 20.405 16 16.792 16 15"}]];var LP=[["path",{d:"M12 22a1 1 0 0 1 0-20 10 9 0 0 1 10 9 5 5 0 0 1-5 5h-2.25a1.75 1.75 0 0 0-1.4 2.8l.3.4a1.75 1.75 0 0 1-1.4 2.8z"}],["circle",{cx:"13.5",cy:"6.5",r:".5",fill:"currentColor"}],["circle",{cx:"17.5",cy:"10.5",r:".5",fill:"currentColor"}],["circle",{cx:"6.5",cy:"12.5",r:".5",fill:"currentColor"}],["circle",{cx:"8.5",cy:"7.5",r:".5",fill:"currentColor"}]];var yP=[["path",{d:"M11.25 17.25h1.5L12 18z"}],["path",{d:"m15 12 2 2"}],["path",{d:"M18 6.5a.5.5 0 0 0-.5-.5"}],["path",{d:"M20.69 9.67a4.5 4.5 0 1 0-7.04-5.5 8.35 8.35 0 0 0-3.3 0 4.5 4.5 0 1 0-7.04 5.5C2.49 11.2 2 12.88 2 14.5 2 19.47 6.48 22 12 22s10-2.53 10-7.5c0-1.62-.48-3.3-1.3-4.83"}],["path",{d:"M6 6.5a.495.495 0 0 1 .5-.5"}],["path",{d:"m9 12-2 2"}]];var fP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 15h18"}],["path",{d:"m15 8-3 3-3-3"}]];var f6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M14 15h1"}],["path",{d:"M19 15h2"}],["path",{d:"M3 15h2"}],["path",{d:"M9 15h1"}]];var kP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 15h18"}],["path",{d:"m9 10 3-3 3 3"}]];var bP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 15h18"}]];var k6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 3v18"}],["path",{d:"m16 15-3-3 3-3"}]];var b6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 14v1"}],["path",{d:"M9 19v2"}],["path",{d:"M9 3v2"}],["path",{d:"M9 9v1"}]];var h6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 3v18"}],["path",{d:"m14 9 3 3-3 3"}]];var hP=[["path",{d:"M15 10V9"}],["path",{d:"M15 15v-1"}],["path",{d:"M15 21v-2"}],["path",{d:"M15 5V3"}],["path",{d:"M9 10V9"}],["path",{d:"M9 15v-1"}],["path",{d:"M9 21v-2"}],["path",{d:"M9 5V3"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]];var v6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 3v18"}]];var vP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M15 3v18"}],["path",{d:"m8 9 3 3-3 3"}]];var $P=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M15 3v18"}]];var gP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M15 3v18"}],["path",{d:"m10 15-3-3 3-3"}]];var $6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M15 14v1"}],["path",{d:"M15 19v2"}],["path",{d:"M15 3v2"}],["path",{d:"M15 9v1"}]];var _P=[["path",{d:"M14 15h1"}],["path",{d:"M14 9h1"}],["path",{d:"M19 15h2"}],["path",{d:"M19 9h2"}],["path",{d:"M3 15h2"}],["path",{d:"M3 9h2"}],["path",{d:"M9 15h1"}],["path",{d:"M9 9h1"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]];var mP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 9h18"}],["path",{d:"m9 16 3-3 3 3"}]];var g6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M14 9h1"}],["path",{d:"M19 9h2"}],["path",{d:"M3 9h2"}],["path",{d:"M9 9h1"}]];var uP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 9h18"}],["path",{d:"m15 14-3 3-3-3"}]];var dP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 3v18"}],["path",{d:"M9 15h12"}]];var cP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 9h18"}]];var pP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 15h12"}],["path",{d:"M15 3v18"}]];var _6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 9h18"}],["path",{d:"M9 21V9"}]];var nP=[["path",{d:"m16 6-8.414 8.586a2 2 0 0 0 2.829 2.829l8.414-8.586a4 4 0 1 0-5.657-5.657l-8.379 8.551a6 6 0 1 0 8.485 8.485l8.379-8.551"}]];var iP=[["path",{d:"M11 15h2"}],["path",{d:"M12 12v3"}],["path",{d:"M12 19v3"}],["path",{d:"M15.282 19a1 1 0 0 0 .948-.68l2.37-6.988a7 7 0 1 0-13.2 0l2.37 6.988a1 1 0 0 0 .948.68z"}],["path",{d:"M9 9a3 3 0 1 1 6 0"}]];var lP=[["path",{d:"M8 21s-4-3-4-9 4-9 4-9"}],["path",{d:"M16 3s4 3 4 9-4 9-4 9"}]];var sP=[["path",{d:"M5.8 11.3 2 22l10.7-3.79"}],["path",{d:"M4 3h.01"}],["path",{d:"M22 8h.01"}],["path",{d:"M15 2h.01"}],["path",{d:"M22 20h.01"}],["path",{d:"m22 2-2.24.75a2.9 2.9 0 0 0-1.96 3.12c.1.86-.57 1.63-1.45 1.63h-.38c-.86 0-1.6.6-1.76 1.44L14 10"}],["path",{d:"m22 13-.82-.33c-.86-.34-1.82.2-1.98 1.11c-.11.7-.72 1.22-1.43 1.22H17"}],["path",{d:"m11 2 .33.82c.34.86-.2 1.82-1.11 1.98C9.52 4.9 9 5.52 9 6.23V7"}],["path",{d:"M11 13c1.93 1.93 2.83 4.17 2 5-.83.83-3.07-.07-5-2-1.93-1.93-2.83-4.17-2-5 .83-.83 3.07.07 5 2Z"}]];var rP=[["rect",{x:"14",y:"3",width:"5",height:"18",rx:"1"}],["rect",{x:"5",y:"3",width:"5",height:"18",rx:"1"}]];var aP=[["circle",{cx:"11",cy:"4",r:"2"}],["circle",{cx:"18",cy:"8",r:"2"}],["circle",{cx:"20",cy:"16",r:"2"}],["path",{d:"M9 10a5 5 0 0 1 5 5v3.5a3.5 3.5 0 0 1-6.84 1.045Q6.52 17.48 4.46 16.84A3.5 3.5 0 0 1 5.5 10Z"}]];var tP=[["rect",{width:"14",height:"20",x:"5",y:"2",rx:"2"}],["path",{d:"M15 14h.01"}],["path",{d:"M9 6h6"}],["path",{d:"M9 10h6"}]];var m6=[["path",{d:"M13 21h8"}],["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z"}]];var oP=[["path",{d:"m10 10-6.157 6.162a2 2 0 0 0-.5.833l-1.322 4.36a.5.5 0 0 0 .622.624l4.358-1.323a2 2 0 0 0 .83-.5L14 13.982"}],["path",{d:"m12.829 7.172 4.359-4.346a1 1 0 1 1 3.986 3.986l-4.353 4.353"}],["path",{d:"m2 2 20 20"}]];var eP=[["path",{d:"M15.707 21.293a1 1 0 0 1-1.414 0l-1.586-1.586a1 1 0 0 1 0-1.414l5.586-5.586a1 1 0 0 1 1.414 0l1.586 1.586a1 1 0 0 1 0 1.414z"}],["path",{d:"m18 13-1.375-6.874a1 1 0 0 0-.746-.776L3.235 2.028a1 1 0 0 0-1.207 1.207L5.35 15.879a1 1 0 0 0 .776.746L13 18"}],["path",{d:"m2.3 2.3 7.286 7.286"}],["circle",{cx:"11",cy:"11",r:"2"}]];var u6=[["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z"}]];var ZS=[["path",{d:"M13 21h8"}],["path",{d:"m15 5 4 4"}],["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z"}]];var JS=[["path",{d:"m10 10-6.157 6.162a2 2 0 0 0-.5.833l-1.322 4.36a.5.5 0 0 0 .622.624l4.358-1.323a2 2 0 0 0 .83-.5L14 13.982"}],["path",{d:"m12.829 7.172 4.359-4.346a1 1 0 1 1 3.986 3.986l-4.353 4.353"}],["path",{d:"m15 5 4 4"}],["path",{d:"m2 2 20 20"}]];var KS=[["path",{d:"M13 7 8.7 2.7a2.41 2.41 0 0 0-3.4 0L2.7 5.3a2.41 2.41 0 0 0 0 3.4L7 13"}],["path",{d:"m8 6 2-2"}],["path",{d:"m18 16 2-2"}],["path",{d:"m17 11 4.3 4.3c.94.94.94 2.46 0 3.4l-2.6 2.6c-.94.94-2.46.94-3.4 0L11 17"}],["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z"}],["path",{d:"m15 5 4 4"}]];var YS=[["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z"}],["path",{d:"m15 5 4 4"}]];var XS=[["path",{d:"M10.83 2.38a2 2 0 0 1 2.34 0l8 5.74a2 2 0 0 1 .73 2.25l-3.04 9.26a2 2 0 0 1-1.9 1.37H7.04a2 2 0 0 1-1.9-1.37L2.1 10.37a2 2 0 0 1 .73-2.25z"}]];var WS=[["line",{x1:"19",x2:"5",y1:"5",y2:"19"}],["circle",{cx:"6.5",cy:"6.5",r:"2.5"}],["circle",{cx:"17.5",cy:"17.5",r:"2.5"}]];var QS=[["circle",{cx:"12",cy:"5",r:"1"}],["path",{d:"m9 20 3-6 3 6"}],["path",{d:"m6 8 6 2 6-2"}],["path",{d:"M12 10v4"}]];var VS=[["path",{d:"M20 11H4"}],["path",{d:"M20 7H4"}],["path",{d:"M7 21V4a1 1 0 0 1 1-1h4a1 1 0 0 1 0 12H7"}]];var GS=[["path",{d:"M13 2a9 9 0 0 1 9 9"}],["path",{d:"M13 6a5 5 0 0 1 5 5"}],["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"}]];var IS=[["path",{d:"M14 6h8"}],["path",{d:"m18 2 4 4-4 4"}],["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"}]];var zS=[["path",{d:"M16 2v6h6"}],["path",{d:"m22 2-6 6"}],["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"}]];var NS=[["path",{d:"m16 2 6 6"}],["path",{d:"m22 2-6 6"}],["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"}]];var FS=[["path",{d:"M10.1 13.9a14 14 0 0 0 3.732 2.668 1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2 18 18 0 0 1-12.728-5.272"}],["path",{d:"M22 2 2 22"}],["path",{d:"M4.76 13.582A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 .244.473"}]];var HS=[["path",{d:"m16 8 6-6"}],["path",{d:"M22 8V2h-6"}],["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"}]];var DS=[["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"}]];var BS=[["line",{x1:"9",x2:"9",y1:"4",y2:"20"}],["path",{d:"M4 7c0-1.7 1.3-3 3-3h13"}],["path",{d:"M18 20c-1.7 0-3-1.3-3-3V4"}]];var OS=[["path",{d:"M18.5 8c-1.4 0-2.6-.8-3.2-2A6.87 6.87 0 0 0 2 9v11a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-8.5C22 9.6 20.4 8 18.5 8"}],["path",{d:"M2 14h20"}],["path",{d:"M6 14v4"}],["path",{d:"M10 14v4"}],["path",{d:"M14 14v4"}],["path",{d:"M18 14v4"}]];var TS=[["path",{d:"m14 13-8.381 8.38a1 1 0 0 1-3.001-3L11 9.999"}],["path",{d:"M15.973 4.027A13 13 0 0 0 5.902 2.373c-1.398.342-1.092 2.158.277 2.601a19.9 19.9 0 0 1 5.822 3.024"}],["path",{d:"M16.001 11.999a19.9 19.9 0 0 1 3.024 5.824c.444 1.369 2.26 1.676 2.603.278A13 13 0 0 0 20 8.069"}],["path",{d:"M18.352 3.352a1.205 1.205 0 0 0-1.704 0l-5.296 5.296a1.205 1.205 0 0 0 0 1.704l2.296 2.296a1.205 1.205 0 0 0 1.704 0l5.296-5.296a1.205 1.205 0 0 0 0-1.704z"}]];var PS=[["path",{d:"M21 9V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h4"}],["rect",{width:"10",height:"7",x:"12",y:"13",rx:"2"}]];var SS=[["path",{d:"M2 10h6V4"}],["path",{d:"m2 4 6 6"}],["path",{d:"M21 10V7a2 2 0 0 0-2-2h-7"}],["path",{d:"M3 14v2a2 2 0 0 0 2 2h3"}],["rect",{x:"12",y:"14",width:"10",height:"7",rx:"1"}]];var AS=[["path",{d:"M14 3v11"}],["path",{d:"M14 9h-3a3 3 0 0 1 0-6h9"}],["path",{d:"M18 3v11"}],["path",{d:"M22 18H2l4-4"}],["path",{d:"m6 22-4-4"}]];var qS=[["path",{d:"M11 17h3v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-3a3.16 3.16 0 0 0 2-2h1a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1h-1a5 5 0 0 0-2-4V3a4 4 0 0 0-3.2 1.6l-.3.4H11a6 6 0 0 0-6 6v1a5 5 0 0 0 2 4v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1z"}],["path",{d:"M16 10h.01"}],["path",{d:"M2 8v1a2 2 0 0 0 2 2h1"}]];var ES=[["path",{d:"M10 3v11"}],["path",{d:"M10 9H7a1 1 0 0 1 0-6h8"}],["path",{d:"M14 3v11"}],["path",{d:"m18 14 4 4H2"}],["path",{d:"m22 18-4 4"}]];var CS=[["path",{d:"M13 4v16"}],["path",{d:"M17 4v16"}],["path",{d:"M19 4H9.5a4.5 4.5 0 0 0 0 9H13"}]];var xS=[["path",{d:"M18 11h-4a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h4"}],["path",{d:"M6 7v13a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V7"}],["rect",{width:"16",height:"5",x:"4",y:"2",rx:"1"}]];var wS=[["path",{d:"m10.5 20.5 10-10a4.95 4.95 0 1 0-7-7l-10 10a4.95 4.95 0 1 0 7 7Z"}],["path",{d:"m8.5 8.5 7 7"}]];var US=[["path",{d:"M12 17v5"}],["path",{d:"M9 10.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V16a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-.76a2 2 0 0 0-1.11-1.79l-1.78-.9A2 2 0 0 1 15 10.76V7a1 1 0 0 1 1-1 2 2 0 0 0 0-4H8a2 2 0 0 0 0 4 1 1 0 0 1 1 1z"}]];var MS=[["path",{d:"m12 9-8.414 8.414A2 2 0 0 0 3 18.828v1.344a2 2 0 0 1-.586 1.414A2 2 0 0 1 3.828 21h1.344a2 2 0 0 0 1.414-.586L15 12"}],["path",{d:"m18 9 .4.4a1 1 0 1 1-3 3l-3.8-3.8a1 1 0 1 1 3-3l.4.4 3.4-3.4a1 1 0 1 1 3 3z"}],["path",{d:"m2 22 .414-.414"}]];var RS=[["path",{d:"M12 17v5"}],["path",{d:"M15 9.34V7a1 1 0 0 1 1-1 2 2 0 0 0 0-4H7.89"}],["path",{d:"m2 2 20 20"}],["path",{d:"M9 9v1.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V16a1 1 0 0 0 1 1h11"}]];var jS=[["path",{d:"m12 14-1 1"}],["path",{d:"m13.75 18.25-1.25 1.42"}],["path",{d:"M17.775 5.654a15.68 15.68 0 0 0-12.121 12.12"}],["path",{d:"M18.8 9.3a1 1 0 0 0 2.1 7.7"}],["path",{d:"M21.964 20.732a1 1 0 0 1-1.232 1.232l-18-5a1 1 0 0 1-.695-1.232A19.68 19.68 0 0 1 15.732 2.037a1 1 0 0 1 1.232.695z"}]];var LS=[["path",{d:"M2 22h20"}],["path",{d:"M3.77 10.77 2 9l2-4.5 1.1.55c.55.28.9.84.9 1.45s.35 1.17.9 1.45L8 8.5l3-6 1.05.53a2 2 0 0 1 1.09 1.52l.72 5.4a2 2 0 0 0 1.09 1.52l4.4 2.2c.42.22.78.55 1.01.96l.6 1.03c.49.88-.06 1.98-1.06 2.1l-1.18.15c-.47.06-.95-.02-1.37-.24L4.29 11.15a2 2 0 0 1-.52-.38Z"}]];var yS=[["path",{d:"M2 22h20"}],["path",{d:"M6.36 17.4 4 17l-2-4 1.1-.55a2 2 0 0 1 1.8 0l.17.1a2 2 0 0 0 1.8 0L8 12 5 6l.9-.45a2 2 0 0 1 2.09.2l4.02 3a2 2 0 0 0 2.1.2l4.19-2.06a2.41 2.41 0 0 1 1.73-.17L21 7a1.4 1.4 0 0 1 .87 1.99l-.38.76c-.23.46-.6.84-1.07 1.08L7.58 17.2a2 2 0 0 1-1.22.18Z"}]];var fS=[["path",{d:"M17.8 19.2 16 11l3.5-3.5C21 6 21.5 4 21 3c-1-.5-3 0-4.5 1.5L13 8 4.8 6.2c-.5-.1-.9.1-1.1.5l-.3.5c-.2.5-.1 1 .3 1.3L9 12l-2 3H4l-1 1 3 2 2 3 1-1v-3l3-2 3.5 5.3c.3.4.8.5 1.3.3l.5-.2c.4-.3.6-.7.5-1.2z"}]];var kS=[["path",{d:"M5 5a2 2 0 0 1 3.008-1.728l11.997 6.998a2 2 0 0 1 .003 3.458l-12 7A2 2 0 0 1 5 19z"}]];var bS=[["path",{d:"M9 2v6"}],["path",{d:"M15 2v6"}],["path",{d:"M12 17v5"}],["path",{d:"M5 8h14"}],["path",{d:"M6 11V8h12v3a6 6 0 1 1-12 0Z"}]];var d6=[["path",{d:"M6.3 20.3a2.4 2.4 0 0 0 3.4 0L12 18l-6-6-2.3 2.3a2.4 2.4 0 0 0 0 3.4Z"}],["path",{d:"m2 22 3-3"}],["path",{d:"M7.5 13.5 10 11"}],["path",{d:"M10.5 16.5 13 14"}],["path",{d:"m18 3-4 4h6l-4 4"}]];var hS=[["path",{d:"M12 22v-5"}],["path",{d:"M9 8V2"}],["path",{d:"M15 8V2"}],["path",{d:"M18 8v5a4 4 0 0 1-4 4h-4a4 4 0 0 1-4-4V8Z"}]];var vS=[["path",{d:"M5 12h14"}],["path",{d:"M12 5v14"}]];var $S=[["path",{d:"M3 2v1c0 1 2 1 2 2S3 6 3 7s2 1 2 2-2 1-2 2 2 1 2 2"}],["path",{d:"M18 6h.01"}],["path",{d:"M6 18h.01"}],["path",{d:"M20.83 8.83a4 4 0 0 0-5.66-5.66l-12 12a4 4 0 1 0 5.66 5.66Z"}],["path",{d:"M18 11.66V22a4 4 0 0 0 4-4V6"}]];var gS=[["path",{d:"M20 3a2 2 0 0 1 2 2v6a1 1 0 0 1-20 0V5a2 2 0 0 1 2-2z"}],["path",{d:"m8 10 4 4 4-4"}]];var _S=[["path",{d:"M13 17a1 1 0 1 0-2 0l.5 4.5a0.5 0.5 0 0 0 1 0z",fill:"currentColor"}],["path",{d:"M16.85 18.58a9 9 0 1 0-9.7 0"}],["path",{d:"M8 14a5 5 0 1 1 8 0"}],["circle",{cx:"12",cy:"11",r:"1",fill:"currentColor"}]];var mS=[["path",{d:"M10 4.5V4a2 2 0 0 0-2.41-1.957"}],["path",{d:"M13.9 8.4a2 2 0 0 0-1.26-1.295"}],["path",{d:"M21.7 16.2A8 8 0 0 0 22 14v-3a2 2 0 1 0-4 0v-1a2 2 0 0 0-3.63-1.158"}],["path",{d:"m7 15-1.8-1.8a2 2 0 0 0-2.79 2.86L6 19.7a7.74 7.74 0 0 0 6 2.3h2a8 8 0 0 0 5.657-2.343"}],["path",{d:"M6 6v8"}],["path",{d:"m2 2 20 20"}]];var uS=[["path",{d:"M22 14a8 8 0 0 1-8 8"}],["path",{d:"M18 11v-1a2 2 0 0 0-2-2a2 2 0 0 0-2 2"}],["path",{d:"M14 10V9a2 2 0 0 0-2-2a2 2 0 0 0-2 2v1"}],["path",{d:"M10 9.5V4a2 2 0 0 0-2-2a2 2 0 0 0-2 2v10"}],["path",{d:"M18 11a2 2 0 1 1 4 0v3a8 8 0 0 1-8 8h-2c-2.8 0-4.5-.86-5.99-2.34l-3.6-3.6a2 2 0 0 1 2.83-2.82L7 15"}]];var dS=[["path",{d:"M18 8a2 2 0 0 0 0-4 2 2 0 0 0-4 0 2 2 0 0 0-4 0 2 2 0 0 0-4 0 2 2 0 0 0 0 4"}],["path",{d:"M10 22 9 8"}],["path",{d:"m14 22 1-14"}],["path",{d:"M20 8c.5 0 .9.4.8 1l-2.6 12c-.1.5-.7 1-1.2 1H7c-.6 0-1.1-.4-1.2-1L3.2 9c-.1-.6.3-1 .8-1Z"}]];var cS=[["path",{d:"M18.6 14.4c.8-.8.8-2 0-2.8l-8.1-8.1a4.95 4.95 0 1 0-7.1 7.1l8.1 8.1c.9.7 2.1.7 2.9-.1Z"}],["path",{d:"m22 22-5.5-5.5"}]];var pS=[["path",{d:"M18 7c0-5.333-8-5.333-8 0"}],["path",{d:"M10 7v14"}],["path",{d:"M6 21h12"}],["path",{d:"M6 13h10"}]];var nS=[["path",{d:"M18.36 6.64A9 9 0 0 1 20.77 15"}],["path",{d:"M6.16 6.16a9 9 0 1 0 12.68 12.68"}],["path",{d:"M12 2v4"}],["path",{d:"m2 2 20 20"}]];var iS=[["path",{d:"M12 2v10"}],["path",{d:"M18.4 6.6a9 9 0 1 1-12.77.04"}]];var lS=[["path",{d:"M2 3h20"}],["path",{d:"M21 3v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V3"}],["path",{d:"m7 21 5-5 5 5"}]];var sS=[["path",{d:"M13.5 22H7a1 1 0 0 1-1-1v-6a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v.5"}],["path",{d:"m16 19 2 2 4-4"}],["path",{d:"M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v2"}],["path",{d:"M6 9V3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6"}]];var rS=[["path",{d:"M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2"}],["path",{d:"M6 9V3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6"}],["rect",{x:"6",y:"14",width:"12",height:"8",rx:"1"}]];var aS=[["path",{d:"M5 7 3 5"}],["path",{d:"M9 6V3"}],["path",{d:"m13 7 2-2"}],["circle",{cx:"9",cy:"13",r:"3"}],["path",{d:"M11.83 12H20a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h2.17"}],["path",{d:"M16 16h2"}]];var tS=[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2"}],["path",{d:"M12 9v11"}],["path",{d:"M2 9h13a2 2 0 0 1 2 2v9"}]];var oS=[["path",{d:"M15.39 4.39a1 1 0 0 0 1.68-.474 2.5 2.5 0 1 1 3.014 3.015 1 1 0 0 0-.474 1.68l1.683 1.682a2.414 2.414 0 0 1 0 3.414L19.61 15.39a1 1 0 0 1-1.68-.474 2.5 2.5 0 1 0-3.014 3.015 1 1 0 0 1 .474 1.68l-1.683 1.682a2.414 2.414 0 0 1-3.414 0L8.61 19.61a1 1 0 0 0-1.68.474 2.5 2.5 0 1 1-3.014-3.015 1 1 0 0 0 .474-1.68l-1.683-1.682a2.414 2.414 0 0 1 0-3.414L4.39 8.61a1 1 0 0 1 1.68.474 2.5 2.5 0 1 0 3.014-3.015 1 1 0 0 1-.474-1.68l1.683-1.682a2.414 2.414 0 0 1 3.414 0z"}]];var eS=[["rect",{width:"5",height:"5",x:"3",y:"3",rx:"1"}],["rect",{width:"5",height:"5",x:"16",y:"3",rx:"1"}],["rect",{width:"5",height:"5",x:"3",y:"16",rx:"1"}],["path",{d:"M21 16h-3a2 2 0 0 0-2 2v3"}],["path",{d:"M21 21v.01"}],["path",{d:"M12 7v3a2 2 0 0 1-2 2H7"}],["path",{d:"M3 12h.01"}],["path",{d:"M12 3h.01"}],["path",{d:"M12 16v.01"}],["path",{d:"M16 12h1"}],["path",{d:"M21 12v.01"}],["path",{d:"M12 21v-1"}]];var ZA=[["path",{d:"M2.5 16.88a1 1 0 0 1-.32-1.43l9-13.02a1 1 0 0 1 1.64 0l9 13.01a1 1 0 0 1-.32 1.44l-8.51 4.86a2 2 0 0 1-1.98 0Z"}],["path",{d:"M12 2v20"}]];var JA=[["path",{d:"M16 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z"}],["path",{d:"M5 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z"}]];var KA=[["path",{d:"M13 16a3 3 0 0 1 2.24 5"}],["path",{d:"M18 12h.01"}],["path",{d:"M18 21h-8a4 4 0 0 1-4-4 7 7 0 0 1 7-7h.2L9.6 6.4a1 1 0 1 1 2.8-2.8L15.8 7h.2c3.3 0 6 2.7 6 6v1a2 2 0 0 1-2 2h-1a3 3 0 0 0-3 3"}],["path",{d:"M20 8.54V4a2 2 0 1 0-4 0v3"}],["path",{d:"M7.612 12.524a3 3 0 1 0-1.6 4.3"}]];var YA=[["path",{d:"M19.07 4.93A10 10 0 0 0 6.99 3.34"}],["path",{d:"M4 6h.01"}],["path",{d:"M2.29 9.62A10 10 0 1 0 21.31 8.35"}],["path",{d:"M16.24 7.76A6 6 0 1 0 8.23 16.67"}],["path",{d:"M12 18h.01"}],["path",{d:"M17.99 11.66A6 6 0 0 1 15.77 16.67"}],["circle",{cx:"12",cy:"12",r:"2"}],["path",{d:"m13.41 10.59 5.66-5.66"}]];var XA=[["path",{d:"M12 12h.01"}],["path",{d:"M14 15.4641a4 4 0 0 1-4 0L7.52786 19.74597 A 1 1 0 0 0 7.99303 21.16211 10 10 0 0 0 16.00697 21.16211 1 1 0 0 0 16.47214 19.74597z"}],["path",{d:"M16 12a4 4 0 0 0-2-3.464l2.472-4.282a1 1 0 0 1 1.46-.305 10 10 0 0 1 4.006 6.94A1 1 0 0 1 21 12z"}],["path",{d:"M8 12a4 4 0 0 1 2-3.464L7.528 4.254a1 1 0 0 0-1.46-.305 10 10 0 0 0-4.006 6.94A1 1 0 0 0 3 12z"}]];var WA=[["path",{d:"M3 12h3.28a1 1 0 0 1 .948.684l2.298 7.934a.5.5 0 0 0 .96-.044L13.82 4.771A1 1 0 0 1 14.792 4H21"}]];var QA=[["path",{d:"M5 16v2"}],["path",{d:"M19 16v2"}],["rect",{width:"20",height:"8",x:"2",y:"8",rx:"2"}],["path",{d:"M18 12h.01"}]];var VA=[["path",{d:"M4.9 16.1C1 12.2 1 5.8 4.9 1.9"}],["path",{d:"M7.8 4.7a6.14 6.14 0 0 0-.8 7.5"}],["circle",{cx:"12",cy:"9",r:"2"}],["path",{d:"M16.2 4.8c2 2 2.26 5.11.8 7.47"}],["path",{d:"M19.1 1.9a9.96 9.96 0 0 1 0 14.1"}],["path",{d:"M9.5 18h5"}],["path",{d:"m8 22 4-11 4 11"}]];var GA=[["path",{d:"M16.247 7.761a6 6 0 0 1 0 8.478"}],["path",{d:"M19.075 4.933a10 10 0 0 1 0 14.134"}],["path",{d:"M4.925 19.067a10 10 0 0 1 0-14.134"}],["path",{d:"M7.753 16.239a6 6 0 0 1 0-8.478"}],["circle",{cx:"12",cy:"12",r:"2"}]];var IA=[["path",{d:"M20.34 17.52a10 10 0 1 0-2.82 2.82"}],["circle",{cx:"19",cy:"19",r:"2"}],["path",{d:"m13.41 13.41 4.18 4.18"}],["circle",{cx:"12",cy:"12",r:"2"}]];var zA=[["path",{d:"M5 15h14"}],["path",{d:"M5 9h14"}],["path",{d:"m14 20-5-5 6-6-5-5"}]];var NA=[["path",{d:"M13 22H4a2 2 0 0 1 0-4h12"}],["path",{d:"M13.236 18a3 3 0 0 0-2.2-5"}],["path",{d:"M16 9h.01"}],["path",{d:"M16.82 3.94a3 3 0 1 1 3.237 4.868l1.815 2.587a1.5 1.5 0 0 1-1.5 2.1l-2.872-.453a3 3 0 0 0-3.5 3"}],["path",{d:"M17 4.988a3 3 0 1 0-5.2 2.052A7 7 0 0 0 4 14.015 4 4 0 0 0 8 18"}]];var FA=[["path",{d:"M22 17a10 10 0 0 0-20 0"}],["path",{d:"M6 17a6 6 0 0 1 12 0"}],["path",{d:"M10 17a2 2 0 0 1 4 0"}]];var HA=[["rect",{width:"12",height:"20",x:"6",y:"2",rx:"2"}],["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2"}]];var DA=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z"}],["path",{d:"M12 6.5v11"}],["path",{d:"M15 9.4a4 4 0 1 0 0 5.2"}]];var BA=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z"}],["path",{d:"M8 12h5"}],["path",{d:"M16 9.5a4 4 0 1 0 0 5.2"}]];var OA=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z"}],["path",{d:"M8 7h8"}],["path",{d:"M12 17.5 8 15h1a4 4 0 0 0 0-8"}],["path",{d:"M8 11h8"}]];var TA=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z"}],["path",{d:"m12 10 3-3"}],["path",{d:"m9 7 3 3v7.5"}],["path",{d:"M9 11h6"}],["path",{d:"M9 15h6"}]];var PA=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z"}],["path",{d:"M8 13h5"}],["path",{d:"M10 17V9.5a2.5 2.5 0 0 1 5 0"}],["path",{d:"M8 17h7"}]];var SA=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z"}],["path",{d:"M8 15h5"}],["path",{d:"M8 11h5a2 2 0 1 0 0-4h-3v10"}]];var AA=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z"}],["path",{d:"M10 17V7h5"}],["path",{d:"M10 11h4"}],["path",{d:"M8 15h5"}]];var qA=[["path",{d:"M13 16H8"}],["path",{d:"M14 8H8"}],["path",{d:"M16 12H8"}],["path",{d:"M4 3a1 1 0 0 1 1-1 1.3 1.3 0 0 1 .7.2l.933.6a1.3 1.3 0 0 0 1.4 0l.934-.6a1.3 1.3 0 0 1 1.4 0l.933.6a1.3 1.3 0 0 0 1.4 0l.933-.6a1.3 1.3 0 0 1 1.4 0l.934.6a1.3 1.3 0 0 0 1.4 0l.933-.6A1.3 1.3 0 0 1 19 2a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1 1.3 1.3 0 0 1-.7-.2l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.934.6a1.3 1.3 0 0 1-1.4 0l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-1.4 0l-.934-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-.7.2 1 1 0 0 1-1-1z"}]];var EA=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z"}],["path",{d:"M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8"}],["path",{d:"M12 17.5v-11"}]];var CA=[["path",{d:"M10 6.5v11a5.5 5.5 0 0 0 5.5-5.5"}],["path",{d:"m14 8-6 3"}],["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1z"}]];var xA=[["path",{d:"M14 4v16H3a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1z"}],["circle",{cx:"14",cy:"12",r:"8"}]];var c6=[["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2"}],["path",{d:"M12 12h.01"}],["path",{d:"M17 12h.01"}],["path",{d:"M7 12h.01"}]];var wA=[["path",{d:"M20 6a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-4a2 2 0 0 1-1.6-.8l-1.6-2.13a1 1 0 0 0-1.6 0L9.6 17.2A2 2 0 0 1 8 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2z"}]];var UA=[["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2"}]];var MA=[["rect",{width:"12",height:"20",x:"6",y:"2",rx:"2"}]];var RA=[["path",{d:"M7 19H4.815a1.83 1.83 0 0 1-1.57-.881 1.785 1.785 0 0 1-.004-1.784L7.196 9.5"}],["path",{d:"M11 19h8.203a1.83 1.83 0 0 0 1.556-.89 1.784 1.784 0 0 0 0-1.775l-1.226-2.12"}],["path",{d:"m14 16-3 3 3 3"}],["path",{d:"M8.293 13.596 7.196 9.5 3.1 10.598"}],["path",{d:"m9.344 5.811 1.093-1.892A1.83 1.83 0 0 1 11.985 3a1.784 1.784 0 0 1 1.546.888l3.943 6.843"}],["path",{d:"m13.378 9.633 4.096 1.098 1.097-4.096"}]];var jA=[["path",{d:"m15 14 5-5-5-5"}],["path",{d:"M20 9H9.5A5.5 5.5 0 0 0 4 14.5A5.5 5.5 0 0 0 9.5 20H13"}]];var LA=[["circle",{cx:"12",cy:"17",r:"1"}],["path",{d:"M21 7v6h-6"}],["path",{d:"M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7"}]];var yA=[["path",{d:"M21 7v6h-6"}],["path",{d:"M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7"}]];var fA=[["path",{d:"M21 12a9 9 0 0 0-9-9 9.75 9.75 0 0 0-6.74 2.74L3 8"}],["path",{d:"M3 3v5h5"}],["path",{d:"M3 12a9 9 0 0 0 9 9 9.75 9.75 0 0 0 6.74-2.74L21 16"}],["path",{d:"M16 16h5v5"}],["circle",{cx:"12",cy:"12",r:"1"}]];var kA=[["path",{d:"M21 12a9 9 0 0 0-9-9 9.75 9.75 0 0 0-6.74 2.74L3 8"}],["path",{d:"M3 3v5h5"}],["path",{d:"M3 12a9 9 0 0 0 9 9 9.75 9.75 0 0 0 6.74-2.74L21 16"}],["path",{d:"M16 16h5v5"}]];var bA=[["path",{d:"M21 8L18.74 5.74A9.75 9.75 0 0 0 12 3C11 3 10.03 3.16 9.13 3.47"}],["path",{d:"M8 16H3v5"}],["path",{d:"M3 12C3 9.51 4 7.26 5.64 5.64"}],["path",{d:"m3 16 2.26 2.26A9.75 9.75 0 0 0 12 21c2.49 0 4.74-1 6.36-2.64"}],["path",{d:"M21 12c0 1-.16 1.97-.47 2.87"}],["path",{d:"M21 3v5h-5"}],["path",{d:"M22 22 2 2"}]];var hA=[["path",{d:"M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8"}],["path",{d:"M21 3v5h-5"}],["path",{d:"M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16"}],["path",{d:"M8 16H3v5"}]];var vA=[["path",{d:"M5 6a4 4 0 0 1 4-4h6a4 4 0 0 1 4 4v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6Z"}],["path",{d:"M5 10h14"}],["path",{d:"M15 7v6"}]];var $A=[["path",{d:"M17 3v10"}],["path",{d:"m12.67 5.5 8.66 5"}],["path",{d:"m12.67 10.5 8.66-5"}],["path",{d:"M9 17a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-2z"}]];var gA=[["path",{d:"M4 7V4h16v3"}],["path",{d:"M5 20h6"}],["path",{d:"M13 4 8 20"}],["path",{d:"m15 15 5 5"}],["path",{d:"m20 15-5 5"}]];var _A=[["path",{d:"m17 2 4 4-4 4"}],["path",{d:"M3 11v-1a4 4 0 0 1 4-4h14"}],["path",{d:"m7 22-4-4 4-4"}],["path",{d:"M21 13v1a4 4 0 0 1-4 4H3"}],["path",{d:"M11 10h1v4"}]];var mA=[["path",{d:"m2 9 3-3 3 3"}],["path",{d:"M13 18H7a2 2 0 0 1-2-2V6"}],["path",{d:"m22 15-3 3-3-3"}],["path",{d:"M11 6h6a2 2 0 0 1 2 2v10"}]];var uA=[["path",{d:"m17 2 4 4-4 4"}],["path",{d:"M3 11v-1a4 4 0 0 1 4-4h14"}],["path",{d:"m7 22-4-4 4-4"}],["path",{d:"M21 13v1a4 4 0 0 1-4 4H3"}]];var dA=[["path",{d:"M14 14a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1"}],["path",{d:"M14 4a1 1 0 0 1 1-1"}],["path",{d:"M15 10a1 1 0 0 1-1-1"}],["path",{d:"M19 14a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1"}],["path",{d:"M21 4a1 1 0 0 0-1-1"}],["path",{d:"M21 9a1 1 0 0 1-1 1"}],["path",{d:"m3 7 3 3 3-3"}],["path",{d:"M6 10V5a2 2 0 0 1 2-2h2"}],["rect",{x:"3",y:"14",width:"7",height:"7",rx:"1"}]];var cA=[["path",{d:"M14 4a1 1 0 0 1 1-1"}],["path",{d:"M15 10a1 1 0 0 1-1-1"}],["path",{d:"M21 4a1 1 0 0 0-1-1"}],["path",{d:"M21 9a1 1 0 0 1-1 1"}],["path",{d:"m3 7 3 3 3-3"}],["path",{d:"M6 10V5a2 2 0 0 1 2-2h2"}],["rect",{x:"3",y:"14",width:"7",height:"7",rx:"1"}]];var pA=[["path",{d:"m12 17-5-5 5-5"}],["path",{d:"M22 18v-2a4 4 0 0 0-4-4H7"}],["path",{d:"m7 17-5-5 5-5"}]];var nA=[["path",{d:"M20 18v-2a4 4 0 0 0-4-4H4"}],["path",{d:"m9 17-5-5 5-5"}]];var iA=[["path",{d:"M12 6a2 2 0 0 0-3.414-1.414l-6 6a2 2 0 0 0 0 2.828l6 6A2 2 0 0 0 12 18z"}],["path",{d:"M22 6a2 2 0 0 0-3.414-1.414l-6 6a2 2 0 0 0 0 2.828l6 6A2 2 0 0 0 22 18z"}]];var lA=[["path",{d:"M12 11.22C11 9.997 10 9 10 8a2 2 0 0 1 4 0c0 1-.998 2.002-2.01 3.22"}],["path",{d:"m12 18 2.57-3.5"}],["path",{d:"M6.243 9.016a7 7 0 0 1 11.507-.009"}],["path",{d:"M9.35 14.53 12 11.22"}],["path",{d:"M9.35 14.53C7.728 12.246 6 10.221 6 7a6 5 0 0 1 12 0c-.005 3.22-1.778 5.235-3.43 7.5l3.557 4.527a1 1 0 0 1-.203 1.43l-1.894 1.36a1 1 0 0 1-1.384-.215L12 18l-2.679 3.593a1 1 0 0 1-1.39.213l-1.865-1.353a1 1 0 0 1-.203-1.422z"}]];var sA=[["path",{d:"M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 0 0-2.91-.09z"}],["path",{d:"m12 15-3-3a22 22 0 0 1 2-3.95A12.88 12.88 0 0 1 22 2c0 2.72-.78 7.5-6 11a22.35 22.35 0 0 1-4 2z"}],["path",{d:"M9 12H4s.55-3.03 2-4c1.62-1.08 5 0 5 0"}],["path",{d:"M12 15v5s3.03-.55 4-2c1.08-1.62 0-5 0-5"}]];var rA=[["polyline",{points:"3.5 2 6.5 12.5 18 12.5"}],["line",{x1:"9.5",x2:"5.5",y1:"12.5",y2:"20"}],["line",{x1:"15",x2:"18.5",y1:"12.5",y2:"20"}],["path",{d:"M2.75 18a13 13 0 0 0 18.5 0"}]];var aA=[["path",{d:"M6 19V5"}],["path",{d:"M10 19V6.8"}],["path",{d:"M14 19v-7.8"}],["path",{d:"M18 5v4"}],["path",{d:"M18 19v-6"}],["path",{d:"M22 19V9"}],["path",{d:"M2 19V9a4 4 0 0 1 4-4c2 0 4 1.33 6 4s4 4 6 4a4 4 0 1 0-3-6.65"}]];var tA=[["path",{d:"M17 10h-1a4 4 0 1 1 4-4v.534"}],["path",{d:"M17 6h1a4 4 0 0 1 1.42 7.74l-2.29.87a6 6 0 0 1-5.339-10.68l2.069-1.31"}],["path",{d:"M4.5 17c2.8-.5 4.4 0 5.5.8s1.8 2.2 2.3 3.7c-2 .4-3.5.4-4.8-.3-1.2-.6-2.3-1.9-3-4.2"}],["path",{d:"M9.77 12C4 15 2 22 2 22"}],["circle",{cx:"17",cy:"8",r:"2"}]];var p6=[["path",{d:"M16.466 7.5C15.643 4.237 13.952 2 12 2 9.239 2 7 6.477 7 12s2.239 10 5 10c.342 0 .677-.069 1-.2"}],["path",{d:"m15.194 13.707 3.814 1.86-1.86 3.814"}],["path",{d:"M19 15.57c-1.804.885-4.274 1.43-7 1.43-5.523 0-10-2.239-10-5s4.477-5 10-5c4.838 0 8.873 1.718 9.8 4"}]];var oA=[["path",{d:"m14.5 9.5 1 1"}],["path",{d:"m15.5 8.5-4 4"}],["path",{d:"M3 12a9 9 0 1 0 9-9 9.74 9.74 0 0 0-6.74 2.74L3 8"}],["path",{d:"M3 3v5h5"}],["circle",{cx:"10",cy:"14",r:"2"}]];var eA=[["path",{d:"M20 9V7a2 2 0 0 0-2-2h-6"}],["path",{d:"m15 2-3 3 3 3"}],["path",{d:"M20 13v5a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h2"}]];var Zq=[["path",{d:"M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8"}],["path",{d:"M3 3v5h5"}]];var Jq=[["path",{d:"M12 5H6a2 2 0 0 0-2 2v3"}],["path",{d:"m9 8 3-3-3-3"}],["path",{d:"M4 14v4a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2"}]];var Kq=[["path",{d:"M21 12a9 9 0 1 1-9-9c2.52 0 4.93 1 6.74 2.74L21 8"}],["path",{d:"M21 3v5h-5"}]];var Yq=[["circle",{cx:"6",cy:"19",r:"3"}],["path",{d:"M9 19h8.5c.4 0 .9-.1 1.3-.2"}],["path",{d:"M5.2 5.2A3.5 3.53 0 0 0 6.5 12H12"}],["path",{d:"m2 2 20 20"}],["path",{d:"M21 15.3a3.5 3.5 0 0 0-3.3-3.3"}],["path",{d:"M15 5h-4.3"}],["circle",{cx:"18",cy:"5",r:"3"}]];var Xq=[["circle",{cx:"6",cy:"19",r:"3"}],["path",{d:"M9 19h8.5a3.5 3.5 0 0 0 0-7h-11a3.5 3.5 0 0 1 0-7H15"}],["circle",{cx:"18",cy:"5",r:"3"}]];var Wq=[["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2"}],["path",{d:"M6.01 18H6"}],["path",{d:"M10.01 18H10"}],["path",{d:"M15 10v4"}],["path",{d:"M17.84 7.17a4 4 0 0 0-5.66 0"}],["path",{d:"M20.66 4.34a8 8 0 0 0-11.31 0"}]];var n6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 12h18"}]];var i6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M21 9H3"}],["path",{d:"M21 15H3"}]];var Qq=[["path",{d:"M4 11a9 9 0 0 1 9 9"}],["path",{d:"M4 4a16 16 0 0 1 16 16"}],["circle",{cx:"5",cy:"19",r:"1"}]];var Vq=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M21 7.5H3"}],["path",{d:"M21 12H3"}],["path",{d:"M21 16.5H3"}]];var Gq=[["path",{d:"M12 15v-3.014"}],["path",{d:"M16 15v-3.014"}],["path",{d:"M20 6H4"}],["path",{d:"M20 8V4"}],["path",{d:"M4 8V4"}],["path",{d:"M8 15v-3.014"}],["rect",{x:"3",y:"12",width:"18",height:"7",rx:"1"}]];var Iq=[["path",{d:"M21.3 15.3a2.4 2.4 0 0 1 0 3.4l-2.6 2.6a2.4 2.4 0 0 1-3.4 0L2.7 8.7a2.41 2.41 0 0 1 0-3.4l2.6-2.6a2.41 2.41 0 0 1 3.4 0Z"}],["path",{d:"m14.5 12.5 2-2"}],["path",{d:"m11.5 9.5 2-2"}],["path",{d:"m8.5 6.5 2-2"}],["path",{d:"m17.5 15.5 2-2"}]];var zq=[["path",{d:"M6 11h8a4 4 0 0 0 0-8H9v18"}],["path",{d:"M6 15h8"}]];var Nq=[["path",{d:"M10 2v15"}],["path",{d:"M7 22a4 4 0 0 1-4-4 1 1 0 0 1 1-1h16a1 1 0 0 1 1 1 4 4 0 0 1-4 4z"}],["path",{d:"M9.159 2.46a1 1 0 0 1 1.521-.193l9.977 8.98A1 1 0 0 1 20 13H4a1 1 0 0 1-.824-1.567z"}]];var Fq=[["path",{d:"M7 21h10"}],["path",{d:"M12 21a9 9 0 0 0 9-9H3a9 9 0 0 0 9 9Z"}],["path",{d:"M11.38 12a2.4 2.4 0 0 1-.4-4.77 2.4 2.4 0 0 1 3.2-2.77 2.4 2.4 0 0 1 3.47-.63 2.4 2.4 0 0 1 3.37 3.37 2.4 2.4 0 0 1-1.1 3.7 2.51 2.51 0 0 1 .03 1.1"}],["path",{d:"m13 12 4-4"}],["path",{d:"M10.9 7.25A3.99 3.99 0 0 0 4 10c0 .73.2 1.41.54 2"}]];var Hq=[["path",{d:"m2.37 11.223 8.372-6.777a2 2 0 0 1 2.516 0l8.371 6.777"}],["path",{d:"M21 15a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-5.25"}],["path",{d:"M3 15a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h9"}],["path",{d:"m6.67 15 6.13 4.6a2 2 0 0 0 2.8-.4l3.15-4.2"}],["rect",{width:"20",height:"4",x:"2",y:"11",rx:"1"}]];var Dq=[["path",{d:"M4 10a7.31 7.31 0 0 0 10 10Z"}],["path",{d:"m9 15 3-3"}],["path",{d:"M17 13a6 6 0 0 0-6-6"}],["path",{d:"M21 13A10 10 0 0 0 11 3"}]];var Bq=[["path",{d:"m13.5 6.5-3.148-3.148a1.205 1.205 0 0 0-1.704 0L6.352 5.648a1.205 1.205 0 0 0 0 1.704L9.5 10.5"}],["path",{d:"M16.5 7.5 19 5"}],["path",{d:"m17.5 10.5 3.148 3.148a1.205 1.205 0 0 1 0 1.704l-2.296 2.296a1.205 1.205 0 0 1-1.704 0L13.5 14.5"}],["path",{d:"M9 21a6 6 0 0 0-6-6"}],["path",{d:"M9.352 10.648a1.205 1.205 0 0 0 0 1.704l2.296 2.296a1.205 1.205 0 0 0 1.704 0l4.296-4.296a1.205 1.205 0 0 0 0-1.704l-2.296-2.296a1.205 1.205 0 0 0-1.704 0z"}]];var Oq=[["path",{d:"m20 19.5-5.5 1.2"}],["path",{d:"M14.5 4v11.22a1 1 0 0 0 1.242.97L20 15.2"}],["path",{d:"m2.978 19.351 5.549-1.363A2 2 0 0 0 10 16V2"}],["path",{d:"M20 10 4 13.5"}]];var Tq=[["path",{d:"M10 2v3a1 1 0 0 0 1 1h5"}],["path",{d:"M18 18v-6a1 1 0 0 0-1-1h-6a1 1 0 0 0-1 1v6"}],["path",{d:"M18 22H4a2 2 0 0 1-2-2V6"}],["path",{d:"M8 18a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9.172a2 2 0 0 1 1.414.586l2.828 2.828A2 2 0 0 1 22 6.828V16a2 2 0 0 1-2.01 2z"}]];var Pq=[["path",{d:"M13 13H8a1 1 0 0 0-1 1v7"}],["path",{d:"M14 8h1"}],["path",{d:"M17 21v-4"}],["path",{d:"m2 2 20 20"}],["path",{d:"M20.41 20.41A2 2 0 0 1 19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 .59-1.41"}],["path",{d:"M29.5 11.5s5 5 4 5"}],["path",{d:"M9 3h6.2a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V15"}]];var Sq=[["path",{d:"M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z"}],["path",{d:"M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7"}],["path",{d:"M7 3v4a1 1 0 0 0 1 1h7"}]];var l6=[["path",{d:"M5 7v11a1 1 0 0 0 1 1h11"}],["path",{d:"M5.293 18.707 11 13"}],["circle",{cx:"19",cy:"19",r:"2"}],["circle",{cx:"5",cy:"5",r:"2"}]];var Aq=[["path",{d:"m16 16 3-8 3 8c-.87.65-1.92 1-3 1s-2.13-.35-3-1Z"}],["path",{d:"m2 16 3-8 3 8c-.87.65-1.92 1-3 1s-2.13-.35-3-1Z"}],["path",{d:"M7 21h10"}],["path",{d:"M12 3v18"}],["path",{d:"M3 7h2c2 0 5-1 7-2 2 1 5 2 7 2h2"}]];var qq=[["path",{d:"M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7"}],["path",{d:"M14 15H9v-5"}],["path",{d:"M16 3h5v5"}],["path",{d:"M21 3 9 15"}]];var Eq=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["path",{d:"M8 7v10"}],["path",{d:"M12 7v10"}],["path",{d:"M17 7v10"}]];var Cq=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["circle",{cx:"12",cy:"12",r:"1"}],["path",{d:"M18.944 12.33a1 1 0 0 0 0-.66 7.5 7.5 0 0 0-13.888 0 1 1 0 0 0 0 .66 7.5 7.5 0 0 0 13.888 0"}]];var xq=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["path",{d:"M8 14s1.5 2 4 2 4-2 4-2"}],["path",{d:"M9 9h.01"}],["path",{d:"M15 9h.01"}]];var wq=[["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["path",{d:"M7.828 13.07A3 3 0 0 1 12 8.764a3 3 0 0 1 4.172 4.306l-3.447 3.62a1 1 0 0 1-1.449 0z"}]];var Uq=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["path",{d:"M7 12h10"}]];var Mq=[["path",{d:"M17 12v4a1 1 0 0 1-1 1h-4"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M17 8V7"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M7 17h.01"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["rect",{x:"7",y:"7",width:"5",height:"5",rx:"1"}]];var Rq=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["circle",{cx:"12",cy:"12",r:"3"}],["path",{d:"m16 16-1.9-1.9"}]];var jq=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["path",{d:"M7 8h8"}],["path",{d:"M7 12h10"}],["path",{d:"M7 16h6"}]];var Lq=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}]];var yq=[["path",{d:"M14 21v-3a2 2 0 0 0-4 0v3"}],["path",{d:"M18 5v16"}],["path",{d:"m4 6 7.106-3.79a2 2 0 0 1 1.788 0L20 6"}],["path",{d:"m6 11-3.52 2.147a1 1 0 0 0-.48.854V19a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-5a1 1 0 0 0-.48-.853L18 11"}],["path",{d:"M6 5v16"}],["circle",{cx:"12",cy:"9",r:"2"}]];var fq=[["path",{d:"M5.42 9.42 8 12"}],["circle",{cx:"4",cy:"8",r:"2"}],["path",{d:"m14 6-8.58 8.58"}],["circle",{cx:"4",cy:"16",r:"2"}],["path",{d:"M10.8 14.8 14 18"}],["path",{d:"M16 12h-2"}],["path",{d:"M22 12h-2"}]];var kq=[["circle",{cx:"6",cy:"6",r:"3"}],["path",{d:"M8.12 8.12 12 12"}],["path",{d:"M20 4 8.12 15.88"}],["circle",{cx:"6",cy:"18",r:"3"}],["path",{d:"M14.8 14.8 20 20"}]];var bq=[["path",{d:"M13 3H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-3"}],["path",{d:"M8 21h8"}],["path",{d:"M12 17v4"}],["path",{d:"m22 3-5 5"}],["path",{d:"m17 3 5 5"}]];var hq=[["path",{d:"M13 3H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-3"}],["path",{d:"M8 21h8"}],["path",{d:"M12 17v4"}],["path",{d:"m17 8 5-5"}],["path",{d:"M17 3h5v5"}]];var vq=[["path",{d:"M15 12h-5"}],["path",{d:"M15 8h-5"}],["path",{d:"M19 17V5a2 2 0 0 0-2-2H4"}],["path",{d:"M8 21h12a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1H11a1 1 0 0 0-1 1v1a2 2 0 1 1-4 0V5a2 2 0 1 0-4 0v2a1 1 0 0 0 1 1h3"}]];var $q=[["path",{d:"M19 17V5a2 2 0 0 0-2-2H4"}],["path",{d:"M8 21h12a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1H11a1 1 0 0 0-1 1v1a2 2 0 1 1-4 0V5a2 2 0 1 0-4 0v2a1 1 0 0 0 1 1h3"}]];var gq=[["path",{d:"m13 13.5 2-2.5-2-2.5"}],["path",{d:"m21 21-4.3-4.3"}],["path",{d:"M9 8.5 7 11l2 2.5"}],["circle",{cx:"11",cy:"11",r:"8"}]];var _q=[["path",{d:"m8 11 2 2 4-4"}],["circle",{cx:"11",cy:"11",r:"8"}],["path",{d:"m21 21-4.3-4.3"}]];var mq=[["path",{d:"m13.5 8.5-5 5"}],["circle",{cx:"11",cy:"11",r:"8"}],["path",{d:"m21 21-4.3-4.3"}]];var uq=[["path",{d:"m13.5 8.5-5 5"}],["path",{d:"m8.5 8.5 5 5"}],["circle",{cx:"11",cy:"11",r:"8"}],["path",{d:"m21 21-4.3-4.3"}]];var dq=[["path",{d:"m21 21-4.34-4.34"}],["circle",{cx:"11",cy:"11",r:"8"}]];var cq=[["path",{d:"M16 5a4 3 0 0 0-8 0c0 4 8 3 8 7a4 3 0 0 1-8 0"}],["path",{d:"M8 19a4 3 0 0 0 8 0c0-4-8-3-8-7a4 3 0 0 1 8 0"}]];var s6=[["path",{d:"M3.714 3.048a.498.498 0 0 0-.683.627l2.843 7.627a2 2 0 0 1 0 1.396l-2.842 7.627a.498.498 0 0 0 .682.627l18-8.5a.5.5 0 0 0 0-.904z"}],["path",{d:"M6 12h16"}]];var pq=[["rect",{x:"14",y:"14",width:"8",height:"8",rx:"2"}],["rect",{x:"2",y:"2",width:"8",height:"8",rx:"2"}],["path",{d:"M7 14v1a2 2 0 0 0 2 2h1"}],["path",{d:"M14 7h1a2 2 0 0 1 2 2v1"}]];var nq=[["path",{d:"M14.536 21.686a.5.5 0 0 0 .937-.024l6.5-19a.496.496 0 0 0-.635-.635l-19 6.5a.5.5 0 0 0-.024.937l7.93 3.18a2 2 0 0 1 1.112 1.11z"}],["path",{d:"m21.854 2.147-10.94 10.939"}]];var iq=[["path",{d:"m16 16-4 4-4-4"}],["path",{d:"M3 12h18"}],["path",{d:"m8 8 4-4 4 4"}]];var lq=[["path",{d:"m10.852 14.772-.383.923"}],["path",{d:"M13.148 14.772a3 3 0 1 0-2.296-5.544l-.383-.923"}],["path",{d:"m13.148 9.228.383-.923"}],["path",{d:"m13.53 15.696-.382-.924a3 3 0 1 1-2.296-5.544"}],["path",{d:"m14.772 10.852.923-.383"}],["path",{d:"m14.772 13.148.923.383"}],["path",{d:"M4.5 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-.5"}],["path",{d:"M4.5 14H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2h-.5"}],["path",{d:"M6 18h.01"}],["path",{d:"M6 6h.01"}],["path",{d:"m9.228 10.852-.923-.383"}],["path",{d:"m9.228 13.148-.923.383"}]];var sq=[["path",{d:"M12 3v18"}],["path",{d:"m16 16 4-4-4-4"}],["path",{d:"m8 8-4 4 4 4"}]];var rq=[["path",{d:"M6 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-2"}],["path",{d:"M6 14H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2h-2"}],["path",{d:"M6 6h.01"}],["path",{d:"M6 18h.01"}],["path",{d:"m13 6-4 6h6l-4 6"}]];var aq=[["path",{d:"M7 2h13a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-5"}],["path",{d:"M10 10 2.5 2.5C2 2 2 2.5 2 5v3a2 2 0 0 0 2 2h6z"}],["path",{d:"M22 17v-1a2 2 0 0 0-2-2h-1"}],["path",{d:"M4 14a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16.5l1-.5.5.5-8-8H4z"}],["path",{d:"M6 18h.01"}],["path",{d:"m2 2 20 20"}]];var tq=[["rect",{width:"20",height:"8",x:"2",y:"2",rx:"2",ry:"2"}],["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2",ry:"2"}],["line",{x1:"6",x2:"6.01",y1:"6",y2:"6"}],["line",{x1:"6",x2:"6.01",y1:"18",y2:"18"}]];var oq=[["path",{d:"M14 17H5"}],["path",{d:"M19 7h-9"}],["circle",{cx:"17",cy:"17",r:"3"}],["circle",{cx:"7",cy:"7",r:"3"}]];var eq=[["path",{d:"M9.671 4.136a2.34 2.34 0 0 1 4.659 0 2.34 2.34 0 0 0 3.319 1.915 2.34 2.34 0 0 1 2.33 4.033 2.34 2.34 0 0 0 0 3.831 2.34 2.34 0 0 1-2.33 4.033 2.34 2.34 0 0 0-3.319 1.915 2.34 2.34 0 0 1-4.659 0 2.34 2.34 0 0 0-3.32-1.915 2.34 2.34 0 0 1-2.33-4.033 2.34 2.34 0 0 0 0-3.831A2.34 2.34 0 0 1 6.35 6.051a2.34 2.34 0 0 0 3.319-1.915"}],["circle",{cx:"12",cy:"12",r:"3"}]];var ZE=[["path",{d:"M8.3 10a.7.7 0 0 1-.626-1.079L11.4 3a.7.7 0 0 1 1.198-.043L16.3 8.9a.7.7 0 0 1-.572 1.1Z"}],["rect",{x:"3",y:"14",width:"7",height:"7",rx:"1"}],["circle",{cx:"17.5",cy:"17.5",r:"3.5"}]];var JE=[["circle",{cx:"18",cy:"5",r:"3"}],["circle",{cx:"6",cy:"12",r:"3"}],["circle",{cx:"18",cy:"19",r:"3"}],["line",{x1:"8.59",x2:"15.42",y1:"13.51",y2:"17.49"}],["line",{x1:"15.41",x2:"8.59",y1:"6.51",y2:"10.49"}]];var KE=[["path",{d:"M12 2v13"}],["path",{d:"m16 6-4-4-4 4"}],["path",{d:"M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8"}]];var YE=[["path",{d:"M14 11a2 2 0 1 1-4 0 4 4 0 0 1 8 0 6 6 0 0 1-12 0 8 8 0 0 1 16 0 10 10 0 1 1-20 0 11.93 11.93 0 0 1 2.42-7.22 2 2 0 1 1 3.16 2.44"}]];var XE=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["line",{x1:"3",x2:"21",y1:"9",y2:"9"}],["line",{x1:"3",x2:"21",y1:"15",y2:"15"}],["line",{x1:"9",x2:"9",y1:"9",y2:"21"}],["line",{x1:"15",x2:"15",y1:"9",y2:"21"}]];var WE=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"}],["path",{d:"m4.243 5.21 14.39 12.472"}]];var QE=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"}],["path",{d:"M12 8v4"}],["path",{d:"M12 16h.01"}]];var VE=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"}],["path",{d:"m9 12 2 2 4-4"}]];var GE=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"}],["path",{d:"M8 12h.01"}],["path",{d:"M12 12h.01"}],["path",{d:"M16 12h.01"}]];var IE=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"}],["path",{d:"M12 22V2"}]];var zE=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"}],["path",{d:"M9 12h6"}]];var NE=[["path",{d:"m2 2 20 20"}],["path",{d:"M5 5a1 1 0 0 0-1 1v7c0 5 3.5 7.5 7.67 8.94a1 1 0 0 0 .67.01c2.35-.82 4.48-1.97 5.9-3.71"}],["path",{d:"M9.309 3.652A12.252 12.252 0 0 0 11.24 2.28a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1v7a9.784 9.784 0 0 1-.08 1.264"}]];var FE=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"}],["path",{d:"M9 12h6"}],["path",{d:"M12 9v6"}]];var r6=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"}],["path",{d:"M9.1 9a3 3 0 0 1 5.82 1c0 2-3 3-3 3"}],["path",{d:"M12 17h.01"}]];var HE=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"}],["path",{d:"M6.376 18.91a6 6 0 0 1 11.249.003"}],["circle",{cx:"12",cy:"11",r:"4"}]];var a6=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"}],["path",{d:"m14.5 9.5-5 5"}],["path",{d:"m9.5 9.5 5 5"}]];var DE=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"}]];var BE=[["circle",{cx:"12",cy:"12",r:"8"}],["path",{d:"M12 2v7.5"}],["path",{d:"m19 5-5.23 5.23"}],["path",{d:"M22 12h-7.5"}],["path",{d:"m19 19-5.23-5.23"}],["path",{d:"M12 14.5V22"}],["path",{d:"M10.23 13.77 5 19"}],["path",{d:"M9.5 12H2"}],["path",{d:"M10.23 10.23 5 5"}],["circle",{cx:"12",cy:"12",r:"2.5"}]];var OE=[["path",{d:"M12 10.189V14"}],["path",{d:"M12 2v3"}],["path",{d:"M19 13V7a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v6"}],["path",{d:"M19.38 20A11.6 11.6 0 0 0 21 14l-8.188-3.639a2 2 0 0 0-1.624 0L3 14a11.6 11.6 0 0 0 2.81 7.76"}],["path",{d:"M2 21c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1s1.2 1 2.5 1c2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"}]];var TE=[["path",{d:"M20.38 3.46 16 2a4 4 0 0 1-8 0L3.62 3.46a2 2 0 0 0-1.34 2.23l.58 3.47a1 1 0 0 0 .99.84H6v10c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V10h2.15a1 1 0 0 0 .99-.84l.58-3.47a2 2 0 0 0-1.34-2.23z"}]];var PE=[["path",{d:"M16 10a4 4 0 0 1-8 0"}],["path",{d:"M3.103 6.034h17.794"}],["path",{d:"M3.4 5.467a2 2 0 0 0-.4 1.2V20a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6.667a2 2 0 0 0-.4-1.2l-2-2.667A2 2 0 0 0 17 2H7a2 2 0 0 0-1.6.8z"}]];var SE=[["path",{d:"m15 11-1 9"}],["path",{d:"m19 11-4-7"}],["path",{d:"M2 11h20"}],["path",{d:"m3.5 11 1.6 7.4a2 2 0 0 0 2 1.6h9.8a2 2 0 0 0 2-1.6l1.7-7.4"}],["path",{d:"M4.5 15.5h15"}],["path",{d:"m5 11 4-7"}],["path",{d:"m9 11 1 9"}]];var AE=[["circle",{cx:"8",cy:"21",r:"1"}],["circle",{cx:"19",cy:"21",r:"1"}],["path",{d:"M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12"}]];var qE=[["path",{d:"M21.56 4.56a1.5 1.5 0 0 1 0 2.122l-.47.47a3 3 0 0 1-4.212-.03 3 3 0 0 1 0-4.243l.44-.44a1.5 1.5 0 0 1 2.121 0z"}],["path",{d:"M3 22a1 1 0 0 1-1-1v-3.586a1 1 0 0 1 .293-.707l3.355-3.355a1.205 1.205 0 0 1 1.704 0l3.296 3.296a1.205 1.205 0 0 1 0 1.704l-3.355 3.355a1 1 0 0 1-.707.293z"}],["path",{d:"m9 15 7.879-7.878"}]];var EE=[["path",{d:"m4 4 2.5 2.5"}],["path",{d:"M13.5 6.5a4.95 4.95 0 0 0-7 7"}],["path",{d:"M15 5 5 15"}],["path",{d:"M14 17v.01"}],["path",{d:"M10 16v.01"}],["path",{d:"M13 13v.01"}],["path",{d:"M16 10v.01"}],["path",{d:"M11 20v.01"}],["path",{d:"M17 14v.01"}],["path",{d:"M20 11v.01"}]];var CE=[["path",{d:"M10 22v-5"}],["path",{d:"M14 19v-2"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M18 20v-3"}],["path",{d:"M2 13h20"}],["path",{d:"M20 13V7l-5-5H6a2 2 0 0 0-2 2v9"}],["path",{d:"M6 20v-3"}]];var xE=[["path",{d:"M11 12h.01"}],["path",{d:"M13 22c.5-.5 1.12-1 2.5-1-1.38 0-2-.5-2.5-1"}],["path",{d:"M14 2a3.28 3.28 0 0 1-3.227 1.798l-6.17-.561A2.387 2.387 0 1 0 4.387 8H15.5a1 1 0 0 1 0 13 1 1 0 0 0 0-5H12a7 7 0 0 1-7-7V8"}],["path",{d:"M14 8a8.5 8.5 0 0 1 0 8"}],["path",{d:"M16 16c2 0 4.5-4 4-6"}]];var wE=[["path",{d:"m15 15 6 6m-6-6v4.8m0-4.8h4.8"}],["path",{d:"M9 19.8V15m0 0H4.2M9 15l-6 6"}],["path",{d:"M15 4.2V9m0 0h4.8M15 9l6-6"}],["path",{d:"M9 4.2V9m0 0H4.2M9 9 3 3"}]];var UE=[["path",{d:"M12 22v-5.172a2 2 0 0 0-.586-1.414L9.5 13.5"}],["path",{d:"M14.5 14.5 12 17"}],["path",{d:"M17 8.8A6 6 0 0 1 13.8 20H10A6.5 6.5 0 0 1 7 8a5 5 0 0 1 10 0z"}]];var ME=[["path",{d:"m18 14 4 4-4 4"}],["path",{d:"m18 2 4 4-4 4"}],["path",{d:"M2 18h1.973a4 4 0 0 0 3.3-1.7l5.454-8.6a4 4 0 0 1 3.3-1.7H22"}],["path",{d:"M2 6h1.972a4 4 0 0 1 3.6 2.2"}],["path",{d:"M22 18h-6.041a4 4 0 0 1-3.3-1.8l-.359-.45"}]];var RE=[["path",{d:"M18 7V5a1 1 0 0 0-1-1H6.5a.5.5 0 0 0-.4.8l4.5 6a2 2 0 0 1 0 2.4l-4.5 6a.5.5 0 0 0 .4.8H17a1 1 0 0 0 1-1v-2"}]];var jE=[["path",{d:"M2 20h.01"}],["path",{d:"M7 20v-4"}],["path",{d:"M12 20v-8"}],["path",{d:"M17 20V8"}]];var LE=[["path",{d:"M2 20h.01"}],["path",{d:"M7 20v-4"}]];var yE=[["path",{d:"M2 20h.01"}],["path",{d:"M7 20v-4"}],["path",{d:"M12 20v-8"}]];var fE=[["path",{d:"M2 20h.01"}]];var kE=[["path",{d:"M2 20h.01"}],["path",{d:"M7 20v-4"}],["path",{d:"M12 20v-8"}],["path",{d:"M17 20V8"}],["path",{d:"M22 4v16"}]];var bE=[["path",{d:"m21 17-2.156-1.868A.5.5 0 0 0 18 15.5v.5a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1c0-2.545-3.991-3.97-8.5-4a1 1 0 0 0 0 5c4.153 0 4.745-11.295 5.708-13.5a2.5 2.5 0 1 1 3.31 3.284"}],["path",{d:"M3 21h18"}]];var hE=[["path",{d:"M10 9H4L2 7l2-2h6"}],["path",{d:"M14 5h6l2 2-2 2h-6"}],["path",{d:"M10 22V4a2 2 0 1 1 4 0v18"}],["path",{d:"M8 22h8"}]];var vE=[["path",{d:"M12 13v8"}],["path",{d:"M12 3v3"}],["path",{d:"M18 6a2 2 0 0 1 1.387.56l2.307 2.22a1 1 0 0 1 0 1.44l-2.307 2.22A2 2 0 0 1 18 13H6a2 2 0 0 1-1.387-.56l-2.306-2.22a1 1 0 0 1 0-1.44l2.306-2.22A2 2 0 0 1 6 6z"}]];var $E=[["path",{d:"M7 18v-6a5 5 0 1 1 10 0v6"}],["path",{d:"M5 21a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-1a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2z"}],["path",{d:"M21 12h1"}],["path",{d:"M18.5 4.5 18 5"}],["path",{d:"M2 12h1"}],["path",{d:"M12 2v1"}],["path",{d:"m4.929 4.929.707.707"}],["path",{d:"M12 12v6"}]];var gE=[["path",{d:"M17.971 4.285A2 2 0 0 1 21 6v12a2 2 0 0 1-3.029 1.715l-9.997-5.998a2 2 0 0 1-.003-3.432z"}],["path",{d:"M3 20V4"}]];var _E=[["path",{d:"M21 4v16"}],["path",{d:"M6.029 4.285A2 2 0 0 0 3 6v12a2 2 0 0 0 3.029 1.715l9.997-5.998a2 2 0 0 0 .003-3.432z"}]];var mE=[["path",{d:"m12.5 17-.5-1-.5 1h1z"}],["path",{d:"M15 22a1 1 0 0 0 1-1v-1a2 2 0 0 0 1.56-3.25 8 8 0 1 0-11.12 0A2 2 0 0 0 8 20v1a1 1 0 0 0 1 1z"}],["circle",{cx:"15",cy:"12",r:"1"}],["circle",{cx:"9",cy:"12",r:"1"}]];var uE=[["rect",{width:"3",height:"8",x:"13",y:"2",rx:"1.5"}],["path",{d:"M19 8.5V10h1.5A1.5 1.5 0 1 0 19 8.5"}],["rect",{width:"3",height:"8",x:"8",y:"14",rx:"1.5"}],["path",{d:"M5 15.5V14H3.5A1.5 1.5 0 1 0 5 15.5"}],["rect",{width:"8",height:"3",x:"14",y:"13",rx:"1.5"}],["path",{d:"M15.5 19H14v1.5a1.5 1.5 0 1 0 1.5-1.5"}],["rect",{width:"8",height:"3",x:"2",y:"8",rx:"1.5"}],["path",{d:"M8.5 5H10V3.5A1.5 1.5 0 1 0 8.5 5"}]];var dE=[["path",{d:"M22 2 2 22"}]];var cE=[["path",{d:"M11 16.586V19a1 1 0 0 1-1 1H2L18.37 3.63a1 1 0 1 1 3 3l-9.663 9.663a1 1 0 0 1-1.414 0L8 14"}]];var pE=[["path",{d:"M10 5H3"}],["path",{d:"M12 19H3"}],["path",{d:"M14 3v4"}],["path",{d:"M16 17v4"}],["path",{d:"M21 12h-9"}],["path",{d:"M21 19h-5"}],["path",{d:"M21 5h-7"}],["path",{d:"M8 10v4"}],["path",{d:"M8 12H3"}]];var nE=[["rect",{width:"14",height:"20",x:"5",y:"2",rx:"2",ry:"2"}],["path",{d:"M12.667 8 10 12h4l-2.667 4"}]];var t6=[["path",{d:"M10 8h4"}],["path",{d:"M12 21v-9"}],["path",{d:"M12 8V3"}],["path",{d:"M17 16h4"}],["path",{d:"M19 12V3"}],["path",{d:"M19 21v-5"}],["path",{d:"M3 14h4"}],["path",{d:"M5 10V3"}],["path",{d:"M5 21v-7"}]];var iE=[["rect",{width:"7",height:"12",x:"2",y:"6",rx:"1"}],["path",{d:"M13 8.32a7.43 7.43 0 0 1 0 7.36"}],["path",{d:"M16.46 6.21a11.76 11.76 0 0 1 0 11.58"}],["path",{d:"M19.91 4.1a15.91 15.91 0 0 1 .01 15.8"}]];var lE=[["rect",{width:"14",height:"20",x:"5",y:"2",rx:"2",ry:"2"}],["path",{d:"M12 18h.01"}]];var sE=[["path",{d:"M22 11v1a10 10 0 1 1-9-10"}],["path",{d:"M8 14s1.5 2 4 2 4-2 4-2"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9"}],["path",{d:"M16 5h6"}],["path",{d:"M19 2v6"}]];var rE=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M8 14s1.5 2 4 2 4-2 4-2"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9"}]];var aE=[["path",{d:"M2 13a6 6 0 1 0 12 0 4 4 0 1 0-8 0 2 2 0 0 0 4 0"}],["circle",{cx:"10",cy:"13",r:"8"}],["path",{d:"M2 21h12c4.4 0 8-3.6 8-8V7a2 2 0 1 0-4 0v6"}],["path",{d:"M18 3 19.1 5.2"}],["path",{d:"M22 3 20.9 5.2"}]];var tE=[["path",{d:"M10.5 2v4"}],["path",{d:"M14 2H7a2 2 0 0 0-2 2"}],["path",{d:"M19.29 14.76A6.67 6.67 0 0 1 17 11a6.6 6.6 0 0 1-2.29 3.76c-1.15.92-1.71 2.04-1.71 3.19 0 2.22 1.8 4.05 4 4.05s4-1.83 4-4.05c0-1.16-.57-2.26-1.71-3.19"}],["path",{d:"M9.607 21H6a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h7V7a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v3"}]];var oE=[["path",{d:"m10 20-1.25-2.5L6 18"}],["path",{d:"M10 4 8.75 6.5 6 6"}],["path",{d:"m14 20 1.25-2.5L18 18"}],["path",{d:"m14 4 1.25 2.5L18 6"}],["path",{d:"m17 21-3-6h-4"}],["path",{d:"m17 3-3 6 1.5 3"}],["path",{d:"M2 12h6.5L10 9"}],["path",{d:"m20 10-1.5 2 1.5 2"}],["path",{d:"M22 12h-6.5L14 15"}],["path",{d:"m4 10 1.5 2L4 14"}],["path",{d:"m7 21 3-6-1.5-3"}],["path",{d:"m7 3 3 6h4"}]];var eE=[["path",{d:"M20 9V6a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v3"}],["path",{d:"M2 16a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{d:"M4 18v2"}],["path",{d:"M20 18v2"}],["path",{d:"M12 4v9"}]];var ZC=[["path",{d:"M12 21a9 9 0 0 0 9-9H3a9 9 0 0 0 9 9Z"}],["path",{d:"M7 21h10"}],["path",{d:"M19.5 12 22 6"}],["path",{d:"M16.25 3c.27.1.8.53.75 1.36-.06.83-.93 1.2-1 2.02-.05.78.34 1.24.73 1.62"}],["path",{d:"M11.25 3c.27.1.8.53.74 1.36-.05.83-.93 1.2-.98 2.02-.06.78.33 1.24.72 1.62"}],["path",{d:"M6.25 3c.27.1.8.53.75 1.36-.06.83-.93 1.2-1 2.02-.05.78.34 1.24.74 1.62"}]];var JC=[["path",{d:"M22 17v1c0 .5-.5 1-1 1H3c-.5 0-1-.5-1-1v-1"}]];var KC=[["path",{d:"M12 18v4"}],["path",{d:"M2 14.499a5.5 5.5 0 0 0 9.591 3.675.6.6 0 0 1 .818.001A5.5 5.5 0 0 0 22 14.5c0-2.29-1.5-4-3-5.5l-5.492-5.312a2 2 0 0 0-3-.02L5 8.999c-1.5 1.5-3 3.2-3 5.5"}]];var YC=[["path",{d:"M11.017 2.814a1 1 0 0 1 1.966 0l1.051 5.558a2 2 0 0 0 1.594 1.594l5.558 1.051a1 1 0 0 1 0 1.966l-5.558 1.051a2 2 0 0 0-1.594 1.594l-1.051 5.558a1 1 0 0 1-1.966 0l-1.051-5.558a2 2 0 0 0-1.594-1.594l-5.558-1.051a1 1 0 0 1 0-1.966l5.558-1.051a2 2 0 0 0 1.594-1.594z"}]];var o6=[["path",{d:"M11.017 2.814a1 1 0 0 1 1.966 0l1.051 5.558a2 2 0 0 0 1.594 1.594l5.558 1.051a1 1 0 0 1 0 1.966l-5.558 1.051a2 2 0 0 0-1.594 1.594l-1.051 5.558a1 1 0 0 1-1.966 0l-1.051-5.558a2 2 0 0 0-1.594-1.594l-5.558-1.051a1 1 0 0 1 0-1.966l5.558-1.051a2 2 0 0 0 1.594-1.594z"}],["path",{d:"M20 2v4"}],["path",{d:"M22 4h-4"}],["circle",{cx:"4",cy:"20",r:"2"}]];var XC=[["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2"}],["path",{d:"M12 6h.01"}],["circle",{cx:"12",cy:"14",r:"4"}],["path",{d:"M12 14h.01"}]];var WC=[["path",{d:"M8.8 20v-4.1l1.9.2a2.3 2.3 0 0 0 2.164-2.1V8.3A5.37 5.37 0 0 0 2 8.25c0 2.8.656 3.054 1 4.55a5.77 5.77 0 0 1 .029 2.758L2 20"}],["path",{d:"M19.8 17.8a7.5 7.5 0 0 0 .003-10.603"}],["path",{d:"M17 15a3.5 3.5 0 0 0-.025-4.975"}]];var QC=[["path",{d:"m6 16 6-12 6 12"}],["path",{d:"M8 12h8"}],["path",{d:"M4 21c1.1 0 1.1-1 2.3-1s1.1 1 2.3 1c1.1 0 1.1-1 2.3-1 1.1 0 1.1 1 2.3 1 1.1 0 1.1-1 2.3-1 1.1 0 1.1 1 2.3 1 1.1 0 1.1-1 2.3-1"}]];var VC=[["path",{d:"m6 16 6-12 6 12"}],["path",{d:"M8 12h8"}],["path",{d:"m16 20 2 2 4-4"}]];var GC=[["path",{d:"M12.034 12.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.943l-3.444 1.068a1 1 0 0 0-.66.66l-1.067 3.443a.5.5 0 0 1-.943.033z"}],["path",{d:"M5 17A12 12 0 0 1 17 5"}],["circle",{cx:"19",cy:"5",r:"2"}],["circle",{cx:"5",cy:"19",r:"2"}]];var IC=[["circle",{cx:"19",cy:"5",r:"2"}],["circle",{cx:"5",cy:"19",r:"2"}],["path",{d:"M5 17A12 12 0 0 1 17 5"}]];var zC=[["path",{d:"M16 3h5v5"}],["path",{d:"M8 3H3v5"}],["path",{d:"M12 22v-8.3a4 4 0 0 0-1.172-2.872L3 3"}],["path",{d:"m15 9 6-6"}]];var NC=[["path",{d:"M17 13.44 4.442 17.082A2 2 0 0 0 4.982 21H19a2 2 0 0 0 .558-3.921l-1.115-.32A2 2 0 0 1 17 14.837V7.66"}],["path",{d:"m7 10.56 12.558-3.642A2 2 0 0 0 19.018 3H5a2 2 0 0 0-.558 3.921l1.115.32A2 2 0 0 1 7 9.163v7.178"}]];var FC=[["path",{d:"M15.295 19.562 16 22"}],["path",{d:"m17 16 3.758 2.098"}],["path",{d:"m19 12.5 3.026-.598"}],["path",{d:"M7.61 6.3a3 3 0 0 0-3.92 1.3l-1.38 2.79a3 3 0 0 0 1.3 3.91l6.89 3.597a1 1 0 0 0 1.342-.447l3.106-6.211a1 1 0 0 0-.447-1.341z"}],["path",{d:"M8 9V2"}]];var HC=[["path",{d:"M3 3h.01"}],["path",{d:"M7 5h.01"}],["path",{d:"M11 7h.01"}],["path",{d:"M3 7h.01"}],["path",{d:"M7 9h.01"}],["path",{d:"M3 11h.01"}],["rect",{width:"4",height:"4",x:"15",y:"5"}],["path",{d:"m19 9 2 2v10c0 .6-.4 1-1 1h-6c-.6 0-1-.4-1-1V11l2-2"}],["path",{d:"m13 14 8-2"}],["path",{d:"m13 19 8-2"}]];var DC=[["path",{d:"M14 9.536V7a4 4 0 0 1 4-4h1.5a.5.5 0 0 1 .5.5V5a4 4 0 0 1-4 4 4 4 0 0 0-4 4c0 2 1 3 1 5a5 5 0 0 1-1 3"}],["path",{d:"M4 9a5 5 0 0 1 8 4 5 5 0 0 1-8-4"}],["path",{d:"M5 21h14"}]];var e6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M17 12h-2l-2 5-2-10-2 5H7"}]];var Z9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m16 8-8 8"}],["path",{d:"M16 16H8V8"}]];var J9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m8 8 8 8"}],["path",{d:"M16 8v8H8"}]];var K9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M12 8v8"}],["path",{d:"m8 12 4 4 4-4"}]];var Y9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m12 8-4 4 4 4"}],["path",{d:"M16 12H8"}]];var X9=[["path",{d:"M13 21h6a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v6"}],["path",{d:"m3 21 9-9"}],["path",{d:"M9 21H3v-6"}]];var W9=[["path",{d:"M21 11V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6"}],["path",{d:"m21 21-9-9"}],["path",{d:"M21 15v6h-6"}]];var Q9=[["path",{d:"M13 3h6a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-6"}],["path",{d:"m3 3 9 9"}],["path",{d:"M3 9V3h6"}]];var V9=[["path",{d:"M21 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h6"}],["path",{d:"m21 3-9 9"}],["path",{d:"M15 3h6v6"}]];var G9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M8 12h8"}],["path",{d:"m12 16 4-4-4-4"}]];var I9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M8 16V8h8"}],["path",{d:"M16 16 8 8"}]];var z9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M8 8h8v8"}],["path",{d:"m8 16 8-8"}]];var N9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m16 12-4-4-4 4"}],["path",{d:"M12 16V8"}]];var F9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M12 8v8"}],["path",{d:"m8.5 14 7-4"}],["path",{d:"m8.5 10 7 4"}]];var H9=[["path",{d:"M4 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2"}],["path",{d:"M10 22H8"}],["path",{d:"M16 22h-2"}],["circle",{cx:"8",cy:"8",r:"2"}],["path",{d:"M9.414 9.414 12 12"}],["path",{d:"M14.8 14.8 18 18"}],["circle",{cx:"8",cy:"16",r:"2"}],["path",{d:"m18 6-8.586 8.586"}]];var F5=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 8h7"}],["path",{d:"M8 12h6"}],["path",{d:"M11 16h5"}]];var D9=[["path",{d:"M21 10.656V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h12.344"}],["path",{d:"m9 11 3 3L22 4"}]];var B9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m9 12 2 2 4-4"}]];var O9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m16 10-4 4-4-4"}]];var T9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m14 16-4-4 4-4"}]];var P9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m10 8 4 4-4 4"}]];var S9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m8 14 4-4 4 4"}]];var A9=[["path",{d:"m10 9-3 3 3 3"}],["path",{d:"m14 15 3-3-3-3"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]];var BC=[["path",{d:"M10 9.5 8 12l2 2.5"}],["path",{d:"M14 21h1"}],["path",{d:"m14 9.5 2 2.5-2 2.5"}],["path",{d:"M5 21a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2"}],["path",{d:"M9 21h1"}]];var OC=[["path",{d:"M5 21a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2"}],["path",{d:"M9 21h1"}],["path",{d:"M14 21h1"}]];var q9=[["path",{d:"M8 7v7"}],["path",{d:"M12 7v4"}],["path",{d:"M16 7v9"}],["path",{d:"M5 3a2 2 0 0 0-2 2"}],["path",{d:"M9 3h1"}],["path",{d:"M14 3h1"}],["path",{d:"M19 3a2 2 0 0 1 2 2"}],["path",{d:"M21 9v1"}],["path",{d:"M21 14v1"}],["path",{d:"M21 19a2 2 0 0 1-2 2"}],["path",{d:"M14 21h1"}],["path",{d:"M9 21h1"}],["path",{d:"M5 21a2 2 0 0 1-2-2"}],["path",{d:"M3 14v1"}],["path",{d:"M3 9v1"}]];var E9=[["path",{d:"M12.034 12.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.943l-3.444 1.068a1 1 0 0 0-.66.66l-1.067 3.443a.5.5 0 0 1-.943.033z"}],["path",{d:"M5 3a2 2 0 0 0-2 2"}],["path",{d:"M19 3a2 2 0 0 1 2 2"}],["path",{d:"M5 21a2 2 0 0 1-2-2"}],["path",{d:"M9 3h1"}],["path",{d:"M9 21h2"}],["path",{d:"M14 3h1"}],["path",{d:"M3 9v1"}],["path",{d:"M21 9v2"}],["path",{d:"M3 14v1"}]];var C9=[["path",{d:"M5 3a2 2 0 0 0-2 2"}],["path",{d:"M19 3a2 2 0 0 1 2 2"}],["path",{d:"M21 19a2 2 0 0 1-2 2"}],["path",{d:"M5 21a2 2 0 0 1-2-2"}],["path",{d:"M9 3h1"}],["path",{d:"M9 21h1"}],["path",{d:"M14 3h1"}],["path",{d:"M14 21h1"}],["path",{d:"M3 9v1"}],["path",{d:"M21 9v1"}],["path",{d:"M3 14v1"}],["path",{d:"M21 14v1"}]];var TC=[["path",{d:"M14 21h1"}],["path",{d:"M21 14v1"}],["path",{d:"M21 19a2 2 0 0 1-2 2"}],["path",{d:"M21 9v1"}],["path",{d:"M3 14v1"}],["path",{d:"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2"}],["path",{d:"M3 9v1"}],["path",{d:"M5 21a2 2 0 0 1-2-2"}],["path",{d:"M9 21h1"}]];var x9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["line",{x1:"8",x2:"16",y1:"12",y2:"12"}],["line",{x1:"12",x2:"12",y1:"16",y2:"16"}],["line",{x1:"12",x2:"12",y1:"8",y2:"8"}]];var w9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["circle",{cx:"12",cy:"12",r:"1"}]];var U9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M7 10h10"}],["path",{d:"M7 14h10"}]];var M9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["path",{d:"M9 17c2 0 2.8-1 2.8-2.8V10c0-2 1-3.3 3.2-3"}],["path",{d:"M9 11.2h5.7"}]];var R9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M8 7v7"}],["path",{d:"M12 7v4"}],["path",{d:"M16 7v9"}]];var j9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M7 7v10"}],["path",{d:"M11 7v10"}],["path",{d:"m15 7 2 10"}]];var L9=[["path",{d:"M8 16V8.5a.5.5 0 0 1 .9-.3l2.7 3.599a.5.5 0 0 0 .8 0l2.7-3.6a.5.5 0 0 1 .9.3V16"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]];var y9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M7 8h10"}],["path",{d:"M7 12h10"}],["path",{d:"M7 16h10"}]];var f9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M8 12h8"}]];var k9=[["path",{d:"M12.034 12.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.943l-3.444 1.068a1 1 0 0 0-.66.66l-1.067 3.443a.5.5 0 0 1-.943.033z"}],["path",{d:"M21 11V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6"}]];var b9=[["path",{d:"M3.6 3.6A2 2 0 0 1 5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-.59 1.41"}],["path",{d:"M3 8.7V19a2 2 0 0 0 2 2h10.3"}],["path",{d:"m2 2 20 20"}],["path",{d:"M13 13a3 3 0 1 0 0-6H9v2"}],["path",{d:"M9 17v-2.3"}]];var h9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 17V7h4a3 3 0 0 1 0 6H9"}]];var A8=[["path",{d:"M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7"}],["path",{d:"M18.375 2.625a1 1 0 0 1 3 3l-9.013 9.014a2 2 0 0 1-.853.505l-2.873.84a.5.5 0 0 1-.62-.62l.84-2.873a2 2 0 0 1 .506-.852z"}]];var PC=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["line",{x1:"10",x2:"10",y1:"15",y2:"9"}],["line",{x1:"14",x2:"14",y1:"15",y2:"9"}]];var v9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m15 9-6 6"}],["path",{d:"M9 9h.01"}],["path",{d:"M15 15h.01"}]];var $9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M7 7h10"}],["path",{d:"M10 7v10"}],["path",{d:"M16 17a2 2 0 0 1-2-2V7"}]];var g9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M12 12H9.5a2.5 2.5 0 0 1 0-5H17"}],["path",{d:"M12 7v10"}],["path",{d:"M16 7v10"}]];var _9=[["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}],["path",{d:"M9 9.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997A1 1 0 0 1 9 14.996z"}]];var m9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M8 12h8"}],["path",{d:"M12 8v8"}]];var u9=[["path",{d:"M12 7v4"}],["path",{d:"M7.998 9.003a5 5 0 1 0 8-.005"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]];var SC=[["path",{d:"M7 12h2l2 5 2-10h4"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]];var d9=[["rect",{width:"20",height:"20",x:"2",y:"2",rx:"2"}],["circle",{cx:"8",cy:"8",r:"2"}],["path",{d:"M9.414 9.414 12 12"}],["path",{d:"M14.8 14.8 18 18"}],["circle",{cx:"8",cy:"16",r:"2"}],["path",{d:"m18 6-8.586 8.586"}]];var AC=[["path",{d:"M21 11a8 8 0 0 0-8-8"}],["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"}]];var c9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M16 8.9V7H8l4 5-4 5h8v-1.9"}]];var p9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["line",{x1:"9",x2:"15",y1:"15",y2:"9"}]];var n9=[["path",{d:"M8 19H5c-1 0-2-1-2-2V7c0-1 1-2 2-2h3"}],["path",{d:"M16 5h3c1 0 2 1 2 2v10c0 1-1 2-2 2h-3"}],["line",{x1:"12",x2:"12",y1:"4",y2:"20"}]];var i9=[["path",{d:"M5 8V5c0-1 1-2 2-2h10c1 0 2 1 2 2v3"}],["path",{d:"M19 16v3c0 1-1 2-2 2H7c-1 0-2-1-2-2v-3"}],["line",{x1:"4",x2:"20",y1:"12",y2:"12"}]];var qC=[["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}],["rect",{x:"8",y:"8",width:"8",height:"8",rx:"1"}]];var EC=[["path",{d:"M4 10c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h4c1.1 0 2 .9 2 2"}],["path",{d:"M10 16c-1.1 0-2-.9-2-2v-4c0-1.1.9-2 2-2h4c1.1 0 2 .9 2 2"}],["rect",{width:"8",height:"8",x:"14",y:"14",rx:"2"}]];var CC=[["path",{d:"M11.035 7.69a1 1 0 0 1 1.909.024l.737 1.452a1 1 0 0 0 .737.535l1.634.256a1 1 0 0 1 .588 1.806l-1.172 1.168a1 1 0 0 0-.282.866l.259 1.613a1 1 0 0 1-1.541 1.134l-1.465-.75a1 1 0 0 0-.912 0l-1.465.75a1 1 0 0 1-1.539-1.133l.258-1.613a1 1 0 0 0-.282-.866l-1.156-1.153a1 1 0 0 1 .572-1.822l1.633-.256a1 1 0 0 0 .737-.535z"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]];var xC=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["rect",{x:"9",y:"9",width:"6",height:"6",rx:"1"}]];var l9=[["path",{d:"m7 11 2-2-2-2"}],["path",{d:"M11 13h4"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}]];var s9=[["path",{d:"M18 21a6 6 0 0 0-12 0"}],["circle",{cx:"12",cy:"11",r:"4"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}]];var r9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["circle",{cx:"12",cy:"10",r:"3"}],["path",{d:"M7 21v-2a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v2"}]];var a9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["path",{d:"m15 9-6 6"}],["path",{d:"m9 9 6 6"}]];var wC=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}]];var UC=[["path",{d:"M16 12v2a2 2 0 0 1-2 2H9a1 1 0 0 0-1 1v3a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V10a2 2 0 0 0-2-2h0"}],["path",{d:"M4 16a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v3a1 1 0 0 1-1 1h-5a2 2 0 0 0-2 2v2"}]];var MC=[["path",{d:"M10 22a2 2 0 0 1-2-2"}],["path",{d:"M16 22h-2"}],["path",{d:"M16 4a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h3a1 1 0 0 0 1-1v-5a2 2 0 0 1 2-2h5a1 1 0 0 0 1-1z"}],["path",{d:"M20 8a2 2 0 0 1 2 2"}],["path",{d:"M22 14v2"}],["path",{d:"M22 20a2 2 0 0 1-2 2"}]];var RC=[["path",{d:"M10 22a2 2 0 0 1-2-2"}],["path",{d:"M14 2a2 2 0 0 1 2 2"}],["path",{d:"M16 22h-2"}],["path",{d:"M2 10V8"}],["path",{d:"M2 4a2 2 0 0 1 2-2"}],["path",{d:"M20 8a2 2 0 0 1 2 2"}],["path",{d:"M22 14v2"}],["path",{d:"M22 20a2 2 0 0 1-2 2"}],["path",{d:"M4 16a2 2 0 0 1-2-2"}],["path",{d:"M8 10a2 2 0 0 1 2-2h5a1 1 0 0 1 1 1v5a2 2 0 0 1-2 2H9a1 1 0 0 1-1-1z"}],["path",{d:"M8 2h2"}]];var jC=[["path",{d:"M4 16a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v3a1 1 0 0 0 1 1h3a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H10a2 2 0 0 1-2-2v-3a1 1 0 0 0-1-1z"}]];var LC=[["path",{d:"M13.77 3.043a34 34 0 0 0-3.54 0"}],["path",{d:"M13.771 20.956a33 33 0 0 1-3.541.001"}],["path",{d:"M20.18 17.74c-.51 1.15-1.29 1.93-2.439 2.44"}],["path",{d:"M20.18 6.259c-.51-1.148-1.291-1.929-2.44-2.438"}],["path",{d:"M20.957 10.23a33 33 0 0 1 0 3.54"}],["path",{d:"M3.043 10.23a34 34 0 0 0 .001 3.541"}],["path",{d:"M6.26 20.179c-1.15-.508-1.93-1.29-2.44-2.438"}],["path",{d:"M6.26 3.82c-1.149.51-1.93 1.291-2.44 2.44"}]];var yC=[["path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9-9 9-9-1.8-9-9 1.8-9 9-9"}]];var fC=[["path",{d:"M15.236 22a3 3 0 0 0-2.2-5"}],["path",{d:"M16 20a3 3 0 0 1 3-3h1a2 2 0 0 0 2-2v-2a4 4 0 0 0-4-4V4"}],["path",{d:"M18 13h.01"}],["path",{d:"M18 6a4 4 0 0 0-4 4 7 7 0 0 0-7 7c0-5 4-5 4-10.5a4.5 4.5 0 1 0-9 0 2.5 2.5 0 0 0 5 0C7 10 3 11 3 17c0 2.8 2.2 5 5 5h10"}]];var kC=[["path",{d:"M14 13V8.5C14 7 15 7 15 5a3 3 0 0 0-6 0c0 2 1 2 1 3.5V13"}],["path",{d:"M20 15.5a2.5 2.5 0 0 0-2.5-2.5h-11A2.5 2.5 0 0 0 4 15.5V17a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1z"}],["path",{d:"M5 22h14"}]];var bC=[["path",{d:"M12 18.338a2.1 2.1 0 0 0-.987.244L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.12 2.12 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.12 2.12 0 0 0 1.597-1.16l2.309-4.679A.53.53 0 0 1 12 2"}]];var hC=[["path",{d:"M8.34 8.34 2 9.27l5 4.87L5.82 21 12 17.77 18.18 21l-.59-3.43"}],["path",{d:"M18.42 12.76 22 9.27l-6.91-1L12 2l-1.44 2.91"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var vC=[["path",{d:"M11.525 2.295a.53.53 0 0 1 .95 0l2.31 4.679a2.123 2.123 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.736 3.638a2.123 2.123 0 0 0-.611 1.878l.882 5.14a.53.53 0 0 1-.771.56l-4.618-2.428a2.122 2.122 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.122 2.122 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.122 2.122 0 0 0 1.597-1.16z"}]];var $C=[["path",{d:"M13.971 4.285A2 2 0 0 1 17 6v12a2 2 0 0 1-3.029 1.715l-9.997-5.998a2 2 0 0 1-.003-3.432z"}],["path",{d:"M21 20V4"}]];var gC=[["path",{d:"M10.029 4.285A2 2 0 0 0 7 6v12a2 2 0 0 0 3.029 1.715l9.997-5.998a2 2 0 0 0 .003-3.432z"}],["path",{d:"M3 4v16"}]];var _C=[["path",{d:"M11 2v2"}],["path",{d:"M5 2v2"}],["path",{d:"M5 3H4a2 2 0 0 0-2 2v4a6 6 0 0 0 12 0V5a2 2 0 0 0-2-2h-1"}],["path",{d:"M8 15a6 6 0 0 0 12 0v-3"}],["circle",{cx:"20",cy:"10",r:"2"}]];var mC=[["path",{d:"M15.5 3H5a2 2 0 0 0-2 2v14c0 1.1.9 2 2 2h14a2 2 0 0 0 2-2V8.5L15.5 3Z"}],["path",{d:"M14 3v4a2 2 0 0 0 2 2h4"}],["path",{d:"M8 13h.01"}],["path",{d:"M16 13h.01"}],["path",{d:"M10 16s.8 1 2 1c1.3 0 2-1 2-1"}]];var uC=[["path",{d:"M16 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V8Z"}],["path",{d:"M15 3v4a2 2 0 0 0 2 2h4"}]];var dC=[["path",{d:"M15 21v-5a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v5"}],["path",{d:"M17.774 10.31a1.12 1.12 0 0 0-1.549 0 2.5 2.5 0 0 1-3.451 0 1.12 1.12 0 0 0-1.548 0 2.5 2.5 0 0 1-3.452 0 1.12 1.12 0 0 0-1.549 0 2.5 2.5 0 0 1-3.77-3.248l2.889-4.184A2 2 0 0 1 7 2h10a2 2 0 0 1 1.653.873l2.895 4.192a2.5 2.5 0 0 1-3.774 3.244"}],["path",{d:"M4 10.95V19a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8.05"}]];var cC=[["rect",{width:"20",height:"6",x:"2",y:"4",rx:"2"}],["rect",{width:"20",height:"6",x:"2",y:"14",rx:"2"}]];var pC=[["rect",{width:"6",height:"20",x:"4",y:"2",rx:"2"}],["rect",{width:"6",height:"20",x:"14",y:"2",rx:"2"}]];var nC=[["path",{d:"M16 4H9a3 3 0 0 0-2.83 4"}],["path",{d:"M14 12a4 4 0 0 1 0 8H6"}],["line",{x1:"4",x2:"20",y1:"12",y2:"12"}]];var iC=[["path",{d:"m4 5 8 8"}],["path",{d:"m12 5-8 8"}],["path",{d:"M20 19h-4c0-1.5.44-2 1.5-2.5S20 15.33 20 14c0-.47-.17-.93-.48-1.29a2.11 2.11 0 0 0-2.62-.44c-.42.24-.74.62-.9 1.07"}]];var lC=[["circle",{cx:"12",cy:"12",r:"4"}],["path",{d:"M12 4h.01"}],["path",{d:"M20 12h.01"}],["path",{d:"M12 20h.01"}],["path",{d:"M4 12h.01"}],["path",{d:"M17.657 6.343h.01"}],["path",{d:"M17.657 17.657h.01"}],["path",{d:"M6.343 17.657h.01"}],["path",{d:"M6.343 6.343h.01"}]];var sC=[["circle",{cx:"12",cy:"12",r:"4"}],["path",{d:"M12 3v1"}],["path",{d:"M12 20v1"}],["path",{d:"M3 12h1"}],["path",{d:"M20 12h1"}],["path",{d:"m18.364 5.636-.707.707"}],["path",{d:"m6.343 17.657-.707.707"}],["path",{d:"m5.636 5.636.707.707"}],["path",{d:"m17.657 17.657.707.707"}]];var rC=[["path",{d:"M12 2v2"}],["path",{d:"M14.837 16.385a6 6 0 1 1-7.223-7.222c.624-.147.97.66.715 1.248a4 4 0 0 0 5.26 5.259c.589-.255 1.396.09 1.248.715"}],["path",{d:"M16 12a4 4 0 0 0-4-4"}],["path",{d:"m19 5-1.256 1.256"}],["path",{d:"M20 12h2"}]];var aC=[["path",{d:"M10 21v-1"}],["path",{d:"M10 4V3"}],["path",{d:"M10 9a3 3 0 0 0 0 6"}],["path",{d:"m14 20 1.25-2.5L18 18"}],["path",{d:"m14 4 1.25 2.5L18 6"}],["path",{d:"m17 21-3-6 1.5-3H22"}],["path",{d:"m17 3-3 6 1.5 3"}],["path",{d:"M2 12h1"}],["path",{d:"m20 10-1.5 2 1.5 2"}],["path",{d:"m3.64 18.36.7-.7"}],["path",{d:"m4.34 6.34-.7-.7"}]];var tC=[["circle",{cx:"12",cy:"12",r:"4"}],["path",{d:"M12 2v2"}],["path",{d:"M12 20v2"}],["path",{d:"m4.93 4.93 1.41 1.41"}],["path",{d:"m17.66 17.66 1.41 1.41"}],["path",{d:"M2 12h2"}],["path",{d:"M20 12h2"}],["path",{d:"m6.34 17.66-1.41 1.41"}],["path",{d:"m19.07 4.93-1.41 1.41"}]];var oC=[["path",{d:"M12 2v8"}],["path",{d:"m4.93 10.93 1.41 1.41"}],["path",{d:"M2 18h2"}],["path",{d:"M20 18h2"}],["path",{d:"m19.07 10.93-1.41 1.41"}],["path",{d:"M22 22H2"}],["path",{d:"m8 6 4-4 4 4"}],["path",{d:"M16 18a4 4 0 0 0-8 0"}]];var eC=[["path",{d:"M12 10V2"}],["path",{d:"m4.93 10.93 1.41 1.41"}],["path",{d:"M2 18h2"}],["path",{d:"M20 18h2"}],["path",{d:"m19.07 10.93-1.41 1.41"}],["path",{d:"M22 22H2"}],["path",{d:"m16 6-4 4-4-4"}],["path",{d:"M16 18a4 4 0 0 0-8 0"}]];var Zx=[["path",{d:"m4 19 8-8"}],["path",{d:"m12 19-8-8"}],["path",{d:"M20 12h-4c0-1.5.442-2 1.5-2.5S20 8.334 20 7.002c0-.472-.17-.93-.484-1.29a2.105 2.105 0 0 0-2.617-.436c-.42.239-.738.614-.899 1.06"}]];var Jx=[["path",{d:"M11 17a4 4 0 0 1-8 0V5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2Z"}],["path",{d:"M16.7 13H19a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H7"}],["path",{d:"M 7 17h.01"}],["path",{d:"m11 8 2.3-2.3a2.4 2.4 0 0 1 3.404.004L18.6 7.6a2.4 2.4 0 0 1 .026 3.434L9.9 19.8"}]];var Kx=[["path",{d:"M10 21V3h8"}],["path",{d:"M6 16h9"}],["path",{d:"M10 9.5h7"}]];var Yx=[["path",{d:"M11 19H4a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h5"}],["path",{d:"M13 5h7a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-5"}],["circle",{cx:"12",cy:"12",r:"3"}],["path",{d:"m18 22-3-3 3-3"}],["path",{d:"m6 2 3 3-3 3"}]];var Xx=[["path",{d:"m11 19-6-6"}],["path",{d:"m5 21-2-2"}],["path",{d:"m8 16-4 4"}],["path",{d:"M9.5 17.5 21 6V3h-3L6.5 14.5"}]];var Wx=[["polyline",{points:"14.5 17.5 3 6 3 3 6 3 17.5 14.5"}],["line",{x1:"13",x2:"19",y1:"19",y2:"13"}],["line",{x1:"16",x2:"20",y1:"16",y2:"20"}],["line",{x1:"19",x2:"21",y1:"21",y2:"19"}],["polyline",{points:"14.5 6.5 18 3 21 3 21 6 17.5 9.5"}],["line",{x1:"5",x2:"9",y1:"14",y2:"18"}],["line",{x1:"7",x2:"4",y1:"17",y2:"20"}],["line",{x1:"3",x2:"5",y1:"19",y2:"21"}]];var Qx=[["path",{d:"m18 2 4 4"}],["path",{d:"m17 7 3-3"}],["path",{d:"M19 9 8.7 19.3c-1 1-2.5 1-3.4 0l-.6-.6c-1-1-1-2.5 0-3.4L15 5"}],["path",{d:"m9 11 4 4"}],["path",{d:"m5 19-3 3"}],["path",{d:"m14 4 6 6"}]];var Vx=[["path",{d:"M9 3H5a2 2 0 0 0-2 2v4m6-6h10a2 2 0 0 1 2 2v4M9 3v18m0 0h10a2 2 0 0 0 2-2V9M9 21H5a2 2 0 0 1-2-2V9m0 0h18"}]];var Gx=[["path",{d:"M12 21v-6"}],["path",{d:"M12 9V3"}],["path",{d:"M3 15h18"}],["path",{d:"M3 9h18"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}]];var Ix=[["path",{d:"M12 15V9"}],["path",{d:"M3 15h18"}],["path",{d:"M3 9h18"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}]];var zx=[["path",{d:"M14 14v2"}],["path",{d:"M14 20v2"}],["path",{d:"M14 2v2"}],["path",{d:"M14 8v2"}],["path",{d:"M2 15h8"}],["path",{d:"M2 3h6a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H2"}],["path",{d:"M2 9h8"}],["path",{d:"M22 15h-4"}],["path",{d:"M22 3h-2a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h2"}],["path",{d:"M22 9h-4"}],["path",{d:"M5 3v18"}]];var Nx=[["path",{d:"M16 5H3"}],["path",{d:"M16 12H3"}],["path",{d:"M16 19H3"}],["path",{d:"M21 5h.01"}],["path",{d:"M21 12h.01"}],["path",{d:"M21 19h.01"}]];var Fx=[["path",{d:"M15 3v18"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M21 9H3"}],["path",{d:"M21 15H3"}]];var Hx=[["path",{d:"M14 10h2"}],["path",{d:"M15 22v-8"}],["path",{d:"M15 2v4"}],["path",{d:"M2 10h2"}],["path",{d:"M20 10h2"}],["path",{d:"M3 19h18"}],["path",{d:"M3 22v-6a2 2 135 0 1 2-2h14a2 2 45 0 1 2 2v6"}],["path",{d:"M3 2v2a2 2 45 0 0 2 2h14a2 2 135 0 0 2-2V2"}],["path",{d:"M8 10h2"}],["path",{d:"M9 22v-8"}],["path",{d:"M9 2v4"}]];var Dx=[["path",{d:"M12 3v18"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 9h18"}],["path",{d:"M3 15h18"}]];var Bx=[["rect",{width:"10",height:"14",x:"3",y:"8",rx:"2"}],["path",{d:"M5 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2h-2.4"}],["path",{d:"M8 18h.01"}]];var Ox=[["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2",ry:"2"}],["line",{x1:"12",x2:"12.01",y1:"18",y2:"18"}]];var Tx=[["circle",{cx:"7",cy:"7",r:"5"}],["circle",{cx:"17",cy:"17",r:"5"}],["path",{d:"M12 17h10"}],["path",{d:"m3.46 10.54 7.08-7.08"}]];var Px=[["path",{d:"M12.586 2.586A2 2 0 0 0 11.172 2H4a2 2 0 0 0-2 2v7.172a2 2 0 0 0 .586 1.414l8.704 8.704a2.426 2.426 0 0 0 3.42 0l6.58-6.58a2.426 2.426 0 0 0 0-3.42z"}],["circle",{cx:"7.5",cy:"7.5",r:".5",fill:"currentColor"}]];var Sx=[["path",{d:"M13.172 2a2 2 0 0 1 1.414.586l6.71 6.71a2.4 2.4 0 0 1 0 3.408l-4.592 4.592a2.4 2.4 0 0 1-3.408 0l-6.71-6.71A2 2 0 0 1 6 9.172V3a1 1 0 0 1 1-1z"}],["path",{d:"M2 7v6.172a2 2 0 0 0 .586 1.414l6.71 6.71a2.4 2.4 0 0 0 3.191.193"}],["circle",{cx:"10.5",cy:"6.5",r:".5",fill:"currentColor"}]];var Ax=[["path",{d:"M4 4v16"}]];var qx=[["path",{d:"M4 4v16"}],["path",{d:"M9 4v16"}]];var Ex=[["path",{d:"M4 4v16"}],["path",{d:"M9 4v16"}],["path",{d:"M14 4v16"}]];var Cx=[["path",{d:"M4 4v16"}],["path",{d:"M9 4v16"}],["path",{d:"M14 4v16"}],["path",{d:"M19 4v16"}]];var xx=[["path",{d:"M4 4v16"}],["path",{d:"M9 4v16"}],["path",{d:"M14 4v16"}],["path",{d:"M19 4v16"}],["path",{d:"M22 6 2 18"}]];var wx=[["circle",{cx:"12",cy:"12",r:"10"}],["circle",{cx:"12",cy:"12",r:"6"}],["circle",{cx:"12",cy:"12",r:"2"}]];var Ux=[["circle",{cx:"17",cy:"4",r:"2"}],["path",{d:"M15.59 5.41 5.41 15.59"}],["circle",{cx:"4",cy:"17",r:"2"}],["path",{d:"M12 22s-4-9-1.5-11.5S22 12 22 12"}]];var Mx=[["path",{d:"m10.065 12.493-6.18 1.318a.934.934 0 0 1-1.108-.702l-.537-2.15a1.07 1.07 0 0 1 .691-1.265l13.504-4.44"}],["path",{d:"m13.56 11.747 4.332-.924"}],["path",{d:"m16 21-3.105-6.21"}],["path",{d:"M16.485 5.94a2 2 0 0 1 1.455-2.425l1.09-.272a1 1 0 0 1 1.212.727l1.515 6.06a1 1 0 0 1-.727 1.213l-1.09.272a2 2 0 0 1-2.425-1.455z"}],["path",{d:"m6.158 8.633 1.114 4.456"}],["path",{d:"m8 21 3.105-6.21"}],["circle",{cx:"12",cy:"13",r:"2"}]];var Rx=[["circle",{cx:"4",cy:"4",r:"2"}],["path",{d:"m14 5 3-3 3 3"}],["path",{d:"m14 10 3-3 3 3"}],["path",{d:"M17 14V2"}],["path",{d:"M17 14H7l-5 8h20Z"}],["path",{d:"M8 14v8"}],["path",{d:"m9 14 5 8"}]];var jx=[["path",{d:"M3.5 21 14 3"}],["path",{d:"M20.5 21 10 3"}],["path",{d:"M15.5 21 12 15l-3.5 6"}],["path",{d:"M2 21h20"}]];var Lx=[["path",{d:"M12 19h8"}],["path",{d:"m4 17 6-6-6-6"}]];var t9=[["path",{d:"M21 7 6.82 21.18a2.83 2.83 0 0 1-3.99-.01a2.83 2.83 0 0 1 0-4L17 3"}],["path",{d:"m16 2 6 6"}],["path",{d:"M12 16H4"}]];var yx=[["path",{d:"M9 2v17.5A2.5 2.5 0 0 1 6.5 22A2.5 2.5 0 0 1 4 19.5V2"}],["path",{d:"M20 2v17.5a2.5 2.5 0 0 1-2.5 2.5a2.5 2.5 0 0 1-2.5-2.5V2"}],["path",{d:"M3 2h7"}],["path",{d:"M14 2h7"}],["path",{d:"M9 16H4"}],["path",{d:"M20 16h-5"}]];var fx=[["path",{d:"M14.5 2v17.5c0 1.4-1.1 2.5-2.5 2.5c-1.4 0-2.5-1.1-2.5-2.5V2"}],["path",{d:"M8.5 2h7"}],["path",{d:"M14.5 16h-5"}]];var o9=[["path",{d:"M21 5H3"}],["path",{d:"M17 12H7"}],["path",{d:"M19 19H5"}]];var e9=[["path",{d:"M3 5h18"}],["path",{d:"M3 12h18"}],["path",{d:"M3 19h18"}]];var ZZ=[["path",{d:"M21 5H3"}],["path",{d:"M21 12H9"}],["path",{d:"M21 19H7"}]];var H5=[["path",{d:"M21 5H3"}],["path",{d:"M15 12H3"}],["path",{d:"M17 19H3"}]];var kx=[["path",{d:"M12 20h-1a2 2 0 0 1-2-2 2 2 0 0 1-2 2H6"}],["path",{d:"M13 8h7a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-7"}],["path",{d:"M5 16H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h1"}],["path",{d:"M6 4h1a2 2 0 0 1 2 2 2 2 0 0 1 2-2h1"}],["path",{d:"M9 6v12"}]];var JZ=[["path",{d:"M15 5h6"}],["path",{d:"M15 12h6"}],["path",{d:"M3 19h18"}],["path",{d:"m3 12 3.553-7.724a.5.5 0 0 1 .894 0L11 12"}],["path",{d:"M3.92 10h6.16"}]];var bx=[["path",{d:"M17 22h-1a4 4 0 0 1-4-4V6a4 4 0 0 1 4-4h1"}],["path",{d:"M7 22h1a4 4 0 0 0 4-4v-1"}],["path",{d:"M7 2h1a4 4 0 0 1 4 4v1"}]];var hx=[["path",{d:"M17 5H3"}],["path",{d:"M21 12H8"}],["path",{d:"M21 19H8"}],["path",{d:"M3 12v7"}]];var vx=[["path",{d:"M21 5H3"}],["path",{d:"M10 12H3"}],["path",{d:"M10 19H3"}],["circle",{cx:"17",cy:"15",r:"3"}],["path",{d:"m21 19-1.9-1.9"}]];var KZ=[["path",{d:"M14 21h1"}],["path",{d:"M14 3h1"}],["path",{d:"M19 3a2 2 0 0 1 2 2"}],["path",{d:"M21 14v1"}],["path",{d:"M21 19a2 2 0 0 1-2 2"}],["path",{d:"M21 9v1"}],["path",{d:"M3 14v1"}],["path",{d:"M3 9v1"}],["path",{d:"M5 21a2 2 0 0 1-2-2"}],["path",{d:"M5 3a2 2 0 0 0-2 2"}],["path",{d:"M7 12h10"}],["path",{d:"M7 16h6"}],["path",{d:"M7 8h8"}],["path",{d:"M9 21h1"}],["path",{d:"M9 3h1"}]];var YZ=[["path",{d:"m16 16-3 3 3 3"}],["path",{d:"M3 12h14.5a1 1 0 0 1 0 7H13"}],["path",{d:"M3 19h6"}],["path",{d:"M3 5h18"}]];var $x=[["path",{d:"M2 10s3-3 3-8"}],["path",{d:"M22 10s-3-3-3-8"}],["path",{d:"M10 2c0 4.4-3.6 8-8 8"}],["path",{d:"M14 2c0 4.4 3.6 8 8 8"}],["path",{d:"M2 10s2 2 2 5"}],["path",{d:"M22 10s-2 2-2 5"}],["path",{d:"M8 15h8"}],["path",{d:"M2 22v-1a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1"}],["path",{d:"M14 22v-1a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1"}]];var gx=[["path",{d:"m10 20-1.25-2.5L6 18"}],["path",{d:"M10 4 8.75 6.5 6 6"}],["path",{d:"M10.585 15H10"}],["path",{d:"M2 12h6.5L10 9"}],["path",{d:"M20 14.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0z"}],["path",{d:"m4 10 1.5 2L4 14"}],["path",{d:"m7 21 3-6-1.5-3"}],["path",{d:"m7 3 3 6h2"}]];var _x=[["path",{d:"M12 9a4 4 0 0 0-2 7.5"}],["path",{d:"M12 3v2"}],["path",{d:"m6.6 18.4-1.4 1.4"}],["path",{d:"M20 4v10.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0Z"}],["path",{d:"M4 13H2"}],["path",{d:"M6.34 7.34 4.93 5.93"}]];var mx=[["path",{d:"M14 4v10.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0Z"}]];var ux=[["path",{d:"M17 14V2"}],["path",{d:"M9 18.12 10 14H4.17a2 2 0 0 1-1.92-2.56l2.33-8A2 2 0 0 1 6.5 2H20a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2.76a2 2 0 0 0-1.79 1.11L12 22a3.13 3.13 0 0 1-3-3.88Z"}]];var dx=[["path",{d:"M7 10v12"}],["path",{d:"M15 5.88 14 10h5.83a2 2 0 0 1 1.92 2.56l-2.33 8A2 2 0 0 1 17.5 22H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h2.76a2 2 0 0 0 1.79-1.11L12 2a3.13 3.13 0 0 1 3 3.88Z"}]];var cx=[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"}],["path",{d:"m9 12 2 2 4-4"}]];var px=[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"}],["path",{d:"M9 12h6"}]];var nx=[["path",{d:"M2 9a3 3 0 1 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 1 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"}],["path",{d:"M9 9h.01"}],["path",{d:"m15 9-6 6"}],["path",{d:"M15 15h.01"}]];var ix=[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"}],["path",{d:"M9 12h6"}],["path",{d:"M12 9v6"}]];var lx=[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"}],["path",{d:"m9.5 14.5 5-5"}]];var sx=[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"}],["path",{d:"m9.5 14.5 5-5"}],["path",{d:"m9.5 9.5 5 5"}]];var rx=[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"}],["path",{d:"M13 5v2"}],["path",{d:"M13 17v2"}],["path",{d:"M13 11v2"}]];var ax=[["path",{d:"M10.5 17h1.227a2 2 0 0 0 1.345-.52L18 12"}],["path",{d:"m12 13.5 3.75.5"}],["path",{d:"m4.5 8 10.58-5.06a1 1 0 0 1 1.342.488L18.5 8"}],["path",{d:"M6 10V8"}],["path",{d:"M6 14v1"}],["path",{d:"M6 19v2"}],["rect",{x:"2",y:"8",width:"20",height:"13",rx:"2"}]];var tx=[["path",{d:"m4.5 8 10.58-5.06a1 1 0 0 1 1.342.488L18.5 8"}],["path",{d:"M6 10V8"}],["path",{d:"M6 14v1"}],["path",{d:"M6 19v2"}],["rect",{x:"2",y:"8",width:"20",height:"13",rx:"2"}]];var ox=[["path",{d:"M10 2h4"}],["path",{d:"M4.6 11a8 8 0 0 0 1.7 8.7 8 8 0 0 0 8.7 1.7"}],["path",{d:"M7.4 7.4a8 8 0 0 1 10.3 1 8 8 0 0 1 .9 10.2"}],["path",{d:"m2 2 20 20"}],["path",{d:"M12 12v-2"}]];var ex=[["path",{d:"M10 2h4"}],["path",{d:"M12 14v-4"}],["path",{d:"M4 13a8 8 0 0 1 8-7 8 8 0 1 1-5.3 14L4 17.6"}],["path",{d:"M9 17H4v5"}]];var Zw=[["line",{x1:"10",x2:"14",y1:"2",y2:"2"}],["line",{x1:"12",x2:"15",y1:"14",y2:"11"}],["circle",{cx:"12",cy:"14",r:"8"}]];var Jw=[["circle",{cx:"9",cy:"12",r:"3"}],["rect",{width:"20",height:"14",x:"2",y:"5",rx:"7"}]];var Kw=[["circle",{cx:"15",cy:"12",r:"3"}],["rect",{width:"20",height:"14",x:"2",y:"5",rx:"7"}]];var Yw=[["path",{d:"M7 12h13a1 1 0 0 1 1 1 5 5 0 0 1-5 5h-.598a.5.5 0 0 0-.424.765l1.544 2.47a.5.5 0 0 1-.424.765H5.402a.5.5 0 0 1-.424-.765L7 18"}],["path",{d:"M8 18a5 5 0 0 1-5-5V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v8"}]];var Xw=[["path",{d:"M10 15h4"}],["path",{d:"m14.817 10.995-.971-1.45 1.034-1.232a2 2 0 0 0-2.025-3.238l-1.82.364L9.91 3.885a2 2 0 0 0-3.625.748L6.141 6.55l-1.725.426a2 2 0 0 0-.19 3.756l.657.27"}],["path",{d:"m18.822 10.995 2.26-5.38a1 1 0 0 0-.557-1.318L16.954 2.9a1 1 0 0 0-1.281.533l-.924 2.122"}],["path",{d:"M4 12.006A1 1 0 0 1 4.994 11H19a1 1 0 0 1 1 1v7a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2z"}]];var Ww=[["path",{d:"M21 4H3"}],["path",{d:"M18 8H6"}],["path",{d:"M19 12H9"}],["path",{d:"M16 16h-6"}],["path",{d:"M11 20H9"}]];var Qw=[["path",{d:"M12 20v-6"}],["path",{d:"M19.656 14H22"}],["path",{d:"M2 14h12"}],["path",{d:"m2 2 20 20"}],["path",{d:"M20 20H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2"}],["path",{d:"M9.656 4H20a2 2 0 0 1 2 2v10.344"}]];var Vw=[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2"}],["path",{d:"M2 14h20"}],["path",{d:"M12 20v-6"}]];var Gw=[["ellipse",{cx:"12",cy:"11",rx:"3",ry:"2"}],["ellipse",{cx:"12",cy:"12.5",rx:"10",ry:"8.5"}]];var Iw=[["path",{d:"M18.2 12.27 20 6H4l1.8 6.27a1 1 0 0 0 .95.73h10.5a1 1 0 0 0 .96-.73Z"}],["path",{d:"M8 13v9"}],["path",{d:"M16 22v-9"}],["path",{d:"m9 6 1 7"}],["path",{d:"m15 6-1 7"}],["path",{d:"M12 6V2"}],["path",{d:"M13 2h-2"}]];var zw=[["rect",{width:"18",height:"12",x:"3",y:"8",rx:"1"}],["path",{d:"M10 8V5c0-.6-.4-1-1-1H6a1 1 0 0 0-1 1v3"}],["path",{d:"M19 8V5c0-.6-.4-1-1-1h-3a1 1 0 0 0-1 1v3"}]];var Nw=[["path",{d:"m10 11 11 .9a1 1 0 0 1 .8 1.1l-.665 4.158a1 1 0 0 1-.988.842H20"}],["path",{d:"M16 18h-5"}],["path",{d:"M18 5a1 1 0 0 0-1 1v5.573"}],["path",{d:"M3 4h8.129a1 1 0 0 1 .99.863L13 11.246"}],["path",{d:"M4 11V4"}],["path",{d:"M7 15h.01"}],["path",{d:"M8 10.1V4"}],["circle",{cx:"18",cy:"18",r:"2"}],["circle",{cx:"7",cy:"15",r:"5"}]];var Fw=[["path",{d:"M16.05 10.966a5 2.5 0 0 1-8.1 0"}],["path",{d:"m16.923 14.049 4.48 2.04a1 1 0 0 1 .001 1.831l-8.574 3.9a2 2 0 0 1-1.66 0l-8.574-3.91a1 1 0 0 1 0-1.83l4.484-2.04"}],["path",{d:"M16.949 14.14a5 2.5 0 1 1-9.9 0L10.063 3.5a2 2 0 0 1 3.874 0z"}],["path",{d:"M9.194 6.57a5 2.5 0 0 0 5.61 0"}]];var Hw=[["path",{d:"M8 3.1V7a4 4 0 0 0 8 0V3.1"}],["path",{d:"m9 15-1-1"}],["path",{d:"m15 15 1-1"}],["path",{d:"M9 19c-2.8 0-5-2.2-5-5v-4a8 8 0 0 1 16 0v4c0 2.8-2.2 5-5 5Z"}],["path",{d:"m8 19-2 3"}],["path",{d:"m16 19 2 3"}]];var Dw=[["path",{d:"M2 22V12a10 10 0 1 1 20 0v10"}],["path",{d:"M15 6.8v1.4a3 2.8 0 1 1-6 0V6.8"}],["path",{d:"M10 15h.01"}],["path",{d:"M14 15h.01"}],["path",{d:"M10 19a4 4 0 0 1-4-4v-3a6 6 0 1 1 12 0v3a4 4 0 0 1-4 4Z"}],["path",{d:"m9 19-2 3"}],["path",{d:"m15 19 2 3"}]];var XZ=[["rect",{width:"16",height:"16",x:"4",y:"3",rx:"2"}],["path",{d:"M4 11h16"}],["path",{d:"M12 3v8"}],["path",{d:"m8 19-2 3"}],["path",{d:"m18 22-2-3"}],["path",{d:"M8 15h.01"}],["path",{d:"M16 15h.01"}]];var Bw=[["path",{d:"M2 17 17 2"}],["path",{d:"m2 14 8 8"}],["path",{d:"m5 11 8 8"}],["path",{d:"m8 8 8 8"}],["path",{d:"m11 5 8 8"}],["path",{d:"m14 2 8 8"}],["path",{d:"M7 22 22 7"}]];var Ow=[["path",{d:"M12 16v6"}],["path",{d:"M14 20h-4"}],["path",{d:"M18 2h4v4"}],["path",{d:"m2 2 7.17 7.17"}],["path",{d:"M2 5.355V2h3.357"}],["path",{d:"m22 2-7.17 7.17"}],["path",{d:"M8 5 5 8"}],["circle",{cx:"12",cy:"12",r:"4"}]];var Tw=[["path",{d:"M10 11v6"}],["path",{d:"M14 11v6"}],["path",{d:"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6"}],["path",{d:"M3 6h18"}],["path",{d:"M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"}]];var Pw=[["path",{d:"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6"}],["path",{d:"M3 6h18"}],["path",{d:"M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"}]];var Sw=[["path",{d:"M8 19a4 4 0 0 1-2.24-7.32A3.5 3.5 0 0 1 9 6.03V6a3 3 0 1 1 6 0v.04a3.5 3.5 0 0 1 3.24 5.65A4 4 0 0 1 16 19Z"}],["path",{d:"M12 19v3"}]];var WZ=[["path",{d:"M13 8c0-2.76-2.46-5-5.5-5S2 5.24 2 8h2l1-1 1 1h4"}],["path",{d:"M13 7.14A5.82 5.82 0 0 1 16.5 6c3.04 0 5.5 2.24 5.5 5h-3l-1-1-1 1h-3"}],["path",{d:"M5.89 9.71c-2.15 2.15-2.3 5.47-.35 7.43l4.24-4.25.7-.7.71-.71 2.12-2.12c-1.95-1.96-5.27-1.8-7.42.35"}],["path",{d:"M11 15.5c.5 2.5-.17 4.5-1 6.5h4c2-5.5-.5-12-1-14"}]];var Aw=[["path",{d:"m17 14 3 3.3a1 1 0 0 1-.7 1.7H4.7a1 1 0 0 1-.7-1.7L7 14h-.3a1 1 0 0 1-.7-1.7L9 9h-.2A1 1 0 0 1 8 7.3L12 3l4 4.3a1 1 0 0 1-.8 1.7H15l3 3.3a1 1 0 0 1-.7 1.7H17Z"}],["path",{d:"M12 22v-3"}]];var qw=[["path",{d:"M10 10v.2A3 3 0 0 1 8.9 16H5a3 3 0 0 1-1-5.8V10a3 3 0 0 1 6 0Z"}],["path",{d:"M7 16v6"}],["path",{d:"M13 19v3"}],["path",{d:"M12 19h8.3a1 1 0 0 0 .7-1.7L18 14h.3a1 1 0 0 0 .7-1.7L16 9h.2a1 1 0 0 0 .8-1.7L13 3l-1.4 1.5"}]];var Ew=[["path",{d:"M16 17h6v-6"}],["path",{d:"m22 17-8.5-8.5-5 5L2 7"}]];var Cw=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["rect",{width:"3",height:"9",x:"7",y:"7"}],["rect",{width:"3",height:"5",x:"14",y:"7"}]];var xw=[["path",{d:"M14.828 14.828 21 21"}],["path",{d:"M21 16v5h-5"}],["path",{d:"m21 3-9 9-4-4-6 6"}],["path",{d:"M21 8V3h-5"}]];var ww=[["path",{d:"M16 7h6v6"}],["path",{d:"m22 7-8.5 8.5-5-5L2 17"}]];var QZ=[["path",{d:"m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3"}],["path",{d:"M12 9v4"}],["path",{d:"M12 17h.01"}]];var Uw=[["path",{d:"M10.17 4.193a2 2 0 0 1 3.666.013"}],["path",{d:"M14 21h2"}],["path",{d:"m15.874 7.743 1 1.732"}],["path",{d:"m18.849 12.952 1 1.732"}],["path",{d:"M21.824 18.18a2 2 0 0 1-1.835 2.824"}],["path",{d:"M4.024 21a2 2 0 0 1-1.839-2.839"}],["path",{d:"m5.136 12.952-1 1.732"}],["path",{d:"M8 21h2"}],["path",{d:"m8.102 7.743-1 1.732"}]];var Mw=[["path",{d:"M13.73 4a2 2 0 0 0-3.46 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3Z"}]];var Rw=[["path",{d:"M22 18a2 2 0 0 1-2 2H3c-1.1 0-1.3-.6-.4-1.3L20.4 4.3c.9-.7 1.6-.4 1.6.7Z"}]];var jw=[["path",{d:"M10 14.66v1.626a2 2 0 0 1-.976 1.696A5 5 0 0 0 7 21.978"}],["path",{d:"M14 14.66v1.626a2 2 0 0 0 .976 1.696A5 5 0 0 1 17 21.978"}],["path",{d:"M18 9h1.5a1 1 0 0 0 0-5H18"}],["path",{d:"M4 22h16"}],["path",{d:"M6 9a6 6 0 0 0 12 0V3a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1z"}],["path",{d:"M6 9H4.5a1 1 0 0 1 0-5H6"}]];var Lw=[["path",{d:"M14 19V7a2 2 0 0 0-2-2H9"}],["path",{d:"M15 19H9"}],["path",{d:"M19 19h2a1 1 0 0 0 1-1v-3.65a1 1 0 0 0-.22-.62L18.3 9.38a1 1 0 0 0-.78-.38H14"}],["path",{d:"M2 13v5a1 1 0 0 0 1 1h2"}],["path",{d:"M4 3 2.15 5.15a.495.495 0 0 0 .35.86h2.15a.47.47 0 0 1 .35.86L3 9.02"}],["circle",{cx:"17",cy:"19",r:"2"}],["circle",{cx:"7",cy:"19",r:"2"}]];var yw=[["path",{d:"M14 18V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v11a1 1 0 0 0 1 1h2"}],["path",{d:"M15 18H9"}],["path",{d:"M19 18h2a1 1 0 0 0 1-1v-3.65a1 1 0 0 0-.22-.624l-3.48-4.35A1 1 0 0 0 17.52 8H14"}],["circle",{cx:"17",cy:"18",r:"2"}],["circle",{cx:"7",cy:"18",r:"2"}]];var fw=[["path",{d:"M15 4 5 9"}],["path",{d:"m15 8.5-10 5"}],["path",{d:"M18 12a9 9 0 0 1-9 9V3"}]];var kw=[["path",{d:"M10 12.01h.01"}],["path",{d:"M18 8v4a8 8 0 0 1-1.07 4"}],["circle",{cx:"10",cy:"12",r:"4"}],["rect",{x:"2",y:"4",width:"20",height:"16",rx:"2"}]];var bw=[["path",{d:"m12 10 2 4v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-3a8 8 0 1 0-16 0v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-3l2-4h4Z"}],["path",{d:"M4.82 7.9 8 10"}],["path",{d:"M15.18 7.9 12 10"}],["path",{d:"M16.93 10H20a2 2 0 0 1 0 4H2"}]];var hw=[["path",{d:"M15.033 9.44a.647.647 0 0 1 0 1.12l-4.065 2.352a.645.645 0 0 1-.968-.56V7.648a.645.645 0 0 1 .967-.56z"}],["path",{d:"M7 21h10"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2"}]];var VZ=[["path",{d:"M7 21h10"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2"}]];var vw=[["path",{d:"M21 2H3v16h5v4l4-4h5l4-4V2zm-10 9V7m5 4V7"}]];var $w=[["path",{d:"m17 2-5 5-5-5"}],["rect",{width:"20",height:"15",x:"2",y:"7",rx:"2"}]];var gw=[["path",{d:"M22 4s-.7 2.1-2 3.4c1.6 10-9.4 17.3-18 11.6 2.2.1 4.4-.6 6-2C3 15.5.5 9.6 3 5c2.2 2.6 5.6 4.1 9 4-.9-4.2 4-6.6 7-3.8 1.1 0 3-1.2 3-1.2z"}]];var _w=[["path",{d:"M14 16.5a.5.5 0 0 0 .5.5h.5a2 2 0 0 1 0 4H9a2 2 0 0 1 0-4h.5a.5.5 0 0 0 .5-.5v-9a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5V8a2 2 0 0 1-4 0V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v3a2 2 0 0 1-4 0v-.5a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5Z"}]];var mw=[["path",{d:"M12 4v16"}],["path",{d:"M4 7V5a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v2"}],["path",{d:"M9 20h6"}]];var uw=[["path",{d:"M12 13v7a2 2 0 0 0 4 0"}],["path",{d:"M12 2v2"}],["path",{d:"M18.656 13h2.336a1 1 0 0 0 .97-1.274 10.284 10.284 0 0 0-12.07-7.51"}],["path",{d:"m2 2 20 20"}],["path",{d:"M5.961 5.957a10.28 10.28 0 0 0-3.922 5.769A1 1 0 0 0 3 13h10"}]];var dw=[["path",{d:"M12 13v7a2 2 0 0 0 4 0"}],["path",{d:"M12 2v2"}],["path",{d:"M20.992 13a1 1 0 0 0 .97-1.274 10.284 10.284 0 0 0-19.923 0A1 1 0 0 0 3 13z"}]];var cw=[["path",{d:"M6 4v6a6 6 0 0 0 12 0V4"}],["line",{x1:"4",x2:"20",y1:"20",y2:"20"}]];var pw=[["path",{d:"M9 14 4 9l5-5"}],["path",{d:"M4 9h10.5a5.5 5.5 0 0 1 5.5 5.5a5.5 5.5 0 0 1-5.5 5.5H11"}]];var nw=[["path",{d:"M3 7v6h6"}],["path",{d:"M21 17a9 9 0 0 0-9-9 9 9 0 0 0-6 2.3L3 13"}]];var iw=[["path",{d:"M21 17a9 9 0 0 0-15-6.7L3 13"}],["path",{d:"M3 7v6h6"}],["circle",{cx:"12",cy:"17",r:"1"}]];var lw=[["path",{d:"M16 12h6"}],["path",{d:"M8 12H2"}],["path",{d:"M12 2v2"}],["path",{d:"M12 8v2"}],["path",{d:"M12 14v2"}],["path",{d:"M12 20v2"}],["path",{d:"m19 15 3-3-3-3"}],["path",{d:"m5 9-3 3 3 3"}]];var sw=[["path",{d:"M12 22v-6"}],["path",{d:"M12 8V2"}],["path",{d:"M4 12H2"}],["path",{d:"M10 12H8"}],["path",{d:"M16 12h-2"}],["path",{d:"M22 12h-2"}],["path",{d:"m15 19-3 3-3-3"}],["path",{d:"m15 5-3-3-3 3"}]];var rw=[["rect",{width:"8",height:"6",x:"5",y:"4",rx:"1"}],["rect",{width:"8",height:"6",x:"11",y:"14",rx:"1"}]];var GZ=[["path",{d:"M14 21v-3a2 2 0 0 0-4 0v3"}],["path",{d:"M18 12h.01"}],["path",{d:"M18 16h.01"}],["path",{d:"M22 7a1 1 0 0 0-1-1h-2a2 2 0 0 1-1.143-.359L13.143 2.36a2 2 0 0 0-2.286-.001L6.143 5.64A2 2 0 0 1 5 6H3a1 1 0 0 0-1 1v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2z"}],["path",{d:"M6 12h.01"}],["path",{d:"M6 16h.01"}],["circle",{cx:"12",cy:"10",r:"2"}]];var aw=[["path",{d:"M15 7h2a5 5 0 0 1 0 10h-2m-6 0H7A5 5 0 0 1 7 7h2"}]];var tw=[["path",{d:"m18.84 12.25 1.72-1.71h-.02a5.004 5.004 0 0 0-.12-7.07 5.006 5.006 0 0 0-6.95 0l-1.72 1.71"}],["path",{d:"m5.17 11.75-1.71 1.71a5.004 5.004 0 0 0 .12 7.07 5.006 5.006 0 0 0 6.95 0l1.71-1.71"}],["line",{x1:"8",x2:"8",y1:"2",y2:"5"}],["line",{x1:"2",x2:"5",y1:"8",y2:"8"}],["line",{x1:"16",x2:"16",y1:"19",y2:"22"}],["line",{x1:"19",x2:"22",y1:"16",y2:"16"}]];var ow=[["path",{d:"M12 3v12"}],["path",{d:"m17 8-5-5-5 5"}],["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"}]];var ew=[["path",{d:"m19 5 3-3"}],["path",{d:"m2 22 3-3"}],["path",{d:"M6.3 20.3a2.4 2.4 0 0 0 3.4 0L12 18l-6-6-2.3 2.3a2.4 2.4 0 0 0 0 3.4Z"}],["path",{d:"M7.5 13.5 10 11"}],["path",{d:"M10.5 16.5 13 14"}],["path",{d:"m12 6 6 6 2.3-2.3a2.4 2.4 0 0 0 0-3.4l-2.6-2.6a2.4 2.4 0 0 0-3.4 0Z"}]];var ZU=[["path",{d:"m16 11 2 2 4-4"}],["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["circle",{cx:"9",cy:"7",r:"4"}]];var JU=[["circle",{cx:"10",cy:"7",r:"1"}],["circle",{cx:"4",cy:"20",r:"1"}],["path",{d:"M4.7 19.3 19 5"}],["path",{d:"m21 3-3 1 2 2Z"}],["path",{d:"M9.26 7.68 5 12l2 5"}],["path",{d:"m10 14 5 2 3.5-3.5"}],["path",{d:"m18 12 1-1 1 1-1 1Z"}]];var KU=[["path",{d:"M10 15H6a4 4 0 0 0-4 4v2"}],["path",{d:"m14.305 16.53.923-.382"}],["path",{d:"m15.228 13.852-.923-.383"}],["path",{d:"m16.852 12.228-.383-.923"}],["path",{d:"m16.852 17.772-.383.924"}],["path",{d:"m19.148 12.228.383-.923"}],["path",{d:"m19.53 18.696-.382-.924"}],["path",{d:"m20.772 13.852.924-.383"}],["path",{d:"m20.772 16.148.924.383"}],["circle",{cx:"18",cy:"15",r:"3"}],["circle",{cx:"9",cy:"7",r:"4"}]];var YU=[["circle",{cx:"10",cy:"7",r:"4"}],["path",{d:"M10.3 15H7a4 4 0 0 0-4 4v2"}],["path",{d:"M15 15.5V14a2 2 0 0 1 4 0v1.5"}],["rect",{width:"8",height:"5",x:"13",y:"16",rx:".899"}]];var XU=[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["circle",{cx:"9",cy:"7",r:"4"}],["line",{x1:"22",x2:"16",y1:"11",y2:"11"}]];var WU=[["path",{d:"M11.5 15H7a4 4 0 0 0-4 4v2"}],["path",{d:"M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}],["circle",{cx:"10",cy:"7",r:"4"}]];var QU=[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["circle",{cx:"9",cy:"7",r:"4"}],["line",{x1:"19",x2:"19",y1:"8",y2:"14"}],["line",{x1:"22",x2:"16",y1:"11",y2:"11"}]];var IZ=[["path",{d:"M2 21a8 8 0 0 1 13.292-6"}],["circle",{cx:"10",cy:"8",r:"5"}],["path",{d:"m16 19 2 2 4-4"}]];var zZ=[["path",{d:"m14.305 19.53.923-.382"}],["path",{d:"m15.228 16.852-.923-.383"}],["path",{d:"m16.852 15.228-.383-.923"}],["path",{d:"m16.852 20.772-.383.924"}],["path",{d:"m19.148 15.228.383-.923"}],["path",{d:"m19.53 21.696-.382-.924"}],["path",{d:"M2 21a8 8 0 0 1 10.434-7.62"}],["path",{d:"m20.772 16.852.924-.383"}],["path",{d:"m20.772 19.148.924.383"}],["circle",{cx:"10",cy:"8",r:"5"}],["circle",{cx:"18",cy:"18",r:"3"}]];var NZ=[["path",{d:"M2 21a8 8 0 0 1 13.292-6"}],["circle",{cx:"10",cy:"8",r:"5"}],["path",{d:"M22 19h-6"}]];var VU=[["path",{d:"M2 21a8 8 0 0 1 10.821-7.487"}],["path",{d:"M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}],["circle",{cx:"10",cy:"8",r:"5"}]];var FZ=[["path",{d:"M2 21a8 8 0 0 1 13.292-6"}],["circle",{cx:"10",cy:"8",r:"5"}],["path",{d:"M19 16v6"}],["path",{d:"M22 19h-6"}]];var GU=[["circle",{cx:"10",cy:"8",r:"5"}],["path",{d:"M2 21a8 8 0 0 1 10.434-7.62"}],["circle",{cx:"18",cy:"18",r:"3"}],["path",{d:"m22 22-1.9-1.9"}]];var HZ=[["path",{d:"M2 21a8 8 0 0 1 11.873-7"}],["circle",{cx:"10",cy:"8",r:"5"}],["path",{d:"m17 17 5 5"}],["path",{d:"m22 17-5 5"}]];var DZ=[["circle",{cx:"12",cy:"8",r:"5"}],["path",{d:"M20 21a8 8 0 0 0-16 0"}]];var IU=[["circle",{cx:"10",cy:"7",r:"4"}],["path",{d:"M10.3 15H7a4 4 0 0 0-4 4v2"}],["circle",{cx:"17",cy:"17",r:"3"}],["path",{d:"m21 21-1.9-1.9"}]];var zU=[["path",{d:"M16.051 12.616a1 1 0 0 1 1.909.024l.737 1.452a1 1 0 0 0 .737.535l1.634.256a1 1 0 0 1 .588 1.806l-1.172 1.168a1 1 0 0 0-.282.866l.259 1.613a1 1 0 0 1-1.541 1.134l-1.465-.75a1 1 0 0 0-.912 0l-1.465.75a1 1 0 0 1-1.539-1.133l.258-1.613a1 1 0 0 0-.282-.866l-1.156-1.153a1 1 0 0 1 .572-1.822l1.633-.256a1 1 0 0 0 .737-.535z"}],["path",{d:"M8 15H7a4 4 0 0 0-4 4v2"}],["circle",{cx:"10",cy:"7",r:"4"}]];var NU=[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["circle",{cx:"9",cy:"7",r:"4"}],["line",{x1:"17",x2:"22",y1:"8",y2:"13"}],["line",{x1:"22",x2:"17",y1:"8",y2:"13"}]];var FU=[["path",{d:"M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2"}],["circle",{cx:"12",cy:"7",r:"4"}]];var BZ=[["path",{d:"M18 21a8 8 0 0 0-16 0"}],["circle",{cx:"10",cy:"8",r:"5"}],["path",{d:"M22 20c0-3.37-2-6.5-4-8a5 5 0 0 0-.45-8.3"}]];var HU=[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["path",{d:"M16 3.128a4 4 0 0 1 0 7.744"}],["path",{d:"M22 21v-2a4 4 0 0 0-3-3.87"}],["circle",{cx:"9",cy:"7",r:"4"}]];var OZ=[["path",{d:"m16 2-2.3 2.3a3 3 0 0 0 0 4.2l1.8 1.8a3 3 0 0 0 4.2 0L22 8"}],["path",{d:"M15 15 3.3 3.3a4.2 4.2 0 0 0 0 6l7.3 7.3c.7.7 2 .7 2.8 0L15 15Zm0 0 7 7"}],["path",{d:"m2.1 21.8 6.4-6.3"}],["path",{d:"m19 5-7 7"}]];var TZ=[["path",{d:"M3 2v7c0 1.1.9 2 2 2h4a2 2 0 0 0 2-2V2"}],["path",{d:"M7 2v20"}],["path",{d:"M21 15V2a5 5 0 0 0-5 5v6c0 1.1.9 2 2 2h3Zm0 0v7"}]];var DU=[["path",{d:"M8 21s-4-3-4-9 4-9 4-9"}],["path",{d:"M16 3s4 3 4 9-4 9-4 9"}],["line",{x1:"15",x2:"9",y1:"9",y2:"15"}],["line",{x1:"9",x2:"15",y1:"9",y2:"15"}]];var BU=[["path",{d:"M12 2v20"}],["path",{d:"M2 5h20"}],["path",{d:"M3 3v2"}],["path",{d:"M7 3v2"}],["path",{d:"M17 3v2"}],["path",{d:"M21 3v2"}],["path",{d:"m19 5-7 7-7-7"}]];var OU=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["circle",{cx:"7.5",cy:"7.5",r:".5",fill:"currentColor"}],["path",{d:"m7.9 7.9 2.7 2.7"}],["circle",{cx:"16.5",cy:"7.5",r:".5",fill:"currentColor"}],["path",{d:"m13.4 10.6 2.7-2.7"}],["circle",{cx:"7.5",cy:"16.5",r:".5",fill:"currentColor"}],["path",{d:"m7.9 16.1 2.7-2.7"}],["circle",{cx:"16.5",cy:"16.5",r:".5",fill:"currentColor"}],["path",{d:"m13.4 13.4 2.7 2.7"}],["circle",{cx:"12",cy:"12",r:"2"}]];var TU=[["path",{d:"M19.5 7a24 24 0 0 1 0 10"}],["path",{d:"M4.5 7a24 24 0 0 0 0 10"}],["path",{d:"M7 19.5a24 24 0 0 0 10 0"}],["path",{d:"M7 4.5a24 24 0 0 1 10 0"}],["rect",{x:"17",y:"17",width:"5",height:"5",rx:"1"}],["rect",{x:"17",y:"2",width:"5",height:"5",rx:"1"}],["rect",{x:"2",y:"17",width:"5",height:"5",rx:"1"}],["rect",{x:"2",y:"2",width:"5",height:"5",rx:"1"}]];var PU=[["path",{d:"M16 8q6 0 6-6-6 0-6 6"}],["path",{d:"M17.41 3.59a10 10 0 1 0 3 3"}],["path",{d:"M2 2a26.6 26.6 0 0 1 10 20c.9-6.82 1.5-9.5 4-14"}]];var SU=[["path",{d:"M18 11c-1.5 0-2.5.5-3 2"}],["path",{d:"M4 6a2 2 0 0 0-2 2v4a5 5 0 0 0 5 5 8 8 0 0 1 5 2 8 8 0 0 1 5-2 5 5 0 0 0 5-5V8a2 2 0 0 0-2-2h-3a8 8 0 0 0-5 2 8 8 0 0 0-5-2z"}],["path",{d:"M6 11c1.5 0 2.5.5 3 2"}]];var AU=[["path",{d:"M10 20h4"}],["path",{d:"M12 16v6"}],["path",{d:"M17 2h4v4"}],["path",{d:"m21 2-5.46 5.46"}],["circle",{cx:"12",cy:"11",r:"5"}]];var qU=[["path",{d:"M12 15v7"}],["path",{d:"M9 19h6"}],["circle",{cx:"12",cy:"9",r:"6"}]];var EU=[["path",{d:"m2 8 2 2-2 2 2 2-2 2"}],["path",{d:"m22 8-2 2 2 2-2 2 2 2"}],["path",{d:"M8 8v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2"}],["path",{d:"M16 10.34V6c0-.55-.45-1-1-1h-4.34"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var CU=[["path",{d:"m2 8 2 2-2 2 2 2-2 2"}],["path",{d:"m22 8-2 2 2 2-2 2 2 2"}],["rect",{width:"8",height:"14",x:"8",y:"5",rx:"1"}]];var xU=[["path",{d:"M10.66 6H14a2 2 0 0 1 2 2v2.5l5.248-3.062A.5.5 0 0 1 22 7.87v8.196"}],["path",{d:"M16 16a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2"}],["path",{d:"m2 2 20 20"}]];var wU=[["path",{d:"m16 13 5.223 3.482a.5.5 0 0 0 .777-.416V7.87a.5.5 0 0 0-.752-.432L16 10.5"}],["rect",{x:"2",y:"6",width:"14",height:"12",rx:"2"}]];var UU=[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2"}],["path",{d:"M2 8h20"}],["circle",{cx:"8",cy:"14",r:"2"}],["path",{d:"M8 12h8"}],["circle",{cx:"16",cy:"14",r:"2"}]];var MU=[["path",{d:"M21 17v2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-2"}],["path",{d:"M21 7V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2"}],["circle",{cx:"12",cy:"12",r:"1"}],["path",{d:"M18.944 12.33a1 1 0 0 0 0-.66 7.5 7.5 0 0 0-13.888 0 1 1 0 0 0 0 .66 7.5 7.5 0 0 0 13.888 0"}]];var RU=[["circle",{cx:"6",cy:"12",r:"4"}],["circle",{cx:"18",cy:"12",r:"4"}],["line",{x1:"6",x2:"18",y1:"16",y2:"16"}]];var jU=[["path",{d:"M11.1 7.1a16.55 16.55 0 0 1 10.9 4"}],["path",{d:"M12 12a12.6 12.6 0 0 1-8.7 5"}],["path",{d:"M16.8 13.6a16.55 16.55 0 0 1-9 7.5"}],["path",{d:"M20.7 17a12.8 12.8 0 0 0-8.7-5 13.3 13.3 0 0 1 0-10"}],["path",{d:"M6.3 3.8a16.55 16.55 0 0 0 1.9 11.5"}],["circle",{cx:"12",cy:"12",r:"10"}]];var LU=[["path",{d:"M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z"}],["path",{d:"M16 9a5 5 0 0 1 0 6"}]];var yU=[["path",{d:"M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z"}],["path",{d:"M16 9a5 5 0 0 1 0 6"}],["path",{d:"M19.364 18.364a9 9 0 0 0 0-12.728"}]];var fU=[["path",{d:"M16 9a5 5 0 0 1 .95 2.293"}],["path",{d:"M19.364 5.636a9 9 0 0 1 1.889 9.96"}],["path",{d:"m2 2 20 20"}],["path",{d:"m7 7-.587.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298V11"}],["path",{d:"M9.828 4.172A.686.686 0 0 1 11 4.657v.686"}]];var kU=[["path",{d:"M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z"}],["line",{x1:"22",x2:"16",y1:"9",y2:"15"}],["line",{x1:"16",x2:"22",y1:"9",y2:"15"}]];var bU=[["path",{d:"M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z"}]];var hU=[["path",{d:"m9 12 2 2 4-4"}],["path",{d:"M5 7c0-1.1.9-2 2-2h10a2 2 0 0 1 2 2v12H5V7Z"}],["path",{d:"M22 19H2"}]];var vU=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 9a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2"}],["path",{d:"M3 11h3c.8 0 1.6.3 2.1.9l1.1.9c1.6 1.6 4.1 1.6 5.7 0l1.1-.9c.5-.5 1.3-.9 2.1-.9H21"}]];var PZ=[["path",{d:"M17 14h.01"}],["path",{d:"M7 7h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14"}]];var $U=[["path",{d:"M19 7V4a1 1 0 0 0-1-1H5a2 2 0 0 0 0 4h15a1 1 0 0 1 1 1v4h-3a2 2 0 0 0 0 4h3a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1"}],["path",{d:"M3 5v14a2 2 0 0 0 2 2h15a1 1 0 0 0 1-1v-4"}]];var SZ=[["path",{d:"m21.64 3.64-1.28-1.28a1.21 1.21 0 0 0-1.72 0L2.36 18.64a1.21 1.21 0 0 0 0 1.72l1.28 1.28a1.2 1.2 0 0 0 1.72 0L21.64 5.36a1.2 1.2 0 0 0 0-1.72"}],["path",{d:"m14 7 3 3"}],["path",{d:"M5 6v4"}],["path",{d:"M19 14v4"}],["path",{d:"M10 2v2"}],["path",{d:"M7 8H3"}],["path",{d:"M21 16h-4"}],["path",{d:"M11 3H9"}]];var gU=[["path",{d:"M12 17v4"}],["path",{d:"M8 21h8"}],["path",{d:"m9 17 6.1-6.1a2 2 0 0 1 2.81.01L22 15"}],["circle",{cx:"8",cy:"9",r:"2"}],["rect",{x:"2",y:"3",width:"20",height:"14",rx:"2"}]];var _U=[["path",{d:"M15 4V2"}],["path",{d:"M15 16v-2"}],["path",{d:"M8 9h2"}],["path",{d:"M20 9h2"}],["path",{d:"M17.8 11.8 19 13"}],["path",{d:"M15 9h.01"}],["path",{d:"M17.8 6.2 19 5"}],["path",{d:"m3 21 9-9"}],["path",{d:"M12.2 6.2 11 5"}]];var mU=[["path",{d:"M18 21V10a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v11"}],["path",{d:"M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 1.132-1.803l7.95-3.974a2 2 0 0 1 1.837 0l7.948 3.974A2 2 0 0 1 22 8z"}],["path",{d:"M6 13h12"}],["path",{d:"M6 17h12"}]];var uU=[["path",{d:"M3 6h3"}],["path",{d:"M17 6h.01"}],["rect",{width:"18",height:"20",x:"3",y:"2",rx:"2"}],["circle",{cx:"12",cy:"13",r:"5"}],["path",{d:"M12 18a2.5 2.5 0 0 0 0-5 2.5 2.5 0 0 1 0-5"}]];var dU=[["path",{d:"M12 10v2.2l1.6 1"}],["path",{d:"m16.13 7.66-.81-4.05a2 2 0 0 0-2-1.61h-2.68a2 2 0 0 0-2 1.61l-.78 4.05"}],["path",{d:"m7.88 16.36.8 4a2 2 0 0 0 2 1.61h2.72a2 2 0 0 0 2-1.61l.81-4.05"}],["circle",{cx:"12",cy:"12",r:"6"}]];var cU=[["path",{d:"M19 5a2 2 0 0 0-2 2v11"}],["path",{d:"M2 18c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"}],["path",{d:"M7 13h10"}],["path",{d:"M7 9h10"}],["path",{d:"M9 5a2 2 0 0 0-2 2v11"}]];var pU=[["circle",{cx:"12",cy:"4.5",r:"2.5"}],["path",{d:"m10.2 6.3-3.9 3.9"}],["circle",{cx:"4.5",cy:"12",r:"2.5"}],["path",{d:"M7 12h10"}],["circle",{cx:"19.5",cy:"12",r:"2.5"}],["path",{d:"m13.8 17.7 3.9-3.9"}],["circle",{cx:"12",cy:"19.5",r:"2.5"}]];var nU=[["path",{d:"M2 6c.6.5 1.2 1 2.5 1C7 7 7 5 9.5 5c2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"}],["path",{d:"M2 12c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"}],["path",{d:"M2 18c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"}]];var iU=[["circle",{cx:"12",cy:"10",r:"8"}],["circle",{cx:"12",cy:"10",r:"3"}],["path",{d:"M7 22h10"}],["path",{d:"M12 22v-4"}]];var lU=[["path",{d:"M17 17h-5c-1.09-.02-1.94.92-2.5 1.9A3 3 0 1 1 2.57 15"}],["path",{d:"M9 3.4a4 4 0 0 1 6.52.66"}],["path",{d:"m6 17 3.1-5.8a2.5 2.5 0 0 0 .057-2.05"}],["path",{d:"M20.3 20.3a4 4 0 0 1-2.3.7"}],["path",{d:"M18.6 13a4 4 0 0 1 3.357 3.414"}],["path",{d:"m12 6 .6 1"}],["path",{d:"m2 2 20 20"}]];var sU=[["path",{d:"M18 16.98h-5.99c-1.1 0-1.95.94-2.48 1.9A4 4 0 0 1 2 17c.01-.7.2-1.4.57-2"}],["path",{d:"m6 17 3.13-5.78c.53-.97.1-2.18-.5-3.1a4 4 0 1 1 6.89-4.06"}],["path",{d:"m12 6 3.13 5.73C15.66 12.7 16.9 13 18 13a4 4 0 0 1 0 8"}]];var rU=[["circle",{cx:"12",cy:"5",r:"3"}],["path",{d:"M6.5 8a2 2 0 0 0-1.905 1.46L2.1 18.5A2 2 0 0 0 4 21h16a2 2 0 0 0 1.925-2.54L19.4 9.5A2 2 0 0 0 17.48 8Z"}]];var aU=[["path",{d:"m2 22 10-10"}],["path",{d:"m16 8-1.17 1.17"}],["path",{d:"M3.47 12.53 5 11l1.53 1.53a3.5 3.5 0 0 1 0 4.94L5 19l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z"}],["path",{d:"m8 8-.53.53a3.5 3.5 0 0 0 0 4.94L9 15l1.53-1.53c.55-.55.88-1.25.98-1.97"}],["path",{d:"M10.91 5.26c.15-.26.34-.51.56-.73L13 3l1.53 1.53a3.5 3.5 0 0 1 .28 4.62"}],["path",{d:"M20 2h2v2a4 4 0 0 1-4 4h-2V6a4 4 0 0 1 4-4Z"}],["path",{d:"M11.47 17.47 13 19l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L5 19l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z"}],["path",{d:"m16 16-.53.53a3.5 3.5 0 0 1-4.94 0L9 15l1.53-1.53a3.49 3.49 0 0 1 1.97-.98"}],["path",{d:"M18.74 13.09c.26-.15.51-.34.73-.56L21 11l-1.53-1.53a3.5 3.5 0 0 0-4.62-.28"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var tU=[["path",{d:"M2 22 16 8"}],["path",{d:"M3.47 12.53 5 11l1.53 1.53a3.5 3.5 0 0 1 0 4.94L5 19l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z"}],["path",{d:"M7.47 8.53 9 7l1.53 1.53a3.5 3.5 0 0 1 0 4.94L9 15l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z"}],["path",{d:"M11.47 4.53 13 3l1.53 1.53a3.5 3.5 0 0 1 0 4.94L13 11l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z"}],["path",{d:"M20 2h2v2a4 4 0 0 1-4 4h-2V6a4 4 0 0 1 4-4Z"}],["path",{d:"M11.47 17.47 13 19l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L5 19l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z"}],["path",{d:"M15.47 13.47 17 15l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L9 15l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z"}],["path",{d:"M19.47 9.47 21 11l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L13 11l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z"}]];var oU=[["circle",{cx:"7",cy:"12",r:"3"}],["path",{d:"M10 9v6"}],["circle",{cx:"17",cy:"12",r:"3"}],["path",{d:"M14 7v8"}],["path",{d:"M22 17v1c0 .5-.5 1-1 1H3c-.5 0-1-.5-1-1v-1"}]];var eU=[["path",{d:"m14.305 19.53.923-.382"}],["path",{d:"m15.228 16.852-.923-.383"}],["path",{d:"m16.852 15.228-.383-.923"}],["path",{d:"m16.852 20.772-.383.924"}],["path",{d:"m19.148 15.228.383-.923"}],["path",{d:"m19.53 21.696-.382-.924"}],["path",{d:"M2 7.82a15 15 0 0 1 20 0"}],["path",{d:"m20.772 16.852.924-.383"}],["path",{d:"m20.772 19.148.924.383"}],["path",{d:"M5 11.858a10 10 0 0 1 11.5-1.785"}],["path",{d:"M8.5 15.429a5 5 0 0 1 2.413-1.31"}],["circle",{cx:"18",cy:"18",r:"3"}]];var ZM=[["path",{d:"M12 20h.01"}],["path",{d:"M5 12.859a10 10 0 0 1 14 0"}],["path",{d:"M8.5 16.429a5 5 0 0 1 7 0"}]];var JM=[["path",{d:"M12 20h.01"}],["path",{d:"M8.5 16.429a5 5 0 0 1 7 0"}]];var KM=[["path",{d:"M12 20h.01"}],["path",{d:"M8.5 16.429a5 5 0 0 1 7 0"}],["path",{d:"M5 12.859a10 10 0 0 1 5.17-2.69"}],["path",{d:"M19 12.859a10 10 0 0 0-2.007-1.523"}],["path",{d:"M2 8.82a15 15 0 0 1 4.177-2.643"}],["path",{d:"M22 8.82a15 15 0 0 0-11.288-3.764"}],["path",{d:"m2 2 20 20"}]];var YM=[["path",{d:"M2 8.82a15 15 0 0 1 20 0"}],["path",{d:"M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}],["path",{d:"M5 12.859a10 10 0 0 1 10.5-2.222"}],["path",{d:"M8.5 16.429a5 5 0 0 1 3-1.406"}]];var XM=[["path",{d:"M12 20h.01"}]];var WM=[["path",{d:"M11.965 10.105v4L13.5 12.5a5 5 0 0 1 8 1.5"}],["path",{d:"M11.965 14.105h4"}],["path",{d:"M17.965 18.105h4L20.43 19.71a5 5 0 0 1-8-1.5"}],["path",{d:"M2 8.82a15 15 0 0 1 20 0"}],["path",{d:"M21.965 22.105v-4"}],["path",{d:"M5 12.86a10 10 0 0 1 3-2.032"}],["path",{d:"M8.5 16.429h.01"}]];var QM=[["path",{d:"M12 20h.01"}],["path",{d:"M2 8.82a15 15 0 0 1 20 0"}],["path",{d:"M5 12.859a10 10 0 0 1 14 0"}],["path",{d:"M8.5 16.429a5 5 0 0 1 7 0"}]];var VM=[["path",{d:"M10 2v8"}],["path",{d:"M12.8 21.6A2 2 0 1 0 14 18H2"}],["path",{d:"M17.5 10a2.5 2.5 0 1 1 2 4H2"}],["path",{d:"m6 6 4 4 4-4"}]];var GM=[["path",{d:"M12.8 19.6A2 2 0 1 0 14 16H2"}],["path",{d:"M17.5 8a2.5 2.5 0 1 1 2 4H2"}],["path",{d:"M9.8 4.4A2 2 0 1 1 11 8H2"}]];var IM=[["path",{d:"M8 22h8"}],["path",{d:"M7 10h3m7 0h-1.343"}],["path",{d:"M12 15v7"}],["path",{d:"M7.307 7.307A12.33 12.33 0 0 0 7 10a5 5 0 0 0 7.391 4.391M8.638 2.981C8.75 2.668 8.872 2.34 9 2h6c1.5 4 2 6 2 8 0 .407-.05.809-.145 1.198"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var zM=[["path",{d:"M8 22h8"}],["path",{d:"M7 10h10"}],["path",{d:"M12 15v7"}],["path",{d:"M12 15a5 5 0 0 0 5-5c0-2-.5-4-2-8H9c-1.5 4-2 6-2 8a5 5 0 0 0 5 5Z"}]];var NM=[["rect",{width:"8",height:"8",x:"3",y:"3",rx:"2"}],["path",{d:"M7 11v4a2 2 0 0 0 2 2h4"}],["rect",{width:"8",height:"8",x:"13",y:"13",rx:"2"}]];var FM=[["path",{d:"M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.106-3.105c.32-.322.863-.22.983.218a6 6 0 0 1-8.259 7.057l-7.91 7.91a1 1 0 0 1-2.999-3l7.91-7.91a6 6 0 0 1 7.057-8.259c.438.12.54.662.219.984z"}]];var HM=[["path",{d:"M18 6 6 18"}],["path",{d:"m6 6 12 12"}]];var DM=[["path",{d:"m19 12-1.5 3"}],["path",{d:"M19.63 18.81 22 20"}],["path",{d:"M6.47 8.23a1.68 1.68 0 0 1 2.44 1.93l-.64 2.08a6.76 6.76 0 0 0 10.16 7.67l.42-.27a1 1 0 1 0-2.73-4.21l-.42.27a1.76 1.76 0 0 1-2.63-1.99l.64-2.08A6.66 6.66 0 0 0 3.94 3.9l-.7.4a1 1 0 1 0 2.55 4.34z"}]];var BM=[["path",{d:"M2.5 17a24.12 24.12 0 0 1 0-10 2 2 0 0 1 1.4-1.4 49.56 49.56 0 0 1 16.2 0A2 2 0 0 1 21.5 7a24.12 24.12 0 0 1 0 10 2 2 0 0 1-1.4 1.4 49.55 49.55 0 0 1-16.2 0A2 2 0 0 1 2.5 17"}],["path",{d:"m10 15 5-3-5-3z"}]];var OM=[["path",{d:"M10.513 4.856 13.12 2.17a.5.5 0 0 1 .86.46l-1.377 4.317"}],["path",{d:"M15.656 10H20a1 1 0 0 1 .78 1.63l-1.72 1.773"}],["path",{d:"M16.273 16.273 10.88 21.83a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14H4a1 1 0 0 1-.78-1.63l4.507-4.643"}],["path",{d:"m2 2 20 20"}]];var TM=[["path",{d:"M4 14a1 1 0 0 1-.78-1.63l9.9-10.2a.5.5 0 0 1 .86.46l-1.92 6.02A1 1 0 0 0 13 10h7a1 1 0 0 1 .78 1.63l-9.9 10.2a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14z"}]];var PM=[["circle",{cx:"11",cy:"11",r:"8"}],["line",{x1:"21",x2:"16.65",y1:"21",y2:"16.65"}],["line",{x1:"11",x2:"11",y1:"8",y2:"14"}],["line",{x1:"8",x2:"14",y1:"11",y2:"11"}]];var SM=[["circle",{cx:"11",cy:"11",r:"8"}],["line",{x1:"21",x2:"16.65",y1:"21",y2:"16.65"}],["line",{x1:"8",x2:"14",y1:"11",y2:"11"}]];var Qb=({icons:Z={},nameAttr:J="data-lucide",attrs:K={},root:X=document,inTemplates:W}={})=>{if(!Object.values(Z).length)throw Error(`Please provide an icons object. 14 If you want to use all the icons you can import it like: 15 \`import { createIcons, icons } from 'lucide'; 16 + lucide.createIcons({icons});\``);if(typeof X>"u")throw Error("`createIcons()` only works in a browser environment.");if(Array.from(X.querySelectorAll(`[${J}]`)).forEach((V)=>ij(V,{nameAttr:J,icons:Z,attrs:K})),W)Array.from(X.querySelectorAll("template")).forEach((G)=>Qb({icons:Z,nameAttr:J,attrs:K,root:G.content,inTemplates:W}));if(J==="data-lucide"){let V=X.querySelectorAll("[icon-name]");if(V.length>0)console.warn("[Lucide] Some icons were found with the now deprecated icon-name attribute. These will still be replaced for backwards compatibility, but will no longer be supported in v1.0 and you should switch to data-lucide"),Array.from(V).forEach((G)=>ij(G,{nameAttr:"icon-name",icons:Z,attrs:K}))}};var AM="http://www.w3.org/2000/svg";function Mg(Z){let J=Q([]);for(let K=Z.length-1;K>=0;K--){let[X,W]=Z[K],Y=Q([]);for(let[G,I]of Object.entries(W))Y=A(j(G,I),Y);let V=g1(AM,X,Y,Q([]));J=A(V,J)}return J}function Vb(Z,J){let K=Z.split("-").map((F)=>F.charAt(0).toUpperCase()+F.slice(1)).join(""),X=sj[K];if(!X)return console.warn(`Icon "${Z}" (${K}) not found in lucide package`),g1(AM,"svg",J,Q([]));let W=Mg(X),Y=!1,V=!1,G=J;while(G&&G.head!==void 0){let F=G.head;if(F&&F.kind===0){if(F.name==="width")Y=!0;if(F.name==="height")V=!0}G=G.tail}let I=[j("xmlns",AM),j("viewBox","0 0 24 24"),j("fill","none"),j("stroke","currentColor"),j("stroke-width","2"),j("stroke-linecap","round"),j("stroke-linejoin","round")];if(!Y)I.push(j("width","24"));if(!V)I.push(j("height","24"));let N=Q(I);G=J;while(G&&G.head!==void 0)N=A(G.head,N),G=G.tail;return g1(AM,"svg",N,W)}class Gb extends O{}class qM extends O{}class JJ extends O{}class Ib extends O{}function KJ(Z,J,K){let X;if(J instanceof Gb)X=["12","12"];else if(J instanceof qM)X=["16","16"];else if(J instanceof JJ)X=["20","20"];else if(J instanceof Ib)X=["24","24"];else X=["32","32"];let W=X,Y,V;return Y=W[0],V=W[1],Vb(Z,A(j("width",Y),A(j("height",V),K)))}function EM(Z){return U4(Q([j("viewBox","0 0 128 128"),j("xmlns","http://www.w3.org/2000/svg"),H(Z)]),Q([tK(Q([]),Q([M4(Q([H8("board1"),j("x1","0%"),j("y1","0%"),j("x2","100%"),j("y2","100%")]),Q([S8(Q([j("offset","0%"),j("stop-color","#FF6347"),j("stop-opacity","1")])),S8(Q([j("offset","100%"),j("stop-color","#FF4500"),j("stop-opacity","1")]))])),M4(Q([H8("board2"),j("x1","0%"),j("y1","0%"),j("x2","100%"),j("y2","100%")]),Q([S8(Q([j("offset","0%"),j("stop-color","#00CED1"),j("stop-opacity","1")])),S8(Q([j("offset","100%"),j("stop-color","#4682B4"),j("stop-opacity","1")]))]))])),i5(Q([j("transform","translate(64, 64)")]),Q([Q5(Q([j("cx","0"),j("cy","-28"),j("rx","50"),j("ry","20"),j("fill","url(#board1)")])),Q5(Q([j("cx","0"),j("cy","0"),j("rx","60"),j("ry","20"),j("fill","url(#board2)")])),Q5(Q([j("cx","0"),j("cy","28"),j("rx","40"),j("ry","20"),j("fill","#32CD32")]))]))]))}function Rg(Z,J,K,X,W,Y,V){if(Z instanceof L){let G=Z[0][0],I=Z[0][1],z=Q([m1(Q([v1("/"),H("px-3 py-1 text-zinc-400 hover:text-zinc-300 transition-colors")]),Q([C("Home")]))]),N;if(I)N=_0(z,Q([m1(Q([v1("/settings"),H("px-3 py-1 text-zinc-400 hover:text-zinc-300 transition-colors")]),Q([C("Settings")]))]));else N=z;return _0(N,Q([p(Q([H("px-3 py-1 text-zinc-400")]),Q([C(G)])),$8(Q([y5("POST"),L5("/logout")]),Q([A0(Q([C0("submit"),H("px-3 py-1 text-zinc-400 hover:text-zinc-300 transition-colors cursor-pointer")]),Q([C("Logout")]))]))]))}else return Q([$8(Q([y5("POST"),L5("/admin/oauth/authorize"),H("flex gap-2 items-center")]),Q([eZ(J,"login-hint-desktop","login_hint","handle.bsky.social","bg-zinc-900 border border-zinc-700 rounded px-2 py-1 text-xs text-zinc-300 placeholder-zinc-600 focus:border-zinc-500 focus:outline-none w-48",K,X,W,Y,V),A0(Q([C0("submit"),H("bg-zinc-800 hover:bg-zinc-700 text-zinc-300 px-3 py-1 rounded transition-colors")]),Q([C("Login")]))]))])}function jg(Z,J,K,X,W,Y,V){return R(Q([H("sm:hidden mt-4 pb-4 border-b border-zinc-800 flex flex-col gap-3")]),(()=>{if(Z instanceof L){let G=Z[0][1],I=Q([m1(Q([v1("/"),H("block px-3 py-2 text-sm text-zinc-400 hover:text-zinc-300 hover:bg-zinc-800/50 rounded transition-colors")]),Q([C("Home")]))]),z;if(G)z=_0(I,Q([m1(Q([v1("/settings"),H("block px-3 py-2 text-sm text-zinc-400 hover:text-zinc-300 hover:bg-zinc-800/50 rounded transition-colors")]),Q([C("Settings")]))]));else z=I;return _0(z,Q([$8(Q([y5("POST"),L5("/logout")]),Q([A0(Q([C0("submit"),H("w-full text-left px-3 py-2 text-sm text-zinc-400 hover:text-zinc-300 hover:bg-zinc-800/50 rounded transition-colors cursor-pointer")]),Q([C("Logout")]))]))]))}else return Q([$8(Q([y5("POST"),L5("/admin/oauth/authorize"),H("flex flex-col gap-3")]),Q([eZ(J,"login-hint-mobile","login_hint","handle.bsky.social","bg-zinc-900 border border-zinc-700 rounded px-3 py-2 text-sm text-zinc-300 placeholder-zinc-600 focus:border-zinc-500 focus:outline-none w-full",K,X,W,Y,V),A0(Q([C0("submit"),H("bg-zinc-800 hover:bg-zinc-700 text-zinc-300 px-4 py-2 rounded transition-colors w-full text-sm")]),Q([C("Login")]))]))])})())}function Fb(Z,J,K,X,W,Y,V,G,I,z){return R(Q([H("mb-8")]),Q([R(Q([H("flex items-center justify-between border-b border-zinc-800 pb-3")]),Q([m1(Q([v1("/"),H("flex items-center gap-3 hover:opacity-80 transition-opacity ml-1")]),Q([R(Q([H("overflow-visible")]),Q([(()=>{if(J)return Xb("w-10 h-10");else return EM("w-10 h-10")})()])),_1(Q([H("text-xs font-medium uppercase tracking-wider text-zinc-500")]),Q([C("quickslice")]))])),R(Q([H("flex items-center gap-2")]),Q([(()=>{if(Z instanceof L){let N=Z[0][0];return p(Q([H("sm:hidden text-xs text-zinc-400 px-2 truncate max-w-[150px]")]),Q([C("@"+N)]))}else return H0()})(),R(Q([H("hidden sm:flex gap-4 text-xs items-center")]),Rg(Z,W,Y,V,G,I,z)),A0(Q([H("sm:hidden p-2 text-zinc-400 hover:text-zinc-300 transition-colors"),f0(X)]),Q([(()=>{if(K)return KJ("x",new JJ,Q([]));else return KJ("menu",new JJ,Q([]))})()]))]))])),(()=>{if(K)return jg(Z,W,Y,V,G,I,z);else return H0()})()]))}function rj(Z,J){let K=document.getElementById(Z);if(!K){J(new v("File input not found"));return}let X=K.files?.[0];if(!X){console.log("[readFileAsBase64] No file selected"),J(new v("No file selected"));return}let W=new FileReader;W.onload=(Y)=>{try{let V=Y.target.result.split(",")[1];J(new E(V))}catch(V){J(new v(`Failed to encode file: ${V.message}`))}},W.onerror=()=>{J(new v("Failed to read file"))},W.readAsDataURL(X)}function aj(Z){let J=document.getElementById(Z);if(J)J.value=""}function Hb(){let Z=Sk(),J=K1(Z,"TriggerBackfill",`mutation TriggerBackfill { 17 triggerBackfill 18 }`,"generated/queries/trigger_backfill"),K=K1(J,"IsBackfilling",`query IsBackfilling { 19 isBackfilling ··· 142 json 143 createdAt 144 } 145 + }`,"generated/queries/get_lexicons")}class Db extends O{constructor(Z){super();this.backfill_actor=Z}}function kg(){return $("backfillActor",z1,(Z)=>{return s(new Db(Z))})}function Bb(Z){return q0(Z,kg())}class Ob extends O{constructor(Z,J,K,X,W,Y,V){super();this.client_id=Z,this.client_secret=J,this.client_name=K,this.client_type=X,this.redirect_uris=W,this.scope=Y,this.created_at=V}}class Tb extends O{constructor(Z){super();this.create_o_auth_client=Z}}function hg(){return $("clientId",u,(Z)=>{return $("clientSecret",R1(u),(J)=>{return $("clientName",u,(K)=>{return $("clientType",u,(X)=>{return $("redirectUris",L0(u),(W)=>{return $("scope",R1(u),(Y)=>{return $("createdAt",l0,(V)=>{return s(new Ob(Z,J,K,X,W,Y,V))})})})})})})})}function vg(){return $("createOAuthClient",hg(),(Z)=>{return s(new Tb(Z))})}function Pb(Z){return q0(Z,vg())}class Sb extends O{constructor(Z){super();this.delete_o_auth_client=Z}}function gg(){return $("deleteOAuthClient",z1,(Z)=>{return s(new Sb(Z))})}function Ab(Z){return q0(Z,gg())}class YJ extends O{}class XJ extends O{}class WJ extends O{}class l5 extends O{}class QJ extends O{}class qb extends O{constructor(Z,J,K,X,W){super();this.timestamp=Z,this.total=J,this.creates=K,this.updates=X,this.deletes=W}}class Eb extends O{constructor(Z){super();this.activity_buckets=Z}}function D5(Z){if(Z instanceof YJ)return"ONE_HOUR";else if(Z instanceof XJ)return"THREE_HOURS";else if(Z instanceof WJ)return"SIX_HOURS";else if(Z instanceof l5)return"ONE_DAY";else return"SEVEN_DAYS"}function mg(){return $("timestamp",u,(Z)=>{return $("total",l0,(J)=>{return $("creates",l0,(K)=>{return $("updates",l0,(X)=>{return $("deletes",l0,(W)=>{return s(new qb(Z,J,K,X,W))})})})})})}function ug(){return $("activityBuckets",L0(mg()),(Z)=>{return s(new Eb(Z))})}function s5(Z){return q0(Z,ug())}class Cb extends O{constructor(Z,J,K){super();this.did=Z,this.handle=J,this.is_admin=K}}class xb extends O{constructor(Z){super();this.current_session=Z}}function dg(){return $("did",u,(Z)=>{return $("handle",u,(J)=>{return $("isAdmin",z1,(K)=>{return s(new Cb(Z,J,K))})})})}function cg(){return $("currentSession",R1(dg()),(Z)=>{return s(new xb(Z))})}function oj(Z){return q0(Z,cg())}class wb extends O{constructor(Z,J,K){super();this.id=Z,this.json=J,this.created_at=K}}class Ub extends O{constructor(Z){super();this.lexicons=Z}}function ng(){return $("id",u,(Z)=>{return $("json",u,(J)=>{return $("createdAt",u,(K)=>{return s(new wb(Z,J,K))})})})}function ig(){return $("lexicons",L0(ng()),(Z)=>{return s(new Ub(Z))})}function VJ(Z){return q0(Z,ig())}class Rb extends O{constructor(Z,J,K,X,W,Y,V){super();this.client_id=Z,this.client_secret=J,this.client_name=K,this.client_type=X,this.redirect_uris=W,this.scope=Y,this.created_at=V}}class jb extends O{constructor(Z){super();this.oauth_clients=Z}}function lg(){return $("clientId",u,(Z)=>{return $("clientSecret",R1(u),(J)=>{return $("clientName",u,(K)=>{return $("clientType",u,(X)=>{return $("redirectUris",L0(u),(W)=>{return $("scope",R1(u),(Y)=>{return $("createdAt",l0,(V)=>{return s(new Rb(Z,J,K,X,W,Y,V))})})})})})})})}function sg(){return $("oauthClients",L0(lg()),(Z)=>{return s(new jb(Z))})}function i8(Z){return q0(Z,sg())}class yb extends O{constructor(Z,J,K,X,W,Y,V,G){super();this.id=Z,this.timestamp=J,this.operation=K,this.collection=X,this.did=W,this.status=Y,this.error_message=V,this.event_json=G}}class fb extends O{constructor(Z){super();this.recent_activity=Z}}function rg(){return $("id",l0,(Z)=>{return $("timestamp",u,(J)=>{return $("operation",u,(K)=>{return $("collection",u,(X)=>{return $("did",u,(W)=>{return $("status",u,(Y)=>{return $("errorMessage",R1(u),(V)=>{return $("eventJson",R1(u),(G)=>{return s(new yb(Z,J,K,X,W,Y,V,G))})})})})})})})})}function ag(){return $("recentActivity",L0(rg()),(Z)=>{return s(new fb(Z))})}function AZ(Z){return q0(Z,ag())}class bb extends O{constructor(Z,J,K,X,W,Y,V){super();this.id=Z,this.domain_authority=J,this.admin_dids=K,this.relay_url=X,this.plc_directory_url=W,this.jetstream_url=Y,this.oauth_supported_scopes=V}}class hb extends O{constructor(Z){super();this.settings=Z}}function tg(){return $("id",u,(Z)=>{return $("domainAuthority",u,(J)=>{return $("adminDids",L0(u),(K)=>{return $("relayUrl",u,(X)=>{return $("plcDirectoryUrl",u,(W)=>{return $("jetstreamUrl",u,(Y)=>{return $("oauthSupportedScopes",u,(V)=>{return s(new bb(Z,J,K,X,W,Y,V))})})})})})})})}function og(){return $("settings",tg(),(Z)=>{return s(new hb(Z))})}function P1(Z){return q0(Z,og())}class vb extends O{constructor(Z,J,K){super();this.record_count=Z,this.actor_count=J,this.lexicon_count=K}}class $b extends O{constructor(Z){super();this.statistics=Z}}function eg(){return $("recordCount",l0,(Z)=>{return $("actorCount",l0,(J)=>{return $("lexiconCount",l0,(K)=>{return s(new vb(Z,J,K))})})})}function Z_(){return $("statistics",eg(),(Z)=>{return s(new $b(Z))})}function B5(Z){return q0(Z,Z_())}class gb extends O{constructor(Z){super();this.reset_all=Z}}function J_(){return $("resetAll",z1,(Z)=>{return s(new gb(Z))})}function _b(Z){return q0(Z,J_())}class mb extends O{constructor(Z){super();this.trigger_backfill=Z}}function Y_(){return $("triggerBackfill",z1,(Z)=>{return s(new mb(Z))})}function ub(Z){return q0(Z,Y_())}class db extends O{constructor(Z,J,K,X,W,Y,V){super();this.client_id=Z,this.client_secret=J,this.client_name=K,this.client_type=X,this.redirect_uris=W,this.scope=Y,this.created_at=V}}class cb extends O{constructor(Z){super();this.update_o_auth_client=Z}}function W_(){return $("clientId",u,(Z)=>{return $("clientSecret",R1(u),(J)=>{return $("clientName",u,(K)=>{return $("clientType",u,(X)=>{return $("redirectUris",L0(u),(W)=>{return $("scope",R1(u),(Y)=>{return $("createdAt",l0,(V)=>{return s(new db(Z,J,K,X,W,Y,V))})})})})})})})}function Q_(){return $("updateOAuthClient",W_(),(Z)=>{return s(new cb(Z))})}function pb(Z){return q0(Z,Q_())}class nb extends O{constructor(Z,J,K,X,W,Y,V){super();this.id=Z,this.domain_authority=J,this.admin_dids=K,this.relay_url=X,this.plc_directory_url=W,this.jetstream_url=Y,this.oauth_supported_scopes=V}}class ib extends O{constructor(Z){super();this.update_settings=Z}}function G_(){return $("id",u,(Z)=>{return $("domainAuthority",u,(J)=>{return $("adminDids",L0(u),(K)=>{return $("relayUrl",u,(X)=>{return $("plcDirectoryUrl",u,(W)=>{return $("jetstreamUrl",u,(Y)=>{return $("oauthSupportedScopes",u,(V)=>{return s(new nb(Z,J,K,X,W,Y,V))})})})})})})})}function I_(){return $("updateSettings",G_(),(Z)=>{return s(new ib(Z))})}function IJ(Z){return q0(Z,I_())}class lb extends O{constructor(Z){super();this.upload_lexicons=Z}}function N_(){return $("uploadLexicons",z1,(Z)=>{return s(new lb(Z))})}function sb(Z){return q0(Z,N_())}function ZL(Z){globalThis.location.href=Z}var rb="font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-800 hover:bg-zinc-700 rounded transition-colors cursor-pointer disabled:opacity-50 disabled:cursor-not-allowed disabled:hover:bg-zinc-800";function f1(Z,J,K){return A0(Q([C0("button"),H(rb),hZ(Z),f0(J)]),Q([o0(K)]))}function xM(Z,J){return A0(Q([C0("submit"),H(rb),hZ(Z)]),Q([o0(J)]))}class wM extends O{constructor(Z){super();this[0]=Z}}class ab extends O{}class O5 extends O{constructor(Z,J,K){super();this.did_input=Z,this.is_submitting=J,this.alert=K}}function tb(){return new O5("",!1,new b)}function JL(Z,J,K){return new O5(Z.did_input,Z.is_submitting,new L([J,K]))}function UM(Z){return new O5(Z.did_input,Z.is_submitting,new b)}function MM(Z,J){return new O5(Z.did_input,J,Z.alert)}function ob(Z){let J="font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-900 border border-zinc-800 rounded focus:outline-none focus:border-zinc-700 w-full",K="block text-sm font-medium text-zinc-400 mb-2";return R(Q([H("space-y-6")]),Q([R(Q([]),Q([_1(Q([H("text-xl font-bold text-zinc-100 mb-2")]),Q([o0("Backfill Actor")])),D0(Q([H("text-zinc-400 text-sm")]),Q([o0("Sync all collections for a specific actor via CAR file repository sync.")]))])),(()=>{let X=Z.alert;if(X instanceof L){let W=X[0][0],Y=X[0][1],V;if(W==="success")V=new p5;else if(W==="error")V=new p8;else V=new n8;return w4(V,Y)}else return H0()})(),R(Q([H("bg-zinc-900/50 border border-zinc-800 rounded-lg p-6 max-w-xl")]),Q([R(Q([H("mb-4")]),Q([m0(Q([H(K)]),Q([o0("Actor DID")])),s0(Q([C0("text"),H(J),V1("did:plc:... or did:web:..."),i0(Z.did_input),c0((X)=>{return new wM(X)})])),D0(Q([H("text-xs text-zinc-500 mt-1")]),Q([o0("Enter the DID of the actor whose records you want to sync.")]))])),R(Q([H("flex items-center gap-4")]),Q([f1(Z.is_submitting||Z.did_input==="",new ab,(()=>{if(Z.is_submitting)return"Syncing...";else return"Sync Actor"})())]))]))]))}function B_(Z,J){let K=(X)=>{let W="px-3 py-1 text-xs rounded transition-colors cursor-pointer";if(x0(X,Z))return W+" bg-zinc-700 text-zinc-100";else return W+" bg-zinc-800/50 text-zinc-400 hover:bg-zinc-700/50 hover:text-zinc-300"};return R(Q([H("flex gap-2 mb-4")]),Q([A0(Q([H(K(new YJ)),f0(J(new YJ))]),Q([C("1hr")])),A0(Q([H(K(new XJ)),f0(J(new XJ))]),Q([C("3hr")])),A0(Q([H(K(new WJ)),f0(J(new WJ))]),Q([C("6hr")])),A0(Q([H(K(new l5)),f0(J(new l5))]),Q([C("1 day")])),A0(Q([H(K(new QJ)),f0(J(new QJ))]),Q([C("7 day")]))]))}function O_(Z){let K=I0(Z,(W)=>{return W.creates+W.updates+W.deletes}),X=pL(K,VK);return z8(X,1)}function T_(Z,J,K,X,W,Y){let V=N0(J)*(K+X);if(Z.creates+Z.updates+Z.deletes===0){let I=4,z=W-I;return i5(Q([]),Q([ZJ(Q([j("x",n0(V)),j("y",n0(z)),j("width",n0(K)),j("height",n0(I)),j("style","fill: #3f3f46 !important; stroke: none; display: inline")]))]))}else{let I=sJ(W,N0(Y)),z=N0(Z.deletes)*I,N=N0(Z.updates)*I,F=N0(Z.creates)*I,D=W-z,B=D-N,T=B-F;return i5(Q([H("group")]),Q([(()=>{if(Z.deletes>0)return ZJ(Q([j("x",n0(V)),j("y",n0(D)),j("width",n0(K)),j("height",n0(z)),j("style","fill: #ef4444 !important; stroke: none; display: inline; cursor: pointer; transition: opacity 0.2s"),H("group-hover:opacity-80")]));else return H0()})(),(()=>{if(Z.updates>0)return ZJ(Q([j("x",n0(V)),j("y",n0(B)),j("width",n0(K)),j("height",n0(N)),j("style","fill: #60a5fa !important; stroke: none; display: inline; cursor: pointer; transition: opacity 0.2s"),H("group-hover:opacity-80")]));else return H0()})(),(()=>{if(Z.creates>0)return ZJ(Q([j("x",n0(V)),j("y",n0(T)),j("width",n0(K)),j("height",n0(F)),j("style","fill: #22c55e !important; stroke: none; display: inline; cursor: pointer; transition: opacity 0.2s"),H("group-hover:opacity-80")]));else return H0()})()]))}}function P_(Z,J){let K=O_(Z),X;if(J instanceof QJ)X=[160,12];else X=[30,4];let W=X,Y,V;Y=W[0],V=W[1];let G=t8(Z),I=N0(G)*Y+N0(G-1)*V,z=120;return R(Q([H("w-full")]),Q([U4(Q([j("viewBox","0 0 "+n0(I)+" "+n0(z)),j("width","100%"),j("height",n0(z)),j("style","min-height: 120px"),j("preserveAspectRatio","none")]),eJ(Z,(N,F)=>{return T_(N,F,Y,V,z,K)}))]))}function S_(Z,J){let K=h(Q([["range",c(D5(J))]])),X=a(Z,"GetActivityBuckets",K,s5),W;if(W=X[1],W instanceof w1)return R(Q([H("py-8 text-center text-zinc-600 text-xs")]),Q([C("Loading activity data...")]));else if(W instanceof U1){let Y=W[0];return R(Q([H("py-8 text-center text-red-400 text-xs")]),Q([C("Error: "+Y)]))}else{let V=W[0].activity_buckets;if(V instanceof M)return R(Q([H("py-8 text-center text-zinc-600 text-xs")]),Q([C("No activity data available")]));else return P_(V,J)}}function eb(Z,J,K){return R(Q([H("bg-zinc-800/50 rounded p-4 font-mono mb-8")]),Q([B_(J,K),S_(Z,J)]))}function KL(Z){try{return new Date(Z).toLocaleTimeString("en-US",{hour:"2-digit",minute:"2-digit",second:"2-digit",hour12:!1})}catch(J){return Z}}function YL(Z){try{return new Date(Z).toLocaleString("en-US",{year:"numeric",month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit",second:"2-digit",hour12:!1})}catch(J){return Z}}function RM(Z){if(typeof Z==="string")try{let J=JSON.parse(Z);return RM(J)}catch(J){return Z}else if(Array.isArray(Z))return Z.map(RM);else if(Z!==null&&typeof Z==="object"){let J={};for(let[K,X]of Object.entries(Z))J[K]=RM(X);return J}return Z}function XL(Z){try{let J=JSON.parse(Z),K=RM(J);return JSON.stringify(K,null,2)}catch(J){return Z}}function C_(Z){return R(Q([]),I0(Z,(J)=>{let K,X=J.status;if(X==="success")K="text-green-500";else if(X==="validation_error")K="text-yellow-500";else if(X==="error")K="text-red-500";else if(X==="processing")K="text-blue-500";else K="text-zinc-500";let W=K,Y,V=J.status;if(V==="success")Y="โœ“";else if(V==="validation_error")Y="โš ";else if(V==="error")Y="โœ—";else if(V==="processing")Y="โ‹ฏ";else Y="โ€ข";let G=Y,I,z=J.operation;if(z==="create")I="text-green-400";else if(z==="update")I="text-blue-400";else if(z==="delete")I="text-red-400";else I="text-zinc-400";let N=I,F="activity-"+E1(J.id);return R(Q([H("border-l-2 border-zinc-700/50 hover:border-zinc-600 transition-colors"),j("data-entry-id",F)]),Q([R(Q([H("flex items-start gap-2 py-1 text-xs font-mono hover:bg-zinc-900/30 cursor-pointer group"),j("onclick","this.parentElement.classList.toggle('expanded')")]),Q([p(Q([H("text-zinc-600 group-hover:text-zinc-400 shrink-0 select-none transition-transform caret"),j("data-caret","")]),Q([C("โ€บ")])),p(Q([H("text-zinc-600 shrink-0 w-16"),j("data-timestamp",J.timestamp)]),Q([C(KL(J.timestamp))])),p(Q([H(W+" shrink-0 w-4")]),Q([C(G)])),p(Q([H(N+" shrink-0 w-12")]),Q([C(J.operation)])),p(Q([H("text-purple-400 shrink-0")]),Q([C(J.collection)])),p(Q([H("text-zinc-500 truncate")]),Q([C(J.did)]))])),R(Q([H("px-6 py-2 text-xs bg-zinc-900/50 border-t border-zinc-800 hidden space-y-1"),j("data-details","")]),Q([R(Q([H("flex gap-2")]),Q([p(Q([H("text-zinc-600 w-20")]),Q([C("Timestamp:")])),p(Q([H("text-zinc-400")]),Q([C(YL(J.timestamp))]))])),R(Q([H("flex gap-2")]),Q([p(Q([H("text-zinc-600 w-20")]),Q([C("DID:")])),p(Q([H("text-zinc-400 font-mono break-all")]),Q([C(J.did)]))])),R(Q([H("flex gap-2")]),Q([p(Q([H("text-zinc-600 w-20")]),Q([C("Status:")])),p(Q([H((()=>{let D=J.status;if(D==="success")return"text-green-400";else if(D==="validation_error")return"text-yellow-400";else if(D==="error")return"text-red-400";else return"text-zinc-400"})())]),Q([C(J.status)]))])),(()=>{let D=J.error_message;if(D instanceof L){let B=D[0];return R(Q([H("flex gap-2")]),Q([p(Q([H("text-zinc-600 w-20")]),Q([C("Error:")])),p(Q([H("text-red-400")]),Q([C(B)]))]))}else return H0()})(),(()=>{let D=J.event_json;if(D instanceof L){let B=D[0],T=XL(B);return R(Q([H("mt-2")]),Q([R(Q([H("text-zinc-600 mb-1")]),Q([C("Event JSON:")])),UK(Q([H("text-zinc-400 bg-black/40 p-2 rounded text-[10px] whitespace-pre-wrap block"),j("data-json",B)]),Q([C(T)]))]))}else return H0()})()]))]))}))}function Zh(Z,J){let K=h(Q([["hours",Q1(J)]])),X=a(Z,"GetRecentActivity",K,AZ),W;return W=X[1],R(Q([H("font-mono mb-8")]),Q([y0("style",Q([]),Q([C(`[data-entry-id].expanded [data-caret] { transform: rotate(90deg); } 146 + [data-entry-id].expanded [data-details] { display: block !important; }`)])),R(Q([H("bg-zinc-800/50 rounded p-4")]),Q([R(Q([H("mb-3")]),Q([R(Q([H("text-sm text-zinc-500")]),Q([C("Recent Jetstream Activity")]))])),R(Q([H("max-h-80 overflow-y-auto")]),Q([(()=>{if(W instanceof w1)return R(Q([H("py-8 text-center text-zinc-600 text-xs")]),Q([C("Loading activity...")]));else if(W instanceof U1){let Y=W[0];return R(Q([H("py-8 text-center text-red-400 text-xs")]),Q([C("Error: "+Y)]))}else{let V=W[0].recent_activity;if(V instanceof M)return R(Q([H("py-8 text-center text-zinc-600 text-xs")]),Q([C("No activity in the last "+E1(J)+" hours")]));else return C_(V)}})()]))]))]))}function zJ(Z){return new Intl.NumberFormat("en-US").format(Z)}function WL(Z,J,K,X){if(K)return m1(Q([v1(X),H("bg-zinc-800/50 rounded p-4 block hover:bg-zinc-800 transition-colors cursor-pointer")]),Q([R(Q([H("text-sm text-zinc-500 mb-1")]),Q([o0(Z)])),R(Q([H("text-2xl font-semibold text-zinc-200")]),Q([o0(J)]))]));else return R(Q([H("bg-zinc-800/50 rounded p-4")]),Q([R(Q([H("text-sm text-zinc-500 mb-1")]),Q([o0(Z)])),R(Q([H("text-2xl font-semibold text-zinc-200")]),Q([o0(J)]))]))}function QL(Z){return R(Q([H("bg-zinc-800/50 rounded p-4 animate-pulse")]),Q([R(Q([H("text-sm text-zinc-500 mb-1")]),Q([o0(Z)])),R(Q([H("h-8 bg-zinc-700 rounded w-24")]),Q([]))]))}function Jh(Z){let J=a(Z,"GetStatistics",h(Q([])),B5),K;if(K=J[1],K instanceof w1)return R(Q([H("mb-8 grid grid-cols-1 sm:grid-cols-3 gap-4")]),Q([QL("Total Records"),QL("Total Actors"),QL("Total Lexicons")]));else if(K instanceof U1){let X=K[0];return R(Q([H("mb-8")]),Q([R(Q([H("bg-red-800/50 rounded p-4 text-red-200")]),Q([o0("Error loading statistics: "+X)]))]))}else{let W=K[0].statistics;return R(Q([H("mb-8 grid grid-cols-1 sm:grid-cols-3 gap-4")]),Q([WL("Total Records",zJ(W.record_count),!1,""),WL("Total Actors",zJ(W.actor_count),!1,""),WL("Total Lexicons",zJ(W.lexicon_count),!0,"/lexicons")]))}}class jM extends O{constructor(Z){super();this[0]=Z}}class LM extends O{}class VL extends O{}function M_(Z,J){let K;if(Z==="")K=pj(new cj,"No domain authority configured.","Settings","/settings");else K=H0();let X=K,W;if(J===0)W=pj(new n8,"No lexicons loaded.","Settings","/settings");else W=H0();let Y=W;return R(Q([]),Q([X,Y]))}function Kh(Z,J,K,X,W){let Y=a(Z,"GetStatistics",h(Q([])),B5),V;V=Y[1];let G=a(Z,"GetSettings",h(Q([])),P1),I;I=G[1];let z;if(V instanceof e1&&I instanceof e1){let F=V[0],D=I[0];z=M_(D.settings.domain_authority,F.statistics.lexicon_count)}else z=H0();let N=z;return R(Q([]),Q([N,(()=>{if(W)return R(Q([H("mb-8 flex gap-3 flex-wrap items-start")]),(()=>{if(X)return Q([f1(!1,new VL,"Open GraphiQL"),R(Q([H("flex items-center gap-3")]),Q([f1(c5(K),new LM,(()=>{if(K instanceof d8)return"Backfilling...";else if(K instanceof O8)return"Backfilling...";else return"Trigger Backfill"})()),(()=>{if(K instanceof d5)return D0(Q([H("text-sm text-green-600")]),Q([o0("Backfill complete!")]));else return H0()})()]))]);else return Q([f1(!1,new VL,"Open GraphiQL")])})());else return H0()})(),Jh(Z),eb(Z,J,(F)=>{return new jM(F)}),Zh(Z,24)]))}function Yh(Z){if(navigator.clipboard&&navigator.clipboard.writeText)navigator.clipboard.writeText(Z).catch((J)=>{console.error("Failed to copy to clipboard:",J)})}function GL(Z){try{let J=JSON.parse(Z);return JSON.stringify(J,null,2)}catch(J){return Z}}function j_(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(W instanceof M)return G;else{let I=W.head;if(I==='"'){let z=W.tail,N;if(Y)if(V)N=["text-green-400",!0];else N=["text-sky-400",!1];else if(V)N=["text-green-400",!0];else N=["text-sky-400",!1];let F=N,D,B;D=F[0],B=F[1];let T=p(Q([H(D)]),Q([C('"')])),P;if(Y)P=!1;else P=B;let S=P;Z=z,J=!Y,K=S,X=A(T,G)}else if(I==="{"&&!Y){let z=W.tail,N;if(W instanceof M)N="";else N=W.head;let F=N,D=p(Q([H("text-zinc-400")]),Q([C(F)]));Z=z,J=Y,K=!1,X=A(D,G)}else if(I==="}"&&!Y){let z=W.tail,N;if(W instanceof M)N="";else N=W.head;let F=N,D=p(Q([H("text-zinc-400")]),Q([C(F)]));Z=z,J=Y,K=!1,X=A(D,G)}else if(I==="["&&!Y){let z=W.tail,N;if(W instanceof M)N="";else N=W.head;let F=N,D=p(Q([H("text-zinc-400")]),Q([C(F)]));Z=z,J=Y,K=!1,X=A(D,G)}else if(I==="]"&&!Y){let z=W.tail,N;if(W instanceof M)N="";else N=W.head;let F=N,D=p(Q([H("text-zinc-400")]),Q([C(F)]));Z=z,J=Y,K=!1,X=A(D,G)}else if(I===":"&&!Y){let z=W.tail,N=p(Q([H("text-zinc-400")]),Q([C(":")]));Z=z,J=Y,K=!0,X=A(N,G)}else if(I===","&&!Y){let z=W.tail,N=p(Q([H("text-zinc-400")]),Q([C(",")]));Z=z,J=Y,K=!1,X=A(N,G)}else if(I===" "&&!Y){let z=W.tail,N=C((()=>{if(W instanceof M)return"";else{let F=W.head;if(F===" ")return" ";else if(F===` 147 `)return` 148 `;else return""}})());Z=z,J=Y,K=V,X=A(N,G)}else if(I===` 149 `&&!Y){let z=W.tail,N=C((()=>{if(W instanceof M)return"";else{let F=W.head;if(F===" ")return" ";else if(F===` 150 `)return` 151 + `;else return""}})());Z=z,J=Y,K=V,X=A(N,G)}else if(I==="t")if(Y){let z=I,N=W.tail,F;if(V)F="text-green-400";else F="text-sky-400";let B=p(Q([H(F)]),Q([C(z)]));Z=N,J=Y,K=V,X=A(B,G)}else{let z=W.tail;if(z instanceof M){let N=I,F=z,D;if(N==="0")D="text-red-400";else if(N==="1")D="text-red-400";else if(N==="2")D="text-red-400";else if(N==="3")D="text-red-400";else if(N==="4")D="text-red-400";else if(N==="5")D="text-red-400";else if(N==="6")D="text-red-400";else if(N==="7")D="text-red-400";else if(N==="8")D="text-red-400";else if(N==="9")D="text-red-400";else if(N===".")D="text-red-400";else if(N==="-")D="text-red-400";else D="text-zinc-200";let T=p(Q([H(D)]),Q([C(N)]));Z=F,J=Y,K=V,X=A(T,G)}else{let N=z.tail;if(N instanceof M){let F=I,D=z,B;if(F==="0")B="text-red-400";else if(F==="1")B="text-red-400";else if(F==="2")B="text-red-400";else if(F==="3")B="text-red-400";else if(F==="4")B="text-red-400";else if(F==="5")B="text-red-400";else if(F==="6")B="text-red-400";else if(F==="7")B="text-red-400";else if(F==="8")B="text-red-400";else if(F==="9")B="text-red-400";else if(F===".")B="text-red-400";else if(F==="-")B="text-red-400";else B="text-zinc-200";let P=p(Q([H(B)]),Q([C(F)]));Z=D,J=Y,K=V,X=A(P,G)}else{let F=N.tail;if(F instanceof M){let D=I,B=z,T;if(D==="0")T="text-red-400";else if(D==="1")T="text-red-400";else if(D==="2")T="text-red-400";else if(D==="3")T="text-red-400";else if(D==="4")T="text-red-400";else if(D==="5")T="text-red-400";else if(D==="6")T="text-red-400";else if(D==="7")T="text-red-400";else if(D==="8")T="text-red-400";else if(D==="9")T="text-red-400";else if(D===".")T="text-red-400";else if(D==="-")T="text-red-400";else T="text-zinc-200";let S=p(Q([H(T)]),Q([C(D)]));Z=B,J=Y,K=V,X=A(S,G)}else if(z.head==="r")if(N.head==="u")if(F.head==="e"&&!Y){let P;if(W instanceof M)P="";else{let k=W.tail;if(k instanceof M)P="";else{let w=k.tail;if(w instanceof M)P="";else{let f=w.tail;if(f instanceof M)P="";else{let g=W.head;if(g==="t")if(k.head==="r")if(w.head==="u")if(f.head==="e")P="true";else P="";else P="";else P="";else if(g==="f"){let d=f.tail;if(d instanceof M)P="";else if(k.head==="a")if(w.head==="l")if(f.head==="s")if(d.head==="e")P="false";else P="";else P="";else P="";else P=""}else if(g==="n")if(k.head==="u")if(w.head==="l")if(f.head==="l")P="null";else P="";else P="";else P="";else P=""}}}}let S=P,q=J8(S),x=p(Q([H("text-red-400")]),Q([C(S)]));Z=K4(W,q),J=Y,K=!1,X=A(x,G)}else{let P=I,S=z,q;if(P==="0")q="text-red-400";else if(P==="1")q="text-red-400";else if(P==="2")q="text-red-400";else if(P==="3")q="text-red-400";else if(P==="4")q="text-red-400";else if(P==="5")q="text-red-400";else if(P==="6")q="text-red-400";else if(P==="7")q="text-red-400";else if(P==="8")q="text-red-400";else if(P==="9")q="text-red-400";else if(P===".")q="text-red-400";else if(P==="-")q="text-red-400";else q="text-zinc-200";let U=p(Q([H(q)]),Q([C(P)]));Z=S,J=Y,K=V,X=A(U,G)}else{let T=I,P=z,S;if(T==="0")S="text-red-400";else if(T==="1")S="text-red-400";else if(T==="2")S="text-red-400";else if(T==="3")S="text-red-400";else if(T==="4")S="text-red-400";else if(T==="5")S="text-red-400";else if(T==="6")S="text-red-400";else if(T==="7")S="text-red-400";else if(T==="8")S="text-red-400";else if(T==="9")S="text-red-400";else if(T===".")S="text-red-400";else if(T==="-")S="text-red-400";else S="text-zinc-200";let x=p(Q([H(S)]),Q([C(T)]));Z=P,J=Y,K=V,X=A(x,G)}else{let B=I,T=z,P;if(B==="0")P="text-red-400";else if(B==="1")P="text-red-400";else if(B==="2")P="text-red-400";else if(B==="3")P="text-red-400";else if(B==="4")P="text-red-400";else if(B==="5")P="text-red-400";else if(B==="6")P="text-red-400";else if(B==="7")P="text-red-400";else if(B==="8")P="text-red-400";else if(B==="9")P="text-red-400";else if(B===".")P="text-red-400";else if(B==="-")P="text-red-400";else P="text-zinc-200";let q=p(Q([H(P)]),Q([C(B)]));Z=T,J=Y,K=V,X=A(q,G)}}}}else if(I==="f")if(Y){let z=I,N=W.tail,F;if(V)F="text-green-400";else F="text-sky-400";let B=p(Q([H(F)]),Q([C(z)]));Z=N,J=Y,K=V,X=A(B,G)}else{let z=W.tail;if(z instanceof M){let N=I,F=z,D;if(N==="0")D="text-red-400";else if(N==="1")D="text-red-400";else if(N==="2")D="text-red-400";else if(N==="3")D="text-red-400";else if(N==="4")D="text-red-400";else if(N==="5")D="text-red-400";else if(N==="6")D="text-red-400";else if(N==="7")D="text-red-400";else if(N==="8")D="text-red-400";else if(N==="9")D="text-red-400";else if(N===".")D="text-red-400";else if(N==="-")D="text-red-400";else D="text-zinc-200";let T=p(Q([H(D)]),Q([C(N)]));Z=F,J=Y,K=V,X=A(T,G)}else{let N=z.tail;if(N instanceof M){let F=I,D=z,B;if(F==="0")B="text-red-400";else if(F==="1")B="text-red-400";else if(F==="2")B="text-red-400";else if(F==="3")B="text-red-400";else if(F==="4")B="text-red-400";else if(F==="5")B="text-red-400";else if(F==="6")B="text-red-400";else if(F==="7")B="text-red-400";else if(F==="8")B="text-red-400";else if(F==="9")B="text-red-400";else if(F===".")B="text-red-400";else if(F==="-")B="text-red-400";else B="text-zinc-200";let P=p(Q([H(B)]),Q([C(F)]));Z=D,J=Y,K=V,X=A(P,G)}else{let F=N.tail;if(F instanceof M){let D=I,B=z,T;if(D==="0")T="text-red-400";else if(D==="1")T="text-red-400";else if(D==="2")T="text-red-400";else if(D==="3")T="text-red-400";else if(D==="4")T="text-red-400";else if(D==="5")T="text-red-400";else if(D==="6")T="text-red-400";else if(D==="7")T="text-red-400";else if(D==="8")T="text-red-400";else if(D==="9")T="text-red-400";else if(D===".")T="text-red-400";else if(D==="-")T="text-red-400";else T="text-zinc-200";let S=p(Q([H(T)]),Q([C(D)]));Z=B,J=Y,K=V,X=A(S,G)}else{let D=F.tail;if(D instanceof M){let B=I,T=z,P;if(B==="0")P="text-red-400";else if(B==="1")P="text-red-400";else if(B==="2")P="text-red-400";else if(B==="3")P="text-red-400";else if(B==="4")P="text-red-400";else if(B==="5")P="text-red-400";else if(B==="6")P="text-red-400";else if(B==="7")P="text-red-400";else if(B==="8")P="text-red-400";else if(B==="9")P="text-red-400";else if(B===".")P="text-red-400";else if(B==="-")P="text-red-400";else P="text-zinc-200";let q=p(Q([H(P)]),Q([C(B)]));Z=T,J=Y,K=V,X=A(q,G)}else if(z.head==="a")if(N.head==="l")if(F.head==="s")if(D.head==="e"&&!Y){let q;if(W instanceof M)q="";else{let f=W.tail;if(f instanceof M)q="";else{let g=f.tail;if(g instanceof M)q="";else{let d=g.tail;if(d instanceof M)q="";else{let n=W.head;if(n==="t")if(f.head==="r")if(g.head==="u")if(d.head==="e")q="true";else q="";else q="";else q="";else if(n==="f"){let r=d.tail;if(r instanceof M)q="";else if(f.head==="a")if(g.head==="l")if(d.head==="s")if(r.head==="e")q="false";else q="";else q="";else q="";else q=""}else if(n==="n")if(f.head==="u")if(g.head==="l")if(d.head==="l")q="null";else q="";else q="";else q="";else q=""}}}}let x=q,U=J8(x),k=p(Q([H("text-red-400")]),Q([C(x)]));Z=K4(W,U),J=Y,K=!1,X=A(k,G)}else{let q=I,x=z,U;if(q==="0")U="text-red-400";else if(q==="1")U="text-red-400";else if(q==="2")U="text-red-400";else if(q==="3")U="text-red-400";else if(q==="4")U="text-red-400";else if(q==="5")U="text-red-400";else if(q==="6")U="text-red-400";else if(q==="7")U="text-red-400";else if(q==="8")U="text-red-400";else if(q==="9")U="text-red-400";else if(q===".")U="text-red-400";else if(q==="-")U="text-red-400";else U="text-zinc-200";let w=p(Q([H(U)]),Q([C(q)]));Z=x,J=Y,K=V,X=A(w,G)}else{let S=I,q=z,x;if(S==="0")x="text-red-400";else if(S==="1")x="text-red-400";else if(S==="2")x="text-red-400";else if(S==="3")x="text-red-400";else if(S==="4")x="text-red-400";else if(S==="5")x="text-red-400";else if(S==="6")x="text-red-400";else if(S==="7")x="text-red-400";else if(S==="8")x="text-red-400";else if(S==="9")x="text-red-400";else if(S===".")x="text-red-400";else if(S==="-")x="text-red-400";else x="text-zinc-200";let k=p(Q([H(x)]),Q([C(S)]));Z=q,J=Y,K=V,X=A(k,G)}else{let P=I,S=z,q;if(P==="0")q="text-red-400";else if(P==="1")q="text-red-400";else if(P==="2")q="text-red-400";else if(P==="3")q="text-red-400";else if(P==="4")q="text-red-400";else if(P==="5")q="text-red-400";else if(P==="6")q="text-red-400";else if(P==="7")q="text-red-400";else if(P==="8")q="text-red-400";else if(P==="9")q="text-red-400";else if(P===".")q="text-red-400";else if(P==="-")q="text-red-400";else q="text-zinc-200";let U=p(Q([H(q)]),Q([C(P)]));Z=S,J=Y,K=V,X=A(U,G)}else{let T=I,P=z,S;if(T==="0")S="text-red-400";else if(T==="1")S="text-red-400";else if(T==="2")S="text-red-400";else if(T==="3")S="text-red-400";else if(T==="4")S="text-red-400";else if(T==="5")S="text-red-400";else if(T==="6")S="text-red-400";else if(T==="7")S="text-red-400";else if(T==="8")S="text-red-400";else if(T==="9")S="text-red-400";else if(T===".")S="text-red-400";else if(T==="-")S="text-red-400";else S="text-zinc-200";let x=p(Q([H(S)]),Q([C(T)]));Z=P,J=Y,K=V,X=A(x,G)}}}}}else if(I==="n")if(Y){let z=I,N=W.tail,F;if(V)F="text-green-400";else F="text-sky-400";let B=p(Q([H(F)]),Q([C(z)]));Z=N,J=Y,K=V,X=A(B,G)}else{let z=W.tail;if(z instanceof M){let N=I,F=z,D;if(N==="0")D="text-red-400";else if(N==="1")D="text-red-400";else if(N==="2")D="text-red-400";else if(N==="3")D="text-red-400";else if(N==="4")D="text-red-400";else if(N==="5")D="text-red-400";else if(N==="6")D="text-red-400";else if(N==="7")D="text-red-400";else if(N==="8")D="text-red-400";else if(N==="9")D="text-red-400";else if(N===".")D="text-red-400";else if(N==="-")D="text-red-400";else D="text-zinc-200";let T=p(Q([H(D)]),Q([C(N)]));Z=F,J=Y,K=V,X=A(T,G)}else{let N=z.tail;if(N instanceof M){let F=I,D=z,B;if(F==="0")B="text-red-400";else if(F==="1")B="text-red-400";else if(F==="2")B="text-red-400";else if(F==="3")B="text-red-400";else if(F==="4")B="text-red-400";else if(F==="5")B="text-red-400";else if(F==="6")B="text-red-400";else if(F==="7")B="text-red-400";else if(F==="8")B="text-red-400";else if(F==="9")B="text-red-400";else if(F===".")B="text-red-400";else if(F==="-")B="text-red-400";else B="text-zinc-200";let P=p(Q([H(B)]),Q([C(F)]));Z=D,J=Y,K=V,X=A(P,G)}else{let F=N.tail;if(F instanceof M){let D=I,B=z,T;if(D==="0")T="text-red-400";else if(D==="1")T="text-red-400";else if(D==="2")T="text-red-400";else if(D==="3")T="text-red-400";else if(D==="4")T="text-red-400";else if(D==="5")T="text-red-400";else if(D==="6")T="text-red-400";else if(D==="7")T="text-red-400";else if(D==="8")T="text-red-400";else if(D==="9")T="text-red-400";else if(D===".")T="text-red-400";else if(D==="-")T="text-red-400";else T="text-zinc-200";let S=p(Q([H(T)]),Q([C(D)]));Z=B,J=Y,K=V,X=A(S,G)}else if(z.head==="u")if(N.head==="l")if(F.head==="l"&&!Y){let P;if(W instanceof M)P="";else{let k=W.tail;if(k instanceof M)P="";else{let w=k.tail;if(w instanceof M)P="";else{let f=w.tail;if(f instanceof M)P="";else{let g=W.head;if(g==="t")if(k.head==="r")if(w.head==="u")if(f.head==="e")P="true";else P="";else P="";else P="";else if(g==="f"){let d=f.tail;if(d instanceof M)P="";else if(k.head==="a")if(w.head==="l")if(f.head==="s")if(d.head==="e")P="false";else P="";else P="";else P="";else P=""}else if(g==="n")if(k.head==="u")if(w.head==="l")if(f.head==="l")P="null";else P="";else P="";else P="";else P=""}}}}let S=P,q=J8(S),x=p(Q([H("text-red-400")]),Q([C(S)]));Z=K4(W,q),J=Y,K=!1,X=A(x,G)}else{let P=I,S=z,q;if(P==="0")q="text-red-400";else if(P==="1")q="text-red-400";else if(P==="2")q="text-red-400";else if(P==="3")q="text-red-400";else if(P==="4")q="text-red-400";else if(P==="5")q="text-red-400";else if(P==="6")q="text-red-400";else if(P==="7")q="text-red-400";else if(P==="8")q="text-red-400";else if(P==="9")q="text-red-400";else if(P===".")q="text-red-400";else if(P==="-")q="text-red-400";else q="text-zinc-200";let U=p(Q([H(q)]),Q([C(P)]));Z=S,J=Y,K=V,X=A(U,G)}else{let T=I,P=z,S;if(T==="0")S="text-red-400";else if(T==="1")S="text-red-400";else if(T==="2")S="text-red-400";else if(T==="3")S="text-red-400";else if(T==="4")S="text-red-400";else if(T==="5")S="text-red-400";else if(T==="6")S="text-red-400";else if(T==="7")S="text-red-400";else if(T==="8")S="text-red-400";else if(T==="9")S="text-red-400";else if(T===".")S="text-red-400";else if(T==="-")S="text-red-400";else S="text-zinc-200";let x=p(Q([H(S)]),Q([C(T)]));Z=P,J=Y,K=V,X=A(x,G)}else{let B=I,T=z,P;if(B==="0")P="text-red-400";else if(B==="1")P="text-red-400";else if(B==="2")P="text-red-400";else if(B==="3")P="text-red-400";else if(B==="4")P="text-red-400";else if(B==="5")P="text-red-400";else if(B==="6")P="text-red-400";else if(B==="7")P="text-red-400";else if(B==="8")P="text-red-400";else if(B==="9")P="text-red-400";else if(B===".")P="text-red-400";else if(B==="-")P="text-red-400";else P="text-zinc-200";let q=p(Q([H(P)]),Q([C(B)]));Z=T,J=Y,K=V,X=A(q,G)}}}}else if(Y){let z=I,N=W.tail,F;if(V)F="text-green-400";else F="text-sky-400";let B=p(Q([H(F)]),Q([C(z)]));Z=N,J=Y,K=V,X=A(B,G)}else{let z=I,N=W.tail,F;if(z==="0")F="text-red-400";else if(z==="1")F="text-red-400";else if(z==="2")F="text-red-400";else if(z==="3")F="text-red-400";else if(z==="4")F="text-red-400";else if(z==="5")F="text-red-400";else if(z==="6")F="text-red-400";else if(z==="7")F="text-red-400";else if(z==="8")F="text-red-400";else if(z==="9")F="text-red-400";else if(z===".")F="text-red-400";else if(z==="-")F="text-red-400";else F="text-zinc-200";let B=p(Q([H(F)]),Q([C(z)]));Z=N,J=Y,K=V,X=A(B,G)}}}}function L_(Z,J,K){return j_(Z,J,!1,K)}function Xh(Z){let K=LZ(Z),X=L_(K,!1,Q([])),W=F0(X);return Nf(W)}class Wh extends O{constructor(Z){super();this[0]=Z}}function Qh(Z){let J=Z[0];return F1((K)=>{return Yh(J)})}function f_(){return R(Q([H("py-8 text-center text-zinc-600 text-sm")]),Q([C("Loading lexicons...")]))}function k_(Z){return R(Q([H("py-8 text-center text-red-400 text-sm")]),Q([C("Error: "+Z)]))}function b_(){return R(Q([H("bg-zinc-800/50 rounded p-8 text-center border border-zinc-700")]),Q([D0(Q([H("text-zinc-400 mb-2")]),Q([C("No lexicons found.")])),D0(Q([H("text-sm text-zinc-500")]),Q([C("Upload lexicons from the Settings page to get started.")]))]))}function h_(Z){return R(Q([H("bg-zinc-800/50 rounded p-4 relative")]),Q([A0(Q([H("absolute top-4 right-4 p-1.5 rounded hover:bg-zinc-700 text-zinc-400 hover:text-zinc-300 transition-colors"),C0("button"),f0(new Wh(Z.json))]),Q([KJ("copy",new qM,Q([]))])),Df(Q([H("group")]),Q([Bf(Q([H("cursor-pointer text-base font-mono text-zinc-300 hover:text-zinc-200 select-none list-none pr-10")]),Q([C(Z.id)])),UK(Q([H("mt-3 bg-zinc-900 rounded p-3 overflow-x-auto text-xs font-mono")]),Q([v8(Q([]),Q([Xh(GL(Z.json))]))]))]))]))}function v_(Z){if(Z instanceof M)return b_();else return R(Q([H("space-y-4")]),Q([D0(Q([H("text-sm text-zinc-500 mb-4")]),Q([C(IK(t8(Z))+" lexicons")])),R(Q([H("space-y-3")]),I0(Z,h_))]))}function Vh(Z){let J=a(Z,"GetLexicons",h(Q([])),VJ),K;return K=J[1],R(Q([H("space-y-6")]),Q([R(Q([H("mb-2")]),Q([m1(Q([v1("/"),H("text-zinc-400 hover:text-zinc-300 transition-colors text-sm")]),Q([C("โ† Back")]))])),_1(Q([H("text-2xl font-semibold text-zinc-300 mb-6")]),Q([C("Lexicons")])),(()=>{if(K instanceof w1)return f_();else if(K instanceof U1){let X=K[0];return k_(X)}else{let X=K[0];return v_(X.lexicons)}})()]))}function Gh(Z,J,K,X,W,Y){return R(Q([H("max-w-md mx-auto mt-12")]),Q([R(Q([H("bg-zinc-800/50 rounded p-8 border border-zinc-700")]),Q([R(Q([H("flex justify-center mb-6")]),Q([EM("w-16 h-16")])),_1(Q([H("text-2xl font-semibold text-zinc-300 mb-2 text-center")]),Q([C("Welcome to Quickslice")])),D0(Q([H("text-zinc-400 mb-6 text-center")]),Q([C("Set up an administrator account to get started.")])),$8(Q([L5("/admin/oauth/authorize"),y5("POST"),H("space-y-4")]),Q([R(Q([]),Q([m0(Q([H("block text-sm text-zinc-400 mb-2")]),Q([C("AT Protocol Handle")])),eZ(Z,"onboarding-handle","login_hint","user.bsky.social","font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-900 border border-zinc-800 rounded focus:outline-none focus:border-zinc-700 w-full",J,K,X,W,Y)])),R(Q([H("pt-2")]),Q([xM(Z.query==="","Continue")]))]))]))]))}class NJ extends O{constructor(Z){super();this[0]=Z}}class FJ extends O{}class HJ extends O{}class DJ extends O{constructor(Z){super();this[0]=Z}}class BJ extends O{}class OJ extends O{constructor(Z){super();this[0]=Z}}class TJ extends O{constructor(Z){super();this[0]=Z}}class PJ extends O{constructor(Z){super();this[0]=Z}}class SJ extends O{constructor(Z){super();this[0]=Z}}class AJ extends O{}class qZ extends O{}class qJ extends O{constructor(Z){super();this[0]=Z}}class EJ extends O{constructor(Z){super();this[0]=Z}}class CJ extends O{constructor(Z){super();this[0]=Z}}class xJ extends O{constructor(Z){super();this[0]=Z}}class wJ extends O{}class UJ extends O{constructor(Z){super();this[0]=Z}}class MJ extends O{}class RJ extends O{constructor(Z){super();this[0]=Z}}class jJ extends O{constructor(Z){super();this[0]=Z}}class LJ extends O{constructor(Z){super();this[0]=Z}}class yJ extends O{}class fJ extends O{constructor(Z){super();this[0]=Z}}class kJ extends O{constructor(Z){super();this[0]=Z}}class bJ extends O{}class hJ extends O{}class vJ extends O{constructor(Z){super();this[0]=Z}}class $J extends O{}class EZ extends O{constructor(Z){super();this[0]=Z}}class gJ extends O{}class IL extends O{}class K0 extends O{constructor(Z,J,K,X,W,Y,V,G,I,z,N,F,D,B,T,P,S,q,x,U,k,w,f,g,d){super();this.domain_authority_input=Z,this.reset_confirmation=J,this.selected_file=K,this.alert=X,this.relay_url_input=W,this.plc_directory_url_input=Y,this.jetstream_url_input=V,this.oauth_supported_scopes_input=G,this.lexicons_alert=I,this.show_new_client_form=z,this.new_client_name=N,this.new_client_type=F,this.new_client_redirect_uris=D,this.new_client_scope=B,this.editing_client_id=T,this.edit_client_name=P,this.edit_client_redirect_uris=S,this.edit_client_scope=q,this.visible_secrets=x,this.delete_confirm_client_id=U,this.oauth_alert=k,this.new_admin_did=w,this.remove_confirm_did=f,this.admin_alert=g,this.danger_zone_alert=d}}function q8(Z){if(Z instanceof L){let J=Z[0][0],K=Z[0][1],X;if(J==="success")X=new p5;else if(J==="error")X=new p8;else X=new n8;return w4(X,K)}else return H0()}function Ih(Z,J){return R(Q([H("bg-zinc-800/50 rounded p-6")]),Q([D8(Q([H("text-xl font-semibold text-zinc-300 mb-4")]),Q([C("Admin Management")])),q8(J.admin_alert),R(Q([H("mb-6")]),Q([h5(Q([H("text-sm font-medium text-zinc-400 mb-2")]),Q([C("Current Admins")])),S4(Q([H("space-y-2")]),I0(Z.admin_dids,(K)=>{return h8(Q([H("flex items-center justify-between bg-zinc-900/50 px-3 py-2 rounded border border-zinc-800")]),Q([p(Q([H("font-mono text-sm text-zinc-300 truncate")]),Q([C(K)])),(()=>{let X=J.remove_confirm_did;if(X instanceof L)if(X[0]===K)return R(Q([H("flex gap-2")]),Q([A0(Q([H("text-xs px-2 py-1 text-zinc-400 hover:text-zinc-300 cursor-pointer"),f0(new gJ)]),Q([C("Cancel")])),A0(Q([H("text-xs px-2 py-1 text-red-400 hover:bg-red-900/30 rounded cursor-pointer"),f0(new IL)]),Q([C("Confirm Remove")]))]));else return A0(Q([H("text-xs px-2 py-1 text-zinc-500 hover:text-red-400 transition-colors cursor-pointer"),f0(new EZ(K))]),Q([C("Remove")]));else return A0(Q([H("text-xs px-2 py-1 text-zinc-500 hover:text-red-400 transition-colors cursor-pointer"),f0(new EZ(K))]),Q([C("Remove")]))})()]))}))])),R(Q([H("border-t border-zinc-800 pt-4")]),Q([h5(Q([H("text-sm font-medium text-zinc-400 mb-2")]),Q([C("Add Admin")])),R(Q([H("flex gap-2")]),Q([s0(Q([C0("text"),H("flex-1 font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-900 border border-zinc-800 rounded focus:outline-none focus:border-zinc-700"),V1("did:plc:... or did:web:..."),i0(J.new_admin_did),c0((K)=>{return new vJ(K)})])),f1(J.new_admin_did==="",new $J,"Add Admin")])),D0(Q([H("text-xs text-zinc-500 mt-2")]),Q([C("Enter the DID of the user you want to make an admin.")]))]))]))}function zh(Z,J,K){return R(Q([H("bg-zinc-800/50 rounded p-6")]),Q([D8(Q([H("text-xl font-semibold text-zinc-300 mb-4")]),Q([C("Basic Settings")])),q8(J.alert),$8(Q([H("space-y-6"),ek((X)=>{return new AJ})]),Q([R(Q([H("space-y-2")]),Q([m0(Q([H("block text-sm text-zinc-400 mb-2")]),Q([C("Domain Authority")])),s0(Q([C0("text"),H("font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-900 border border-zinc-800 rounded focus:outline-none focus:border-zinc-700 w-full"),V1("e.g. com.example"),i0(J.domain_authority_input),K5(!0),c0((X)=>{return new NJ(X)})])),D0(Q([H("text-xs text-zinc-500")]),Q([C('Determines which collections are considered "primary" vs "external" when backfilling records.')]))])),R(Q([H("space-y-2")]),Q([m0(Q([H("block text-sm text-zinc-400 mb-2")]),Q([C("Relay URL")])),s0(Q([C0("text"),H("font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-900 border border-zinc-800 rounded focus:outline-none focus:border-zinc-700 w-full"),V1(Z.relay_url),i0(J.relay_url_input),K5(!0),c0((X)=>{return new OJ(X)})])),D0(Q([H("text-xs text-zinc-500")]),Q([C("AT Protocol relay URL for backfill operations.")]))])),R(Q([H("space-y-2")]),Q([m0(Q([H("block text-sm text-zinc-400 mb-2")]),Q([C("PLC Directory URL")])),s0(Q([C0("text"),H("font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-900 border border-zinc-800 rounded focus:outline-none focus:border-zinc-700 w-full"),V1(Z.plc_directory_url),i0(J.plc_directory_url_input),K5(!0),c0((X)=>{return new TJ(X)})])),D0(Q([H("text-xs text-zinc-500")]),Q([C("PLC directory URL for DID resolution.")]))])),R(Q([H("space-y-2")]),Q([m0(Q([H("block text-sm text-zinc-400 mb-2")]),Q([C("Jetstream URL")])),s0(Q([C0("text"),H("font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-900 border border-zinc-800 rounded focus:outline-none focus:border-zinc-700 w-full"),V1(Z.jetstream_url),i0(J.jetstream_url_input),K5(!0),c0((X)=>{return new PJ(X)})])),D0(Q([H("text-xs text-zinc-500")]),Q([C("Jetstream WebSocket endpoint for real-time indexing.")]))])),R(Q([H("space-y-2")]),Q([m0(Q([H("block text-sm text-zinc-400 mb-2")]),Q([C("OAuth Supported Scopes")])),s0(Q([C0("text"),H("font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-900 border border-zinc-800 rounded focus:outline-none focus:border-zinc-700 w-full"),V1(Z.oauth_supported_scopes),i0(J.oauth_supported_scopes_input),K5(!0),c0((X)=>{return new SJ(X)})])),D0(Q([H("text-xs text-zinc-500")]),Q([C("Space-separated OAuth scopes supported by this server.")]))])),R(Q([H("flex gap-3 pt-4")]),Q([xM(K,(()=>{if(K)return"Saving...";else return"Save"})())]))]))]))}function Nh(Z){return R(Q([H("bg-zinc-800/50 rounded p-6")]),Q([D8(Q([H("text-xl font-semibold text-zinc-300 mb-4")]),Q([C("Danger Zone")])),q8(Z.danger_zone_alert),D0(Q([H("text-sm text-zinc-400 mb-4")]),Q([C("This will clear all indexed data:")])),S4(Q([H("text-sm text-zinc-400 mb-4 ml-4 list-disc")]),Q([h8(Q([]),Q([C("Domain authority configuration")])),h8(Q([]),Q([C("All lexicon definitions")])),h8(Q([]),Q([C("All indexed records")])),h8(Q([]),Q([C("All actors")]))])),D0(Q([H("text-sm text-zinc-400 mb-4")]),Q([C("Records can be re-indexed via backfill.")])),R(Q([H("space-y-4")]),Q([R(Q([H("mb-4")]),Q([m0(Q([H("block text-sm text-zinc-400 mb-2")]),Q([C("Type RESET to confirm")])),s0(Q([C0("text"),H("font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-900 border border-zinc-800 rounded focus:outline-none focus:border-zinc-700 w-full"),V1("RESET"),i0(Z.reset_confirmation),c0((J)=>{return new DJ(J)})]))])),R(Q([H("flex gap-3")]),Q([A0(Q([H("font-mono px-4 py-2 text-sm text-red-400 border border-red-900 hover:bg-red-900/30 rounded transition-colors cursor-pointer"),hZ(Z.reset_confirmation!=="RESET"),f0(new BJ)]),Q([C("Reset Everything")]))]))]))]))}function Fh(Z){return R(Q([H("bg-zinc-800/50 rounded p-6")]),Q([D8(Q([H("text-xl font-semibold text-zinc-300 mb-4")]),Q([C("Lexicons")])),q8(Z.lexicons_alert),R(Q([H("space-y-4")]),Q([R(Q([H("mb-4")]),Q([m0(Q([H("block text-sm text-zinc-400 mb-2")]),Q([C("Upload Lexicons (ZIP)")])),s0(Q([C0("file"),ly(Q([".zip"])),H("font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-900 border border-zinc-800 rounded focus:outline-none focus:border-zinc-700 w-full"),H8("lexicon-file-input"),c0((J)=>{return new FJ})]))])),D0(Q([H("text-sm text-zinc-500 mb-2")]),Q([C("Upload a ZIP file containing your lexicon JSON files.")])),D0(Q([H("text-sm text-zinc-500 mb-4")]),Q([C("NOTE: If you're swapping out lexicons with a totally new set, consider using RESET instead to clear all records as well.")])),R(Q([H("flex gap-3")]),Q([f1(!1,new HJ,"Upload")]))]))]))}function c_(Z){return R(Q([H("bg-zinc-900 rounded p-4 mb-4 border border-zinc-700")]),Q([h5(Q([H("text-lg font-semibold text-zinc-300 mb-3")]),Q([C("Register New Client")])),R(Q([H("space-y-3")]),Q([R(Q([]),Q([m0(Q([H("block text-sm text-zinc-400 mb-1")]),Q([C("Client Name")])),s0(Q([C0("text"),H("font-mono px-3 py-2 text-sm text-zinc-300 bg-zinc-800 border border-zinc-700 rounded w-full"),V1("My Application"),i0(Z.new_client_name),c0((J)=>{return new qJ(J)})]))])),R(Q([]),Q([m0(Q([H("block text-sm text-zinc-400 mb-1")]),Q([C("Client Type")])),Hf(Q([H("font-mono px-3 py-2 text-sm text-zinc-300 bg-zinc-800 border border-zinc-700 rounded w-full"),ok((J)=>{return new EJ(J)})]),Q([aR(Q([i0("PUBLIC"),fR(Z.new_client_type==="PUBLIC")]),"Public"),aR(Q([i0("CONFIDENTIAL"),fR(Z.new_client_type==="CONFIDENTIAL")]),"Confidential")])),D0(Q([H("text-xs text-zinc-500 mt-1")]),Q([C((()=>{if(Z.new_client_type==="CONFIDENTIAL")return"For server-side apps that can securely store a client secret";else return"For browser apps (SPAs) and mobile apps that cannot securely store a secret"})())]))])),R(Q([]),Q([m0(Q([H("block text-sm text-zinc-400 mb-1")]),Q([C("Redirect URIs (one per line)")])),tR(Q([H("font-mono px-3 py-2 text-sm text-zinc-300 bg-zinc-800 border border-zinc-700 rounded w-full h-20"),V1("http://localhost:3000/callback"),i0(Z.new_client_redirect_uris),c0((J)=>{return new CJ(J)})]),"")])),R(Q([]),Q([m0(Q([H("block text-sm text-zinc-400 mb-1")]),Q([C("Scope")])),s0(Q([C0("text"),H("font-mono px-3 py-2 text-sm text-zinc-300 bg-zinc-800 border border-zinc-700 rounded w-full"),V1("atproto transition:generic"),i0(Z.new_client_scope),c0((J)=>{return new xJ(J)})])),D0(Q([H("text-xs text-zinc-500 mt-1")]),Q([C("Space-separated OAuth scopes")]))])),R(Q([H("flex gap-2")]),Q([f1(!1,new wJ,"Create"),A0(Q([H("font-mono px-4 py-2 text-sm text-zinc-400 hover:text-zinc-300 rounded transition-colors cursor-pointer"),f0(new qZ)]),Q([C("Cancel")]))]))]))]))}function p_(Z,J){return R(Q([H("bg-zinc-900 rounded p-4 border border-amber-700")]),Q([h5(Q([H("text-lg font-semibold text-zinc-300 mb-3")]),Q([C("Edit Client")])),R(Q([H("space-y-3")]),Q([R(Q([]),Q([m0(Q([H("block text-sm text-zinc-400 mb-1")]),Q([C("Client ID")])),v8(Q([H("text-sm text-zinc-500 font-mono")]),Q([C(Z.client_id)]))])),R(Q([]),Q([m0(Q([H("block text-sm text-zinc-400 mb-1")]),Q([C("Client Name")])),s0(Q([C0("text"),H("font-mono px-3 py-2 text-sm text-zinc-300 bg-zinc-800 border border-zinc-700 rounded w-full"),i0(J.edit_client_name),c0((K)=>{return new RJ(K)})]))])),R(Q([]),Q([m0(Q([H("block text-sm text-zinc-400 mb-1")]),Q([C("Redirect URIs (one per line)")])),tR(Q([H("font-mono px-3 py-2 text-sm text-zinc-300 bg-zinc-800 border border-zinc-700 rounded w-full h-20"),c0((K)=>{return new jJ(K)})]),J.edit_client_redirect_uris)])),R(Q([]),Q([m0(Q([H("block text-sm text-zinc-400 mb-1")]),Q([C("Scope")])),s0(Q([C0("text"),H("font-mono px-3 py-2 text-sm text-zinc-300 bg-zinc-800 border border-zinc-700 rounded w-full"),i0(J.edit_client_scope),c0((K)=>{return new LJ(K)})]))])),R(Q([H("flex gap-2")]),Q([f1(!1,new yJ,"Save"),A0(Q([H("font-mono px-4 py-2 text-sm text-zinc-400 hover:text-zinc-300 rounded transition-colors cursor-pointer"),f0(new MJ)]),Q([C("Cancel")]))]))]))]))}function n_(Z,J){let K=x0(J.editing_client_id,new L(Z.client_id)),X=z4(J.visible_secrets,Z.client_id);if(K)return p_(Z,J);else return R(Q([H("bg-zinc-900 rounded p-4 border border-zinc-700")]),Q([R(Q([H("flex justify-between items-start mb-2")]),Q([R(Q([]),Q([p(Q([H("text-zinc-300 font-medium")]),Q([C(Z.client_name)]))])),R(Q([H("flex gap-2")]),Q([A0(Q([H("text-sm text-zinc-400 hover:text-zinc-300 cursor-pointer"),f0(new UJ(Z.client_id))]),Q([C("Edit")])),A0(Q([H("text-sm text-red-400 hover:text-red-300 cursor-pointer"),f0(new kJ(Z.client_id))]),Q([C("Delete")]))]))])),R(Q([H("mb-2")]),Q([p(Q([H("text-xs text-zinc-500")]),Q([C("Client ID: ")])),v8(Q([H("text-xs text-zinc-400 font-mono")]),Q([C(Z.client_id)]))])),R(Q([H("mb-2")]),Q([p(Q([H("text-xs text-zinc-500")]),Q([C("Type: ")])),p(Q([H("text-xs text-zinc-400")]),Q([C((()=>{let W=Z.client_type;if(W==="PUBLIC")return"Public";else if(W==="CONFIDENTIAL")return"Confidential";else return Z.client_type})())]))])),(()=>{let W=Z.client_secret;if(W instanceof L){let Y=W[0];return R(Q([H("mb-2")]),Q([p(Q([H("text-xs text-zinc-500")]),Q([C("Secret: ")])),(()=>{if(X)return v8(Q([H("text-xs text-zinc-400 font-mono")]),Q([C(Y)]));else return v8(Q([H("text-xs text-zinc-400 font-mono")]),Q([C("โ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ข")]))})(),A0(Q([H("ml-2 text-xs text-zinc-500 hover:text-zinc-400 cursor-pointer"),f0(new fJ(Z.client_id))]),Q([C((()=>{if(X)return"Hide";else return"Show"})())]))]))}else return H0()})(),(()=>{let W=Z.redirect_uris;if(W instanceof M)return H0();else{let Y=W;return R(Q([]),Q([p(Q([H("text-xs text-zinc-500")]),Q([C("Redirect URIs:")])),S4(Q([H("text-xs text-zinc-400 font-mono ml-4")]),I0(Y,(V)=>{return h8(Q([]),Q([C(V)]))}))]))}})(),(()=>{let W=Z.scope;if(W instanceof L){let Y=W[0];return R(Q([H("mt-2")]),Q([p(Q([H("text-xs text-zinc-500")]),Q([C("Scope: ")])),v8(Q([H("text-xs text-zinc-400 font-mono")]),Q([C(Y)]))]))}else return H0()})()]))}function i_(Z){return R(Q([H("fixed inset-0 bg-black/50 flex items-center justify-center z-50")]),Q([R(Q([H("bg-zinc-800 rounded p-6 max-w-md")]),Q([h5(Q([H("text-lg font-semibold text-zinc-300 mb-3")]),Q([C("Delete Client?")])),D0(Q([H("text-sm text-zinc-400 mb-4")]),Q([C("Are you sure you want to delete client "),v8(Q([H("text-zinc-300")]),Q([C(Z)])),C("? This action cannot be undone.")])),R(Q([H("flex gap-2 justify-end")]),Q([A0(Q([H("font-mono px-4 py-2 text-sm text-zinc-400 hover:text-zinc-300 rounded transition-colors cursor-pointer"),f0(new bJ)]),Q([C("Cancel")])),A0(Q([H("font-mono px-4 py-2 text-sm text-red-400 border border-red-900 hover:bg-red-900/30 rounded transition-colors cursor-pointer"),f0(new hJ)]),Q([C("Delete")]))]))]))]))}function Hh(Z,J){let K=h(Q([])),X=a(Z,"GetOAuthClients",K,i8),W;return W=X[1],R(Q([H("bg-zinc-800/50 rounded p-6")]),Q([D8(Q([H("text-xl font-semibold text-zinc-300 mb-4")]),Q([C("OAuth Clients")])),q8(J.oauth_alert),(()=>{if(J.show_new_client_form)return c_(J);else return R(Q([H("mb-4")]),Q([f1(!1,new qZ,"Register New Client")]))})(),(()=>{if(W instanceof w1)return R(Q([H("py-4 text-center text-zinc-600 text-sm")]),Q([C("Loading clients...")]));else if(W instanceof U1){let Y=W[0];return R(Q([H("py-4 text-center text-red-400 text-sm")]),Q([C("Error: "+Y)]))}else{let Y=W[0];return R(Q([H("space-y-3")]),I0(Y.oauth_clients,(V)=>{return n_(V,J)}))}})(),(()=>{let Y=J.delete_confirm_client_id;if(Y instanceof L){let V=Y[0];return i_(V)}else return H0()})()]))}function mJ(Z,J,K){return new K0(Z.domain_authority_input,Z.reset_confirmation,Z.selected_file,new L([J,K]),Z.relay_url_input,Z.plc_directory_url_input,Z.jetstream_url_input,Z.oauth_supported_scopes_input,Z.lexicons_alert,Z.show_new_client_form,Z.new_client_name,Z.new_client_type,Z.new_client_redirect_uris,Z.new_client_scope,Z.editing_client_id,Z.edit_client_name,Z.edit_client_redirect_uris,Z.edit_client_scope,Z.visible_secrets,Z.delete_confirm_client_id,Z.oauth_alert,Z.new_admin_did,Z.remove_confirm_did,Z.admin_alert,Z.danger_zone_alert)}function Dh(Z){return new K0(Z.domain_authority_input,Z.reset_confirmation,Z.selected_file,new b,Z.relay_url_input,Z.plc_directory_url_input,Z.jetstream_url_input,Z.oauth_supported_scopes_input,Z.lexicons_alert,Z.show_new_client_form,Z.new_client_name,Z.new_client_type,Z.new_client_redirect_uris,Z.new_client_scope,Z.editing_client_id,Z.edit_client_name,Z.edit_client_redirect_uris,Z.edit_client_scope,Z.visible_secrets,Z.delete_confirm_client_id,Z.oauth_alert,Z.new_admin_did,Z.remove_confirm_did,Z.admin_alert,Z.danger_zone_alert)}function E8(Z,J,K){return new K0(Z.domain_authority_input,Z.reset_confirmation,Z.selected_file,Z.alert,Z.relay_url_input,Z.plc_directory_url_input,Z.jetstream_url_input,Z.oauth_supported_scopes_input,Z.lexicons_alert,Z.show_new_client_form,Z.new_client_name,Z.new_client_type,Z.new_client_redirect_uris,Z.new_client_scope,Z.editing_client_id,Z.edit_client_name,Z.edit_client_redirect_uris,Z.edit_client_scope,Z.visible_secrets,Z.delete_confirm_client_id,new L([J,K]),Z.new_admin_did,Z.remove_confirm_did,Z.admin_alert,Z.danger_zone_alert)}function a5(Z,J,K){return new K0(Z.domain_authority_input,Z.reset_confirmation,Z.selected_file,Z.alert,Z.relay_url_input,Z.plc_directory_url_input,Z.jetstream_url_input,Z.oauth_supported_scopes_input,Z.lexicons_alert,Z.show_new_client_form,Z.new_client_name,Z.new_client_type,Z.new_client_redirect_uris,Z.new_client_scope,Z.editing_client_id,Z.edit_client_name,Z.edit_client_redirect_uris,Z.edit_client_scope,Z.visible_secrets,Z.delete_confirm_client_id,Z.oauth_alert,Z.new_admin_did,Z.remove_confirm_did,new L([J,K]),Z.danger_zone_alert)}function zL(Z,J,K){return new K0(Z.domain_authority_input,Z.reset_confirmation,Z.selected_file,Z.alert,Z.relay_url_input,Z.plc_directory_url_input,Z.jetstream_url_input,Z.oauth_supported_scopes_input,Z.lexicons_alert,Z.show_new_client_form,Z.new_client_name,Z.new_client_type,Z.new_client_redirect_uris,Z.new_client_scope,Z.editing_client_id,Z.edit_client_name,Z.edit_client_redirect_uris,Z.edit_client_scope,Z.visible_secrets,Z.delete_confirm_client_id,Z.oauth_alert,Z.new_admin_did,Z.remove_confirm_did,Z.admin_alert,new L([J,K]))}function uJ(Z,J,K){return new K0(Z.domain_authority_input,Z.reset_confirmation,Z.selected_file,Z.alert,Z.relay_url_input,Z.plc_directory_url_input,Z.jetstream_url_input,Z.oauth_supported_scopes_input,new L([J,K]),Z.show_new_client_form,Z.new_client_name,Z.new_client_type,Z.new_client_redirect_uris,Z.new_client_scope,Z.editing_client_id,Z.edit_client_name,Z.edit_client_redirect_uris,Z.edit_client_scope,Z.visible_secrets,Z.delete_confirm_client_id,Z.oauth_alert,Z.new_admin_did,Z.remove_confirm_did,Z.admin_alert,Z.danger_zone_alert)}function Bh(){return new K0("","",new b,new b,"","","","",new b,!1,"","PUBLIC","","atproto transition:generic",new b,"","","",M5(),new b,new b,"",new b,new b,new b)}function s_(Z){return pk(Z)}function Oh(Z,J,K){if(K){let X=h(Q([])),W=a(Z,"GetSettings",X,P1),Y;Y=W[1];let V=s_(Z);return R(Q([H("max-w-2xl space-y-6")]),Q([_1(Q([H("text-2xl font-semibold text-zinc-300 mb-8")]),Q([C("Settings")])),(()=>{if(Y instanceof w1)return R(Q([H("py-8 text-center text-zinc-600 text-sm")]),Q([C("Loading settings...")]));else if(Y instanceof U1){let G=Y[0];return R(Q([H("py-8 text-center text-red-400 text-sm")]),Q([C("Error: "+G)]))}else{let G=Y[0];return R(Q([H("space-y-6")]),Q([zh(G.settings,J,V),Fh(J),Hh(Z,J),Ih(G.settings,J),Nh(J)]))}})()]))}else return R(Q([H("max-w-2xl space-y-6")]),Q([_1(Q([H("text-2xl font-semibold text-zinc-300 mb-8")]),Q([C("Settings")])),R(Q([H("bg-zinc-800/50 rounded p-8 text-center border border-zinc-700")]),Q([D0(Q([H("text-zinc-400 mb-4")]),Q([C("Access Denied")])),D0(Q([H("text-sm text-zinc-500")]),Q([C("You must be an administrator to access the settings page.")]))]))]))}function Th(){return window.location.origin}function dJ(Z,J){window.setTimeout(()=>J(),Z)}var a_="src/quickslice_client.gleam";class o5 extends O{}class S5 extends O{}class iJ extends O{}class DL extends O{}class pJ extends O{}class t5 extends O{}class C8 extends O{}class Ph extends O{constructor(Z,J,K){super();this.did=Z,this.handle=J,this.is_admin=K}}class l extends O{constructor(Z,J,K,X,W,Y,V,G,I,z,N){super();this.cache=Z,this.registry=J,this.route=K,this.time_range=X,this.settings_page_model=W,this.backfill_page_model=Y,this.backfill_status=V,this.auth_state=G,this.mobile_menu_open=I,this.login_autocomplete=z,this.oauth_error=N}}class p0 extends O{constructor(Z,J,K){super();this[0]=Z,this[1]=J,this[2]=K}}class yM extends O{constructor(Z,J){super();this[0]=Z,this[1]=J}}class fM extends O{constructor(Z,J){super();this[0]=Z,this[1]=J}}class kM extends O{constructor(Z,J){super();this[0]=Z,this[1]=J}}class bM extends O{constructor(Z,J){super();this[0]=Z,this[1]=J}}class BL extends O{constructor(Z){super();this[0]=Z}}class OL extends O{constructor(Z){super();this[0]=Z}}class TL extends O{constructor(Z){super();this[0]=Z}}class hM extends O{constructor(Z){super();this[0]=Z}}class PL extends O{constructor(Z){super();this[0]=Z}}class NL extends O{constructor(Z){super();this[0]=Z}}class cJ extends O{}class SL extends O{}class nJ extends O{constructor(Z){super();this[0]=Z}}class vM extends O{constructor(Z){super();this[0]=Z}}class $M extends O{constructor(Z){super();this[0]=Z}}class gM extends O{}class _M extends O{}class FL extends O{constructor(Z){super();this[0]=Z}}class HL extends O{}function P5(Z){let J=l1(Z,v0);if(J instanceof E){let K=J[0],X=$("errors",L0($("message",u,(Y)=>{return s(Y)})),(Y)=>{return s(Y)}),W=z0(K,X);if(W instanceof E){let Y=W[0];if(Y instanceof M)return new b;else{let V=Y.head;return new L(V)}}else return new b}else return new b}function t_(Z){let J=Z.query;if(J instanceof L){let K=J[0],X,W=QK(K);X=z8(W,Q([]));let Y=X,V=MZ(Y,"error");if(V instanceof E){let G=V[0];if(G==="access_denied")return new L("Login was cancelled");else{let I=G,z,N=MZ(Y,"error_description"),F=z8(N,I),D=BR(F);return z=z8(D,I),new L("Login failed: "+z)}}else return new b}else return J}function o_(Z,J){if(J instanceof p0){let K=J[2];if(K instanceof E){let X=J[0],W=J[1],Y=K[0],V=ik(Z.cache,X,W,Y,0),G=d0(V,Z.registry,(m,y,_)=>{return new p0(m,y,_)},()=>{return 0}),I,z;I=G[0],z=G[1];let N;if(X==="IsBackfilling"){let m=rZ(Y);if(m instanceof E){let y=m[0],_=Z.backfill_status;if(y.is_backfilling&&_ instanceof iK)N=new O8;else N=ak(Z.backfill_status,y.is_backfilling)}else N=Z.backfill_status}else N=Z.backfill_status;let F=N,D,B=c5(Z.backfill_status),T=c5(F);if(B)if(T&&X==="IsBackfilling")D=Q([F1((m)=>{return dJ(1e4,()=>{return m(new cJ)})})]);else D=Q([]);else if(T&&X==="IsBackfilling")D=Q([F1((m)=>{return dJ(1e4,()=>{return m(new cJ)})})]);else D=Q([]);let P=D,S,q=Z.backfill_status;if(q instanceof d8&&F instanceof d5)S=!0;else if(q instanceof O8&&F instanceof d5)S=!0;else S=!1;let x=S,U;if(X==="GetCurrentSession"){let m=oj(Y);if(m instanceof E){let _=m[0].current_session;if(_ instanceof L){let t=_[0];U=new Ph(t.did,t.handle,t.is_admin)}else U=new C8}else U=new C8}else U=Z.auth_state;let k=U,w;if(X==="UpdateSettings")w=mJ(Z.settings_page_model,"success","Settings updated successfully");else if(X==="UploadLexicons"){aj("lexicon-file-input");let m=P5(Y);if(m instanceof L){let y=m[0];w=uJ(Z.settings_page_model,"error",y)}else w=uJ(Z.settings_page_model,"success","Lexicons uploaded successfully")}else if(X==="ResetAll"){let m,y=Z.settings_page_model;m=new K0("",y.reset_confirmation,y.selected_file,y.alert,y.relay_url_input,y.plc_directory_url_input,y.jetstream_url_input,y.oauth_supported_scopes_input,y.lexicons_alert,y.show_new_client_form,y.new_client_name,y.new_client_type,y.new_client_redirect_uris,y.new_client_scope,y.editing_client_id,y.edit_client_name,y.edit_client_redirect_uris,y.edit_client_scope,y.visible_secrets,y.delete_confirm_client_id,y.oauth_alert,y.new_admin_did,y.remove_confirm_did,y.admin_alert,y.danger_zone_alert),w=zL(m,"success","All data has been reset")}else if(X==="GetSettings"){let m=P1(Y);if(m instanceof E){let y=m[0],_=Z.settings_page_model;w=new K0(y.settings.domain_authority,_.reset_confirmation,_.selected_file,_.alert,y.settings.relay_url,y.settings.plc_directory_url,y.settings.jetstream_url,y.settings.oauth_supported_scopes,_.lexicons_alert,_.show_new_client_form,_.new_client_name,_.new_client_type,_.new_client_redirect_uris,_.new_client_scope,_.editing_client_id,_.edit_client_name,_.edit_client_redirect_uris,_.edit_client_scope,_.visible_secrets,_.delete_confirm_client_id,_.oauth_alert,_.new_admin_did,_.remove_confirm_did,_.admin_alert,_.danger_zone_alert)}else w=Z.settings_page_model}else if(X==="CreateOAuthClient"){let m=P5(Y);if(m instanceof L){let y=m[0];w=E8(Z.settings_page_model,"error",y)}else{let y;if(X==="CreateOAuthClient")y="OAuth client created successfully";else if(X==="UpdateOAuthClient")y="OAuth client updated successfully";else if(X==="DeleteOAuthClient")y="OAuth client deleted successfully";else y="Operation completed";let _=y;w=E8(Z.settings_page_model,"success",_)}}else if(X==="UpdateOAuthClient"){let m=P5(Y);if(m instanceof L){let y=m[0];w=E8(Z.settings_page_model,"error",y)}else{let y;if(X==="CreateOAuthClient")y="OAuth client created successfully";else if(X==="UpdateOAuthClient")y="OAuth client updated successfully";else if(X==="DeleteOAuthClient")y="OAuth client deleted successfully";else y="Operation completed";let _=y;w=E8(Z.settings_page_model,"success",_)}}else if(X==="DeleteOAuthClient"){let m=P5(Y);if(m instanceof L){let y=m[0];w=E8(Z.settings_page_model,"error",y)}else{let y;if(X==="CreateOAuthClient")y="OAuth client created successfully";else if(X==="UpdateOAuthClient")y="OAuth client updated successfully";else if(X==="DeleteOAuthClient")y="OAuth client deleted successfully";else y="Operation completed";let _=y;w=E8(Z.settings_page_model,"success",_)}}else if(X==="AddAdmin"){let m=P5(Y);if(m instanceof L){let y=m[0];w=a5(Z.settings_page_model,"error",y)}else{let y;if(X==="AddAdmin")y="Admin added successfully";else if(X==="RemoveAdmin")y="Admin removed successfully";else y="Operation completed";let _=y;w=a5(Z.settings_page_model,"success",_)}}else if(X==="RemoveAdmin"){let m=P5(Y);if(m instanceof L){let y=m[0];w=a5(Z.settings_page_model,"error",y)}else{let y;if(X==="AddAdmin")y="Admin added successfully";else if(X==="RemoveAdmin")y="Admin removed successfully";else y="Operation completed";let _=y;w=a5(Z.settings_page_model,"success",_)}}else w=Z.settings_page_model;let f=w,g;if(X==="BackfillActor"){let m=Z.backfill_page_model,y=MM(m,!1),_=JL(y,"success","Backfill started for "+Z.backfill_page_model.did_input);g=((t)=>{return new O5("",t.is_submitting,t.alert)})(_)}else g=Z.backfill_page_model;let d=g,n;if(X==="ResetAll"){let m=u0(I,"GetStatistics",h(Q([]))),y=u0(m,"GetActivityBuckets",h(Q([["range",c(D5(Z.time_range))]]))),_=u0(y,"GetRecentActivity",h(Q([["hours",Q1(24)]]))),t=a(_,"GetSettings",h(Q([])),P1),o;o=t[0];let Y0=d0(o,Z.registry,(h0,D1,S1)=>{return new p0(h0,D1,S1)},()=>{return 0}),j0,M0;j0=Y0[0],M0=Y0[1],n=[j0,M0]}else if(X==="UploadLexicons")n=[u0(I,"GetStatistics",h(Q([]))),Q([])];else if(X==="CreateOAuthClient"){let m=u0(I,"GetOAuthClients",h(Q([]))),y=a(m,"GetOAuthClients",h(Q([])),i8),_;_=y[0];let t=d0(_,Z.registry,(j0,M0,h0)=>{return new p0(j0,M0,h0)},()=>{return 0}),o,Y0;o=t[0],Y0=t[1],n=[o,Y0]}else if(X==="UpdateOAuthClient"){let m=u0(I,"GetOAuthClients",h(Q([]))),y=a(m,"GetOAuthClients",h(Q([])),i8),_;_=y[0];let t=d0(_,Z.registry,(j0,M0,h0)=>{return new p0(j0,M0,h0)},()=>{return 0}),o,Y0;o=t[0],Y0=t[1],n=[o,Y0]}else if(X==="DeleteOAuthClient"){let m=u0(I,"GetOAuthClients",h(Q([]))),y=a(m,"GetOAuthClients",h(Q([])),i8),_;_=y[0];let t=d0(_,Z.registry,(j0,M0,h0)=>{return new p0(j0,M0,h0)},()=>{return 0}),o,Y0;o=t[0],Y0=t[1],n=[o,Y0]}else n=[I,Q([])];let r=n,X0,T0;X0=r[0],T0=r[1];let b0;if(x){let m=u0(X0,"GetStatistics",h(Q([]))),y=u0(m,"GetActivityBuckets",h(Q([["range",c(D5(Z.time_range))]]))),_=u0(y,"GetRecentActivity",h(Q([["hours",Q1(24)]]))),t=a(_,"GetStatistics",h(Q([])),B5),o;o=t[0];let Y0=a(o,"GetActivityBuckets",h(Q([["range",c(D5(Z.time_range))]])),s5),j0;j0=Y0[0];let M0=a(j0,"GetRecentActivity",h(Q([["hours",Q1(24)]])),AZ),h0;h0=M0[0];let D1=d0(h0,Z.registry,(M1,Q8,x8)=>{return new p0(M1,Q8,x8)},()=>{return 0}),S1,A1;S1=D1[0],A1=D1[1],b0=[S1,A1]}else b0=[X0,Q([])];let G0=b0,B0,Q0;B0=G0[0],Q0=G0[1];let J0;if(X==="GetCurrentSession"){let m=Z.route;if(k instanceof C8)if(m instanceof S5)J0=Q([m5("/",new b,new b)]);else J0=Q([]);else if(!k.is_admin&&m instanceof S5)J0=Q([m5("/",new b,new b)]);else J0=Q([])}else if(X==="GetSettings"){let m=P1(Y);if(m instanceof E){let y=m[0],_=_L(y.settings.admin_dids),t=Z.route;if(_)if(t instanceof t5)J0=Q([]);else J0=Q([m5("/onboarding",new b,new b)]);else if(t instanceof t5)J0=Q([m5("/",new b,new b)]);else J0=Q([])}else J0=Q([])}else J0=Q([]);let Z0=J0;return[new l(B0,Z.registry,Z.route,Z.time_range,f,d,F,k,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),G1((()=>{let m=Q([z,T0,Q0,Z0,P]);return uL(m)})())]}else{let X=J[0],W=K[0],Y;if(X==="UpdateSettings")Y=mJ(Z.settings_page_model,"error","Error: "+W);else if(X==="TriggerBackfill")Y=mJ(Z.settings_page_model,"error","Error: "+W);else if(X==="ResetAll")Y=zL(Z.settings_page_model,"error","Error: "+W);else if(X==="UploadLexicons")Y=uJ(Z.settings_page_model,"error","Error: "+W);else if(X==="CreateOAuthClient")Y=E8(Z.settings_page_model,"error","Error: "+W);else if(X==="UpdateOAuthClient")Y=E8(Z.settings_page_model,"error","Error: "+W);else if(X==="DeleteOAuthClient")Y=E8(Z.settings_page_model,"error","Error: "+W);else Y=Z.settings_page_model;let V=Y,G;if(X==="BackfillActor"){let z=Z.backfill_page_model,N=MM(z,!1);G=JL(N,"error","Error: "+W)}else G=Z.backfill_page_model;let I=G;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,I,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}}else if(J instanceof yM){let K=J[0],X=J[1],W=mj(Z.cache,K,X),Y=mJ(Z.settings_page_model,"success","Settings updated successfully");return[new l(W,Z.registry,Z.route,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(J instanceof fM){let K=J[0],X=J[1],W=gj(Z.cache,K),Y,G=a(W,"GetSettings",h(Q([])),P1)[1];if(G instanceof e1)Y=G[0].settings.domain_authority;else Y=Z.settings_page_model.domain_authority_input;let I=Y,z,N=w5(X,"Response body: ");if(N instanceof E){let P=N[0][1],S=P5(P);if(S instanceof L)z=S[0];else z=X}else z=X;let F=z,D,B=Z.settings_page_model;D=new K0(I,B.reset_confirmation,B.selected_file,new L(["error",F]),B.relay_url_input,B.plc_directory_url_input,B.jetstream_url_input,B.oauth_supported_scopes_input,B.lexicons_alert,B.show_new_client_form,B.new_client_name,B.new_client_type,B.new_client_redirect_uris,B.new_client_scope,B.editing_client_id,B.edit_client_name,B.edit_client_redirect_uris,B.edit_client_scope,B.visible_secrets,B.delete_confirm_client_id,B.oauth_alert,B.new_admin_did,B.remove_confirm_did,B.admin_alert,B.danger_zone_alert);let T=D;return[new l(W,Z.registry,Z.route,Z.time_range,T,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(J instanceof kM){let K=J[0],X=J[1],W=mj(Z.cache,K,X),Y=a5(Z.settings_page_model,"success","Admin updated successfully");return[new l(W,Z.registry,Z.route,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(J instanceof bM){let K=J[0],X=J[1],W=gj(Z.cache,K),Y,V=w5(X,"Response body: ");if(V instanceof E){let z=V[0][1],N=P5(z);if(N instanceof L)Y=N[0];else Y=X}else Y=X;let G=Y,I=a5(Z.settings_page_model,"error",G);return[new l(W,Z.registry,Z.route,Z.time_range,I,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(J instanceof BL){let K=J[0],X;if(Z.route instanceof S5)X=Dh(Z.settings_page_model);else X=Z.settings_page_model;let Y=X;if(K instanceof o5){let V=a(Z.cache,"GetStatistics",h(Q([])),B5),G;G=V[0];let I=a(G,"GetSettings",h(Q([])),P1),z;z=I[0];let N=a(z,"GetActivityBuckets",h(Q([["range",c(D5(Z.time_range))]])),s5),F;F=N[0];let D=a(F,"GetRecentActivity",h(Q([["hours",Q1(24)]])),AZ),B;B=D[0];let T=d0(B,Z.registry,(q,x,U)=>{return new p0(q,x,U)},()=>{return 0}),P,S;return P=T[0],S=T[1],[new l(P,Z.registry,K,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,!1,Z.login_autocomplete,Z.oauth_error),G1(S)]}else if(K instanceof S5){let V,G=Z.auth_state;if(G instanceof C8)V=!1;else V=G.is_admin;if(V){let z=a(Z.cache,"GetSettings",h(Q([])),P1),N;N=z[0];let F=a(N,"GetOAuthClients",h(Q([])),i8),D;D=F[0];let B=d0(D,Z.registry,(S,q,x)=>{return new p0(S,q,x)},()=>{return 0}),T,P;return T=B[0],P=B[1],[new l(T,Z.registry,K,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,!1,Z.login_autocomplete,Z.oauth_error),G1(P)]}else return[Z,m5("/",new b,new b)]}else if(K instanceof iJ){let V=a(Z.cache,"GetLexicons",h(Q([])),VJ),G;G=V[0];let I=d0(G,Z.registry,(F,D,B)=>{return new p0(F,D,B)},()=>{return 0}),z,N;return z=I[0],N=I[1],[new l(z,Z.registry,K,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,!1,Z.login_autocomplete,Z.oauth_error),G1(N)]}else if(K instanceof pJ)if(Z.auth_state instanceof C8)return[Z,m5("/",new b,new b)];else{let G=UM(Z.backfill_page_model);return[new l(Z.cache,Z.registry,new pJ,Z.time_range,Z.settings_page_model,G,Z.backfill_status,Z.auth_state,!1,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof t5)return[new l(Z.cache,Z.registry,new t5,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,!1,Z.login_autocomplete,Z.oauth_error),i()];else return[new l(Z.cache,Z.registry,K,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,!1,Z.login_autocomplete,Z.oauth_error),i()]}else if(J instanceof OL){let K=J[0];if(K instanceof jM){let X=K[0],W=h(Q([["range",c(D5(X))]])),Y=a(Z.cache,"GetActivityBuckets",W,s5),V;V=Y[0];let G=d0(V,Z.registry,(N,F,D)=>{return new p0(N,F,D)},()=>{return 0}),I,z;return I=G[0],z=G[1],[new l(I,Z.registry,Z.route,X,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),G1(z)]}else if(K instanceof LM){let X=h(Q([])),W=u0(Z.cache,"TriggerBackfill",X),Y=a(W,"TriggerBackfill",X,ub),V;V=Y[0];let G=d0(V,Z.registry,(F,D,B)=>{return new p0(F,D,B)},()=>{return 0}),I,z;I=G[0],z=G[1];let N=F1((F)=>{return dJ(1e4,()=>{return F(new cJ)})});return[new l(I,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,new d8,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),G1(Q([G1(z),N]))]}else return ZL("/graphiql"),[Z,i()]}else if(J instanceof TL){let K=J[0];if(K instanceof NJ){let X=K[0],W,Y=Z.settings_page_model;W=new K0(X,Y.reset_confirmation,Y.selected_file,new b,Y.relay_url_input,Y.plc_directory_url_input,Y.jetstream_url_input,Y.oauth_supported_scopes_input,Y.lexicons_alert,Y.show_new_client_form,Y.new_client_name,Y.new_client_type,Y.new_client_redirect_uris,Y.new_client_scope,Y.editing_client_id,Y.edit_client_name,Y.edit_client_redirect_uris,Y.edit_client_scope,Y.visible_secrets,Y.delete_confirm_client_id,Y.oauth_alert,Y.new_admin_did,Y.remove_confirm_did,Y.admin_alert,Y.danger_zone_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof FJ)return[Z,i()];else if(K instanceof HJ){U5("[UploadLexicons] Button clicked, creating file effect");let X=F1((W)=>{return U5("[UploadLexicons] Effect running, calling read_file_as_base64"),rj("lexicon-file-input",(Y)=>{return U5("[UploadLexicons] Callback received result"),W(new NL(Y))})});return[Z,X]}else if(K instanceof DJ){let X=K[0],W,Y=Z.settings_page_model;W=new K0(Y.domain_authority_input,X,Y.selected_file,new b,Y.relay_url_input,Y.plc_directory_url_input,Y.jetstream_url_input,Y.oauth_supported_scopes_input,Y.lexicons_alert,Y.show_new_client_form,Y.new_client_name,Y.new_client_type,Y.new_client_redirect_uris,Y.new_client_scope,Y.editing_client_id,Y.edit_client_name,Y.edit_client_redirect_uris,Y.edit_client_scope,Y.visible_secrets,Y.delete_confirm_client_id,Y.oauth_alert,Y.new_admin_did,Y.remove_confirm_did,Y.admin_alert,Y.danger_zone_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof BJ){let X=h(Q([["confirm",c(Z.settings_page_model.reset_confirmation)]])),W=u0(Z.cache,"ResetAll",X),Y=a(W,"ResetAll",X,_b),V;V=Y[0];let G=d0(V,Z.registry,(B,T,P)=>{return new p0(B,T,P)},()=>{return 0}),I,z;I=G[0],z=G[1];let N,F=Z.settings_page_model;N=new K0(F.domain_authority_input,"",F.selected_file,new b,F.relay_url_input,F.plc_directory_url_input,F.jetstream_url_input,F.oauth_supported_scopes_input,F.lexicons_alert,F.show_new_client_form,F.new_client_name,F.new_client_type,F.new_client_redirect_uris,F.new_client_scope,F.editing_client_id,F.edit_client_name,F.edit_client_redirect_uris,F.edit_client_scope,F.visible_secrets,F.delete_confirm_client_id,F.oauth_alert,F.new_admin_did,F.remove_confirm_did,F.admin_alert,F.danger_zone_alert);let D=N;return[new l(I,Z.registry,Z.route,Z.time_range,D,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),G1(z)]}else if(K instanceof OJ){let X=K[0],W,Y=Z.settings_page_model;W=new K0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,new b,X,Y.plc_directory_url_input,Y.jetstream_url_input,Y.oauth_supported_scopes_input,Y.lexicons_alert,Y.show_new_client_form,Y.new_client_name,Y.new_client_type,Y.new_client_redirect_uris,Y.new_client_scope,Y.editing_client_id,Y.edit_client_name,Y.edit_client_redirect_uris,Y.edit_client_scope,Y.visible_secrets,Y.delete_confirm_client_id,Y.oauth_alert,Y.new_admin_did,Y.remove_confirm_did,Y.admin_alert,Y.danger_zone_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof TJ){let X=K[0],W,Y=Z.settings_page_model;W=new K0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,new b,Y.relay_url_input,X,Y.jetstream_url_input,Y.oauth_supported_scopes_input,Y.lexicons_alert,Y.show_new_client_form,Y.new_client_name,Y.new_client_type,Y.new_client_redirect_uris,Y.new_client_scope,Y.editing_client_id,Y.edit_client_name,Y.edit_client_redirect_uris,Y.edit_client_scope,Y.visible_secrets,Y.delete_confirm_client_id,Y.oauth_alert,Y.new_admin_did,Y.remove_confirm_did,Y.admin_alert,Y.danger_zone_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof PJ){let X=K[0],W,Y=Z.settings_page_model;W=new K0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,new b,Y.relay_url_input,Y.plc_directory_url_input,X,Y.oauth_supported_scopes_input,Y.lexicons_alert,Y.show_new_client_form,Y.new_client_name,Y.new_client_type,Y.new_client_redirect_uris,Y.new_client_scope,Y.editing_client_id,Y.edit_client_name,Y.edit_client_redirect_uris,Y.edit_client_scope,Y.visible_secrets,Y.delete_confirm_client_id,Y.oauth_alert,Y.new_admin_did,Y.remove_confirm_did,Y.admin_alert,Y.danger_zone_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof SJ){let X=K[0],W,Y=Z.settings_page_model;W=new K0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,new b,Y.relay_url_input,Y.plc_directory_url_input,Y.jetstream_url_input,X,Y.lexicons_alert,Y.show_new_client_form,Y.new_client_name,Y.new_client_type,Y.new_client_redirect_uris,Y.new_client_scope,Y.editing_client_id,Y.edit_client_name,Y.edit_client_redirect_uris,Y.edit_client_scope,Y.visible_secrets,Y.delete_confirm_client_id,Y.oauth_alert,Y.new_admin_did,Y.remove_confirm_did,Y.admin_alert,Y.danger_zone_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof AJ){let X,W=Z.settings_page_model;X=new K0(W.domain_authority_input,W.reset_confirmation,W.selected_file,new b,W.relay_url_input,W.plc_directory_url_input,W.jetstream_url_input,W.oauth_supported_scopes_input,W.lexicons_alert,W.show_new_client_form,W.new_client_name,W.new_client_type,W.new_client_redirect_uris,W.new_client_scope,W.editing_client_id,W.edit_client_name,W.edit_client_redirect_uris,W.edit_client_scope,W.visible_secrets,W.delete_confirm_client_id,W.oauth_alert,W.new_admin_did,W.remove_confirm_did,W.admin_alert,W.danger_zone_alert);let Y=X,V=h(Q([])),G=a(Z.cache,"GetSettings",V,P1),I;if(I=G[1],I instanceof e1){let N=I[0].settings.admin_dids,F=Q([]),D,B=Z.settings_page_model.domain_authority_input;if(B==="")D=F;else D=A(["domainAuthority",c(B)],F);let T=D,P,S=Z.settings_page_model.relay_url_input;if(S==="")P=T;else P=A(["relayUrl",c(S)],T);let q=P,x,U=Z.settings_page_model.plc_directory_url_input;if(U==="")x=q;else x=A(["plcDirectoryUrl",c(U)],q);let k=x,w,f=Z.settings_page_model.jetstream_url_input;if(f==="")w=k;else w=A(["jetstreamUrl",c(f)],k);let g=w,d,n=Z.settings_page_model.oauth_supported_scopes_input;if(n==="")d=g;else d=A(["oauthSupportedScopes",c(n)],g);let r=d,X0=A(["adminDids",k0(N,c)],r);if(X0 instanceof M){let T0=h(X0),b0=Q([["id",c("Settings:singleton")]]),G0,B0=Z.settings_page_model.domain_authority_input;if(B0==="")G0=b0;else G0=A(["domainAuthority",c(B0)],b0);let Q0=G0,J0,Z0=Z.settings_page_model.relay_url_input;if(Z0==="")J0=Q0;else J0=A(["relayUrl",c(Z0)],Q0);let m=J0,y,_=Z.settings_page_model.plc_directory_url_input;if(_==="")y=m;else y=A(["plcDirectoryUrl",c(_)],m);let t=y,o,Y0=Z.settings_page_model.jetstream_url_input;if(Y0==="")o=t;else o=A(["jetstreamUrl",c(Y0)],t);let j0=o,M0,h0=Z.settings_page_model.oauth_supported_scopes_input;if(h0==="")M0=j0;else M0=A(["oauthSupportedScopes",c(h0)],j0);let D1=M0,S1=A(["adminDids",k0(N,c)],D1),A1=h(S1),M1=sZ(Z.cache,Z.registry,"UpdateSettings",T0,"Settings:singleton",(u1)=>{return A1},IJ,(u1,d1,lJ)=>{if(d1 instanceof E)return new yM(u1,lJ);else{let mM=d1[0];return new fM(u1,mM)}}),Q8,x8;return Q8=M1[0],x8=M1[2],[new l(Q8,Z.registry,Z.route,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),x8]}else if(X0.tail instanceof M)return[new l(Z.cache,Z.registry,Z.route,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()];else{let b0=h(X0),G0=Q([["id",c("Settings:singleton")]]),B0,Q0=Z.settings_page_model.domain_authority_input;if(Q0==="")B0=G0;else B0=A(["domainAuthority",c(Q0)],G0);let J0=B0,Z0,m=Z.settings_page_model.relay_url_input;if(m==="")Z0=J0;else Z0=A(["relayUrl",c(m)],J0);let y=Z0,_,t=Z.settings_page_model.plc_directory_url_input;if(t==="")_=y;else _=A(["plcDirectoryUrl",c(t)],y);let o=_,Y0,j0=Z.settings_page_model.jetstream_url_input;if(j0==="")Y0=o;else Y0=A(["jetstreamUrl",c(j0)],o);let M0=Y0,h0,D1=Z.settings_page_model.oauth_supported_scopes_input;if(D1==="")h0=M0;else h0=A(["oauthSupportedScopes",c(D1)],M0);let S1=h0,A1=A(["adminDids",k0(N,c)],S1),M1=h(A1),Q8=sZ(Z.cache,Z.registry,"UpdateSettings",b0,"Settings:singleton",(d1)=>{return M1},IJ,(d1,lJ,mM)=>{if(lJ instanceof E)return new yM(d1,mM);else{let qh=lJ[0];return new fM(d1,qh)}}),x8,u1;return x8=Q8[0],u1=Q8[2],[new l(x8,Z.registry,Z.route,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),u1]}}else return[new l(Z.cache,Z.registry,Z.route,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof qZ){let X,W=Z.settings_page_model;X=new K0(W.domain_authority_input,W.reset_confirmation,W.selected_file,W.alert,W.relay_url_input,W.plc_directory_url_input,W.jetstream_url_input,W.oauth_supported_scopes_input,W.lexicons_alert,!Z.settings_page_model.show_new_client_form,W.new_client_name,W.new_client_type,W.new_client_redirect_uris,W.new_client_scope,W.editing_client_id,W.edit_client_name,W.edit_client_redirect_uris,W.edit_client_scope,W.visible_secrets,W.delete_confirm_client_id,W.oauth_alert,W.new_admin_did,W.remove_confirm_did,W.admin_alert,W.danger_zone_alert);let Y=X;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof qJ){let X=K[0],W,Y=Z.settings_page_model;W=new K0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,Y.alert,Y.relay_url_input,Y.plc_directory_url_input,Y.jetstream_url_input,Y.oauth_supported_scopes_input,Y.lexicons_alert,Y.show_new_client_form,X,Y.new_client_type,Y.new_client_redirect_uris,Y.new_client_scope,Y.editing_client_id,Y.edit_client_name,Y.edit_client_redirect_uris,Y.edit_client_scope,Y.visible_secrets,Y.delete_confirm_client_id,Y.oauth_alert,Y.new_admin_did,Y.remove_confirm_did,Y.admin_alert,Y.danger_zone_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof EJ){let X=K[0],W,Y=Z.settings_page_model;W=new K0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,Y.alert,Y.relay_url_input,Y.plc_directory_url_input,Y.jetstream_url_input,Y.oauth_supported_scopes_input,Y.lexicons_alert,Y.show_new_client_form,Y.new_client_name,X,Y.new_client_redirect_uris,Y.new_client_scope,Y.editing_client_id,Y.edit_client_name,Y.edit_client_redirect_uris,Y.edit_client_scope,Y.visible_secrets,Y.delete_confirm_client_id,Y.oauth_alert,Y.new_admin_did,Y.remove_confirm_did,Y.admin_alert,Y.danger_zone_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof CJ){let X=K[0],W,Y=Z.settings_page_model;W=new K0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,Y.alert,Y.relay_url_input,Y.plc_directory_url_input,Y.jetstream_url_input,Y.oauth_supported_scopes_input,Y.lexicons_alert,Y.show_new_client_form,Y.new_client_name,Y.new_client_type,X,Y.new_client_scope,Y.editing_client_id,Y.edit_client_name,Y.edit_client_redirect_uris,Y.edit_client_scope,Y.visible_secrets,Y.delete_confirm_client_id,Y.oauth_alert,Y.new_admin_did,Y.remove_confirm_did,Y.admin_alert,Y.danger_zone_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof xJ){let X=K[0],W,Y=Z.settings_page_model;W=new K0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,Y.alert,Y.relay_url_input,Y.plc_directory_url_input,Y.jetstream_url_input,Y.oauth_supported_scopes_input,Y.lexicons_alert,Y.show_new_client_form,Y.new_client_name,Y.new_client_type,Y.new_client_redirect_uris,X,Y.editing_client_id,Y.edit_client_name,Y.edit_client_redirect_uris,Y.edit_client_scope,Y.visible_secrets,Y.delete_confirm_client_id,Y.oauth_alert,Y.new_admin_did,Y.remove_confirm_did,Y.admin_alert,Y.danger_zone_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof wJ){let X,W=V4(Z.settings_page_model.new_client_redirect_uris,` 152 + `),Y=oJ(W,(x)=>{return J8(Q4(x))>0});X=I0(Y,Q4);let V=X,G=h(Q([["clientName",c(Z.settings_page_model.new_client_name)],["clientType",c(Z.settings_page_model.new_client_type)],["redirectUris",k0(V,c)],["scope",c(Z.settings_page_model.new_client_scope)]])),I=u0(Z.cache,"CreateOAuthClient",G),z=a(I,"CreateOAuthClient",G,Pb),N;N=z[0];let F=u0(N,"GetOAuthClients",h(Q([]))),D=d0(F,Z.registry,(x,U,k)=>{return new p0(x,U,k)},()=>{return 0}),B,T;B=D[0],T=D[1];let P,S=Z.settings_page_model;P=new K0(S.domain_authority_input,S.reset_confirmation,S.selected_file,S.alert,S.relay_url_input,S.plc_directory_url_input,S.jetstream_url_input,S.oauth_supported_scopes_input,S.lexicons_alert,!1,"","PUBLIC","","atproto transition:generic",S.editing_client_id,S.edit_client_name,S.edit_client_redirect_uris,S.edit_client_scope,S.visible_secrets,S.delete_confirm_client_id,S.oauth_alert,S.new_admin_did,S.remove_confirm_did,S.admin_alert,S.danger_zone_alert);let q=P;return[new l(B,Z.registry,Z.route,Z.time_range,q,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),G1(T)]}else if(K instanceof UJ){let X=K[0],W=a(Z.cache,"GetOAuthClients",h(Q([])),i8),Y;Y=W[1];let V;if(Y instanceof e1){let I=Y[0],z=WR(I.oauth_clients,(N)=>{return N.client_id===X});if(z instanceof E){let N=z[0],F=Z.settings_page_model;V=new K0(F.domain_authority_input,F.reset_confirmation,F.selected_file,F.alert,F.relay_url_input,F.plc_directory_url_input,F.jetstream_url_input,F.oauth_supported_scopes_input,F.lexicons_alert,F.show_new_client_form,F.new_client_name,F.new_client_type,F.new_client_redirect_uris,F.new_client_scope,new L(X),N.client_name,e8(N.redirect_uris,` 153 + `),(()=>{let D=N.scope;if(D instanceof L)return D[0];else return""})(),F.visible_secrets,F.delete_confirm_client_id,F.oauth_alert,F.new_admin_did,F.remove_confirm_did,F.admin_alert,F.danger_zone_alert)}else V=Z.settings_page_model}else V=Z.settings_page_model;let G=V;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,G,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof MJ){let X,W=Z.settings_page_model;X=new K0(W.domain_authority_input,W.reset_confirmation,W.selected_file,W.alert,W.relay_url_input,W.plc_directory_url_input,W.jetstream_url_input,W.oauth_supported_scopes_input,W.lexicons_alert,W.show_new_client_form,W.new_client_name,W.new_client_type,W.new_client_redirect_uris,W.new_client_scope,new b,"","","",W.visible_secrets,W.delete_confirm_client_id,W.oauth_alert,W.new_admin_did,W.remove_confirm_did,W.admin_alert,W.danger_zone_alert);let Y=X;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof RJ){let X=K[0],W,Y=Z.settings_page_model;W=new K0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,Y.alert,Y.relay_url_input,Y.plc_directory_url_input,Y.jetstream_url_input,Y.oauth_supported_scopes_input,Y.lexicons_alert,Y.show_new_client_form,Y.new_client_name,Y.new_client_type,Y.new_client_redirect_uris,Y.new_client_scope,Y.editing_client_id,X,Y.edit_client_redirect_uris,Y.edit_client_scope,Y.visible_secrets,Y.delete_confirm_client_id,Y.oauth_alert,Y.new_admin_did,Y.remove_confirm_did,Y.admin_alert,Y.danger_zone_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof jJ){let X=K[0],W,Y=Z.settings_page_model;W=new K0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,Y.alert,Y.relay_url_input,Y.plc_directory_url_input,Y.jetstream_url_input,Y.oauth_supported_scopes_input,Y.lexicons_alert,Y.show_new_client_form,Y.new_client_name,Y.new_client_type,Y.new_client_redirect_uris,Y.new_client_scope,Y.editing_client_id,Y.edit_client_name,X,Y.edit_client_scope,Y.visible_secrets,Y.delete_confirm_client_id,Y.oauth_alert,Y.new_admin_did,Y.remove_confirm_did,Y.admin_alert,Y.danger_zone_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof LJ){let X=K[0],W,Y=Z.settings_page_model;W=new K0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,Y.alert,Y.relay_url_input,Y.plc_directory_url_input,Y.jetstream_url_input,Y.oauth_supported_scopes_input,Y.lexicons_alert,Y.show_new_client_form,Y.new_client_name,Y.new_client_type,Y.new_client_redirect_uris,Y.new_client_scope,Y.editing_client_id,Y.edit_client_name,Y.edit_client_redirect_uris,X,Y.visible_secrets,Y.delete_confirm_client_id,Y.oauth_alert,Y.new_admin_did,Y.remove_confirm_did,Y.admin_alert,Y.danger_zone_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof yJ){let X=Z.settings_page_model.editing_client_id;if(X instanceof L){let W=X[0],Y,V=V4(Z.settings_page_model.edit_client_redirect_uris,` 154 + `),G=oJ(V,(k)=>{return J8(Q4(k))>0});Y=I0(G,Q4);let I=Y,z=h(Q([["clientId",c(W)],["clientName",c(Z.settings_page_model.edit_client_name)],["redirectUris",k0(I,c)],["scope",c(Z.settings_page_model.edit_client_scope)]])),N=u0(Z.cache,"UpdateOAuthClient",z),F=a(N,"UpdateOAuthClient",z,pb),D;D=F[0];let B=u0(D,"GetOAuthClients",h(Q([]))),T=d0(B,Z.registry,(k,w,f)=>{return new p0(k,w,f)},()=>{return 0}),P,S;P=T[0],S=T[1];let q,x=Z.settings_page_model;q=new K0(x.domain_authority_input,x.reset_confirmation,x.selected_file,x.alert,x.relay_url_input,x.plc_directory_url_input,x.jetstream_url_input,x.oauth_supported_scopes_input,x.lexicons_alert,x.show_new_client_form,x.new_client_name,x.new_client_type,x.new_client_redirect_uris,x.new_client_scope,new b,"","","",x.visible_secrets,x.delete_confirm_client_id,x.oauth_alert,x.new_admin_did,x.remove_confirm_did,x.admin_alert,x.danger_zone_alert);let U=q;return[new l(P,Z.registry,Z.route,Z.time_range,U,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),G1(S)]}else return[Z,i()]}else if(K instanceof fJ){let X=K[0],W;if(z4(Z.settings_page_model.visible_secrets,X))W=My(Z.settings_page_model.visible_secrets,X);else W=fZ(Z.settings_page_model.visible_secrets,X);let V=W,G,I=Z.settings_page_model;G=new K0(I.domain_authority_input,I.reset_confirmation,I.selected_file,I.alert,I.relay_url_input,I.plc_directory_url_input,I.jetstream_url_input,I.oauth_supported_scopes_input,I.lexicons_alert,I.show_new_client_form,I.new_client_name,I.new_client_type,I.new_client_redirect_uris,I.new_client_scope,I.editing_client_id,I.edit_client_name,I.edit_client_redirect_uris,I.edit_client_scope,V,I.delete_confirm_client_id,I.oauth_alert,I.new_admin_did,I.remove_confirm_did,I.admin_alert,I.danger_zone_alert);let z=G;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,z,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof kJ){let X=K[0],W,Y=Z.settings_page_model;W=new K0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,Y.alert,Y.relay_url_input,Y.plc_directory_url_input,Y.jetstream_url_input,Y.oauth_supported_scopes_input,Y.lexicons_alert,Y.show_new_client_form,Y.new_client_name,Y.new_client_type,Y.new_client_redirect_uris,Y.new_client_scope,Y.editing_client_id,Y.edit_client_name,Y.edit_client_redirect_uris,Y.edit_client_scope,Y.visible_secrets,new L(X),Y.oauth_alert,Y.new_admin_did,Y.remove_confirm_did,Y.admin_alert,Y.danger_zone_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof bJ){let X,W=Z.settings_page_model;X=new K0(W.domain_authority_input,W.reset_confirmation,W.selected_file,W.alert,W.relay_url_input,W.plc_directory_url_input,W.jetstream_url_input,W.oauth_supported_scopes_input,W.lexicons_alert,W.show_new_client_form,W.new_client_name,W.new_client_type,W.new_client_redirect_uris,W.new_client_scope,W.editing_client_id,W.edit_client_name,W.edit_client_redirect_uris,W.edit_client_scope,W.visible_secrets,new b,W.oauth_alert,W.new_admin_did,W.remove_confirm_did,W.admin_alert,W.danger_zone_alert);let Y=X;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof hJ){let X=Z.settings_page_model.delete_confirm_client_id;if(X instanceof L){let W=X[0],Y=h(Q([["clientId",c(W)]])),V=u0(Z.cache,"DeleteOAuthClient",Y),G=a(V,"DeleteOAuthClient",Y,Ab),I;I=G[0];let z=u0(I,"GetOAuthClients",h(Q([]))),N=d0(z,Z.registry,(S,q,x)=>{return new p0(S,q,x)},()=>{return 0}),F,D;F=N[0],D=N[1];let B,T=Z.settings_page_model;B=new K0(T.domain_authority_input,T.reset_confirmation,T.selected_file,T.alert,T.relay_url_input,T.plc_directory_url_input,T.jetstream_url_input,T.oauth_supported_scopes_input,T.lexicons_alert,T.show_new_client_form,T.new_client_name,T.new_client_type,T.new_client_redirect_uris,T.new_client_scope,T.editing_client_id,T.edit_client_name,T.edit_client_redirect_uris,T.edit_client_scope,T.visible_secrets,new b,T.oauth_alert,T.new_admin_did,T.remove_confirm_did,T.admin_alert,T.danger_zone_alert);let P=B;return[new l(F,Z.registry,Z.route,Z.time_range,P,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),G1(D)]}else return[Z,i()]}else if(K instanceof vJ){let X=K[0],W,Y=Z.settings_page_model;W=new K0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,Y.alert,Y.relay_url_input,Y.plc_directory_url_input,Y.jetstream_url_input,Y.oauth_supported_scopes_input,Y.lexicons_alert,Y.show_new_client_form,Y.new_client_name,Y.new_client_type,Y.new_client_redirect_uris,Y.new_client_scope,Y.editing_client_id,Y.edit_client_name,Y.edit_client_redirect_uris,Y.edit_client_scope,Y.visible_secrets,Y.delete_confirm_client_id,Y.oauth_alert,X,Y.remove_confirm_did,Y.admin_alert,Y.danger_zone_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof $J){let X=h(Q([])),W=a(Z.cache,"GetSettings",X,P1),Y;if(Y=W[1],Y instanceof e1){let V=Y[0],G=Z.settings_page_model.new_admin_did,I=V.settings.admin_dids,z=V.settings.domain_authority,N;if(XR(I,G))N=I;else N=_0(I,Q([G]));let D=N,B=h(Q([["domainAuthority",c(z)],["adminDids",k0(D,c)]])),T=h(Q([["id",c("Settings:singleton")],["domainAuthority",c(z)],["adminDids",k0(D,c)]])),P=sZ(Z.cache,Z.registry,"UpdateSettings",B,"Settings:singleton",(w)=>{return T},IJ,(w,f,g)=>{if(f instanceof E)return new kM(w,g);else{let d=f[0];return new bM(w,d)}}),S,q;S=P[0],q=P[2];let x,U=Z.settings_page_model;x=new K0(U.domain_authority_input,U.reset_confirmation,U.selected_file,U.alert,U.relay_url_input,U.plc_directory_url_input,U.jetstream_url_input,U.oauth_supported_scopes_input,U.lexicons_alert,U.show_new_client_form,U.new_client_name,U.new_client_type,U.new_client_redirect_uris,U.new_client_scope,U.editing_client_id,U.edit_client_name,U.edit_client_redirect_uris,U.edit_client_scope,U.visible_secrets,U.delete_confirm_client_id,U.oauth_alert,"",U.remove_confirm_did,U.admin_alert,U.danger_zone_alert);let k=x;return[new l(S,Z.registry,Z.route,Z.time_range,k,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),q]}else return[Z,i()]}else if(K instanceof EZ){let X=K[0],W,Y=Z.settings_page_model;W=new K0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,Y.alert,Y.relay_url_input,Y.plc_directory_url_input,Y.jetstream_url_input,Y.oauth_supported_scopes_input,Y.lexicons_alert,Y.show_new_client_form,Y.new_client_name,Y.new_client_type,Y.new_client_redirect_uris,Y.new_client_scope,Y.editing_client_id,Y.edit_client_name,Y.edit_client_redirect_uris,Y.edit_client_scope,Y.visible_secrets,Y.delete_confirm_client_id,Y.oauth_alert,Y.new_admin_did,new L(X),Y.admin_alert,Y.danger_zone_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else if(K instanceof gJ){let X,W=Z.settings_page_model;X=new K0(W.domain_authority_input,W.reset_confirmation,W.selected_file,W.alert,W.relay_url_input,W.plc_directory_url_input,W.jetstream_url_input,W.oauth_supported_scopes_input,W.lexicons_alert,W.show_new_client_form,W.new_client_name,W.new_client_type,W.new_client_redirect_uris,W.new_client_scope,W.editing_client_id,W.edit_client_name,W.edit_client_redirect_uris,W.edit_client_scope,W.visible_secrets,W.delete_confirm_client_id,W.oauth_alert,W.new_admin_did,new b,W.admin_alert,W.danger_zone_alert);let Y=X;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else{let X=Z.settings_page_model.remove_confirm_did;if(X instanceof L){let W=X[0],Y=h(Q([])),V=a(Z.cache,"GetSettings",Y,P1),G;if(G=V[1],G instanceof e1){let I=G[0],z=I.settings.admin_dids,N=I.settings.domain_authority,F=oJ(z,(k)=>{return k!==W}),D=h(Q([["domainAuthority",c(N)],["adminDids",k0(F,c)]])),B=h(Q([["id",c("Settings:singleton")],["domainAuthority",c(N)],["adminDids",k0(F,c)]])),T=sZ(Z.cache,Z.registry,"UpdateSettings",D,"Settings:singleton",(k)=>{return B},IJ,(k,w,f)=>{if(w instanceof E)return new kM(k,f);else{let g=w[0];return new bM(k,g)}}),P,S;P=T[0],S=T[2];let q,x=Z.settings_page_model;q=new K0(x.domain_authority_input,x.reset_confirmation,x.selected_file,x.alert,x.relay_url_input,x.plc_directory_url_input,x.jetstream_url_input,x.oauth_supported_scopes_input,x.lexicons_alert,x.show_new_client_form,x.new_client_name,x.new_client_type,x.new_client_redirect_uris,x.new_client_scope,x.editing_client_id,x.edit_client_name,x.edit_client_redirect_uris,x.edit_client_scope,x.visible_secrets,x.delete_confirm_client_id,x.oauth_alert,x.new_admin_did,new b,x.admin_alert,x.danger_zone_alert);let U=q;return[new l(P,Z.registry,Z.route,Z.time_range,U,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),S]}else return[Z,i()]}else return[Z,i()]}}else if(J instanceof hM){let K=J[0],X=Qh(K);return[Z,hR(X,(W)=>{return new hM(W)})]}else if(J instanceof PL){let K=J[0];if(K instanceof wM){let X=K[0],W,Y,V=Z.backfill_page_model;Y=new O5(X,V.is_submitting,V.alert),W=UM(Y);let I=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,I,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}else{let X=Z.backfill_page_model.did_input,W=h(Q([["did",c(X)]])),Y,V=Z.backfill_page_model,G=MM(V,!0);Y=UM(G);let I=Y,z=u0(Z.cache,"BackfillActor",W),N=a(z,"BackfillActor",W,Bb),F;F=N[0];let D=d0(F,Z.registry,(P,S,q)=>{return new p0(P,S,q)},()=>{return 0}),B,T;return B=D[0],T=D[1],[new l(B,Z.registry,Z.route,Z.time_range,Z.settings_page_model,I,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),G1(T)]}}else if(J instanceof NL){let K=J[0];if(K instanceof E){let X=K[0];U5("[FileRead] Successfully read file, uploading...");let W=h(Q([["zipBase64",c(X)]])),Y=u0(Z.cache,"UploadLexicons",W),V=a(Y,"UploadLexicons",W,sb),G;G=V[0];let I=d0(G,Z.registry,(T,P,S)=>{return new p0(T,P,S)},()=>{return 0}),z,N;z=I[0],N=I[1];let F,D=Z.settings_page_model;F=new K0(D.domain_authority_input,D.reset_confirmation,new b,D.alert,D.relay_url_input,D.plc_directory_url_input,D.jetstream_url_input,D.oauth_supported_scopes_input,D.lexicons_alert,D.show_new_client_form,D.new_client_name,D.new_client_type,D.new_client_redirect_uris,D.new_client_scope,D.editing_client_id,D.edit_client_name,D.edit_client_redirect_uris,D.edit_client_scope,D.visible_secrets,D.delete_confirm_client_id,D.oauth_alert,D.new_admin_did,D.remove_confirm_did,D.admin_alert,D.danger_zone_alert);let B=F;return[new l(z,Z.registry,Z.route,Z.time_range,B,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),G1(N)]}else{let X=K[0];U5("[FileRead] Error reading file: "+X);let W=uJ(Z.settings_page_model,"error",X);return[new l(Z.cache,Z.registry,Z.route,Z.time_range,W,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()]}}else if(J instanceof cJ)if(c5(Z.backfill_status)){let X=rk(Z.cache,Z.registry,(V,G,I)=>{return new p0(V,G,I)}),W,Y;return W=X[0],Y=X[1],[new l(W,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),G1(Y)]}else return[Z,i()];else if(J instanceof SL)return[new l(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,!Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),i()];else if(J instanceof nJ){let K=J[0],X=P8(Z.login_autocomplete,new lK(K)),W,Y;return W=X[0],Y=X[1],[new l(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,W,Z.oauth_error),hR(Y,(V)=>{if(V instanceof x4){let G=V[0];return new FL(G)}else return new nJ("")})]}else if(J instanceof vM){let K=J[0];if(K==="ArrowDown"){let X=P8(Z.login_autocomplete,new sK),W;return W=X[0],[new l(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,W,Z.oauth_error),i()]}else if(K==="ArrowUp"){let X=P8(Z.login_autocomplete,new rK),W;return W=X[0],[new l(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,W,Z.oauth_error),i()]}else if(K==="Enter"){let X=Yb(Z.login_autocomplete);if(X instanceof L){let W=X[0],Y=P8(Z.login_autocomplete,new tZ(W)),V;return V=Y[0],[new l(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,V,Z.oauth_error),i()]}else return[Z,i()]}else if(K==="Escape"){let X=P8(Z.login_autocomplete,new oZ),W;return W=X[0],[new l(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,W,Z.oauth_error),i()]}else return[Z,i()]}else if(J instanceof $M){let K=J[0],X,W=WR(Z.login_autocomplete.actors,(I)=>{return I.handle===K});if(W instanceof E)X=W[0];else X=new aZ("",K,"",new b);let Y=X,V=P8(Z.login_autocomplete,new tZ(Y)),G;return G=V[0],[new l(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,G,Z.oauth_error),i()]}else if(J instanceof gM){let K=F1((X)=>{return dJ(150,()=>{return X(new HL)})});return[Z,K]}else if(J instanceof _M){let K=P8(Z.login_autocomplete,new uj),X;return X=K[0],[new l(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,X,Z.oauth_error),i()]}else if(J instanceof FL){let K=J[0],X=P8(Z.login_autocomplete,new x4(K)),W;return W=X[0],[new l(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,W,Z.oauth_error),i()]}else if(J instanceof HL){let K=P8(Z.login_autocomplete,new oZ),X;return X=K[0],[new l(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,X,Z.oauth_error),i()]}else return[new l(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,new b),i()]}function e_(Z){let J,K=Z.auth_state;if(K instanceof C8)J=[!1,!1];else J=[K.is_admin,!0];let X=J,W,Y;return W=X[0],Y=X[1],uZ(Kh(Z.cache,Z.time_range,Z.backfill_status,W,Y),(V)=>{return new OL(V)})}function Zm(Z){let J,K=Z.auth_state;if(K instanceof C8)J=!1;else J=K.is_admin;let X=J;return uZ(Oh(Z.cache,Z.settings_page_model,X),(W)=>{return new TL(W)})}function Jm(Z){return uZ(Vh(Z.cache),(J)=>{return new hM(J)})}function Km(Z){return R(Q([]),Q([_1(Q([H("text-xl font-bold text-zinc-100 mb-4")]),Q([o0("Upload")])),D0(Q([H("text-zinc-400")]),Q([o0("Upload and manage data")]))]))}function Ym(Z){return uZ(ob(Z.backfill_page_model),(J)=>{return new PL(J)})}function Xm(Z){return Gh(Z.login_autocomplete,(J)=>{return new nJ(J)},(J)=>{return new $M(J)},(J)=>{return new vM(J)},()=>{return new gM},()=>{return new _M})}function Wm(Z){let J,K=Z.auth_state;if(K instanceof C8)J=new b;else{let{handle:W,is_admin:Y}=K;J=new L([W,Y])}let X=J;return R(Q([H("bg-zinc-950 text-zinc-300 font-mono min-h-screen")]),Q([R(Q([H("max-w-4xl mx-auto px-4 py-6 sm:px-6 sm:py-12")]),Q([(()=>{if(Z.route instanceof t5)return H0();else return Fb(X,c5(Z.backfill_status),Z.mobile_menu_open,new SL,Z.login_autocomplete,(Y)=>{return new nJ(Y)},(Y)=>{return new $M(Y)},(Y)=>{return new vM(Y)},()=>{return new gM},()=>{return new _M})})(),(()=>{let W=Z.oauth_error;if(W instanceof L){let Y=W[0];return w4(new p8,Y)}else return H0()})(),(()=>{let W=Z.route;if(W instanceof o5)return e_(Z);else if(W instanceof S5)return Zm(Z);else if(W instanceof iJ)return Jm(Z);else if(W instanceof DL)return Km(Z);else if(W instanceof pJ)return Ym(Z);else return Xm(Z)})()]))]))}function Sh(Z){let J=Z.path;if(J==="/")return new o5;else if(J==="/settings")return new S5;else if(J==="/lexicons")return new iJ;else if(J==="/upload")return new DL;else if(J==="/backfill")return new pJ;else if(J==="/onboarding")return new t5;else return new o5}function Qm(Z){return new BL(Sh(Z))}function Vm(Z){let J=Th()+"/admin/graphql",K=ck(J),X=Hb(),W,Y=Cj();if(Y instanceof E){let U=Y[0];W=[Sh(U),t_(U)]}else W=[new o5,new b];let V=W,G,I;G=V[0],I=V[1];let z=a(K,"GetCurrentSession",h(Q([])),oj),N;N=z[0];let F=a(N,"IsBackfilling",h(Q([])),rZ),D;D=F[0];let B;if(G instanceof o5){let U=a(D,"GetStatistics",h(Q([])),B5),k;k=U[0];let w=a(k,"GetSettings",h(Q([])),P1),f;f=w[0];let g=a(f,"GetActivityBuckets",h(Q([["range",c("ONE_DAY")]])),s5),d;d=g[0];let n=a(d,"GetRecentActivity",h(Q([["hours",Q1(24)]])),AZ),r;r=n[0];let X0=d0(r,X,(G0,B0,Q0)=>{return new p0(G0,B0,Q0)},()=>{return 0}),T0,b0;T0=X0[0],b0=X0[1],B=[T0,b0]}else if(G instanceof S5){let U=a(D,"GetSettings",h(Q([])),P1),k;k=U[0];let w=a(k,"GetOAuthClients",h(Q([])),i8),f;f=w[0];let g=d0(f,X,(r,X0,T0)=>{return new p0(r,X0,T0)},()=>{return 0}),d,n;d=g[0],n=g[1],B=[d,n]}else if(G instanceof iJ){let U=a(D,"GetLexicons",h(Q([])),VJ),k;k=U[0];let w=d0(k,X,(d,n,r)=>{return new p0(d,n,r)},()=>{return 0}),f,g;f=w[0],g=w[1],B=[f,g]}else B=[D,Q([])];let T=B,P,S;P=T[0],S=T[1];let q=Tk(Qm),x=G1(A(q,S));return[new l(P,X,G,new l5,Bh(),tb(),new iK,new C8,!1,Kb(),I),x]}function Ah(){let Z=Vk(Vm,o_,Wm),J=Gk(Z,"#app",void 0);if(!(J instanceof E))throw l8("let_assert",a_,"quickslice_client",123,"main","Pattern match failed, no pattern matched the value.",{value:J,start:3436,end:3485,pattern_start:3447,pattern_end:3452});return J}Ah();
+121
server/priv/validator_worker.cjs
···
··· 1 + #!/usr/bin/env node 2 + /** 3 + * Persistent validator worker for quickslice 4 + * 5 + * Protocol (JSON lines over stdin/stdout): 6 + * 7 + * Request: {"type": "run", "code": "<js code>", "record": <json object>} 8 + * Response: {"result": true|false} | {"error": "<message>"} 9 + * 10 + * Request: {"type": "check", "code": "<js code>"} 11 + * Response: {"ok": true} | {"error": "<message>"} 12 + * 13 + * Request: {"type": "ping"} 14 + * Response: {"ok": true, "pong": true} 15 + */ 16 + 17 + const readline = require('readline'); 18 + 19 + // Redirect console.log to stderr so it doesn't interfere with protocol 20 + console.log = (...args) => console.error('[log]', ...args); 21 + 22 + // Extract validator function from code 23 + function extractValidator(code) { 24 + const moduleObj = { exports: {} }; 25 + const exportsObj = moduleObj.exports; 26 + 27 + // Wrap in function to provide module/exports 28 + const wrapped = new Function('module', 'exports', code); 29 + wrapped(moduleObj, exportsObj); 30 + 31 + // Extract the validator function 32 + const m = moduleObj.exports; 33 + const validator = (m && typeof m.default === 'function') ? m.default 34 + : (typeof m === 'function') ? m 35 + : null; 36 + 37 + return validator; 38 + } 39 + 40 + // Process a single request 41 + async function processRequest(request) { 42 + try { 43 + const req = JSON.parse(request); 44 + 45 + switch (req.type) { 46 + case 'run': { 47 + // Run validator code against a record 48 + const { code, record } = req; 49 + if (!code) { 50 + return { error: 'Missing code' }; 51 + } 52 + 53 + try { 54 + const validator = extractValidator(code); 55 + if (typeof validator !== 'function') { 56 + return { error: 'Validator must export a function via module.exports or module.exports.default' }; 57 + } 58 + 59 + const result = await Promise.resolve(validator(record)); 60 + return { result: result === true }; 61 + } catch (e) { 62 + return { error: `Validator error: ${e.message}` }; 63 + } 64 + } 65 + 66 + case 'check': { 67 + // Check if code is a valid validator (without running it) 68 + const { code } = req; 69 + if (!code) { 70 + return { error: 'Missing code' }; 71 + } 72 + 73 + try { 74 + const validator = extractValidator(code); 75 + if (typeof validator !== 'function') { 76 + return { error: 'Validator must export a function via module.exports or module.exports.default' }; 77 + } 78 + return { ok: true }; 79 + } catch (e) { 80 + return { error: `Invalid validator: ${e.message}` }; 81 + } 82 + } 83 + 84 + case 'ping': { 85 + return { ok: true, pong: true }; 86 + } 87 + 88 + default: 89 + return { error: `Unknown request type: ${req.type}` }; 90 + } 91 + } catch (e) { 92 + return { error: `Failed to parse request: ${e.message}` }; 93 + } 94 + } 95 + 96 + // Main loop - read JSON lines from stdin, write responses to stdout 97 + const rl = readline.createInterface({ 98 + input: process.stdin, 99 + output: process.stdout, 100 + terminal: false 101 + }); 102 + 103 + rl.on('line', async (line) => { 104 + if (!line.trim()) return; 105 + 106 + const response = await processRequest(line); 107 + process.stdout.write(JSON.stringify(response) + '\n'); 108 + }); 109 + 110 + rl.on('close', () => { 111 + process.exit(0); 112 + }); 113 + 114 + // Handle uncaught errors gracefully 115 + process.on('uncaughtException', (e) => { 116 + console.error('[error]', e.message); 117 + }); 118 + 119 + process.on('unhandledRejection', (e) => { 120 + console.error('[error]', e); 121 + });
+57 -13
server/src/backfill.gleam
··· 28 import lib/http_client 29 import lib/oauth/did_cache 30 import logging 31 32 /// Opaque type for monotonic time 33 pub type MonotonicTime ··· 243 ParseError(String) 244 } 245 246 - /// Validate a record against lexicon schemas using pre-built context 247 fn validate_record( 248 - ctx: honk.ValidationContext, 249 collection: String, 250 json_string: String, 251 ) -> ValidationResult { ··· 254 // JSON parse failure - likely CBOR edge case, allow record through 255 ParseError("Failed to parse record JSON: " <> errors.to_string(e)) 256 Ok(record_json) -> { 257 - case honk.validate_record_with_context(ctx, collection, record_json) { 258 - Ok(_) -> Valid 259 Error(e) -> Invalid(errors.to_string(e)) 260 } 261 } 262 } 263 } 264 265 - /// Load lexicons and build validation context 266 /// Returns None on error (validation will be skipped) 267 - fn load_validation_context(conn: Executor) -> Option(honk.ValidationContext) { 268 case lexicons.get_all(conn) { 269 Error(_) -> { 270 logging.log( ··· 274 None 275 } 276 Ok(lexs) -> { 277 let lexicon_jsons = 278 lexs 279 |> list.filter_map(fn(lex) { ··· 284 }) 285 // Build context once from all lexicons 286 case honk.build_validation_context(lexicon_jsons) { 287 - Ok(ctx) -> Some(ctx) 288 Error(_) -> { 289 logging.log( 290 logging.Warning, ··· 322 pds_url: String, 323 collections: List(String), 324 conn: Executor, 325 - validation_ctx: Option(honk.ValidationContext), 326 ) -> Int { 327 let total_start = monotonic_now() 328 ··· 716 pds: String, 717 collections: List(String), 718 conn: Executor, 719 - validation_ctx: Option(honk.ValidationContext), 720 reply_to: Subject(Int), 721 ) -> Nil { 722 // Wrap in rescue to catch any crashes ··· 730 pds: String, 731 collections: List(String), 732 conn: Executor, 733 - validation_ctx: Option(honk.ValidationContext), 734 ) -> Int { 735 case 736 rescue(fn() { ··· 768 collections: List(String), 769 max_concurrent: Int, 770 conn: Executor, 771 - validation_ctx: Option(honk.ValidationContext), 772 timeout_ms: Int, 773 reply_to: Subject(Int), 774 ) -> Nil { ··· 833 pds_url: String, 834 collections: List(String), 835 conn: Executor, 836 - validation_ctx: Option(honk.ValidationContext), 837 timeout_ms: Int, 838 total: Int, 839 ) -> Int { ··· 918 collections: List(String), 919 max_concurrent_per_pds: Int, 920 conn: Executor, 921 - validation_ctx: Option(honk.ValidationContext), 922 timeout_ms: Int, 923 total: Int, 924 pds_count: Int,
··· 28 import lib/http_client 29 import lib/oauth/did_cache 30 import logging 31 + import validator 32 33 /// Opaque type for monotonic time 34 pub type MonotonicTime ··· 244 ParseError(String) 245 } 246 247 + /// Combined validation context with schema validation and custom JS validators 248 + type FullValidationContext { 249 + FullValidationContext( 250 + schema_ctx: honk.ValidationContext, 251 + validators: dict.Dict(String, String), 252 + ) 253 + } 254 + 255 + /// Validate a record against lexicon schemas and custom validators 256 fn validate_record( 257 + ctx: FullValidationContext, 258 collection: String, 259 json_string: String, 260 ) -> ValidationResult { ··· 263 // JSON parse failure - likely CBOR edge case, allow record through 264 ParseError("Failed to parse record JSON: " <> errors.to_string(e)) 265 Ok(record_json) -> { 266 + // First validate against lexicon schema 267 + case 268 + honk.validate_record_with_context( 269 + ctx.schema_ctx, 270 + collection, 271 + record_json, 272 + ) 273 + { 274 Error(e) -> Invalid(errors.to_string(e)) 275 + Ok(_) -> { 276 + // Schema valid, now check custom JS validator if one exists 277 + case dict.get(ctx.validators, collection) { 278 + Error(_) -> Valid 279 + Ok(validator_js) -> { 280 + case validator.run_validator(validator_js, json_string) { 281 + validator.Valid -> Valid 282 + validator.Invalid -> Invalid("Custom validator returned false") 283 + validator.ValidationError(err) -> 284 + Invalid("Custom validator error: " <> err) 285 + } 286 + } 287 + } 288 + } 289 } 290 } 291 } 292 } 293 294 + /// Load lexicons and build validation context with custom validators 295 /// Returns None on error (validation will be skipped) 296 + fn load_validation_context(conn: Executor) -> Option(FullValidationContext) { 297 case lexicons.get_all(conn) { 298 Error(_) -> { 299 logging.log( ··· 303 None 304 } 305 Ok(lexs) -> { 306 + // Build dict of custom validators (collection_id -> validator_js) 307 + let validators = 308 + lexs 309 + |> list.filter_map(fn(lex) { 310 + case lex.validator_js { 311 + Some(js) -> Ok(#(lex.id, js)) 312 + None -> Error(Nil) 313 + } 314 + }) 315 + |> dict.from_list 316 + 317 let lexicon_jsons = 318 lexs 319 |> list.filter_map(fn(lex) { ··· 324 }) 325 // Build context once from all lexicons 326 case honk.build_validation_context(lexicon_jsons) { 327 + Ok(schema_ctx) -> 328 + Some(FullValidationContext( 329 + schema_ctx: schema_ctx, 330 + validators: validators, 331 + )) 332 Error(_) -> { 333 logging.log( 334 logging.Warning, ··· 366 pds_url: String, 367 collections: List(String), 368 conn: Executor, 369 + validation_ctx: Option(FullValidationContext), 370 ) -> Int { 371 let total_start = monotonic_now() 372 ··· 760 pds: String, 761 collections: List(String), 762 conn: Executor, 763 + validation_ctx: Option(FullValidationContext), 764 reply_to: Subject(Int), 765 ) -> Nil { 766 // Wrap in rescue to catch any crashes ··· 774 pds: String, 775 collections: List(String), 776 conn: Executor, 777 + validation_ctx: Option(FullValidationContext), 778 ) -> Int { 779 case 780 rescue(fn() { ··· 812 collections: List(String), 813 max_concurrent: Int, 814 conn: Executor, 815 + validation_ctx: Option(FullValidationContext), 816 timeout_ms: Int, 817 reply_to: Subject(Int), 818 ) -> Nil { ··· 877 pds_url: String, 878 collections: List(String), 879 conn: Executor, 880 + validation_ctx: Option(FullValidationContext), 881 timeout_ms: Int, 882 total: Int, 883 ) -> Int { ··· 962 collections: List(String), 963 max_concurrent_per_pds: Int, 964 conn: Executor, 965 + validation_ctx: Option(FullValidationContext), 966 timeout_ms: Int, 967 total: Int, 968 pds_count: Int,
+57 -19
server/src/database/repositories/lexicons.gleam
··· 1 - import database/executor.{type DbError, type Executor, Text} 2 import database/types.{type Lexicon, Lexicon} 3 import gleam/dynamic/decode 4 5 // ===== Lexicon Functions ===== 6 7 - /// Inserts or updates a lexicon in the database 8 - pub fn insert(exec: Executor, id: String, json: String) -> Result(Nil, DbError) { 9 let now = executor.now(exec) 10 let p1 = executor.placeholder(exec, 1) 11 let p2 = executor.placeholder(exec, 2) 12 13 // Use dialect-specific UPSERT syntax 14 let sql = case executor.dialect(exec) { 15 - executor.SQLite -> "INSERT INTO lexicon (id, json, created_at) 16 - VALUES (" <> p1 <> ", " <> p2 <> ", " <> now <> ") 17 ON CONFLICT(id) DO UPDATE SET 18 json = excluded.json, 19 created_at = " <> now 20 - executor.PostgreSQL -> "INSERT INTO lexicon (id, json, created_at) 21 - VALUES (" <> p1 <> ", " <> p2 <> "::jsonb, " <> now <> ") 22 ON CONFLICT(id) DO UPDATE SET 23 json = EXCLUDED.json, 24 created_at = " <> now 25 } 26 27 - executor.exec(exec, sql, [Text(id), Text(json)]) 28 } 29 30 /// Gets a lexicon by ID 31 pub fn get(exec: Executor, id: String) -> Result(List(Lexicon), DbError) { 32 - // SQLite: both are TEXT 33 let sql = case executor.dialect(exec) { 34 - executor.SQLite -> "SELECT id, json, created_at 35 FROM lexicon 36 WHERE id = " <> executor.placeholder(exec, 1) 37 - executor.PostgreSQL -> "SELECT id, json::text, created_at::text 38 FROM lexicon 39 WHERE id = " <> executor.placeholder(exec, 1) 40 } ··· 43 use id <- decode.field(0, decode.string) 44 use json <- decode.field(1, decode.string) 45 use created_at <- decode.field(2, decode.string) 46 - decode.success(Lexicon(id:, json:, created_at:)) 47 } 48 49 executor.query(exec, sql, [Text(id)], decoder) ··· 51 52 /// Gets all lexicons from the database 53 pub fn get_all(exec: Executor) -> Result(List(Lexicon), DbError) { 54 - // SQLite: both are TEXT 55 let sql = case executor.dialect(exec) { 56 executor.SQLite -> 57 - "SELECT id, json, created_at 58 FROM lexicon 59 ORDER BY created_at DESC" 60 executor.PostgreSQL -> 61 - "SELECT id, json::text, created_at::text 62 FROM lexicon 63 ORDER BY created_at DESC" 64 } ··· 67 use id <- decode.field(0, decode.string) 68 use json <- decode.field(1, decode.string) 69 use created_at <- decode.field(2, decode.string) 70 - decode.success(Lexicon(id:, json:, created_at:)) 71 } 72 73 executor.query(exec, sql, [], decoder) ··· 152 // SQLite: use LIKE pattern matching on the JSON text 153 let sql = case executor.dialect(exec) { 154 executor.SQLite -> 155 - "SELECT id, json, created_at 156 FROM lexicon 157 WHERE json LIKE '%\"type\":\"record\"%' 158 OR json LIKE '%\"type\": \"record\"%' 159 ORDER BY id ASC" 160 executor.PostgreSQL -> 161 - "SELECT id, json::text, created_at::text 162 FROM lexicon 163 WHERE json->'defs'->'main'->>'type' = 'record' 164 ORDER BY id ASC" ··· 168 use id <- decode.field(0, decode.string) 169 use json <- decode.field(1, decode.string) 170 use created_at <- decode.field(2, decode.string) 171 - decode.success(Lexicon(id:, json:, created_at:)) 172 } 173 174 executor.query(exec, sql, [], decoder) 175 } 176 177 /// Deletes all lexicons from the database 178 pub fn delete_all(exec: Executor) -> Result(Nil, DbError) { 179 executor.exec(exec, "DELETE FROM lexicon", [])
··· 1 + import database/executor.{type DbError, type Executor, Null, Text} 2 import database/types.{type Lexicon, Lexicon} 3 import gleam/dynamic/decode 4 + import gleam/option.{type Option, None, Some} 5 6 // ===== Lexicon Functions ===== 7 8 + /// Inserts or updates a lexicon in the database with an optional JavaScript validator 9 + pub fn insert( 10 + exec: Executor, 11 + id: String, 12 + json: String, 13 + validator_js: Option(String), 14 + ) -> Result(Nil, DbError) { 15 let now = executor.now(exec) 16 let p1 = executor.placeholder(exec, 1) 17 let p2 = executor.placeholder(exec, 2) 18 + let p3 = executor.placeholder(exec, 3) 19 20 // Use dialect-specific UPSERT syntax 21 let sql = case executor.dialect(exec) { 22 + executor.SQLite -> "INSERT INTO lexicon (id, json, created_at, validator_js) 23 + VALUES (" <> p1 <> ", " <> p2 <> ", " <> now <> ", " <> p3 <> ") 24 ON CONFLICT(id) DO UPDATE SET 25 json = excluded.json, 26 + validator_js = excluded.validator_js, 27 created_at = " <> now 28 + executor.PostgreSQL -> 29 + "INSERT INTO lexicon (id, json, created_at, validator_js) 30 + VALUES (" <> p1 <> ", " <> p2 <> "::jsonb, " <> now <> ", " <> p3 <> ") 31 ON CONFLICT(id) DO UPDATE SET 32 json = EXCLUDED.json, 33 + validator_js = EXCLUDED.validator_js, 34 created_at = " <> now 35 } 36 37 + let validator_param = case validator_js { 38 + Some(js) -> Text(js) 39 + None -> Null 40 + } 41 + 42 + executor.exec(exec, sql, [Text(id), Text(json), validator_param]) 43 } 44 45 /// Gets a lexicon by ID 46 pub fn get(exec: Executor, id: String) -> Result(List(Lexicon), DbError) { 47 let sql = case executor.dialect(exec) { 48 + executor.SQLite -> "SELECT id, json, created_at, validator_js 49 FROM lexicon 50 WHERE id = " <> executor.placeholder(exec, 1) 51 + executor.PostgreSQL -> 52 + "SELECT id, json::text, created_at::text, validator_js 53 FROM lexicon 54 WHERE id = " <> executor.placeholder(exec, 1) 55 } ··· 58 use id <- decode.field(0, decode.string) 59 use json <- decode.field(1, decode.string) 60 use created_at <- decode.field(2, decode.string) 61 + use validator_js <- decode.field(3, decode.optional(decode.string)) 62 + decode.success(Lexicon(id:, json:, created_at:, validator_js:)) 63 } 64 65 executor.query(exec, sql, [Text(id)], decoder) ··· 67 68 /// Gets all lexicons from the database 69 pub fn get_all(exec: Executor) -> Result(List(Lexicon), DbError) { 70 let sql = case executor.dialect(exec) { 71 executor.SQLite -> 72 + "SELECT id, json, created_at, validator_js 73 FROM lexicon 74 ORDER BY created_at DESC" 75 executor.PostgreSQL -> 76 + "SELECT id, json::text, created_at::text, validator_js 77 FROM lexicon 78 ORDER BY created_at DESC" 79 } ··· 82 use id <- decode.field(0, decode.string) 83 use json <- decode.field(1, decode.string) 84 use created_at <- decode.field(2, decode.string) 85 + use validator_js <- decode.field(3, decode.optional(decode.string)) 86 + decode.success(Lexicon(id:, json:, created_at:, validator_js:)) 87 } 88 89 executor.query(exec, sql, [], decoder) ··· 168 // SQLite: use LIKE pattern matching on the JSON text 169 let sql = case executor.dialect(exec) { 170 executor.SQLite -> 171 + "SELECT id, json, created_at, validator_js 172 FROM lexicon 173 WHERE json LIKE '%\"type\":\"record\"%' 174 OR json LIKE '%\"type\": \"record\"%' 175 ORDER BY id ASC" 176 executor.PostgreSQL -> 177 + "SELECT id, json::text, created_at::text, validator_js 178 FROM lexicon 179 WHERE json->'defs'->'main'->>'type' = 'record' 180 ORDER BY id ASC" ··· 184 use id <- decode.field(0, decode.string) 185 use json <- decode.field(1, decode.string) 186 use created_at <- decode.field(2, decode.string) 187 + use validator_js <- decode.field(3, decode.optional(decode.string)) 188 + decode.success(Lexicon(id:, json:, created_at:, validator_js:)) 189 } 190 191 executor.query(exec, sql, [], decoder) 192 } 193 194 + /// Gets the validator JavaScript for a specific lexicon ID 195 + pub fn get_validator( 196 + exec: Executor, 197 + id: String, 198 + ) -> Result(Option(String), DbError) { 199 + let sql = 200 + "SELECT validator_js FROM lexicon WHERE id = " 201 + <> executor.placeholder(exec, 1) 202 + 203 + let decoder = { 204 + use validator_js <- decode.field(0, decode.optional(decode.string)) 205 + decode.success(validator_js) 206 + } 207 + 208 + case executor.query(exec, sql, [Text(id)], decoder) { 209 + Ok([validator_js]) -> Ok(validator_js) 210 + Ok(_) -> Ok(None) 211 + Error(err) -> Error(err) 212 + } 213 + } 214 + 215 /// Deletes all lexicons from the database 216 pub fn delete_all(exec: Executor) -> Result(Nil, DbError) { 217 executor.exec(exec, "DELETE FROM lexicon", [])
+6 -1
server/src/database/types.gleam
··· 22 23 /// A lexicon schema definition 24 pub type Lexicon { 25 - Lexicon(id: String, json: String, created_at: String) 26 } 27 28 /// Collection statistics
··· 22 23 /// A lexicon schema definition 24 pub type Lexicon { 25 + Lexicon( 26 + id: String, 27 + json: String, 28 + created_at: String, 29 + validator_js: Option(String), 30 + ) 31 } 32 33 /// Collection statistics
+303 -196
server/src/event_handler.gleam
··· 20 import pubsub 21 import stats_pubsub 22 import timestamp 23 24 /// Convert a Dynamic value (Erlang term) to JSON string 25 fn dynamic_to_json(value: Dynamic) -> String { ··· 157 ) 158 { 159 Ok(_) -> { 160 - // Check if record already exists BEFORE inserting to determine operation type 161 - let existing_record = records.get(db, uri) 162 - let is_create = case existing_record { 163 - Ok([]) -> True 164 - // Empty list means record doesn't exist 165 - Ok(_) -> False 166 - // Non-empty list means record exists 167 - Error(_) -> { 168 - // Database error - log it and treat as update to be safe 169 logging.log( 170 logging.Warning, 171 - "[jetstream] Error checking existing record for " 172 - <> uri, 173 ) 174 - False 175 - } 176 - } 177 178 - // Ensure actor exists before inserting record 179 - case 180 - actor_validator.ensure_actor_exists(db, did, plc_url) 181 - { 182 - Ok(is_new_actor) -> { 183 - // If this is a new actor, synchronously backfill all collections 184 - // This ensures subscription joins have complete data immediately 185 - // We're already in a spawned process per event, so blocking is fine 186 - case is_new_actor { 187 - True -> { 188 - // Publish stats event for new actor 189 - stats_pubsub.publish(stats_pubsub.ActorCreated) 190 - 191 - backfill.backfill_collections_for_actor( 192 - db, 193 - did, 194 - collection_ids, 195 - external_collection_ids, 196 - plc_url, 197 ) 198 } 199 - False -> Nil 200 } 201 202 - // Continue with record insertion 203 - // Validation passed, insert record 204 case 205 - records.insert( 206 db, 207 - uri, 208 - cid_value, 209 did, 210 - commit.collection, 211 - json_string, 212 ) 213 { 214 - Ok(Inserted) -> { 215 - logging.log( 216 - logging.Info, 217 - "[jetstream] " 218 - <> case is_create { 219 - True -> "create" 220 - False -> "update" 221 } 222 - <> " " 223 - <> commit.collection 224 - <> " (" 225 - <> commit.rkey 226 - <> ") " 227 - <> did, 228 - ) 229 230 - // Update activity status to success 231 - case activity_id { 232 - option.Some(id) -> { 233 - case 234 - jetstream_activity.update_status( 235 - db, 236 - id, 237 - "success", 238 - option.None, 239 - ) 240 - { 241 - Ok(_) -> 242 - // Publish activity event for real-time UI updates 243 - stats_pubsub.publish( 244 - stats_pubsub.ActivityLogged( 245 id, 246 - timestamp, 247 - commit.operation, 248 - commit.collection, 249 - did, 250 "success", 251 option.None, 252 - event_json, 253 - ), 254 - ) 255 - Error(_) -> Nil 256 } 257 - } 258 - option.None -> Nil 259 - } 260 261 - // Publish event to PubSub for GraphQL subscriptions 262 - let operation = case is_create { 263 - True -> pubsub.Create 264 - False -> pubsub.Update 265 - } 266 267 - // Convert event timestamp from microseconds to ISO8601 268 - let indexed_at = 269 - timestamp.microseconds_to_iso8601(time_us) 270 - 271 - let event = 272 - pubsub.RecordEvent( 273 - uri: uri, 274 - cid: cid_value, 275 - did: did, 276 - collection: commit.collection, 277 - value: json_string, 278 - indexed_at: indexed_at, 279 - operation: operation, 280 - ) 281 282 - pubsub.publish(event) 283 284 - // Publish stats event for real-time stats updates 285 - case is_create { 286 - True -> 287 - stats_pubsub.publish( 288 - stats_pubsub.RecordCreated, 289 ) 290 - False -> Nil 291 - } 292 - } 293 - Ok(Skipped) -> { 294 - logging.log( 295 - logging.Info, 296 - "[jetstream] skipped (duplicate CID) " 297 - <> commit.collection 298 - <> " (" 299 - <> commit.rkey 300 - <> ") " 301 - <> did, 302 - ) 303 304 - // Update activity status to success (but don't increment counters) 305 - case activity_id { 306 - option.Some(id) -> { 307 - case 308 - jetstream_activity.update_status( 309 - db, 310 - id, 311 - "success", 312 - option.Some("Skipped: duplicate CID"), 313 - ) 314 - { 315 - Ok(_) -> 316 - // Publish activity event for real-time UI updates 317 - stats_pubsub.publish( 318 - stats_pubsub.ActivityLogged( 319 id, 320 - timestamp, 321 - commit.operation, 322 - commit.collection, 323 - did, 324 "success", 325 option.Some("Skipped: duplicate CID"), 326 - event_json, 327 - ), 328 - ) 329 - Error(_) -> Nil 330 } 331 } 332 - option.None -> Nil 333 } 334 - // Don't publish RecordCreated event - record wasn't actually created 335 } 336 - Error(err) -> { 337 logging.log( 338 logging.Error, 339 - "[jetstream] Failed to insert record " 340 <> uri 341 <> ": " 342 - <> string.inspect(err), 343 ) 344 345 // Update activity status to error ··· 351 id, 352 "error", 353 option.Some( 354 - "Database insert failed: " 355 - <> string.inspect(err), 356 ), 357 ) 358 { 359 Ok(_) -> { 360 let error_msg = 361 - "Database insert failed: " 362 - <> string.inspect(err) 363 // Publish activity event for real-time UI updates 364 stats_pubsub.publish( 365 stats_pubsub.ActivityLogged( ··· 382 } 383 } 384 } 385 - Error(actor_err) -> { 386 - logging.log( 387 - logging.Error, 388 - "[jetstream] Failed to validate/create actor for " 389 - <> uri 390 - <> ": " 391 - <> actor_err, 392 - ) 393 - 394 - // Update activity status to error 395 - case activity_id { 396 - option.Some(id) -> { 397 - case 398 - jetstream_activity.update_status( 399 - db, 400 - id, 401 - "error", 402 - option.Some( 403 - "Actor validation failed: " <> actor_err, 404 - ), 405 - ) 406 - { 407 - Ok(_) -> { 408 - let error_msg = 409 - "Actor validation failed: " <> actor_err 410 - // Publish activity event for real-time UI updates 411 - stats_pubsub.publish( 412 - stats_pubsub.ActivityLogged( 413 - id, 414 - timestamp, 415 - commit.operation, 416 - commit.collection, 417 - did, 418 - "error", 419 - option.Some(error_msg), 420 - event_json, 421 - ), 422 - ) 423 - } 424 - Error(_) -> Nil 425 - } 426 - } 427 - option.None -> Nil 428 - } 429 - } 430 } 431 } 432 Error(validation_error) -> {
··· 20 import pubsub 21 import stats_pubsub 22 import timestamp 23 + import validator 24 25 /// Convert a Dynamic value (Erlang term) to JSON string 26 fn dynamic_to_json(value: Dynamic) -> String { ··· 158 ) 159 { 160 Ok(_) -> { 161 + // Check for custom JavaScript validator 162 + let custom_validation_result = { 163 + // Find the lexicon for this collection 164 + let maybe_lexicon = 165 + list.find(lexicons, fn(lex) { 166 + lex.id == commit.collection 167 + }) 168 + 169 + case maybe_lexicon { 170 + Ok(lex) -> 171 + case lex.validator_js { 172 + option.Some(validator_js) -> { 173 + // Run the custom validator 174 + logging.log( 175 + logging.Info, 176 + "[jetstream] Running custom validator for " 177 + <> commit.collection, 178 + ) 179 + case 180 + validator.run_validator( 181 + validator_js, 182 + json_string, 183 + ) 184 + { 185 + validator.Valid -> { 186 + logging.log( 187 + logging.Info, 188 + "[jetstream] Validator returned Valid", 189 + ) 190 + Ok(Nil) 191 + } 192 + validator.Invalid -> { 193 + logging.log( 194 + logging.Warning, 195 + "[jetstream] Validator returned Invalid", 196 + ) 197 + Error( 198 + "Custom validator returned false for " 199 + <> commit.collection, 200 + ) 201 + } 202 + validator.ValidationError(err) -> { 203 + logging.log( 204 + logging.Error, 205 + "[jetstream] Validator error: " <> err, 206 + ) 207 + Error("Custom validator error: " <> err) 208 + } 209 + } 210 + } 211 + option.None -> { 212 + logging.log( 213 + logging.Debug, 214 + "[jetstream] No validator_js for " 215 + <> commit.collection, 216 + ) 217 + Ok(Nil) 218 + } 219 + } 220 + Error(_) -> { 221 + logging.log( 222 + logging.Debug, 223 + "[jetstream] Lexicon not found for " 224 + <> commit.collection, 225 + ) 226 + Ok(Nil) 227 + } 228 + } 229 + } 230 + 231 + case custom_validation_result { 232 + Error(validator_error) -> { 233 logging.log( 234 logging.Warning, 235 + "[jetstream] Custom validation failed for " 236 + <> uri 237 + <> ": " 238 + <> validator_error, 239 ) 240 241 + // Update activity status to validation_error 242 + case activity_id { 243 + option.Some(id) -> { 244 + let _ = 245 + jetstream_activity.update_status( 246 + db, 247 + id, 248 + "validation_error", 249 + option.Some(validator_error), 250 + ) 251 + Nil 252 + } 253 + option.None -> Nil 254 + } 255 + } 256 + Ok(_) -> { 257 + // Check if record already exists BEFORE inserting to determine operation type 258 + let existing_record = records.get(db, uri) 259 + let is_create = case existing_record { 260 + Ok([]) -> True 261 + // Empty list means record doesn't exist 262 + Ok(_) -> False 263 + // Non-empty list means record exists 264 + Error(_) -> { 265 + // Database error - log it and treat as update to be safe 266 + logging.log( 267 + logging.Warning, 268 + "[jetstream] Error checking existing record for " 269 + <> uri, 270 ) 271 + False 272 } 273 } 274 275 + // Ensure actor exists before inserting record 276 case 277 + actor_validator.ensure_actor_exists( 278 db, 279 did, 280 + plc_url, 281 ) 282 { 283 + Ok(is_new_actor) -> { 284 + // If this is a new actor, synchronously backfill all collections 285 + // This ensures subscription joins have complete data immediately 286 + // We're already in a spawned process per event, so blocking is fine 287 + case is_new_actor { 288 + True -> { 289 + // Publish stats event for new actor 290 + stats_pubsub.publish( 291 + stats_pubsub.ActorCreated, 292 + ) 293 + 294 + backfill.backfill_collections_for_actor( 295 + db, 296 + did, 297 + collection_ids, 298 + external_collection_ids, 299 + plc_url, 300 + ) 301 } 302 + False -> Nil 303 + } 304 305 + // Continue with record insertion 306 + // Validation passed, insert record 307 + case 308 + records.insert( 309 + db, 310 + uri, 311 + cid_value, 312 + did, 313 + commit.collection, 314 + json_string, 315 + ) 316 + { 317 + Ok(Inserted) -> { 318 + logging.log( 319 + logging.Info, 320 + "[jetstream] " 321 + <> case is_create { 322 + True -> "create" 323 + False -> "update" 324 + } 325 + <> " " 326 + <> commit.collection 327 + <> " (" 328 + <> commit.rkey 329 + <> ") " 330 + <> did, 331 + ) 332 + 333 + // Update activity status to success 334 + case activity_id { 335 + option.Some(id) -> { 336 + case 337 + jetstream_activity.update_status( 338 + db, 339 id, 340 "success", 341 option.None, 342 + ) 343 + { 344 + Ok(_) -> 345 + // Publish activity event for real-time UI updates 346 + stats_pubsub.publish( 347 + stats_pubsub.ActivityLogged( 348 + id, 349 + timestamp, 350 + commit.operation, 351 + commit.collection, 352 + did, 353 + "success", 354 + option.None, 355 + event_json, 356 + ), 357 + ) 358 + Error(_) -> Nil 359 + } 360 + } 361 + option.None -> Nil 362 } 363 364 + // Publish event to PubSub for GraphQL subscriptions 365 + let operation = case is_create { 366 + True -> pubsub.Create 367 + False -> pubsub.Update 368 + } 369 370 + // Convert event timestamp from microseconds to ISO8601 371 + let indexed_at = 372 + timestamp.microseconds_to_iso8601(time_us) 373 + 374 + let event = 375 + pubsub.RecordEvent( 376 + uri: uri, 377 + cid: cid_value, 378 + did: did, 379 + collection: commit.collection, 380 + value: json_string, 381 + indexed_at: indexed_at, 382 + operation: operation, 383 + ) 384 385 + pubsub.publish(event) 386 387 + // Publish stats event for real-time stats updates 388 + case is_create { 389 + True -> 390 + stats_pubsub.publish( 391 + stats_pubsub.RecordCreated, 392 + ) 393 + False -> Nil 394 + } 395 + } 396 + Ok(Skipped) -> { 397 + logging.log( 398 + logging.Info, 399 + "[jetstream] skipped (duplicate CID) " 400 + <> commit.collection 401 + <> " (" 402 + <> commit.rkey 403 + <> ") " 404 + <> did, 405 ) 406 407 + // Update activity status to success (but don't increment counters) 408 + case activity_id { 409 + option.Some(id) -> { 410 + case 411 + jetstream_activity.update_status( 412 + db, 413 id, 414 "success", 415 option.Some("Skipped: duplicate CID"), 416 + ) 417 + { 418 + Ok(_) -> 419 + // Publish activity event for real-time UI updates 420 + stats_pubsub.publish( 421 + stats_pubsub.ActivityLogged( 422 + id, 423 + timestamp, 424 + commit.operation, 425 + commit.collection, 426 + did, 427 + "success", 428 + option.Some( 429 + "Skipped: duplicate CID", 430 + ), 431 + event_json, 432 + ), 433 + ) 434 + Error(_) -> Nil 435 + } 436 + } 437 + option.None -> Nil 438 + } 439 + // Don't publish RecordCreated event - record wasn't actually created 440 + } 441 + Error(err) -> { 442 + logging.log( 443 + logging.Error, 444 + "[jetstream] Failed to insert record " 445 + <> uri 446 + <> ": " 447 + <> string.inspect(err), 448 + ) 449 + 450 + // Update activity status to error 451 + case activity_id { 452 + option.Some(id) -> { 453 + case 454 + jetstream_activity.update_status( 455 + db, 456 + id, 457 + "error", 458 + option.Some( 459 + "Database insert failed: " 460 + <> string.inspect(err), 461 + ), 462 + ) 463 + { 464 + Ok(_) -> { 465 + let error_msg = 466 + "Database insert failed: " 467 + <> string.inspect(err) 468 + // Publish activity event for real-time UI updates 469 + stats_pubsub.publish( 470 + stats_pubsub.ActivityLogged( 471 + id, 472 + timestamp, 473 + commit.operation, 474 + commit.collection, 475 + did, 476 + "error", 477 + option.Some(error_msg), 478 + event_json, 479 + ), 480 + ) 481 + } 482 + Error(_) -> Nil 483 + } 484 + } 485 + option.None -> Nil 486 } 487 } 488 } 489 } 490 + Error(actor_err) -> { 491 logging.log( 492 logging.Error, 493 + "[jetstream] Failed to validate/create actor for " 494 <> uri 495 <> ": " 496 + <> actor_err, 497 ) 498 499 // Update activity status to error ··· 505 id, 506 "error", 507 option.Some( 508 + "Actor validation failed: " <> actor_err, 509 ), 510 ) 511 { 512 Ok(_) -> { 513 let error_msg = 514 + "Actor validation failed: " <> actor_err 515 // Publish activity event for real-time UI updates 516 stats_pubsub.publish( 517 stats_pubsub.ActivityLogged( ··· 534 } 535 } 536 } 537 } 538 } 539 Error(validation_error) -> {
+46 -2
server/src/graphql/lexicon/mutations.gleam
··· 11 import database/repositories/lexicons 12 import database/repositories/records 13 import database/repositories/reports 14 import dpop 15 import gleam/dict 16 import gleam/dynamic ··· 30 import swell/schema 31 import swell/value 32 import timestamp 33 34 /// Context for mutation execution 35 pub type MutationContext { ··· 170 Ok(AuthenticatedSession(user_info: user_info, session: session)) 171 } 172 173 // โ”€โ”€โ”€ Private Blob Helpers โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ 174 175 /// Convert GraphQL value to JSON value (not string) ··· 728 let record_json_value = graphql_value_to_json_value(transformed_input) 729 let record_json_string = json.to_string(record_json_value) 730 731 - // Validate against lexicon 732 use _ <- result.try( 733 honk.validate_record(all_lex_jsons, collection, record_json_value) 734 |> result.map_error(fn(err) { ··· 736 }), 737 ) 738 739 // Call createRecord via AT Protocol 740 let create_body = 741 case rkey { ··· 874 let record_json_value = graphql_value_to_json_value(transformed_input) 875 let record_json_string = json.to_string(record_json_value) 876 877 - // Validate against lexicon 878 use _ <- result.try( 879 honk.validate_record(all_lex_jsons, collection, record_json_value) 880 |> result.map_error(fn(err) { ··· 882 }), 883 ) 884 885 // Call putRecord via AT Protocol 886 let update_body = 887 json.object([
··· 11 import database/repositories/lexicons 12 import database/repositories/records 13 import database/repositories/reports 14 + import database/types.{type Lexicon} 15 import dpop 16 import gleam/dict 17 import gleam/dynamic ··· 31 import swell/schema 32 import swell/value 33 import timestamp 34 + import validator 35 36 /// Context for mutation execution 37 pub type MutationContext { ··· 172 Ok(AuthenticatedSession(user_info: user_info, session: session)) 173 } 174 175 + // โ”€โ”€โ”€ Private Validator Helper โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ 176 + 177 + /// Run custom JavaScript validator for a collection if one exists 178 + fn run_custom_validator( 179 + lexicon_records: List(Lexicon), 180 + collection: String, 181 + record_json_string: String, 182 + ) -> Result(Nil, String) { 183 + // Find the lexicon for this collection and check if it has a custom validator 184 + let validator_js = 185 + lexicon_records 186 + |> list.find(fn(lex) { lex.id == collection }) 187 + |> result.map(fn(lex) { lex.validator_js }) 188 + |> result.unwrap(option.None) 189 + 190 + case validator_js { 191 + option.None -> Ok(Nil) 192 + option.Some(js) -> { 193 + case validator.run_validator(js, record_json_string) { 194 + validator.Valid -> Ok(Nil) 195 + validator.Invalid -> Error("Custom validation failed") 196 + validator.ValidationError(err) -> 197 + Error("Custom validator error: " <> err) 198 + } 199 + } 200 + } 201 + } 202 + 203 // โ”€โ”€โ”€ Private Blob Helpers โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ 204 205 /// Convert GraphQL value to JSON value (not string) ··· 758 let record_json_value = graphql_value_to_json_value(transformed_input) 759 let record_json_string = json.to_string(record_json_value) 760 761 + // Validate against lexicon schema 762 use _ <- result.try( 763 honk.validate_record(all_lex_jsons, collection, record_json_value) 764 |> result.map_error(fn(err) { ··· 766 }), 767 ) 768 769 + // Run custom JavaScript validator if one exists for this collection 770 + use _ <- result.try(run_custom_validator( 771 + all_lexicon_records, 772 + collection, 773 + record_json_string, 774 + )) 775 + 776 // Call createRecord via AT Protocol 777 let create_body = 778 case rkey { ··· 911 let record_json_value = graphql_value_to_json_value(transformed_input) 912 let record_json_string = json.to_string(record_json_value) 913 914 + // Validate against lexicon schema 915 use _ <- result.try( 916 honk.validate_record(all_lex_jsons, collection, record_json_value) 917 |> result.map_error(fn(err) { ··· 919 }), 920 ) 921 922 + // Run custom JavaScript validator if one exists for this collection 923 + use _ <- result.try(run_custom_validator( 924 + all_lexicon_records, 925 + collection, 926 + record_json_string, 927 + )) 928 + 929 // Call putRecord via AT Protocol 930 let update_body = 931 json.object([
+71 -14
server/src/importer.gleam
··· 4 import gleam/dynamic/decode 5 import gleam/json 6 import gleam/list 7 import gleam/result 8 import gleam/string 9 import honk 10 import logging 11 import simplifile 12 import zip_helper 13 14 pub type ImportStats { ··· 235 |> string.join(", ") 236 } 237 238 /// Imports a single lexicon file (with validation) 239 pub fn import_single_lexicon( 240 conn: Executor, ··· 247 248 case parse_and_validate_lexicon(file_path) { 249 Ok(#(lexicon_id, json_content)) -> { 250 - case lexicons.insert(conn, lexicon_id, json_content) { 251 - Ok(_) -> { 252 - logging.log(logging.Info, "[import] " <> lexicon_id) 253 - Ok(lexicon_id) 254 - } 255 - Error(_) -> { 256 - let err_msg = file_name <> ": Database insertion failed" 257 logging.log(logging.Error, "[import] " <> err_msg) 258 Error(err_msg) 259 } 260 } 261 } 262 Error(err) -> { ··· 281 282 case extract_lexicon_id(json_content) { 283 Ok(lexicon_id) -> { 284 - case lexicons.insert(conn, lexicon_id, json_content) { 285 - Ok(_) -> { 286 - logging.log(logging.Info, "[import] " <> lexicon_id) 287 - Ok(lexicon_id) 288 - } 289 - Error(_) -> { 290 - let err_msg = file_name <> ": Database insertion failed" 291 logging.log(logging.Error, "[import] " <> err_msg) 292 Error(err_msg) 293 } 294 } 295 } 296 Error(err) -> {
··· 4 import gleam/dynamic/decode 5 import gleam/json 6 import gleam/list 7 + import gleam/option.{type Option, None, Some} 8 import gleam/result 9 import gleam/string 10 import honk 11 import logging 12 import simplifile 13 + import validator 14 import zip_helper 15 16 pub type ImportStats { ··· 237 |> string.join(", ") 238 } 239 240 + /// Gets the corresponding .js validator file path for a .json lexicon file 241 + /// Returns Ok(Some(content)) if valid validator exists, Ok(None) if no validator file, 242 + /// or Error(reason) if validator file exists but is invalid 243 + fn get_validator_js_for_lexicon( 244 + json_file_path: String, 245 + ) -> Result(Option(String), String) { 246 + // Replace .json extension with .js 247 + let js_path = string.replace(json_file_path, ".json", ".js") 248 + 249 + case simplifile.read(js_path) { 250 + Ok(content) -> { 251 + // Validate the JavaScript before accepting it 252 + case validator.validate_script(content) { 253 + Ok(_) -> Ok(Some(content)) 254 + Error(err) -> Error("Invalid validator script: " <> err) 255 + } 256 + } 257 + Error(_) -> Ok(None) 258 + } 259 + } 260 + 261 /// Imports a single lexicon file (with validation) 262 pub fn import_single_lexicon( 263 conn: Executor, ··· 270 271 case parse_and_validate_lexicon(file_path) { 272 Ok(#(lexicon_id, json_content)) -> { 273 + // Check for corresponding .js validator file 274 + case get_validator_js_for_lexicon(file_path) { 275 + Error(validator_err) -> { 276 + let err_msg = file_name <> ": " <> validator_err 277 logging.log(logging.Error, "[import] " <> err_msg) 278 Error(err_msg) 279 } 280 + Ok(validator_js) -> { 281 + case lexicons.insert(conn, lexicon_id, json_content, validator_js) { 282 + Ok(_) -> { 283 + let validator_note = case validator_js { 284 + Some(_) -> " (with validator)" 285 + None -> "" 286 + } 287 + logging.log( 288 + logging.Info, 289 + "[import] " <> lexicon_id <> validator_note, 290 + ) 291 + Ok(lexicon_id) 292 + } 293 + Error(_) -> { 294 + let err_msg = file_name <> ": Database insertion failed" 295 + logging.log(logging.Error, "[import] " <> err_msg) 296 + Error(err_msg) 297 + } 298 + } 299 + } 300 } 301 } 302 Error(err) -> { ··· 321 322 case extract_lexicon_id(json_content) { 323 Ok(lexicon_id) -> { 324 + // Check for corresponding .js validator file 325 + case get_validator_js_for_lexicon(file_path) { 326 + Error(validator_err) -> { 327 + let err_msg = file_name <> ": " <> validator_err 328 logging.log(logging.Error, "[import] " <> err_msg) 329 Error(err_msg) 330 } 331 + Ok(validator_js) -> { 332 + case lexicons.insert(conn, lexicon_id, json_content, validator_js) { 333 + Ok(_) -> { 334 + let validator_note = case validator_js { 335 + Some(_) -> " (with validator)" 336 + None -> "" 337 + } 338 + logging.log( 339 + logging.Info, 340 + "[import] " <> lexicon_id <> validator_note, 341 + ) 342 + Ok(lexicon_id) 343 + } 344 + Error(_) -> { 345 + let err_msg = file_name <> ": Database insertion failed" 346 + logging.log(logging.Error, "[import] " <> err_msg) 347 + Error(err_msg) 348 + } 349 + } 350 + } 351 } 352 } 353 Error(err) -> {
+22
server/src/server.gleam
··· 40 import mist 41 import pubsub 42 import stats_pubsub 43 import wisp 44 import wisp/wisp_mist 45 ··· 94 stats_pubsub.start() 95 logging.log(logging.Info, "[server] Stats PubSub registry initialized") 96 97 // Start activity cleanup scheduler 98 case activity_cleanup.start(db) { 99 Ok(_cleanup_subject) ->
··· 40 import mist 41 import pubsub 42 import stats_pubsub 43 + import validator 44 import wisp 45 import wisp/wisp_mist 46 ··· 95 stats_pubsub.start() 96 logging.log(logging.Info, "[server] Stats PubSub registry initialized") 97 98 + // Start persistent validator worker for fast JavaScript validation 99 + // If Node.js is not available, start_worker logs a warning and validation is disabled 100 + case validator.start_worker() { 101 + Ok(_) -> 102 + case validator.is_node_available() { 103 + True -> 104 + logging.log( 105 + logging.Info, 106 + "[server] Validator worker started (persistent Node.js process)", 107 + ) 108 + False -> 109 + // Warning already logged by start_worker 110 + Nil 111 + } 112 + Error(err) -> 113 + logging.log( 114 + logging.Warning, 115 + "[server] Failed to start validator worker: " <> err, 116 + ) 117 + } 118 + 119 // Start activity cleanup scheduler 120 case activity_cleanup.start(db) { 121 Ok(_cleanup_subject) ->
+74
server/src/validator.gleam
···
··· 1 + /// JavaScript validator execution module 2 + /// Allows running JavaScript validation functions against records during ingestion 3 + /// Result of running a validator 4 + pub type ValidatorResult { 5 + /// Validator returned true - record is valid 6 + Valid 7 + /// Validator returned false - record is invalid 8 + Invalid 9 + /// Validator failed to execute 10 + ValidationError(String) 11 + } 12 + 13 + /// Start the persistent validator worker process 14 + /// This keeps a Node.js process running for fast validation 15 + /// Returns Ok(Nil) if started successfully, Error if already running or failed 16 + pub fn start_worker() -> Result(Nil, String) { 17 + case do_start_worker() { 18 + Ok(_) -> Ok(Nil) 19 + Error(reason) -> Error(reason) 20 + } 21 + } 22 + 23 + /// Stop the validator worker process 24 + pub fn stop_worker() -> Nil { 25 + do_stop_worker() 26 + } 27 + 28 + @external(erlang, "validator_ffi", "start_worker") 29 + fn do_start_worker() -> Result(Nil, String) 30 + 31 + @external(erlang, "validator_ffi", "stop_worker") 32 + fn do_stop_worker() -> Nil 33 + 34 + /// Run a JavaScript validator against a record JSON 35 + /// The validator_js should export a default function that takes the record object 36 + /// and returns true if valid, false if invalid 37 + pub fn run_validator( 38 + validator_js: String, 39 + record_json: String, 40 + ) -> ValidatorResult { 41 + case do_run_validator(validator_js, record_json) { 42 + Ok(True) -> Valid 43 + Ok(False) -> Invalid 44 + Error(reason) -> ValidationError(reason) 45 + } 46 + } 47 + 48 + /// Validate that a JavaScript validator script is well-formed and can be executed 49 + /// Tests the validator with an empty object {} to ensure it returns a boolean 50 + /// Returns Ok(Nil) if valid, Error(reason) if invalid 51 + pub fn validate_script(validator_js: String) -> Result(Nil, String) { 52 + do_validate_script(validator_js) 53 + } 54 + 55 + /// FFI to Erlang validator runner 56 + @external(erlang, "validator_ffi", "run_validator") 57 + fn do_run_validator( 58 + validator_js: String, 59 + record_json: String, 60 + ) -> Result(Bool, String) 61 + 62 + /// FFI to Erlang validator script checker 63 + @external(erlang, "validator_ffi", "validate_script") 64 + fn do_validate_script(validator_js: String) -> Result(Nil, String) 65 + 66 + /// Check if Node.js is available on the system 67 + /// Returns True if node is available, False otherwise 68 + /// The result is cached after the first check 69 + pub fn is_node_available() -> Bool { 70 + do_is_node_available() 71 + } 72 + 73 + @external(erlang, "validator_ffi", "is_node_available") 74 + fn do_is_node_available() -> Bool
+152
server/src/validator_ffi.erl
···
··· 1 + -module(validator_ffi). 2 + -export([run_validator/2, validate_script/1, start_worker/0, stop_worker/0]). 3 + -export([is_node_available/0]). 4 + 5 + -define(NODE_AVAILABLE_KEY, {?MODULE, node_available}). 6 + 7 + %% Run a JavaScript validator against a record 8 + %% validator_js: The JavaScript code (default export must be a function returning boolean) 9 + %% record_json: The JSON string of the record to validate 10 + %% Returns: {ok, true} | {ok, false} | {error, Reason} 11 + run_validator(ValidatorJs, RecordJson) -> 12 + case is_node_available() of 13 + false -> 14 + %% Node.js not available, skip validation (treat as valid) 15 + {ok, true}; 16 + true -> 17 + case try_worker_validate(ValidatorJs, RecordJson) of 18 + {ok, Result} -> {ok, Result}; 19 + {error, _} = Err -> Err; 20 + worker_not_running -> 21 + %% Worker not running, skip validation (treat as valid) 22 + {ok, true} 23 + end 24 + end. 25 + 26 + %% Validate that a JavaScript validator script is well-formed 27 + %% Tests that the script exports a function 28 + %% Returns: {ok, nil} | {error, Reason} 29 + validate_script(ValidatorJs) -> 30 + case is_node_available() of 31 + false -> 32 + %% Node.js not available, skip validation 33 + {ok, nil}; 34 + true -> 35 + case try_worker_check(ValidatorJs) of 36 + {ok, nil} -> {ok, nil}; 37 + {error, _} = Err -> Err; 38 + worker_not_running -> 39 + %% Worker not running, skip validation 40 + {ok, nil} 41 + end 42 + end. 43 + 44 + %% =================================================================== 45 + %% Worker-based validation (fast path) 46 + %% =================================================================== 47 + 48 + try_worker_validate(ValidatorJs, RecordJson) -> 49 + case whereis(validator_worker) of 50 + undefined -> worker_not_running; 51 + _Pid -> 52 + try 53 + validator_worker:run_validator(ValidatorJs, RecordJson) 54 + catch 55 + exit:{noproc, _} -> worker_not_running; 56 + exit:{timeout, _} -> {error, <<"Validator timeout">>}; 57 + _:_ -> worker_not_running 58 + end 59 + end. 60 + 61 + try_worker_check(ValidatorJs) -> 62 + case whereis(validator_worker) of 63 + undefined -> worker_not_running; 64 + _Pid -> 65 + try 66 + validator_worker:check_script(ValidatorJs) 67 + catch 68 + exit:{noproc, _} -> worker_not_running; 69 + exit:{timeout, _} -> {error, <<"Validator timeout">>}; 70 + _:_ -> worker_not_running 71 + end 72 + end. 73 + 74 + %% =================================================================== 75 + %% Worker lifecycle management 76 + %% =================================================================== 77 + 78 + %% Start the persistent validator worker 79 + %% First checks if Node.js is available, logs warning and returns ok if not 80 + start_worker() -> 81 + case check_and_cache_node_availability() of 82 + false -> 83 + %% Node.js not available - already logged warning in check 84 + {ok, nil}; 85 + true -> 86 + case whereis(validator_worker) of 87 + undefined -> 88 + case validator_worker:start_link() of 89 + {ok, _Pid} -> {ok, nil}; 90 + {error, {already_started, _Pid}} -> {ok, nil}; 91 + {error, Reason} -> {error, iolist_to_binary(io_lib:format("~p", [Reason]))} 92 + end; 93 + _Pid -> 94 + {ok, nil} 95 + end 96 + end. 97 + 98 + %% Stop the persistent validator worker 99 + stop_worker() -> 100 + case whereis(validator_worker) of 101 + undefined -> nil; 102 + _Pid -> 103 + try 104 + validator_worker:stop(), 105 + nil 106 + catch 107 + _:_ -> nil 108 + end 109 + end. 110 + 111 + %% =================================================================== 112 + %% Node.js availability checking 113 + %% =================================================================== 114 + 115 + %% Check if Node.js is available (cached result) 116 + %% Returns true if available, false otherwise 117 + is_node_available() -> 118 + try 119 + persistent_term:get(?NODE_AVAILABLE_KEY) 120 + catch 121 + error:badarg -> 122 + %% Not yet checked, do the check now 123 + check_and_cache_node_availability() 124 + end. 125 + 126 + %% Check if Node.js is available and cache the result 127 + %% Logs a warning if not available 128 + check_and_cache_node_availability() -> 129 + Result = do_check_node_available(), 130 + persistent_term:put(?NODE_AVAILABLE_KEY, Result), 131 + case Result of 132 + false -> 133 + logger:warning(<<"[validator] Node.js not found - custom validators are disabled. Install Node.js to enable validation.">>); 134 + true -> 135 + ok 136 + end, 137 + Result. 138 + 139 + %% Actually check if node is available by running 'node --version' 140 + do_check_node_available() -> 141 + %% Use 'which node' or 'node --version' to check availability 142 + %% os:cmd returns "" if the command isn't found (depending on shell) 143 + %% We'll try 'node --version' and check if output starts with 'v' 144 + try 145 + Output = os:cmd("node --version 2>/dev/null"), 146 + case string:trim(Output) of 147 + [$v | _] -> true; %% Version string like "v18.0.0" 148 + _ -> false 149 + end 150 + catch 151 + _:_ -> false 152 + end.
+194
server/src/validator_worker.erl
···
··· 1 + -module(validator_worker). 2 + -behaviour(gen_server). 3 + 4 + %% API 5 + -export([start_link/0, start_link/1, stop/0]). 6 + -export([run_validator/2, check_script/1]). 7 + 8 + %% gen_server callbacks 9 + -export([init/1, handle_call/3, handle_cast/2, handle_info/2, terminate/2]). 10 + 11 + -define(SERVER, ?MODULE). 12 + -define(TIMEOUT, 30000). 13 + 14 + -record(state, { 15 + port :: port() | undefined, 16 + script_path :: string() 17 + }). 18 + 19 + %% =================================================================== 20 + %% API 21 + %% =================================================================== 22 + 23 + start_link() -> 24 + start_link(default_script_path()). 25 + 26 + start_link(ScriptPath) -> 27 + gen_server:start_link({local, ?SERVER}, ?MODULE, [ScriptPath], []). 28 + 29 + stop() -> 30 + gen_server:stop(?SERVER). 31 + 32 + %% Run a validator against a record 33 + %% Returns: {ok, true} | {ok, false} | {error, Reason} 34 + -spec run_validator(binary() | string(), binary() | string()) -> {ok, boolean()} | {error, binary()}. 35 + run_validator(JsCode, RecordJson) -> 36 + gen_server:call(?SERVER, {run, to_binary(JsCode), to_binary(RecordJson)}, ?TIMEOUT). 37 + 38 + %% Check if a script is a valid validator 39 + -spec check_script(binary() | string()) -> {ok, nil} | {error, binary()}. 40 + check_script(JsCode) -> 41 + gen_server:call(?SERVER, {check, to_binary(JsCode)}, ?TIMEOUT). 42 + 43 + %% =================================================================== 44 + %% gen_server callbacks 45 + %% =================================================================== 46 + 47 + init([ScriptPath]) -> 48 + process_flag(trap_exit, true), 49 + State = #state{script_path = ScriptPath, port = undefined}, 50 + {ok, ensure_port(State)}. 51 + 52 + handle_call({run, JsCode, RecordJson}, _From, State0) -> 53 + State = ensure_port(State0), 54 + %% Parse the record JSON to embed it in the request 55 + try json:decode(RecordJson) of 56 + Record when is_map(Record); is_list(Record) -> 57 + Request = json:encode(#{<<"type">> => <<"run">>, <<"code">> => JsCode, <<"record">> => Record}), 58 + case send_request(State#state.port, iolist_to_binary(Request)) of 59 + {ok, #{<<"result">> := Result}} -> 60 + {reply, {ok, Result}, State}; 61 + {ok, #{<<"error">> := Reason}} -> 62 + {reply, {error, Reason}, State}; 63 + {error, Reason} -> 64 + {reply, {error, Reason}, restart_port(State)} 65 + end; 66 + _ -> 67 + {reply, {error, <<"Invalid JSON">>}, State} 68 + catch 69 + error:_ -> 70 + {reply, {error, <<"Invalid JSON">>}, State} 71 + end; 72 + 73 + handle_call({check, JsCode}, _From, State0) -> 74 + State = ensure_port(State0), 75 + Request = json:encode(#{<<"type">> => <<"check">>, <<"code">> => JsCode}), 76 + case send_request(State#state.port, iolist_to_binary(Request)) of 77 + {ok, #{<<"ok">> := true}} -> 78 + {reply, {ok, nil}, State}; 79 + {ok, #{<<"error">> := Reason}} -> 80 + {reply, {error, Reason}, State}; 81 + {error, Reason} -> 82 + {reply, {error, Reason}, restart_port(State)} 83 + end; 84 + 85 + handle_call(_Request, _From, State) -> 86 + {reply, {error, <<"Unknown request">>}, State}. 87 + 88 + handle_cast(_Msg, State) -> 89 + {noreply, State}. 90 + 91 + handle_info({Port, {exit_status, Status}}, #state{port = Port} = State) -> 92 + logger:warning("[validator_worker] Node process exited with status ~p", [Status]), 93 + {noreply, State#state{port = undefined}}; 94 + 95 + handle_info({'EXIT', Port, Reason}, #state{port = Port} = State) -> 96 + logger:warning("[validator_worker] Port exited: ~p", [Reason]), 97 + {noreply, State#state{port = undefined}}; 98 + 99 + handle_info({Port, {data, {eol, Data}}}, #state{port = Port} = State) -> 100 + %% Log stderr output from validator 101 + case Data of 102 + <<"[log]", Rest/binary>> -> 103 + logger:info(unicode:characters_to_binary(["[validator] ", Rest])); 104 + <<"[error]", Rest/binary>> -> 105 + logger:warning(unicode:characters_to_binary(["[validator] ", Rest])); 106 + _ -> 107 + ok 108 + end, 109 + {noreply, State}; 110 + 111 + handle_info({Port, {data, _}}, #state{port = Port} = State) -> 112 + %% Other data from port, ignore 113 + {noreply, State}; 114 + 115 + handle_info(_Info, State) -> 116 + {noreply, State}. 117 + 118 + terminate(_Reason, #state{port = undefined}) -> 119 + ok; 120 + terminate(_Reason, #state{port = Port}) -> 121 + catch port_close(Port), 122 + ok. 123 + 124 + %% =================================================================== 125 + %% Internal functions 126 + %% =================================================================== 127 + 128 + default_script_path() -> 129 + %% Find the priv directory 130 + case code:priv_dir(server) of 131 + {error, _} -> 132 + %% Fallback for development 133 + "priv/validator_worker.cjs"; 134 + PrivDir -> 135 + filename:join(PrivDir, "validator_worker.cjs") 136 + end. 137 + 138 + ensure_port(#state{port = undefined} = State) -> 139 + start_port(State); 140 + ensure_port(State) -> 141 + State. 142 + 143 + start_port(#state{script_path = ScriptPath} = State) -> 144 + Cmd = "node " ++ ScriptPath, 145 + Port = open_port({spawn, Cmd}, [ 146 + {line, 1048576}, %% 1MB line buffer for large validators/records 147 + binary, 148 + use_stdio, 149 + exit_status 150 + ]), 151 + logger:info("[validator_worker] Started Node.js worker"), 152 + State#state{port = Port}. 153 + 154 + restart_port(State) -> 155 + case State#state.port of 156 + undefined -> ok; 157 + Port -> catch port_close(Port) 158 + end, 159 + logger:info("[validator_worker] Restarting Node.js worker"), 160 + start_port(State#state{port = undefined}). 161 + 162 + send_request(Port, Request) -> 163 + %% Send request as a line 164 + port_command(Port, [Request, $\n]), 165 + %% Wait for response 166 + receive_response(Port, <<>>, 5000). 167 + 168 + receive_response(Port, Acc, Timeout) -> 169 + receive 170 + {Port, {data, {eol, Data}}} -> 171 + %% Complete line received 172 + FullData = <<Acc/binary, Data/binary>>, 173 + try json:decode(FullData) of 174 + Response when is_map(Response) -> 175 + {ok, Response}; 176 + _ -> 177 + {error, <<"Invalid response from validator">>} 178 + catch 179 + error:_ -> 180 + {error, <<"Invalid response from validator">>} 181 + end; 182 + {Port, {data, {noeol, Data}}} -> 183 + %% Partial line, accumulate 184 + receive_response(Port, <<Acc/binary, Data/binary>>, Timeout); 185 + {Port, {exit_status, Status}} -> 186 + {error, iolist_to_binary(io_lib:format("Node process exited with status ~p", [Status]))}; 187 + {'EXIT', Port, Reason} -> 188 + {error, iolist_to_binary(io_lib:format("Port exited: ~p", [Reason]))} 189 + after Timeout -> 190 + {error, <<"Timeout waiting for validator response">>} 191 + end. 192 + 193 + to_binary(B) when is_binary(B) -> B; 194 + to_binary(L) when is_list(L) -> list_to_binary(L).
+5 -5
server/test/blob_integration_test.gleam
··· 9 import database/repositories/records 10 import gleam/http 11 import gleam/json 12 - import gleam/option 13 import gleam/string 14 import gleeunit/should 15 import handlers/graphql as graphql_handler ··· 72 73 // Insert profile lexicon with blob fields 74 let lexicon = create_profile_lexicon() 75 - let assert Ok(_) = lexicons.insert(exec, "app.test.profile", lexicon) 76 77 // Insert a profile record with avatar blob 78 // AT Protocol blob format: { ref: { $link: "cid" }, mimeType: "...", size: 123 } ··· 171 172 // Insert profile lexicon 173 let lexicon = create_profile_lexicon() 174 - let assert Ok(_) = lexicons.insert(exec, "app.test.profile", lexicon) 175 176 // Insert a profile with banner blob 177 let record_json = ··· 246 let assert Ok(_) = test_helpers.create_record_table(exec) 247 248 let lexicon = create_profile_lexicon() 249 - let assert Ok(_) = lexicons.insert(exec, "app.test.profile", lexicon) 250 251 let record_json = 252 json.object([ ··· 318 let assert Ok(_) = test_helpers.create_record_table(exec) 319 320 let lexicon = create_profile_lexicon() 321 - let assert Ok(_) = lexicons.insert(exec, "app.test.profile", lexicon) 322 323 // Insert record without avatar field 324 let record_json =
··· 9 import database/repositories/records 10 import gleam/http 11 import gleam/json 12 + import gleam/option.{None} 13 import gleam/string 14 import gleeunit/should 15 import handlers/graphql as graphql_handler ··· 72 73 // Insert profile lexicon with blob fields 74 let lexicon = create_profile_lexicon() 75 + let assert Ok(_) = lexicons.insert(exec, "app.test.profile", lexicon, None) 76 77 // Insert a profile record with avatar blob 78 // AT Protocol blob format: { ref: { $link: "cid" }, mimeType: "...", size: 123 } ··· 171 172 // Insert profile lexicon 173 let lexicon = create_profile_lexicon() 174 + let assert Ok(_) = lexicons.insert(exec, "app.test.profile", lexicon, None) 175 176 // Insert a profile with banner blob 177 let record_json = ··· 246 let assert Ok(_) = test_helpers.create_record_table(exec) 247 248 let lexicon = create_profile_lexicon() 249 + let assert Ok(_) = lexicons.insert(exec, "app.test.profile", lexicon, None) 250 251 let record_json = 252 json.object([ ··· 318 let assert Ok(_) = test_helpers.create_record_table(exec) 319 320 let lexicon = create_profile_lexicon() 321 + let assert Ok(_) = lexicons.insert(exec, "app.test.profile", lexicon, None) 322 323 // Insert record without avatar field 324 let record_json =
+42 -7
server/test/graphql/notifications_e2e_test.gleam
··· 180 181 // Insert lexicons 182 let assert Ok(_) = 183 - lexicons.insert(exec, "app.bsky.feed.post", create_post_lexicon()) 184 let assert Ok(_) = 185 - lexicons.insert(exec, "app.bsky.feed.like", create_like_lexicon()) 186 let assert Ok(_) = 187 - lexicons.insert(exec, "app.bsky.graph.follow", create_follow_lexicon()) 188 189 // Setup actors 190 let assert Ok(_) = actors.upsert(exec, "did:plc:target", "target.bsky.social") ··· 309 310 // Insert lexicons 311 let assert Ok(_) = 312 - lexicons.insert(exec, "app.bsky.feed.post", create_post_lexicon()) 313 let assert Ok(_) = 314 - lexicons.insert(exec, "app.bsky.feed.like", create_like_lexicon()) 315 let assert Ok(_) = 316 - lexicons.insert(exec, "app.bsky.graph.follow", create_follow_lexicon()) 317 318 // Setup actors 319 let assert Ok(_) = actors.upsert(exec, "did:plc:target", "target.bsky.social") ··· 405 406 // Insert lexicons 407 let assert Ok(_) = 408 - lexicons.insert(exec, "app.bsky.feed.post", create_post_lexicon()) 409 410 // Setup actors 411 let assert Ok(_) = actors.upsert(exec, "did:plc:target", "target.bsky.social")
··· 180 181 // Insert lexicons 182 let assert Ok(_) = 183 + lexicons.insert( 184 + exec, 185 + "app.bsky.feed.post", 186 + create_post_lexicon(), 187 + option.None, 188 + ) 189 let assert Ok(_) = 190 + lexicons.insert( 191 + exec, 192 + "app.bsky.feed.like", 193 + create_like_lexicon(), 194 + option.None, 195 + ) 196 let assert Ok(_) = 197 + lexicons.insert( 198 + exec, 199 + "app.bsky.graph.follow", 200 + create_follow_lexicon(), 201 + option.None, 202 + ) 203 204 // Setup actors 205 let assert Ok(_) = actors.upsert(exec, "did:plc:target", "target.bsky.social") ··· 324 325 // Insert lexicons 326 let assert Ok(_) = 327 + lexicons.insert( 328 + exec, 329 + "app.bsky.feed.post", 330 + create_post_lexicon(), 331 + option.None, 332 + ) 333 let assert Ok(_) = 334 + lexicons.insert( 335 + exec, 336 + "app.bsky.feed.like", 337 + create_like_lexicon(), 338 + option.None, 339 + ) 340 let assert Ok(_) = 341 + lexicons.insert( 342 + exec, 343 + "app.bsky.graph.follow", 344 + create_follow_lexicon(), 345 + option.None, 346 + ) 347 348 // Setup actors 349 let assert Ok(_) = actors.upsert(exec, "did:plc:target", "target.bsky.social") ··· 435 436 // Insert lexicons 437 let assert Ok(_) = 438 + lexicons.insert( 439 + exec, 440 + "app.bsky.feed.post", 441 + create_post_lexicon(), 442 + option.None, 443 + ) 444 445 // Setup actors 446 let assert Ok(_) = actors.upsert(exec, "did:plc:target", "target.bsky.social")
+2 -2
server/test/graphql_aggregation_integration_test.gleam
··· 119 // Insert post lexicon 120 let post_lexicon = create_post_lexicon() 121 use _ <- result.try( 122 - lexicons.insert(exec, "app.bsky.feed.post", post_lexicon) 123 |> result.map_error(fn(_) { "Failed to insert post lexicon" }), 124 ) 125 126 // Insert status lexicon 127 let status_lexicon = create_status_lexicon() 128 use _ <- result.try( 129 - lexicons.insert(exec, "xyz.statusphere.status", status_lexicon) 130 |> result.map_error(fn(_) { "Failed to insert status lexicon" }), 131 ) 132
··· 119 // Insert post lexicon 120 let post_lexicon = create_post_lexicon() 121 use _ <- result.try( 122 + lexicons.insert(exec, "app.bsky.feed.post", post_lexicon, None) 123 |> result.map_error(fn(_) { "Failed to insert post lexicon" }), 124 ) 125 126 // Insert status lexicon 127 let status_lexicon = create_status_lexicon() 128 use _ <- result.try( 129 + lexicons.insert(exec, "xyz.statusphere.status", status_lexicon, None) 130 |> result.map_error(fn(_) { "Failed to insert status lexicon" }), 131 ) 132
+15 -8
server/test/graphql_handler_integration_test.gleam
··· 115 116 // Insert a lexicon for xyz.statusphere.status 117 let lexicon = create_status_lexicon() 118 - let assert Ok(_) = lexicons.insert(exec, "xyz.statusphere.status", lexicon) 119 120 // Insert some test records 121 let record1_json = ··· 223 224 // Insert a lexicon but no records 225 let lexicon = create_simple_lexicon("xyz.statusphere.status") 226 - let assert Ok(_) = lexicons.insert(exec, "xyz.statusphere.status", lexicon) 227 228 // Create GraphQL query request with Connection structure 229 let query = ··· 274 275 // Insert a lexicon 276 let lexicon = create_simple_lexicon("xyz.statusphere.status") 277 - let assert Ok(_) = lexicons.insert(exec, "xyz.statusphere.status", lexicon) 278 279 // Create GraphQL GET request with query parameter 280 let request = ··· 453 ]) 454 |> json.to_string 455 456 - let assert Ok(_) = lexicons.insert(exec, "xyz.statusphere.status", lexicon1) 457 - let assert Ok(_) = lexicons.insert(exec, "app.bsky.feed.post", lexicon2) 458 459 // Insert records for first collection 460 let record1_json = ··· 569 570 // Insert a lexicon 571 let lexicon = create_simple_lexicon("xyz.statusphere.status") 572 - let assert Ok(_) = lexicons.insert(exec, "xyz.statusphere.status", lexicon) 573 574 // Insert 150 records (handler should limit to 100) 575 let _ = ··· 663 664 // Insert a lexicon for xyz.statusphere.status 665 let lexicon = create_status_lexicon() 666 - let assert Ok(_) = lexicons.insert(exec, "xyz.statusphere.status", lexicon) 667 668 // Insert test actors 669 let assert Ok(_) = actors.upsert(exec, "did:plc:alice", "alice.bsky.social") ··· 760 761 // Insert a lexicon for xyz.statusphere.status 762 let lexicon = create_status_lexicon() 763 - let assert Ok(_) = lexicons.insert(exec, "xyz.statusphere.status", lexicon) 764 765 // Insert test actors 766 let assert Ok(_) = actors.upsert(exec, "did:plc:alice", "alice.bsky.social")
··· 115 116 // Insert a lexicon for xyz.statusphere.status 117 let lexicon = create_status_lexicon() 118 + let assert Ok(_) = 119 + lexicons.insert(exec, "xyz.statusphere.status", lexicon, None) 120 121 // Insert some test records 122 let record1_json = ··· 224 225 // Insert a lexicon but no records 226 let lexicon = create_simple_lexicon("xyz.statusphere.status") 227 + let assert Ok(_) = 228 + lexicons.insert(exec, "xyz.statusphere.status", lexicon, None) 229 230 // Create GraphQL query request with Connection structure 231 let query = ··· 276 277 // Insert a lexicon 278 let lexicon = create_simple_lexicon("xyz.statusphere.status") 279 + let assert Ok(_) = 280 + lexicons.insert(exec, "xyz.statusphere.status", lexicon, None) 281 282 // Create GraphQL GET request with query parameter 283 let request = ··· 456 ]) 457 |> json.to_string 458 459 + let assert Ok(_) = 460 + lexicons.insert(exec, "xyz.statusphere.status", lexicon1, None) 461 + let assert Ok(_) = lexicons.insert(exec, "app.bsky.feed.post", lexicon2, None) 462 463 // Insert records for first collection 464 let record1_json = ··· 573 574 // Insert a lexicon 575 let lexicon = create_simple_lexicon("xyz.statusphere.status") 576 + let assert Ok(_) = 577 + lexicons.insert(exec, "xyz.statusphere.status", lexicon, None) 578 579 // Insert 150 records (handler should limit to 100) 580 let _ = ··· 668 669 // Insert a lexicon for xyz.statusphere.status 670 let lexicon = create_status_lexicon() 671 + let assert Ok(_) = 672 + lexicons.insert(exec, "xyz.statusphere.status", lexicon, None) 673 674 // Insert test actors 675 let assert Ok(_) = actors.upsert(exec, "did:plc:alice", "alice.bsky.social") ··· 766 767 // Insert a lexicon for xyz.statusphere.status 768 let lexicon = create_status_lexicon() 769 + let assert Ok(_) = 770 + lexicons.insert(exec, "xyz.statusphere.status", lexicon, None) 771 772 // Insert test actors 773 let assert Ok(_) = actors.upsert(exec, "did:plc:alice", "alice.bsky.social")
+2 -2
server/test/graphql_introspection_did_join_test.gleam
··· 9 import gleam/http 10 import gleam/json 11 import gleam/list 12 - import gleam/option 13 import gleam/result 14 import gleam/string 15 import gleeunit/should ··· 65 }) 66 { 67 Ok(lexicon_id) -> 68 - case lexicons.insert(exec, lexicon_id, json_content) { 69 Ok(_) -> Ok(Nil) 70 Error(_) -> Error("Database insertion failed") 71 }
··· 9 import gleam/http 10 import gleam/json 11 import gleam/list 12 + import gleam/option.{None} 13 import gleam/result 14 import gleam/string 15 import gleeunit/should ··· 65 }) 66 { 67 Ok(lexicon_id) -> 68 + case lexicons.insert(exec, lexicon_id, json_content, None) { 69 Ok(_) -> Ok(Nil) 70 Error(_) -> Error("Database insertion failed") 71 }
+5 -5
server/test/graphql_mutation_integration_test.gleam
··· 1 import database/repositories/lexicons 2 import gleam/json 3 import gleam/list 4 - import gleam/option 5 import gleeunit/should 6 import lexicon_graphql 7 import lexicon_graphql/schema/database ··· 70 let status_lexicon = create_status_lexicon() 71 72 let assert Ok(_) = 73 - lexicons.insert(exec, "xyz.statusphere.status", status_lexicon) 74 75 // Get lexicons and parse them 76 let assert Ok(lexicon_records) = lexicons.get_all(exec) ··· 129 let assert Ok(_) = test_helpers.create_lexicon_table(exec) 130 let status_lexicon = create_status_lexicon() 131 let assert Ok(_) = 132 - lexicons.insert(exec, "xyz.statusphere.status", status_lexicon) 133 let assert Ok(lexicon_records) = lexicons.get_all(exec) 134 let parsed_lexicons = 135 lexicon_records ··· 186 let assert Ok(_) = test_helpers.create_lexicon_table(exec) 187 let status_lexicon = create_status_lexicon() 188 let assert Ok(_) = 189 - lexicons.insert(exec, "xyz.statusphere.status", status_lexicon) 190 let assert Ok(lexicon_records) = lexicons.get_all(exec) 191 let parsed_lexicons = 192 lexicon_records ··· 242 let assert Ok(_) = test_helpers.create_lexicon_table(exec) 243 let status_lexicon = create_status_lexicon() 244 let assert Ok(_) = 245 - lexicons.insert(exec, "xyz.statusphere.status", status_lexicon) 246 let assert Ok(lexicon_records) = lexicons.get_all(exec) 247 let parsed_lexicons = 248 lexicon_records
··· 1 import database/repositories/lexicons 2 import gleam/json 3 import gleam/list 4 + import gleam/option.{None} 5 import gleeunit/should 6 import lexicon_graphql 7 import lexicon_graphql/schema/database ··· 70 let status_lexicon = create_status_lexicon() 71 72 let assert Ok(_) = 73 + lexicons.insert(exec, "xyz.statusphere.status", status_lexicon, None) 74 75 // Get lexicons and parse them 76 let assert Ok(lexicon_records) = lexicons.get_all(exec) ··· 129 let assert Ok(_) = test_helpers.create_lexicon_table(exec) 130 let status_lexicon = create_status_lexicon() 131 let assert Ok(_) = 132 + lexicons.insert(exec, "xyz.statusphere.status", status_lexicon, None) 133 let assert Ok(lexicon_records) = lexicons.get_all(exec) 134 let parsed_lexicons = 135 lexicon_records ··· 186 let assert Ok(_) = test_helpers.create_lexicon_table(exec) 187 let status_lexicon = create_status_lexicon() 188 let assert Ok(_) = 189 + lexicons.insert(exec, "xyz.statusphere.status", status_lexicon, None) 190 let assert Ok(lexicon_records) = lexicons.get_all(exec) 191 let parsed_lexicons = 192 lexicon_records ··· 242 let assert Ok(_) = test_helpers.create_lexicon_table(exec) 243 let status_lexicon = create_status_lexicon() 244 let assert Ok(_) = 245 + lexicons.insert(exec, "xyz.statusphere.status", status_lexicon, None) 246 let assert Ok(lexicon_records) = lexicons.get_all(exec) 247 let parsed_lexicons = 248 lexicon_records
+9 -5
server/test/graphql_total_count_test.gleam
··· 8 import gleam/int 9 import gleam/json 10 import gleam/list 11 - import gleam/option 12 import gleam/string 13 import gleeunit/should 14 import handlers/graphql as graphql_handler ··· 94 95 // Insert a lexicon 96 let lexicon = create_status_lexicon() 97 - let assert Ok(_) = lexicons.insert(exec, "xyz.statusphere.status", lexicon) 98 99 // Insert 5 test records 100 let _ = ··· 173 174 // Insert a lexicon 175 let lexicon = create_status_lexicon() 176 - let assert Ok(_) = lexicons.insert(exec, "xyz.statusphere.status", lexicon) 177 178 // Insert test actors 179 let assert Ok(_) = actors.upsert(exec, "did:plc:alice", "alice.bsky.social") ··· 286 287 // Insert a lexicon 288 let lexicon = create_status_lexicon() 289 - let assert Ok(_) = lexicons.insert(exec, "xyz.statusphere.status", lexicon) 290 291 // Query with totalCount field (no records inserted) 292 let query = ··· 336 337 // Insert a lexicon 338 let lexicon = create_status_lexicon() 339 - let assert Ok(_) = lexicons.insert(exec, "xyz.statusphere.status", lexicon) 340 341 // Insert 10 test records 342 let _ =
··· 8 import gleam/int 9 import gleam/json 10 import gleam/list 11 + import gleam/option.{None} 12 import gleam/string 13 import gleeunit/should 14 import handlers/graphql as graphql_handler ··· 94 95 // Insert a lexicon 96 let lexicon = create_status_lexicon() 97 + let assert Ok(_) = 98 + lexicons.insert(exec, "xyz.statusphere.status", lexicon, None) 99 100 // Insert 5 test records 101 let _ = ··· 174 175 // Insert a lexicon 176 let lexicon = create_status_lexicon() 177 + let assert Ok(_) = 178 + lexicons.insert(exec, "xyz.statusphere.status", lexicon, None) 179 180 // Insert test actors 181 let assert Ok(_) = actors.upsert(exec, "did:plc:alice", "alice.bsky.social") ··· 288 289 // Insert a lexicon 290 let lexicon = create_status_lexicon() 291 + let assert Ok(_) = 292 + lexicons.insert(exec, "xyz.statusphere.status", lexicon, None) 293 294 // Query with totalCount field (no records inserted) 295 let query = ··· 339 340 // Insert a lexicon 341 let lexicon = create_status_lexicon() 342 + let assert Ok(_) = 343 + lexicons.insert(exec, "xyz.statusphere.status", lexicon, None) 344 345 // Insert 10 test records 346 let _ =
+30 -18
server/test/join_integration_test.gleam
··· 8 import database/repositories/lexicons 9 import database/repositories/records 10 import gleam/json 11 - import gleam/option 12 import gleam/string 13 import gleeunit/should 14 import graphql/lexicon/schema as lexicon_schema ··· 168 169 // Insert lexicons 170 let post_lexicon = create_post_lexicon() 171 - let assert Ok(_) = lexicons.insert(exec, "app.bsky.feed.post", post_lexicon) 172 173 // Insert test records 174 // Parent post ··· 258 // Insert lexicons 259 let post_lexicon = create_post_lexicon() 260 let profile_lexicon = create_profile_lexicon() 261 - let assert Ok(_) = lexicons.insert(exec, "app.bsky.feed.post", post_lexicon) 262 let assert Ok(_) = 263 - lexicons.insert(exec, "app.bsky.actor.profile", profile_lexicon) 264 265 // Insert test records 266 // A post ··· 357 let post_lexicon = create_post_lexicon() 358 let like_lexicon = create_like_lexicon() 359 360 - let assert Ok(_) = lexicons.insert(exec, "app.bsky.feed.post", post_lexicon) 361 362 - let assert Ok(_) = lexicons.insert(exec, "app.bsky.feed.like", like_lexicon) 363 364 // Insert test records 365 // A post ··· 474 475 // Insert lexicons 476 let post_lexicon = create_post_lexicon() 477 - let assert Ok(_) = lexicons.insert(exec, "app.bsky.feed.post", post_lexicon) 478 479 // Insert multiple parent posts 480 let parent1_uri = "at://did:plc:user1/app.bsky.feed.post/parent1" ··· 602 // Insert lexicons 603 let post_lexicon = create_post_lexicon() 604 let profile_lexicon = create_profile_lexicon() 605 - let assert Ok(_) = lexicons.insert(exec, "app.bsky.feed.post", post_lexicon) 606 let assert Ok(_) = 607 - lexicons.insert(exec, "app.bsky.actor.profile", profile_lexicon) 608 609 // Insert a post 610 let post_uri = "at://did:plc:creator/app.bsky.feed.post/amazing" ··· 730 // Insert lexicons 731 let post_lexicon = create_post_lexicon() 732 let like_lexicon = create_like_lexicon() 733 - let assert Ok(_) = lexicons.insert(exec, "app.bsky.feed.post", post_lexicon) 734 - let assert Ok(_) = lexicons.insert(exec, "app.bsky.feed.like", like_lexicon) 735 736 // Insert a parent post 737 let parent_post_uri = "at://did:plc:parent/app.bsky.feed.post/parent1" ··· 923 // Insert lexicons 924 let post_lexicon = create_post_lexicon() 925 let profile_lexicon = create_profile_lexicon_with_literal_self() 926 - let assert Ok(_) = lexicons.insert(exec, "app.bsky.feed.post", post_lexicon) 927 let assert Ok(_) = 928 - lexicons.insert(exec, "app.bsky.actor.profile", profile_lexicon) 929 930 // Insert a profile with literal:self key 931 let profile_uri = "at://did:plc:user123/app.bsky.actor.profile/self" ··· 1023 // Insert lexicons 1024 let post_lexicon = create_post_lexicon() 1025 let profile_lexicon = create_profile_lexicon_with_literal_self() 1026 - let assert Ok(_) = lexicons.insert(exec, "app.bsky.feed.post", post_lexicon) 1027 let assert Ok(_) = 1028 - lexicons.insert(exec, "app.bsky.actor.profile", profile_lexicon) 1029 1030 // Insert a profile 1031 let profile_uri = "at://did:plc:author/app.bsky.actor.profile/self" ··· 1144 // Insert lexicons 1145 let post_lexicon = create_post_lexicon() 1146 let profile_lexicon = create_profile_lexicon_with_literal_self() 1147 - let assert Ok(_) = lexicons.insert(exec, "app.bsky.feed.post", post_lexicon) 1148 let assert Ok(_) = 1149 - lexicons.insert(exec, "app.bsky.actor.profile", profile_lexicon) 1150 1151 // Insert multiple profiles 1152 let profile1_uri = "at://did:plc:user1/app.bsky.actor.profile/self" ··· 1369 1370 // Insert lexicon with nested reply object 1371 let post_lexicon = create_post_lexicon_with_nested_reply() 1372 - let assert Ok(_) = lexicons.insert(exec, "app.bsky.feed.post", post_lexicon) 1373 1374 // Insert root post 1375 let root_uri = "at://did:plc:root123/app.bsky.feed.post/root1"
··· 8 import database/repositories/lexicons 9 import database/repositories/records 10 import gleam/json 11 + import gleam/option.{None} 12 import gleam/string 13 import gleeunit/should 14 import graphql/lexicon/schema as lexicon_schema ··· 168 169 // Insert lexicons 170 let post_lexicon = create_post_lexicon() 171 + let assert Ok(_) = 172 + lexicons.insert(exec, "app.bsky.feed.post", post_lexicon, None) 173 174 // Insert test records 175 // Parent post ··· 259 // Insert lexicons 260 let post_lexicon = create_post_lexicon() 261 let profile_lexicon = create_profile_lexicon() 262 let assert Ok(_) = 263 + lexicons.insert(exec, "app.bsky.feed.post", post_lexicon, None) 264 + let assert Ok(_) = 265 + lexicons.insert(exec, "app.bsky.actor.profile", profile_lexicon, None) 266 267 // Insert test records 268 // A post ··· 359 let post_lexicon = create_post_lexicon() 360 let like_lexicon = create_like_lexicon() 361 362 + let assert Ok(_) = 363 + lexicons.insert(exec, "app.bsky.feed.post", post_lexicon, None) 364 365 + let assert Ok(_) = 366 + lexicons.insert(exec, "app.bsky.feed.like", like_lexicon, None) 367 368 // Insert test records 369 // A post ··· 478 479 // Insert lexicons 480 let post_lexicon = create_post_lexicon() 481 + let assert Ok(_) = 482 + lexicons.insert(exec, "app.bsky.feed.post", post_lexicon, None) 483 484 // Insert multiple parent posts 485 let parent1_uri = "at://did:plc:user1/app.bsky.feed.post/parent1" ··· 607 // Insert lexicons 608 let post_lexicon = create_post_lexicon() 609 let profile_lexicon = create_profile_lexicon() 610 let assert Ok(_) = 611 + lexicons.insert(exec, "app.bsky.feed.post", post_lexicon, None) 612 + let assert Ok(_) = 613 + lexicons.insert(exec, "app.bsky.actor.profile", profile_lexicon, None) 614 615 // Insert a post 616 let post_uri = "at://did:plc:creator/app.bsky.feed.post/amazing" ··· 736 // Insert lexicons 737 let post_lexicon = create_post_lexicon() 738 let like_lexicon = create_like_lexicon() 739 + let assert Ok(_) = 740 + lexicons.insert(exec, "app.bsky.feed.post", post_lexicon, None) 741 + let assert Ok(_) = 742 + lexicons.insert(exec, "app.bsky.feed.like", like_lexicon, None) 743 744 // Insert a parent post 745 let parent_post_uri = "at://did:plc:parent/app.bsky.feed.post/parent1" ··· 931 // Insert lexicons 932 let post_lexicon = create_post_lexicon() 933 let profile_lexicon = create_profile_lexicon_with_literal_self() 934 let assert Ok(_) = 935 + lexicons.insert(exec, "app.bsky.feed.post", post_lexicon, None) 936 + let assert Ok(_) = 937 + lexicons.insert(exec, "app.bsky.actor.profile", profile_lexicon, None) 938 939 // Insert a profile with literal:self key 940 let profile_uri = "at://did:plc:user123/app.bsky.actor.profile/self" ··· 1032 // Insert lexicons 1033 let post_lexicon = create_post_lexicon() 1034 let profile_lexicon = create_profile_lexicon_with_literal_self() 1035 let assert Ok(_) = 1036 + lexicons.insert(exec, "app.bsky.feed.post", post_lexicon, None) 1037 + let assert Ok(_) = 1038 + lexicons.insert(exec, "app.bsky.actor.profile", profile_lexicon, None) 1039 1040 // Insert a profile 1041 let profile_uri = "at://did:plc:author/app.bsky.actor.profile/self" ··· 1154 // Insert lexicons 1155 let post_lexicon = create_post_lexicon() 1156 let profile_lexicon = create_profile_lexicon_with_literal_self() 1157 let assert Ok(_) = 1158 + lexicons.insert(exec, "app.bsky.feed.post", post_lexicon, None) 1159 + let assert Ok(_) = 1160 + lexicons.insert(exec, "app.bsky.actor.profile", profile_lexicon, None) 1161 1162 // Insert multiple profiles 1163 let profile1_uri = "at://did:plc:user1/app.bsky.actor.profile/self" ··· 1380 1381 // Insert lexicon with nested reply object 1382 let post_lexicon = create_post_lexicon_with_nested_reply() 1383 + let assert Ok(_) = 1384 + lexicons.insert(exec, "app.bsky.feed.post", post_lexicon, None) 1385 1386 // Insert root post 1387 let root_uri = "at://did:plc:root123/app.bsky.feed.post/root1"
+42 -7
server/test/label_preferences_integration_test.gleam
··· 62 test_helpers.insert_test_token(exec, "test-viewer-token", "did:plc:viewer") 63 // Insert a minimal lexicon so schema can build 64 let assert Ok(_) = 65 - lexicons.insert(exec, "test.minimal.record", create_minimal_lexicon()) 66 67 // Query for viewer label preferences 68 let query = ··· 116 let assert Ok(_) = test_helpers.create_moderation_tables(exec) 117 // Insert a minimal lexicon so schema can build 118 let assert Ok(_) = 119 - lexicons.insert(exec, "test.minimal.record", create_minimal_lexicon()) 120 121 // Query WITHOUT auth token 122 let query = ··· 152 test_helpers.insert_test_token(exec, "test-viewer-token", "did:plc:viewer") 153 // Insert a minimal lexicon so schema can build 154 let assert Ok(_) = 155 - lexicons.insert(exec, "test.minimal.record", create_minimal_lexicon()) 156 157 // Set preference for 'spam' label to 'hide' 158 let mutation = ··· 225 test_helpers.insert_test_token(exec, "test-viewer-token", "did:plc:viewer") 226 // Insert a minimal lexicon so schema can build 227 let assert Ok(_) = 228 - lexicons.insert(exec, "test.minimal.record", create_minimal_lexicon()) 229 230 // Try to set preference for system label '!takedown' 231 let mutation = ··· 265 let assert Ok(_) = test_helpers.create_moderation_tables(exec) 266 // Insert a minimal lexicon so schema can build 267 let assert Ok(_) = 268 - lexicons.insert(exec, "test.minimal.record", create_minimal_lexicon()) 269 270 // Try to set preference WITHOUT auth token 271 let mutation = ··· 306 test_helpers.insert_test_token(exec, "test-viewer-token", "did:plc:viewer") 307 // Insert a minimal lexicon so schema can build 308 let assert Ok(_) = 309 - lexicons.insert(exec, "test.minimal.record", create_minimal_lexicon()) 310 311 // Try to set invalid visibility (GraphQL enum validation should catch this) 312 let mutation = ··· 347 test_helpers.insert_test_token(exec, "test-viewer-token", "did:plc:viewer") 348 // Insert a minimal lexicon so schema can build 349 let assert Ok(_) = 350 - lexicons.insert(exec, "test.minimal.record", create_minimal_lexicon()) 351 352 // Try to set preference for non-existent label 353 let mutation =
··· 62 test_helpers.insert_test_token(exec, "test-viewer-token", "did:plc:viewer") 63 // Insert a minimal lexicon so schema can build 64 let assert Ok(_) = 65 + lexicons.insert( 66 + exec, 67 + "test.minimal.record", 68 + create_minimal_lexicon(), 69 + option.None, 70 + ) 71 72 // Query for viewer label preferences 73 let query = ··· 121 let assert Ok(_) = test_helpers.create_moderation_tables(exec) 122 // Insert a minimal lexicon so schema can build 123 let assert Ok(_) = 124 + lexicons.insert( 125 + exec, 126 + "test.minimal.record", 127 + create_minimal_lexicon(), 128 + option.None, 129 + ) 130 131 // Query WITHOUT auth token 132 let query = ··· 162 test_helpers.insert_test_token(exec, "test-viewer-token", "did:plc:viewer") 163 // Insert a minimal lexicon so schema can build 164 let assert Ok(_) = 165 + lexicons.insert( 166 + exec, 167 + "test.minimal.record", 168 + create_minimal_lexicon(), 169 + option.None, 170 + ) 171 172 // Set preference for 'spam' label to 'hide' 173 let mutation = ··· 240 test_helpers.insert_test_token(exec, "test-viewer-token", "did:plc:viewer") 241 // Insert a minimal lexicon so schema can build 242 let assert Ok(_) = 243 + lexicons.insert( 244 + exec, 245 + "test.minimal.record", 246 + create_minimal_lexicon(), 247 + option.None, 248 + ) 249 250 // Try to set preference for system label '!takedown' 251 let mutation = ··· 285 let assert Ok(_) = test_helpers.create_moderation_tables(exec) 286 // Insert a minimal lexicon so schema can build 287 let assert Ok(_) = 288 + lexicons.insert( 289 + exec, 290 + "test.minimal.record", 291 + create_minimal_lexicon(), 292 + option.None, 293 + ) 294 295 // Try to set preference WITHOUT auth token 296 let mutation = ··· 331 test_helpers.insert_test_token(exec, "test-viewer-token", "did:plc:viewer") 332 // Insert a minimal lexicon so schema can build 333 let assert Ok(_) = 334 + lexicons.insert( 335 + exec, 336 + "test.minimal.record", 337 + create_minimal_lexicon(), 338 + option.None, 339 + ) 340 341 // Try to set invalid visibility (GraphQL enum validation should catch this) 342 let mutation = ··· 377 test_helpers.insert_test_token(exec, "test-viewer-token", "did:plc:viewer") 378 // Insert a minimal lexicon so schema can build 379 let assert Ok(_) = 380 + lexicons.insert( 381 + exec, 382 + "test.minimal.record", 383 + create_minimal_lexicon(), 384 + option.None, 385 + ) 386 387 // Try to set preference for non-existent label 388 let mutation =
+3 -3
server/test/mcp/full_integration_test.gleam
··· 1 import database/executor.{type Executor} 2 import database/repositories/lexicons 3 import gleam/http 4 - import gleam/option 5 import gleam/string 6 import gleeunit/should 7 import handlers/mcp ··· 21 "{\"lexicon\":1,\"id\":\"app.example.post\",\"defs\":{\"main\":{\"type\":\"record\",\"key\":\"tid\",\"record\":{\"type\":\"object\",\"properties\":{\"text\":{\"type\":\"string\"}}}}}}" 22 let lexicon2 = 23 "{\"lexicon\":1,\"id\":\"app.example.like\",\"defs\":{\"main\":{\"type\":\"record\",\"key\":\"tid\",\"record\":{\"type\":\"object\",\"properties\":{\"subject\":{\"type\":\"string\"}}}}}}" 24 - let assert Ok(_) = lexicons.insert(exec, "app.example.post", lexicon1) 25 - let assert Ok(_) = lexicons.insert(exec, "app.example.like", lexicon2) 26 27 let ctx = 28 mcp.McpContext(
··· 1 import database/executor.{type Executor} 2 import database/repositories/lexicons 3 import gleam/http 4 + import gleam/option.{None} 5 import gleam/string 6 import gleeunit/should 7 import handlers/mcp ··· 21 "{\"lexicon\":1,\"id\":\"app.example.post\",\"defs\":{\"main\":{\"type\":\"record\",\"key\":\"tid\",\"record\":{\"type\":\"object\",\"properties\":{\"text\":{\"type\":\"string\"}}}}}}" 22 let lexicon2 = 23 "{\"lexicon\":1,\"id\":\"app.example.like\",\"defs\":{\"main\":{\"type\":\"record\",\"key\":\"tid\",\"record\":{\"type\":\"object\",\"properties\":{\"subject\":{\"type\":\"string\"}}}}}}" 24 + let assert Ok(_) = lexicons.insert(exec, "app.example.post", lexicon1, None) 25 + let assert Ok(_) = lexicons.insert(exec, "app.example.like", lexicon2, None) 26 27 let ctx = 28 mcp.McpContext(
+5 -3
server/test/mcp/handler_test.gleam
··· 1 import database/executor.{type Executor} 2 import database/repositories/lexicons 3 import gleam/http 4 - import gleam/option 5 import gleam/string 6 import gleeunit/should 7 import handlers/mcp ··· 78 // Insert a test lexicon 79 let lexicon_json = 80 "{\"lexicon\":1,\"id\":\"test.example.status\",\"defs\":{\"main\":{\"type\":\"record\"}}}" 81 - let assert Ok(_) = lexicons.insert(exec, "test.example.status", lexicon_json) 82 83 let body = 84 "{\"jsonrpc\":\"2.0\",\"method\":\"tools/call\",\"params\":{\"name\":\"get_lexicon\",\"arguments\":{\"nsid\":\"test.example.status\"}},\"id\":3}" ··· 100 // Insert a test lexicon so schema builds 101 let lexicon_json = 102 "{\"lexicon\":1,\"id\":\"test.example.status\",\"defs\":{\"main\":{\"type\":\"record\",\"key\":\"tid\",\"record\":{\"type\":\"object\",\"properties\":{\"text\":{\"type\":\"string\"}}}}}}" 103 - let assert Ok(_) = lexicons.insert(exec, "test.example.status", lexicon_json) 104 105 let body = 106 "{\"jsonrpc\":\"2.0\",\"method\":\"tools/call\",\"params\":{\"name\":\"execute_query\",\"arguments\":{\"query\":\"{ __typename }\"}},\"id\":4}"
··· 1 import database/executor.{type Executor} 2 import database/repositories/lexicons 3 import gleam/http 4 + import gleam/option.{None} 5 import gleam/string 6 import gleeunit/should 7 import handlers/mcp ··· 78 // Insert a test lexicon 79 let lexicon_json = 80 "{\"lexicon\":1,\"id\":\"test.example.status\",\"defs\":{\"main\":{\"type\":\"record\"}}}" 81 + let assert Ok(_) = 82 + lexicons.insert(exec, "test.example.status", lexicon_json, None) 83 84 let body = 85 "{\"jsonrpc\":\"2.0\",\"method\":\"tools/call\",\"params\":{\"name\":\"get_lexicon\",\"arguments\":{\"nsid\":\"test.example.status\"}},\"id\":3}" ··· 101 // Insert a test lexicon so schema builds 102 let lexicon_json = 103 "{\"lexicon\":1,\"id\":\"test.example.status\",\"defs\":{\"main\":{\"type\":\"record\",\"key\":\"tid\",\"record\":{\"type\":\"object\",\"properties\":{\"text\":{\"type\":\"string\"}}}}}}" 104 + let assert Ok(_) = 105 + lexicons.insert(exec, "test.example.status", lexicon_json, None) 106 107 let body = 108 "{\"jsonrpc\":\"2.0\",\"method\":\"tools/call\",\"params\":{\"name\":\"execute_query\",\"arguments\":{\"query\":\"{ __typename }\"}},\"id\":4}"
+3 -2
server/test/mcp/tools/graphql_test.gleam
··· 1 import database/executor.{type Executor} 2 import database/repositories/lexicons 3 import gleam/json 4 - import gleam/option 5 import gleam/string 6 import gleeunit/should 7 import lib/mcp/tools/graphql as graphql_tools ··· 16 // Insert a test lexicon so schema builds 17 let lexicon_json = 18 "{\"lexicon\":1,\"id\":\"test.example.status\",\"defs\":{\"main\":{\"type\":\"record\",\"key\":\"tid\",\"record\":{\"type\":\"object\",\"properties\":{\"text\":{\"type\":\"string\"}}}}}}" 19 - let assert Ok(_) = lexicons.insert(exec, "test.example.status", lexicon_json) 20 21 exec 22 }
··· 1 import database/executor.{type Executor} 2 import database/repositories/lexicons 3 import gleam/json 4 + import gleam/option.{None} 5 import gleam/string 6 import gleeunit/should 7 import lib/mcp/tools/graphql as graphql_tools ··· 16 // Insert a test lexicon so schema builds 17 let lexicon_json = 18 "{\"lexicon\":1,\"id\":\"test.example.status\",\"defs\":{\"main\":{\"type\":\"record\",\"key\":\"tid\",\"record\":{\"type\":\"object\",\"properties\":{\"text\":{\"type\":\"string\"}}}}}}" 19 + let assert Ok(_) = 20 + lexicons.insert(exec, "test.example.status", lexicon_json, None) 21 22 exec 23 }
+5 -2
server/test/mcp/tools/lexicons_test.gleam
··· 1 import database/repositories/lexicons 2 import gleam/json 3 import gleam/string 4 import gleeunit/should 5 import lib/mcp/tools/lexicons as lexicon_tools ··· 13 // Insert a test lexicon 14 let lexicon_json = 15 "{\"lexicon\":1,\"id\":\"test.example.record\",\"defs\":{\"main\":{\"type\":\"record\"}}}" 16 - let assert Ok(_) = lexicons.insert(exec, "test.example.record", lexicon_json) 17 18 // Call the tool 19 let result = lexicon_tools.list_lexicons(exec) ··· 34 // Insert a test lexicon 35 let lexicon_json = 36 "{\"lexicon\":1,\"id\":\"test.example.record\",\"defs\":{\"main\":{\"type\":\"record\"}}}" 37 - let assert Ok(_) = lexicons.insert(exec, "test.example.record", lexicon_json) 38 39 // Call the tool 40 let result = lexicon_tools.get_lexicon(exec, "test.example.record")
··· 1 import database/repositories/lexicons 2 import gleam/json 3 + import gleam/option.{None} 4 import gleam/string 5 import gleeunit/should 6 import lib/mcp/tools/lexicons as lexicon_tools ··· 14 // Insert a test lexicon 15 let lexicon_json = 16 "{\"lexicon\":1,\"id\":\"test.example.record\",\"defs\":{\"main\":{\"type\":\"record\"}}}" 17 + let assert Ok(_) = 18 + lexicons.insert(exec, "test.example.record", lexicon_json, None) 19 20 // Call the tool 21 let result = lexicon_tools.list_lexicons(exec) ··· 36 // Insert a test lexicon 37 let lexicon_json = 38 "{\"lexicon\":1,\"id\":\"test.example.record\",\"defs\":{\"main\":{\"type\":\"record\"}}}" 39 + let assert Ok(_) = 40 + lexicons.insert(exec, "test.example.record", lexicon_json, None) 41 42 // Call the tool 43 let result = lexicon_tools.get_lexicon(exec, "test.example.record")
+14 -9
server/test/mutation_resolver_integration_test.gleam
··· 8 import database/repositories/lexicons 9 import gleam/json 10 import gleam/list 11 - import gleam/option 12 import gleeunit/should 13 import lexicon_graphql 14 import lexicon_graphql/schema/database ··· 308 309 let status_lexicon = create_status_lexicon() 310 let assert Ok(_) = 311 - lexicons.insert(exec, "xyz.statusphere.status", status_lexicon) 312 313 let assert Ok(lexicon_records) = lexicons.get_all(exec) 314 let parsed_lexicons = ··· 361 362 let status_lexicon = create_status_lexicon() 363 let assert Ok(_) = 364 - lexicons.insert(exec, "xyz.statusphere.status", status_lexicon) 365 366 let assert Ok(lexicon_records) = lexicons.get_all(exec) 367 let parsed_lexicons = ··· 430 431 let status_lexicon = create_status_lexicon() 432 let assert Ok(_) = 433 - lexicons.insert(exec, "xyz.statusphere.status", status_lexicon) 434 435 let assert Ok(lexicon_records) = lexicons.get_all(exec) 436 let parsed_lexicons = ··· 498 499 let status_lexicon = create_status_lexicon() 500 let assert Ok(_) = 501 - lexicons.insert(exec, "xyz.statusphere.status", status_lexicon) 502 503 let assert Ok(lexicon_records) = lexicons.get_all(exec) 504 let parsed_lexicons = ··· 566 567 let status_lexicon = create_status_lexicon() 568 let assert Ok(_) = 569 - lexicons.insert(exec, "xyz.statusphere.status", status_lexicon) 570 571 let assert Ok(lexicon_records) = lexicons.get_all(exec) 572 let parsed_lexicons = ··· 615 616 let status_lexicon = create_status_lexicon() 617 let assert Ok(_) = 618 - lexicons.insert(exec, "xyz.statusphere.status", status_lexicon) 619 620 let assert Ok(lexicon_records) = lexicons.get_all(exec) 621 let parsed_lexicons = ··· 810 // Insert BOTH lexicons - the profile AND the referenced location 811 let location_lexicon = create_location_lexicon() 812 let assert Ok(_) = 813 - lexicons.insert(exec, "community.lexicon.location.hthree", location_lexicon) 814 815 let profile_lexicon = create_profile_with_ref_lexicon() 816 let assert Ok(_) = 817 - lexicons.insert(exec, "org.atmosphereconf.profile", profile_lexicon) 818 819 let assert Ok(lexicon_records) = lexicons.get_all(exec) 820 let parsed_lexicons =
··· 8 import database/repositories/lexicons 9 import gleam/json 10 import gleam/list 11 + import gleam/option.{None} 12 import gleeunit/should 13 import lexicon_graphql 14 import lexicon_graphql/schema/database ··· 308 309 let status_lexicon = create_status_lexicon() 310 let assert Ok(_) = 311 + lexicons.insert(exec, "xyz.statusphere.status", status_lexicon, None) 312 313 let assert Ok(lexicon_records) = lexicons.get_all(exec) 314 let parsed_lexicons = ··· 361 362 let status_lexicon = create_status_lexicon() 363 let assert Ok(_) = 364 + lexicons.insert(exec, "xyz.statusphere.status", status_lexicon, None) 365 366 let assert Ok(lexicon_records) = lexicons.get_all(exec) 367 let parsed_lexicons = ··· 430 431 let status_lexicon = create_status_lexicon() 432 let assert Ok(_) = 433 + lexicons.insert(exec, "xyz.statusphere.status", status_lexicon, None) 434 435 let assert Ok(lexicon_records) = lexicons.get_all(exec) 436 let parsed_lexicons = ··· 498 499 let status_lexicon = create_status_lexicon() 500 let assert Ok(_) = 501 + lexicons.insert(exec, "xyz.statusphere.status", status_lexicon, None) 502 503 let assert Ok(lexicon_records) = lexicons.get_all(exec) 504 let parsed_lexicons = ··· 566 567 let status_lexicon = create_status_lexicon() 568 let assert Ok(_) = 569 + lexicons.insert(exec, "xyz.statusphere.status", status_lexicon, None) 570 571 let assert Ok(lexicon_records) = lexicons.get_all(exec) 572 let parsed_lexicons = ··· 615 616 let status_lexicon = create_status_lexicon() 617 let assert Ok(_) = 618 + lexicons.insert(exec, "xyz.statusphere.status", status_lexicon, None) 619 620 let assert Ok(lexicon_records) = lexicons.get_all(exec) 621 let parsed_lexicons = ··· 810 // Insert BOTH lexicons - the profile AND the referenced location 811 let location_lexicon = create_location_lexicon() 812 let assert Ok(_) = 813 + lexicons.insert( 814 + exec, 815 + "community.lexicon.location.hthree", 816 + location_lexicon, 817 + None, 818 + ) 819 820 let profile_lexicon = create_profile_with_ref_lexicon() 821 let assert Ok(_) = 822 + lexicons.insert(exec, "org.atmosphereconf.profile", profile_lexicon, None) 823 824 let assert Ok(lexicon_records) = lexicons.get_all(exec) 825 let parsed_lexicons =
+11 -11
server/test/nested_join_sortby_where_test.gleam
··· 11 import gleam/int 12 import gleam/json 13 import gleam/list 14 - import gleam/option 15 import gleam/string 16 import gleeunit/should 17 import graphql/lexicon/schema as lexicon_schema ··· 116 let status_lexicon = create_status_lexicon() 117 let profile_lexicon = create_profile_lexicon() 118 let assert Ok(_) = 119 - lexicons.insert(exec, "xyz.statusphere.status", status_lexicon) 120 let assert Ok(_) = 121 - lexicons.insert(exec, "app.bsky.actor.profile", profile_lexicon) 122 123 // Insert a profile 124 let profile_uri = "at://did:plc:user1/app.bsky.actor.profile/self" ··· 268 let status_lexicon = create_status_lexicon() 269 let profile_lexicon = create_profile_lexicon() 270 let assert Ok(_) = 271 - lexicons.insert(exec, "xyz.statusphere.status", status_lexicon) 272 let assert Ok(_) = 273 - lexicons.insert(exec, "app.bsky.actor.profile", profile_lexicon) 274 275 // Insert a profile 276 let profile_uri = "at://did:plc:user1/app.bsky.actor.profile/self" ··· 383 let status_lexicon = create_status_lexicon() 384 let profile_lexicon = create_profile_lexicon() 385 let assert Ok(_) = 386 - lexicons.insert(exec, "xyz.statusphere.status", status_lexicon) 387 let assert Ok(_) = 388 - lexicons.insert(exec, "app.bsky.actor.profile", profile_lexicon) 389 390 // Insert a profile 391 let profile_uri = "at://did:plc:user1/app.bsky.actor.profile/self" ··· 508 let status_lexicon = create_status_lexicon() 509 let profile_lexicon = create_profile_lexicon() 510 let assert Ok(_) = 511 - lexicons.insert(exec, "xyz.statusphere.status", status_lexicon) 512 let assert Ok(_) = 513 - lexicons.insert(exec, "app.bsky.actor.profile", profile_lexicon) 514 515 // Insert a profile 516 let profile_uri = "at://did:plc:user1/app.bsky.actor.profile/self" ··· 649 let status_lexicon = create_status_lexicon() 650 let profile_lexicon = create_profile_lexicon() 651 let assert Ok(_) = 652 - lexicons.insert(exec, "xyz.statusphere.status", status_lexicon) 653 let assert Ok(_) = 654 - lexicons.insert(exec, "app.bsky.actor.profile", profile_lexicon) 655 656 // Insert 2 profiles with different handles 657 let profile1_uri = "at://did:plc:user1/app.bsky.actor.profile/self"
··· 11 import gleam/int 12 import gleam/json 13 import gleam/list 14 + import gleam/option.{None} 15 import gleam/string 16 import gleeunit/should 17 import graphql/lexicon/schema as lexicon_schema ··· 116 let status_lexicon = create_status_lexicon() 117 let profile_lexicon = create_profile_lexicon() 118 let assert Ok(_) = 119 + lexicons.insert(exec, "xyz.statusphere.status", status_lexicon, None) 120 let assert Ok(_) = 121 + lexicons.insert(exec, "app.bsky.actor.profile", profile_lexicon, None) 122 123 // Insert a profile 124 let profile_uri = "at://did:plc:user1/app.bsky.actor.profile/self" ··· 268 let status_lexicon = create_status_lexicon() 269 let profile_lexicon = create_profile_lexicon() 270 let assert Ok(_) = 271 + lexicons.insert(exec, "xyz.statusphere.status", status_lexicon, None) 272 let assert Ok(_) = 273 + lexicons.insert(exec, "app.bsky.actor.profile", profile_lexicon, None) 274 275 // Insert a profile 276 let profile_uri = "at://did:plc:user1/app.bsky.actor.profile/self" ··· 383 let status_lexicon = create_status_lexicon() 384 let profile_lexicon = create_profile_lexicon() 385 let assert Ok(_) = 386 + lexicons.insert(exec, "xyz.statusphere.status", status_lexicon, None) 387 let assert Ok(_) = 388 + lexicons.insert(exec, "app.bsky.actor.profile", profile_lexicon, None) 389 390 // Insert a profile 391 let profile_uri = "at://did:plc:user1/app.bsky.actor.profile/self" ··· 508 let status_lexicon = create_status_lexicon() 509 let profile_lexicon = create_profile_lexicon() 510 let assert Ok(_) = 511 + lexicons.insert(exec, "xyz.statusphere.status", status_lexicon, None) 512 let assert Ok(_) = 513 + lexicons.insert(exec, "app.bsky.actor.profile", profile_lexicon, None) 514 515 // Insert a profile 516 let profile_uri = "at://did:plc:user1/app.bsky.actor.profile/self" ··· 649 let status_lexicon = create_status_lexicon() 650 let profile_lexicon = create_profile_lexicon() 651 let assert Ok(_) = 652 + lexicons.insert(exec, "xyz.statusphere.status", status_lexicon, None) 653 let assert Ok(_) = 654 + lexicons.insert(exec, "app.bsky.actor.profile", profile_lexicon, None) 655 656 // Insert 2 profiles with different handles 657 let profile1_uri = "at://did:plc:user1/app.bsky.actor.profile/self"
+14 -9
server/test/paginated_join_test.gleam
··· 10 import gleam/int 11 import gleam/json 12 import gleam/list 13 - import gleam/option 14 import gleam/string 15 import gleeunit/should 16 import graphql/lexicon/schema as lexicon_schema ··· 157 // Insert lexicons 158 let post_lexicon = create_post_lexicon() 159 let profile_lexicon = create_profile_lexicon() 160 - let assert Ok(_) = lexicons.insert(exec, "app.bsky.feed.post", post_lexicon) 161 let assert Ok(_) = 162 - lexicons.insert(exec, "app.bsky.actor.profile", profile_lexicon) 163 164 // Insert a profile 165 let profile_uri = "at://did:plc:author/app.bsky.actor.profile/self" ··· 276 // Insert lexicons 277 let post_lexicon = create_post_lexicon() 278 let profile_lexicon = create_profile_lexicon() 279 - let assert Ok(_) = lexicons.insert(exec, "app.bsky.feed.post", post_lexicon) 280 let assert Ok(_) = 281 - lexicons.insert(exec, "app.bsky.actor.profile", profile_lexicon) 282 283 // Insert a profile 284 let profile_uri = "at://did:plc:author/app.bsky.actor.profile/self" ··· 391 // Insert lexicons 392 let post_lexicon = create_post_lexicon() 393 let like_lexicon = create_like_lexicon() 394 - let assert Ok(_) = lexicons.insert(exec, "app.bsky.feed.post", post_lexicon) 395 - let assert Ok(_) = lexicons.insert(exec, "app.bsky.feed.like", like_lexicon) 396 397 // Insert a post 398 let post_uri = "at://did:plc:author/app.bsky.feed.post/post1" ··· 511 // Insert lexicons 512 let post_lexicon = create_post_lexicon() 513 let profile_lexicon = create_profile_lexicon() 514 - let assert Ok(_) = lexicons.insert(exec, "app.bsky.feed.post", post_lexicon) 515 let assert Ok(_) = 516 - lexicons.insert(exec, "app.bsky.actor.profile", profile_lexicon) 517 518 // Insert a profile 519 let profile_uri = "at://did:plc:author/app.bsky.actor.profile/self"
··· 10 import gleam/int 11 import gleam/json 12 import gleam/list 13 + import gleam/option.{None} 14 import gleam/string 15 import gleeunit/should 16 import graphql/lexicon/schema as lexicon_schema ··· 157 // Insert lexicons 158 let post_lexicon = create_post_lexicon() 159 let profile_lexicon = create_profile_lexicon() 160 let assert Ok(_) = 161 + lexicons.insert(exec, "app.bsky.feed.post", post_lexicon, None) 162 + let assert Ok(_) = 163 + lexicons.insert(exec, "app.bsky.actor.profile", profile_lexicon, None) 164 165 // Insert a profile 166 let profile_uri = "at://did:plc:author/app.bsky.actor.profile/self" ··· 277 // Insert lexicons 278 let post_lexicon = create_post_lexicon() 279 let profile_lexicon = create_profile_lexicon() 280 let assert Ok(_) = 281 + lexicons.insert(exec, "app.bsky.feed.post", post_lexicon, None) 282 + let assert Ok(_) = 283 + lexicons.insert(exec, "app.bsky.actor.profile", profile_lexicon, None) 284 285 // Insert a profile 286 let profile_uri = "at://did:plc:author/app.bsky.actor.profile/self" ··· 393 // Insert lexicons 394 let post_lexicon = create_post_lexicon() 395 let like_lexicon = create_like_lexicon() 396 + let assert Ok(_) = 397 + lexicons.insert(exec, "app.bsky.feed.post", post_lexicon, None) 398 + let assert Ok(_) = 399 + lexicons.insert(exec, "app.bsky.feed.like", like_lexicon, None) 400 401 // Insert a post 402 let post_uri = "at://did:plc:author/app.bsky.feed.post/post1" ··· 515 // Insert lexicons 516 let post_lexicon = create_post_lexicon() 517 let profile_lexicon = create_profile_lexicon() 518 let assert Ok(_) = 519 + lexicons.insert(exec, "app.bsky.feed.post", post_lexicon, None) 520 + let assert Ok(_) = 521 + lexicons.insert(exec, "app.bsky.actor.profile", profile_lexicon, None) 522 523 // Insert a profile 524 let profile_uri = "at://did:plc:author/app.bsky.actor.profile/self"
+19 -5
server/test/reverse_join_field_resolution_test.gleam
··· 8 import database/repositories/records 9 import gleam/bool 10 import gleam/json 11 - import gleam/option 12 import gleam/string 13 import gleeunit/should 14 import graphql/lexicon/schema as lexicon_schema ··· 246 247 // Insert lexicons 248 let assert Ok(_) = 249 - lexicons.insert(exec, "social.grain.gallery", create_gallery_lexicon()) 250 let assert Ok(_) = 251 lexicons.insert( 252 exec, 253 "social.grain.gallery.item", 254 create_gallery_item_lexicon(), 255 ) 256 let assert Ok(_) = 257 - lexicons.insert(exec, "social.grain.photo", create_photo_lexicon()) 258 259 // Create test data 260 let did1 = "did:test:user1" ··· 383 exec, 384 "social.grain.gallery.item", 385 create_gallery_item_lexicon(), 386 ) 387 388 let did1 = "did:test:user1" ··· 460 exec, 461 "social.grain.actor.profile", 462 create_profile_lexicon(), 463 ) 464 let assert Ok(_) = 465 - lexicons.insert(exec, "social.grain.gallery", create_gallery_lexicon()) 466 let assert Ok(_) = 467 lexicons.insert( 468 exec, 469 "social.grain.gallery.item", 470 create_gallery_item_lexicon(), 471 ) 472 let assert Ok(_) = 473 - lexicons.insert(exec, "social.grain.photo", create_photo_lexicon()) 474 475 let did1 = "did:test:alice" 476 let profile_uri = "at://" <> did1 <> "/social.grain.actor.profile/self"
··· 8 import database/repositories/records 9 import gleam/bool 10 import gleam/json 11 + import gleam/option.{None} 12 import gleam/string 13 import gleeunit/should 14 import graphql/lexicon/schema as lexicon_schema ··· 246 247 // Insert lexicons 248 let assert Ok(_) = 249 + lexicons.insert( 250 + exec, 251 + "social.grain.gallery", 252 + create_gallery_lexicon(), 253 + None, 254 + ) 255 let assert Ok(_) = 256 lexicons.insert( 257 exec, 258 "social.grain.gallery.item", 259 create_gallery_item_lexicon(), 260 + None, 261 ) 262 let assert Ok(_) = 263 + lexicons.insert(exec, "social.grain.photo", create_photo_lexicon(), None) 264 265 // Create test data 266 let did1 = "did:test:user1" ··· 389 exec, 390 "social.grain.gallery.item", 391 create_gallery_item_lexicon(), 392 + None, 393 ) 394 395 let did1 = "did:test:user1" ··· 467 exec, 468 "social.grain.actor.profile", 469 create_profile_lexicon(), 470 + None, 471 ) 472 let assert Ok(_) = 473 + lexicons.insert( 474 + exec, 475 + "social.grain.gallery", 476 + create_gallery_lexicon(), 477 + None, 478 + ) 479 let assert Ok(_) = 480 lexicons.insert( 481 exec, 482 "social.grain.gallery.item", 483 create_gallery_item_lexicon(), 484 + None, 485 ) 486 let assert Ok(_) = 487 + lexicons.insert(exec, "social.grain.photo", create_photo_lexicon(), None) 488 489 let did1 = "did:test:alice" 490 let profile_uri = "at://" <> did1 <> "/social.grain.actor.profile/self"
+2 -1
server/test/test_helpers.gleam
··· 49 "CREATE TABLE IF NOT EXISTS lexicon ( 50 id TEXT PRIMARY KEY NOT NULL, 51 json TEXT NOT NULL, 52 - created_at TEXT NOT NULL DEFAULT (datetime('now')) 53 )", 54 [], 55 )
··· 49 "CREATE TABLE IF NOT EXISTS lexicon ( 50 id TEXT PRIMARY KEY NOT NULL, 51 json TEXT NOT NULL, 52 + created_at TEXT NOT NULL DEFAULT (datetime('now')), 53 + validator_js TEXT 54 )", 55 [], 56 )
+133
server/test/validator_test.gleam
···
··· 1 + import gleeunit/should 2 + import validator 3 + 4 + fn ensure_worker_started() { 5 + // Start the validator worker if not already running 6 + let _ = validator.start_worker() 7 + Nil 8 + } 9 + 10 + pub fn run_validator_returns_valid_for_true_test() { 11 + ensure_worker_started() 12 + let js = "module.exports = function(record) { return true; };" 13 + 14 + validator.run_validator(js, "{}") 15 + |> should.equal(validator.Valid) 16 + } 17 + 18 + pub fn run_validator_returns_invalid_for_false_test() { 19 + ensure_worker_started() 20 + let js = "module.exports = function(record) { return false; };" 21 + 22 + validator.run_validator(js, "{}") 23 + |> should.equal(validator.Invalid) 24 + } 25 + 26 + pub fn run_validator_returns_error_when_throw_test() { 27 + ensure_worker_started() 28 + let js = "module.exports = function(record) { throw new Error('oh no') };" 29 + 30 + case validator.run_validator(js, "{}") { 31 + validator.ValidationError(_) -> should.be_true(True) 32 + _ -> should.fail() 33 + } 34 + } 35 + 36 + pub fn run_validator_returns_valid_for_promise_true_test() { 37 + ensure_worker_started() 38 + let js = 39 + "module.exports = function(record) { return Promise.resolve(true); };" 40 + 41 + validator.run_validator(js, "{}") 42 + |> should.equal(validator.Valid) 43 + } 44 + 45 + pub fn run_validator_validates_record_content_test() { 46 + ensure_worker_started() 47 + let js = 48 + "module.exports = function(record) { return record.title && record.title.startsWith('T'); };" 49 + 50 + // Should be valid when title starts with T 51 + validator.run_validator(js, "{\"title\": \"Test Book\"}") 52 + |> should.equal(validator.Valid) 53 + 54 + // Should be invalid when title doesn't start with T 55 + validator.run_validator(js, "{\"title\": \"Another Book\"}") 56 + |> should.equal(validator.Invalid) 57 + } 58 + 59 + pub fn run_validator_returns_error_for_invalid_js_test() { 60 + ensure_worker_started() 61 + let js = "this is not valid javascript {{{{" 62 + 63 + case validator.run_validator(js, "{}") { 64 + validator.ValidationError(_) -> should.be_true(True) 65 + _ -> should.fail() 66 + } 67 + } 68 + 69 + pub fn validate_script_accepts_valid_export_test() { 70 + ensure_worker_started() 71 + let js = "module.exports = function(record) { return true; };" 72 + 73 + validator.validate_script(js) 74 + |> should.be_ok 75 + } 76 + 77 + pub fn validate_script_accepts_exports_default_test() { 78 + ensure_worker_started() 79 + let js = "exports.default = function(record) { return false; };" 80 + 81 + validator.validate_script(js) 82 + |> should.be_ok 83 + } 84 + 85 + pub fn run_validator_supports_module_exports_default_test() { 86 + ensure_worker_started() 87 + let js = "module.exports.default = function(record) { return true; };" 88 + 89 + validator.run_validator(js, "{}") 90 + |> should.equal(validator.Valid) 91 + } 92 + 93 + pub fn validate_script_accepts_module_exports_default_test() { 94 + ensure_worker_started() 95 + let js = "module.exports.default = function(record) { return true; };" 96 + 97 + validator.validate_script(js) 98 + |> should.be_ok 99 + } 100 + 101 + pub fn validate_script_rejects_no_export_test() { 102 + ensure_worker_started() 103 + let js = "function validate(record) { return true; }" 104 + 105 + validator.validate_script(js) 106 + |> should.be_error 107 + } 108 + 109 + pub fn validate_script_rejects_non_function_export_test() { 110 + ensure_worker_started() 111 + let js = "module.exports = 'not a function';" 112 + 113 + validator.validate_script(js) 114 + |> should.be_error 115 + } 116 + 117 + pub fn validate_script_rejects_syntax_error_test() { 118 + ensure_worker_started() 119 + let js = "module.exports = function(record { return true; };" 120 + 121 + validator.validate_script(js) 122 + |> should.be_error 123 + } 124 + 125 + pub fn run_validator_works_with_console_log_test() { 126 + ensure_worker_started() 127 + // Validator that uses console.log should still work correctly 128 + let js = 129 + "module.exports = function(record) { console.log('validating:', record.id); return true; };" 130 + 131 + validator.run_validator(js, "{\"id\": \"test-123\"}") 132 + |> should.equal(validator.Valid) 133 + }
+60 -10
server/test/viewer_state_integration_test.gleam
··· 152 153 // Insert lexicons 154 let assert Ok(_) = 155 - lexicons.insert(exec, "social.grain.gallery", create_gallery_lexicon()) 156 let assert Ok(_) = 157 - lexicons.insert(exec, "social.grain.favorite", create_favorite_lexicon()) 158 159 // Create a gallery record 160 let gallery_uri = "at://did:plc:author/social.grain.gallery/gallery1" ··· 230 231 // Insert lexicons 232 let assert Ok(_) = 233 - lexicons.insert(exec, "social.grain.gallery", create_gallery_lexicon()) 234 let assert Ok(_) = 235 - lexicons.insert(exec, "social.grain.favorite", create_favorite_lexicon()) 236 237 // Create a gallery record 238 let gallery_uri = "at://did:plc:author/social.grain.gallery/gallery1" ··· 299 300 // Insert lexicons 301 let assert Ok(_) = 302 - lexicons.insert(exec, "social.grain.gallery", create_gallery_lexicon()) 303 let assert Ok(_) = 304 - lexicons.insert(exec, "social.grain.graph.follow", create_follow_lexicon()) 305 306 // Create a gallery record by a different author 307 let gallery_uri = "at://did:plc:author/social.grain.gallery/gallery1" ··· 369 370 // Insert lexicons 371 let assert Ok(_) = 372 - lexicons.insert(exec, "social.grain.gallery", create_gallery_lexicon()) 373 let assert Ok(_) = 374 - lexicons.insert(exec, "social.grain.graph.follow", create_follow_lexicon()) 375 376 // Create a gallery record by a different author 377 let gallery_uri = "at://did:plc:author/social.grain.gallery/gallery1" ··· 452 453 // Insert lexicons 454 let assert Ok(_) = 455 - lexicons.insert(exec, "social.grain.gallery", create_gallery_lexicon()) 456 let assert Ok(_) = 457 - lexicons.insert(exec, "social.grain.favorite", create_favorite_lexicon()) 458 459 // Create a gallery record 460 let gallery_uri = "at://did:plc:author/social.grain.gallery/gallery1"
··· 152 153 // Insert lexicons 154 let assert Ok(_) = 155 + lexicons.insert( 156 + exec, 157 + "social.grain.gallery", 158 + create_gallery_lexicon(), 159 + None, 160 + ) 161 let assert Ok(_) = 162 + lexicons.insert( 163 + exec, 164 + "social.grain.favorite", 165 + create_favorite_lexicon(), 166 + None, 167 + ) 168 169 // Create a gallery record 170 let gallery_uri = "at://did:plc:author/social.grain.gallery/gallery1" ··· 240 241 // Insert lexicons 242 let assert Ok(_) = 243 + lexicons.insert( 244 + exec, 245 + "social.grain.gallery", 246 + create_gallery_lexicon(), 247 + None, 248 + ) 249 let assert Ok(_) = 250 + lexicons.insert( 251 + exec, 252 + "social.grain.favorite", 253 + create_favorite_lexicon(), 254 + None, 255 + ) 256 257 // Create a gallery record 258 let gallery_uri = "at://did:plc:author/social.grain.gallery/gallery1" ··· 319 320 // Insert lexicons 321 let assert Ok(_) = 322 + lexicons.insert( 323 + exec, 324 + "social.grain.gallery", 325 + create_gallery_lexicon(), 326 + None, 327 + ) 328 let assert Ok(_) = 329 + lexicons.insert( 330 + exec, 331 + "social.grain.graph.follow", 332 + create_follow_lexicon(), 333 + None, 334 + ) 335 336 // Create a gallery record by a different author 337 let gallery_uri = "at://did:plc:author/social.grain.gallery/gallery1" ··· 399 400 // Insert lexicons 401 let assert Ok(_) = 402 + lexicons.insert( 403 + exec, 404 + "social.grain.gallery", 405 + create_gallery_lexicon(), 406 + None, 407 + ) 408 let assert Ok(_) = 409 + lexicons.insert( 410 + exec, 411 + "social.grain.graph.follow", 412 + create_follow_lexicon(), 413 + None, 414 + ) 415 416 // Create a gallery record by a different author 417 let gallery_uri = "at://did:plc:author/social.grain.gallery/gallery1" ··· 492 493 // Insert lexicons 494 let assert Ok(_) = 495 + lexicons.insert( 496 + exec, 497 + "social.grain.gallery", 498 + create_gallery_lexicon(), 499 + None, 500 + ) 501 let assert Ok(_) = 502 + lexicons.insert( 503 + exec, 504 + "social.grain.favorite", 505 + create_favorite_lexicon(), 506 + None, 507 + ) 508 509 // Create a gallery record 510 let gallery_uri = "at://did:plc:author/social.grain.gallery/gallery1"

History

1 round 0 comments
sign up or login to add to the discussion
byjp.me submitted #0
1 commit
expand
feat(validation): add custom JavaScript validation for lexicons
failed to check merge status: xrpc request failed
expand 0 comments