Auto-indexing service and GraphQL API for AT Protocol Records
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: handle OAuth errors with proper redirects

Replace JSON error responses in OAuth flows with proper redirects per
OAuth spec (RFC 6749 Section 4.1.2.1).

- Admin authorize: redirect to / or /onboarding with error params
- Admin callback: redirect with error params on token exchange failure
- Third-party authorize: redirect after redirect_uri validated
- Third-party callback: redirect to client with error params
- Client UI: display error messages from redirect params

+974 -112
+39 -4
client/src/quickslice_client.gleam
··· 43 43 /// ``` 44 44 import backfill_polling 45 45 import components/actor_autocomplete 46 + import components/alert 46 47 import components/layout 47 48 import file_upload 48 49 import generated/queries ··· 67 68 import gleam/json.{type Json} 68 69 import gleam/list 69 70 import gleam/option.{None} 71 + import gleam/result 70 72 import gleam/set 71 73 import gleam/string 72 74 import gleam/uri ··· 148 150 auth_state: AuthState, 149 151 mobile_menu_open: Bool, 150 152 login_autocomplete: actor_autocomplete.Model, 153 + oauth_error: option.Option(String), 151 154 ) 152 155 } 153 156 157 + fn parse_oauth_error(uri_val: uri.Uri) -> option.Option(String) { 158 + case uri_val.query { 159 + option.Some(query_string) -> { 160 + let params = uri.parse_query(query_string) |> result.unwrap([]) 161 + case list.key_find(params, "error") { 162 + Ok("access_denied") -> option.Some("Login was cancelled") 163 + Ok(error) -> { 164 + let description = 165 + list.key_find(params, "error_description") 166 + |> result.unwrap(error) 167 + |> uri.percent_decode 168 + |> result.unwrap(error) 169 + option.Some("Login failed: " <> description) 170 + } 171 + Error(_) -> option.None 172 + } 173 + } 174 + option.None -> option.None 175 + } 176 + } 177 + 154 178 fn init(_flags) -> #(Model, Effect(Msg)) { 155 179 let api_url = window_origin() <> "/admin/graphql" 156 180 let cache = squall_cache.new(api_url) ··· 158 182 // Initialize registry with all extracted queries 159 183 let reg = queries.init_registry() 160 184 161 - // Parse the initial route from the current URL 162 - let initial_route = case modem.initial_uri() { 163 - Ok(uri) -> parse_route(uri) 164 - Error(_) -> Home 185 + // Parse the initial route and OAuth error from the current URL 186 + let #(initial_route, oauth_error) = case modem.initial_uri() { 187 + Ok(uri_val) -> #(parse_route(uri_val), parse_oauth_error(uri_val)) 188 + Error(_) -> #(Home, option.None) 165 189 } 166 190 167 191 // Fetch current session first (needed for all routes) ··· 290 314 auth_state: NotAuthenticated, 291 315 mobile_menu_open: False, 292 316 login_autocomplete: actor_autocomplete.init(), 317 + oauth_error: oauth_error, 293 318 ), 294 319 combined_effects, 295 320 ) ··· 319 344 LoginAutocompleteFocus 320 345 LoginAutocompleteSearchResult(Result(List(actor_autocomplete.Actor), String)) 321 346 LoginAutocompleteDoClose 347 + DismissOAuthError 322 348 } 323 349 324 350 fn update(model: Model, msg: Msg) -> #(Model, Effect(Msg)) { ··· 2400 2426 ) 2401 2427 #(Model(..model, login_autocomplete: new_autocomplete), effect.none()) 2402 2428 } 2429 + 2430 + DismissOAuthError -> { 2431 + #(Model(..model, oauth_error: option.None), effect.none()) 2432 + } 2403 2433 } 2404 2434 } 2405 2435 ··· 2434 2464 fn() { LoginAutocompleteBlur }, 2435 2465 fn() { LoginAutocompleteFocus }, 2436 2466 ) 2467 + }, 2468 + // OAuth error alert 2469 + case model.oauth_error { 2470 + option.Some(error_msg) -> alert.alert(alert.Error, error_msg) 2471 + option.None -> element.none() 2437 2472 }, 2438 2473 case model.route { 2439 2474 Home -> view_home(model)
+253
dev-docs/plans/2025-12-02-oauth-authorize-error-handling.md
··· 1 + # OAuth Authorize Error Handling Implementation Plan 2 + 3 + > **For Claude:** REQUIRED SUB-SKILL: Use superpowers:executing-plans to implement this plan task-by-task. 4 + 5 + **Goal:** Replace JSON error responses in OAuth authorize endpoints with proper redirects per OAuth spec (RFC 6749 Section 4.1.2.1). 6 + 7 + **Architecture:** 8 + - Errors **before** `redirect_uri` is validated → JSON error (can't redirect to unknown/invalid URI) 9 + - Errors **after** `redirect_uri` is validated → redirect with `error` and `error_description` params 10 + - Admin flow redirects to `/` or `/onboarding` based on admin existence 11 + - Third-party flow redirects to client's validated `redirect_uri` 12 + 13 + **Tech Stack:** Gleam (server), wisp HTTP framework 14 + 15 + --- 16 + 17 + ## Task 1: Fix Admin OAuth Authorize (`/admin/oauth/authorize`) 18 + 19 + **Files:** 20 + - Modify: `server/src/handlers/admin_oauth_authorize.gleam` 21 + 22 + **Step 1: Add config_repo import** 23 + 24 + Add after line 3: 25 + ```gleam 26 + import database/repositories/config as config_repo 27 + ``` 28 + 29 + **Step 2: Replace error_response with error_redirect** 30 + 31 + Replace the `error_response` function (lines 247-252) with: 32 + 33 + ```gleam 34 + fn error_redirect( 35 + conn: sqlight.Connection, 36 + error: String, 37 + description: String, 38 + ) -> wisp.Response { 39 + wisp.log_error("Admin OAuth error: " <> description) 40 + 41 + let redirect_path = case config_repo.has_admins(conn) { 42 + True -> "/" 43 + False -> "/onboarding" 44 + } 45 + 46 + let redirect_url = 47 + redirect_path 48 + <> "?error=" 49 + <> uri.percent_encode(error) 50 + <> "&error_description=" 51 + <> uri.percent_encode(description) 52 + 53 + wisp.redirect(redirect_url) 54 + } 55 + ``` 56 + 57 + **Step 3: Update all error_response calls** 58 + 59 + | Location | Old | New | 60 + |----------|-----|-----| 61 + | Line 45 | `error_response(400, "login_hint is required")` | `error_redirect(conn, "invalid_request", "Please enter a handle to login")` | 62 + | Line 78 | `error_response(400, "Failed to resolve handle to DID")` | `error_redirect(conn, "invalid_request", "Could not find that handle")` | 63 + | Line 115 | `error_response(500, "Failed to store OAuth request")` | `error_redirect(conn, "server_error", "Failed to start login")` | 64 + | Line 137 | `error_response(500, "Failed to store ATP session")` | `error_redirect(conn, "server_error", "Failed to start login")` | 65 + | Line 141 | `error_response(400, "Failed to resolve DID")` | `error_redirect(conn, "invalid_request", "Could not resolve account")` | 66 + | Lines 144-145 | `error_response(400, "No PDS endpoint in DID document")` | `error_redirect(conn, "invalid_request", "Account has no PDS configured")` | 67 + | Lines 149-153 | `error_response(500, "Failed to get auth server: " <> err)` | `error_redirect(conn, "server_error", "Could not connect to login server")` | 68 + 69 + **Step 4: Build and verify** 70 + 71 + Run: `cd server && gleam build` 72 + Expected: Build succeeds 73 + 74 + **Step 5: Commit** 75 + 76 + ```bash 77 + git add server/src/handlers/admin_oauth_authorize.gleam 78 + git commit -m "feat: redirect with error params from admin oauth authorize" 79 + ``` 80 + 81 + --- 82 + 83 + ## Task 2: Fix Third-Party OAuth Authorize (`/oauth/authorize`) 84 + 85 + **Files:** 86 + - Modify: `server/src/handlers/oauth/authorize.gleam` 87 + 88 + **Step 1: Change handle function to use RedirectWithError after validation** 89 + 90 + The handler already has `RedirectWithError` type but doesn't use it. The challenge is that errors in `handle_authorize` lose the `redirect_uri` context. 91 + 92 + Replace the `handle` function (lines 44-87) with: 93 + 94 + ```gleam 95 + /// Handle GET /oauth/authorize 96 + pub fn handle( 97 + req: wisp.Request, 98 + conn: sqlight.Connection, 99 + did_cache: Subject(did_cache.Message), 100 + redirect_uri: String, 101 + client_id: String, 102 + signing_key: Option(String), 103 + ) -> wisp.Response { 104 + case req.method { 105 + http.Get | http.Post -> { 106 + case req.query { 107 + Some(query) -> { 108 + handle_authorize_with_error_redirect( 109 + query, 110 + conn, 111 + did_cache, 112 + redirect_uri, 113 + client_id, 114 + signing_key, 115 + ) 116 + } 117 + None -> { 118 + json_error_response("Missing query parameters") 119 + } 120 + } 121 + } 122 + _ -> wisp.method_not_allowed([http.Get, http.Post]) 123 + } 124 + } 125 + 126 + fn json_error_response(message: String) -> wisp.Response { 127 + wisp.log_error("Authorization error: " <> message) 128 + wisp.response(400) 129 + |> wisp.set_header("content-type", "application/json") 130 + |> wisp.set_body(wisp.Text("{\"error\": \"" <> message <> "\"}")) 131 + } 132 + ``` 133 + 134 + **Step 2: Add new handler that tracks redirect context** 135 + 136 + Add after the `handle` function: 137 + 138 + ```gleam 139 + /// Handle authorization with proper error redirects after validation 140 + fn handle_authorize_with_error_redirect( 141 + query: String, 142 + conn: sqlight.Connection, 143 + did_cache: Subject(did_cache.Message), 144 + server_redirect_uri: String, 145 + server_client_id: String, 146 + signing_key: Option(String), 147 + ) -> wisp.Response { 148 + // Parse query parameters 149 + let params = case uri.parse_query(query) { 150 + Ok(p) -> p 151 + Error(_) -> { 152 + return json_error_response("Failed to parse query string") 153 + } 154 + } 155 + 156 + // Check for PAR request_uri 157 + case get_param(params, "request_uri") { 158 + Some(_) -> { 159 + json_error_response("PAR flow not yet implemented") 160 + } 161 + None -> { 162 + // Parse minimal request to get redirect_uri and state 163 + let client_redirect_uri = get_param(params, "redirect_uri") 164 + let state = get_param(params, "state") 165 + let client_id_param = get_param(params, "client_id") 166 + 167 + // Before we have validated redirect_uri, use JSON errors 168 + case client_redirect_uri, client_id_param { 169 + None, _ -> json_error_response("redirect_uri is required") 170 + _, None -> json_error_response("client_id is required") 171 + Some(ruri), Some(cid) -> { 172 + // Get and validate client 173 + case oauth_clients.get(conn, cid) { 174 + Error(_) -> json_error_response("Failed to retrieve client") 175 + Ok(None) -> json_error_response("Client not found") 176 + Ok(Some(client)) -> { 177 + // Validate redirect_uri matches client 178 + case validator.validate_redirect_uri(ruri) { 179 + Error(e) -> json_error_response(error.error_description(e)) 180 + Ok(_) -> { 181 + case validator.validate_redirect_uri_match(ruri, client.redirect_uris, client.require_redirect_exact) { 182 + Error(e) -> json_error_response(error.error_description(e)) 183 + Ok(_) -> { 184 + // redirect_uri is now validated - use redirects for subsequent errors 185 + case handle_standard_flow(params, conn, did_cache, server_redirect_uri, server_client_id, signing_key) { 186 + Ok(response) -> build_redirect_response(response) 187 + Error(err) -> { 188 + build_redirect_response(RedirectWithError( 189 + redirect_uri: ruri, 190 + error: "server_error", 191 + error_description: err, 192 + state: state, 193 + )) 194 + } 195 + } 196 + } 197 + } 198 + } 199 + } 200 + } 201 + } 202 + } 203 + } 204 + } 205 + } 206 + } 207 + ``` 208 + 209 + **Step 3: Build and verify** 210 + 211 + Run: `cd server && gleam build` 212 + Expected: Build succeeds 213 + 214 + **Step 4: Commit** 215 + 216 + ```bash 217 + git add server/src/handlers/oauth/authorize.gleam 218 + git commit -m "feat: redirect with error params from third-party oauth authorize" 219 + ``` 220 + 221 + --- 222 + 223 + ## Task 3: Manual Testing 224 + 225 + **Step 1: Test admin invalid handle** 226 + 227 + 1. Start server: `cd server && gleam run` 228 + 2. Go to `http://localhost:8080/onboarding` 229 + 3. Enter invalid handle `notreal.invalid` 230 + 4. Click login 231 + 5. Verify redirect to `/onboarding?error=invalid_request&error_description=...` 232 + 6. Verify red alert shows "Login failed: Could not find that handle" 233 + 234 + **Step 2: Test third-party invalid handle** 235 + 236 + 1. Create a test OAuth client with redirect_uri `http://localhost:3000/callback` 237 + 2. Navigate to `/oauth/authorize?client_id=...&redirect_uri=http://localhost:3000/callback&response_type=code&login_hint=invalid.handle` 238 + 3. Verify redirect to `http://localhost:3000/callback?error=server_error&error_description=Failed%20to%20resolve%20handle` 239 + 240 + **Step 3: Verify normal flows still work** 241 + 242 + 1. Complete admin login with valid handle 243 + 2. Complete third-party OAuth flow with valid handle 244 + 245 + --- 246 + 247 + ## Summary 248 + 249 + | Task | File | Change | 250 + |------|------|--------| 251 + | 1 | `admin_oauth_authorize.gleam` | Replace `error_response` with redirect to `/` or `/onboarding` | 252 + | 2 | `oauth/authorize.gleam` | Use `RedirectWithError` after `redirect_uri` validated | 253 + | 3 | Manual testing | Verify all error and happy paths |
+418
dev-docs/plans/2025-12-02-oauth-error-handling.md
··· 1 + # OAuth Error Handling Implementation Plan 2 + 3 + > **For Claude:** REQUIRED SUB-SKILL: Use superpowers:executing-plans to implement this plan task-by-task. 4 + 5 + **Goal:** Display friendly UI messages when users deny OAuth authorization instead of showing raw JSON errors. 6 + 7 + **Architecture:** Check for OAuth `error` query param before `code` param in callback handlers. Forward errors to appropriate redirect (admin UI or third-party client's redirect_uri). Client parses error from URL and displays alert. 8 + 9 + **Tech Stack:** Gleam (server + Lustre client), wisp HTTP framework, modem routing 10 + 11 + --- 12 + 13 + ## Task 1: Admin OAuth Callback Error Handling 14 + 15 + **Files:** 16 + - Modify: `server/src/handlers/admin_oauth_callback.gleam:33-55` 17 + 18 + **Step 1: Add imports for URI encoding and result handling** 19 + 20 + At the top of the file, add: 21 + 22 + ```gleam 23 + import gleam/result 24 + import gleam/uri 25 + ``` 26 + 27 + **Step 2: Run the build to verify imports work** 28 + 29 + Run: `cd server && gleam build` 30 + Expected: Build succeeds 31 + 32 + **Step 3: Modify handle function to check for error param first** 33 + 34 + Replace the `handle` function body (lines 33-55) with: 35 + 36 + ```gleam 37 + pub fn handle( 38 + req: wisp.Request, 39 + conn: sqlight.Connection, 40 + did_cache: Subject(did_cache.Message), 41 + redirect_uri: String, 42 + client_id: String, 43 + signing_key: Option(String), 44 + ) -> wisp.Response { 45 + // Parse query parameters 46 + let query = wisp.get_query(req) 47 + 48 + // Check for OAuth error FIRST (user denied, etc.) 49 + case list.key_find(query, "error") { 50 + Ok(error) -> { 51 + let error_description = 52 + list.key_find(query, "error_description") 53 + |> result.unwrap("") 54 + 55 + // Redirect to / or /onboarding based on admin existence 56 + let redirect_path = case config_repo.has_admins(conn) { 57 + True -> "/" 58 + False -> "/onboarding" 59 + } 60 + 61 + let redirect_url = 62 + redirect_path 63 + <> "?error=" 64 + <> uri.percent_encode(error) 65 + <> "&error_description=" 66 + <> uri.percent_encode(error_description) 67 + 68 + wisp.redirect(redirect_url) 69 + } 70 + Error(_) -> { 71 + // Normal flow: check for code and state 72 + let code_result = list.key_find(query, "code") 73 + let state_result = list.key_find(query, "state") 74 + 75 + case code_result, state_result { 76 + Error(_), _ -> error_response(400, "Missing 'code' parameter") 77 + _, Error(_) -> error_response(400, "Missing 'state' parameter") 78 + Ok(code), Ok(state) -> { 79 + process_callback( 80 + req, 81 + conn, 82 + did_cache, 83 + code, 84 + state, 85 + redirect_uri, 86 + client_id, 87 + signing_key, 88 + ) 89 + } 90 + } 91 + } 92 + } 93 + } 94 + ``` 95 + 96 + **Step 4: Run the build to verify changes compile** 97 + 98 + Run: `cd server && gleam build` 99 + Expected: Build succeeds 100 + 101 + **Step 5: Commit** 102 + 103 + ```bash 104 + git add server/src/handlers/admin_oauth_callback.gleam 105 + git commit -m "feat: handle OAuth errors in admin callback with redirect" 106 + ``` 107 + 108 + --- 109 + 110 + ## Task 2: Third-Party OAuth Callback Error Handling 111 + 112 + **Files:** 113 + - Modify: `server/src/handlers/oauth/atp_callback.gleam` 114 + 115 + **Step 1: Add imports for URI encoding and result handling** 116 + 117 + At the top of the file, ensure these imports exist: 118 + 119 + ```gleam 120 + import gleam/result 121 + import gleam/uri 122 + ``` 123 + 124 + **Step 2: Run the build to verify imports work** 125 + 126 + Run: `cd server && gleam build` 127 + Expected: Build succeeds 128 + 129 + **Step 3: Read current atp_callback.gleam to understand structure** 130 + 131 + Review file to find the `handle` function and understand the flow. 132 + 133 + **Step 4: Modify handle function to check for error param first** 134 + 135 + At the start of the `handle` function, before checking for `code`, add error handling: 136 + 137 + ```gleam 138 + pub fn handle( 139 + req: wisp.Request, 140 + conn: sqlight.Connection, 141 + did_cache: Subject(did_cache.Message), 142 + redirect_uri: String, 143 + client_id: String, 144 + signing_key: Option(String), 145 + ) -> wisp.Response { 146 + let query = wisp.get_query(req) 147 + 148 + // Check for OAuth error FIRST (user denied, etc.) 149 + case list.key_find(query, "error") { 150 + Ok(error) -> { 151 + handle_oauth_error(conn, query, error) 152 + } 153 + Error(_) -> { 154 + // Normal flow continues... 155 + let code_result = list.key_find(query, "code") 156 + let state_result = list.key_find(query, "state") 157 + // ... rest of existing logic 158 + } 159 + } 160 + } 161 + 162 + fn handle_oauth_error( 163 + conn: sqlight.Connection, 164 + query: List(#(String, String)), 165 + error: String, 166 + ) -> wisp.Response { 167 + let error_description = 168 + list.key_find(query, "error_description") 169 + |> result.unwrap("") 170 + let state = 171 + list.key_find(query, "state") 172 + |> result.unwrap("") 173 + 174 + // Look up client's redirect_uri via: state -> atp_session -> session_id -> auth_request 175 + case oauth_atp_sessions.get_by_state(conn, state) { 176 + Ok(Some(atp_session)) -> { 177 + case oauth_auth_requests.get(conn, atp_session.session_id) { 178 + Ok(Some(auth_request)) -> { 179 + // Build redirect URL with error params 180 + let separator = case string.contains(auth_request.redirect_uri, "?") { 181 + True -> "&" 182 + False -> "?" 183 + } 184 + 185 + let redirect_url = 186 + auth_request.redirect_uri 187 + <> separator 188 + <> "error=" 189 + <> uri.percent_encode(error) 190 + <> "&error_description=" 191 + <> uri.percent_encode(error_description) 192 + <> case auth_request.state { 193 + Some(client_state) -> 194 + "&state=" <> uri.percent_encode(client_state) 195 + None -> "" 196 + } 197 + 198 + wisp.redirect(redirect_url) 199 + } 200 + _ -> error_response(400, "missing_parameter", "OAuth session not found") 201 + } 202 + } 203 + _ -> error_response(400, "missing_parameter", "Invalid state parameter") 204 + } 205 + } 206 + ``` 207 + 208 + **Step 5: Run the build to verify changes compile** 209 + 210 + Run: `cd server && gleam build` 211 + Expected: Build succeeds 212 + 213 + **Step 6: Commit** 214 + 215 + ```bash 216 + git add server/src/handlers/oauth/atp_callback.gleam 217 + git commit -m "feat: handle OAuth errors in third-party callback with redirect" 218 + ``` 219 + 220 + --- 221 + 222 + ## Task 3: Client-Side OAuth Error Display 223 + 224 + **Files:** 225 + - Modify: `client/src/quickslice_client.gleam` 226 + 227 + **Step 1: Add oauth_error field to Model type** 228 + 229 + Find the `Model` type definition and add `oauth_error` field: 230 + 231 + ```gleam 232 + pub type Model { 233 + Model( 234 + cache: squall_cache.Cache, 235 + registry: registry.Registry, 236 + route: Route, 237 + time_range: get_activity_buckets.TimeRange, 238 + settings_page_model: settings.Model, 239 + backfill_page_model: backfill.Model, 240 + backfill_status: backfill_polling.BackfillStatus, 241 + auth_state: AuthState, 242 + mobile_menu_open: Bool, 243 + login_autocomplete: actor_autocomplete.Model, 244 + oauth_error: option.Option(String), 245 + ) 246 + } 247 + ``` 248 + 249 + **Step 2: Add helper function to parse OAuth error from URI** 250 + 251 + Add this function before `init`: 252 + 253 + ```gleam 254 + fn parse_oauth_error(uri: uri.Uri) -> option.Option(String) { 255 + case uri.query { 256 + option.Some(query_string) -> { 257 + let params = uri.parse_query(query_string) |> result.unwrap([]) 258 + case list.key_find(params, "error") { 259 + Ok("access_denied") -> option.Some("Login was cancelled") 260 + Ok(error) -> { 261 + let description = 262 + list.key_find(params, "error_description") 263 + |> result.unwrap(error) 264 + |> uri.percent_decode 265 + |> result.unwrap(error) 266 + option.Some("Login failed: " <> description) 267 + } 268 + Error(_) -> option.None 269 + } 270 + } 271 + option.None -> option.None 272 + } 273 + } 274 + ``` 275 + 276 + **Step 3: Update init to parse OAuth error and initialize field** 277 + 278 + In the `init` function, parse the OAuth error from initial URI and add to Model: 279 + 280 + ```gleam 281 + fn init(_flags) -> #(Model, Effect(Msg)) { 282 + // ... existing code ... 283 + 284 + // Parse OAuth error from URL if present 285 + let oauth_error = case modem.initial_uri() { 286 + Ok(uri) -> parse_oauth_error(uri) 287 + Error(_) -> option.None 288 + } 289 + 290 + // ... existing code ... 291 + 292 + #( 293 + Model( 294 + cache: initial_cache, 295 + registry: reg, 296 + route: initial_route, 297 + time_range: ONEDAY, 298 + settings_page_model: settings.init(), 299 + backfill_page_model: backfill.init(), 300 + backfill_status: backfill_polling.Idle, 301 + auth_state: NotAuthenticated, 302 + mobile_menu_open: False, 303 + login_autocomplete: actor_autocomplete.init(), 304 + oauth_error: oauth_error, 305 + ), 306 + combined_effects, 307 + ) 308 + } 309 + ``` 310 + 311 + **Step 4: Add DismissOAuthError message** 312 + 313 + Add to the `Msg` type: 314 + 315 + ```gleam 316 + pub type Msg { 317 + // ... existing messages ... 318 + DismissOAuthError 319 + } 320 + ``` 321 + 322 + **Step 5: Handle DismissOAuthError in update** 323 + 324 + Add case in `update` function: 325 + 326 + ```gleam 327 + DismissOAuthError -> { 328 + #(Model(..model, oauth_error: option.None), effect.none()) 329 + } 330 + ``` 331 + 332 + **Step 6: Import alert component** 333 + 334 + Add import at top of file: 335 + 336 + ```gleam 337 + import components/alert 338 + ``` 339 + 340 + **Step 7: Display OAuth error in view** 341 + 342 + In the `view` function, add error display after the header: 343 + 344 + ```gleam 345 + fn view(model: Model) -> Element(Msg) { 346 + // ... existing code ... 347 + 348 + html.div( 349 + [attribute.class("max-w-4xl mx-auto px-4 py-6 sm:px-6 sm:py-12")], 350 + [ 351 + // Header (existing) 352 + case model.route { 353 + Onboarding -> element.none() 354 + _ -> layout.header(...) 355 + }, 356 + // OAuth error alert (NEW) 357 + case model.oauth_error { 358 + option.Some(error_msg) -> alert.alert(alert.Error, error_msg) 359 + option.None -> element.none() 360 + }, 361 + // Route content (existing) 362 + case model.route { 363 + Home -> view_home(model) 364 + // ... 365 + }, 366 + ], 367 + ) 368 + } 369 + ``` 370 + 371 + **Step 8: Run the build to verify changes compile** 372 + 373 + Run: `cd client && gleam build` 374 + Expected: Build succeeds 375 + 376 + **Step 9: Commit** 377 + 378 + ```bash 379 + git add client/src/quickslice_client.gleam 380 + git commit -m "feat: display OAuth error messages in client UI" 381 + ``` 382 + 383 + --- 384 + 385 + ## Task 4: Manual Testing 386 + 387 + **Step 1: Test admin OAuth error flow** 388 + 389 + 1. Start the server: `cd server && gleam run` 390 + 2. Navigate to `http://localhost:8080/onboarding` 391 + 3. Enter a handle and click login 392 + 4. On PDS authorization page, click "Deny" 393 + 5. Verify redirect to `/onboarding?error=access_denied&error_description=...` 394 + 6. Verify UI shows red alert: "Login was cancelled" 395 + 396 + **Step 2: Test with existing admin** 397 + 398 + 1. Register as admin first (complete normal login) 399 + 2. Log out (clear cookies) 400 + 3. Try to login from `/` and deny 401 + 4. Verify redirect to `/?error=access_denied&...` 402 + 5. Verify UI shows error alert 403 + 404 + **Step 3: Verify normal login still works** 405 + 406 + 1. Complete a normal login flow (accept authorization) 407 + 2. Verify login succeeds and redirects properly 408 + 409 + --- 410 + 411 + ## Summary 412 + 413 + | Task | File | Change | 414 + |------|------|--------| 415 + | 1 | `server/src/handlers/admin_oauth_callback.gleam` | Check error param first, redirect to `/` or `/onboarding` | 416 + | 2 | `server/src/handlers/oauth/atp_callback.gleam` | Check error param first, forward to client's redirect_uri | 417 + | 3 | `client/src/quickslice_client.gleam` | Parse error from URL, display alert | 418 + | 4 | Manual testing | Verify error and happy path flows |
+13 -13
server/priv/static/quickslice_client.js
··· 1 - var Ih=Object.defineProperty;var NL=(Z,J)=>{for(var K in J)Ih(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 U;for(let X=Z.length-1;X>=0;--X)K=new k1(Z[X],K);return K}[Symbol.iterator](){return new BL(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 U}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 BL{#Z;constructor(Z){this.#Z=Z}next(){if(this.#Z instanceof U)return{done:!0};else{let{head:Z,tail:J}=this.#Z;return this.#Z=J,{value:Z,done:!1}}}}class U extends r0{}class k1 extends r0{constructor(Z,J){super();this.head=Z,this.tail=J}}var OL=(Z)=>Z instanceof k1,TL=(Z)=>Z.head,PL=(Z)=>Z.tail;class PZ{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 TZ(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=TZ(this.rawBuffer,this.bitOffset,X),Y=TZ(Z.rawBuffer,Z.bitOffset,X);if(W!==Y)return!1}let K=this.bitSize%8;if(K){let X=TZ(this.rawBuffer,this.bitOffset,J),W=TZ(Z.rawBuffer,Z.bitOffset,J),Y=8-K;if(X>>Y!==W>>Y)return!1}}return!0}get buffer(){if(HL("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(HL("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 TZ(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 fM{constructor(Z){this.value=Z}}var FL={};function HL(Z,J){if(FL[Z])return;console.warn(`Deprecated BitArray.${Z} property used in JavaScript FFI code. ${J}.`),FL[Z]=!0}class s5 extends O{static isResult(Z){return Z instanceof s5}}class C extends s5{constructor(Z){super();this[0]=Z}isOk(){return!0}}var SL=(Z)=>new C(Z);class $ extends s5{constructor(Z){super();this[0]=Z}isOk(){return!1}}var AL=(Z)=>new $(Z);function S0(Z,J){let K=[Z,J];while(K.length){let X=K.pop(),W=K.pop();if(X===W)continue;if(!DL(X)||!DL(W))return!1;if(!Th(X,W)||Nh(X,W)||Fh(X,W)||Hh(X,W)||Dh(X,W)||Bh(X,W)||Oh(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]=zh(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 zh(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 Nh(Z,J){return Z instanceof Date&&(Z>J||Z<J)}function Fh(Z,J){return!(Z instanceof PZ)&&Z.buffer instanceof ArrayBuffer&&Z.BYTES_PER_ELEMENT&&!(Z.byteLength===J.byteLength&&Z.every((K,X)=>K===J[X]))}function Hh(Z,J){return Array.isArray(Z)&&Z.length!==J.length}function Dh(Z,J){return Z instanceof Map&&Z.size!==J.size}function Bh(Z,J){return Z instanceof Set&&(Z.size!=J.size||[...Z].some((K)=>!J.has(K)))}function Oh(Z,J){return Z instanceof RegExp&&(Z.source!==J.source||Z.flags!==J.flags)}function DL(Z){return typeof Z==="object"&&Z!==null}function Th(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 FJ(Z,J){if(J===0)return 0;else return Z/J}function c8(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 a0 extends O{}class t0 extends O{}class w8 extends O{}class y extends O{constructor(Z){super();this[0]=Z}}class v extends O{}function kM(Z,J){if(Z instanceof y){let K=Z[0];return new C(K)}else return new $(J)}function bM(Z){if(Z instanceof C){let J=Z[0];return new y(J)}else return new v}function qL(Z,J){if(Z instanceof y)return Z[0];else return J}function hM(Z,J){if(Z instanceof y){let K=Z[0];return J(K)}else return Z}var EL=new WeakMap,vM=new DataView(new ArrayBuffer(8)),$M=0;function gM(Z){let J=EL.get(Z);if(J!==void 0)return J;let K=$M++;if($M===2147483647)$M=0;return EL.set(Z,K),K}function _M(Z,J){return Z^J+2654435769+(Z<<6)+(Z>>2)|0}function uM(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 xL(Z){vM.setFloat64(0,Z);let J=vM.getInt32(0),K=vM.getInt32(4);return Math.imul(73244475,J>>16^J)^K}function Ph(Z){return uM(Z.toString())}function Sh(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 gM(Z);if(Z instanceof Date)return xL(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+_M(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+_M(c1(V),uM(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 xL(Z);case"string":return uM(Z);case"bigint":return Ph(Z);case"object":return Sh(Z);case"symbol":return gM(Z);case"function":return gM(Z);default:return 0}}var G8=5,dM=Math.pow(2,G8),Ah=dM-1,qh=dM/2,Eh=dM/4,S1=0,V8=1,b1=2,B5=3,cM={type:b1,bitmap:0,array:[]};function SZ(Z,J){return Z>>>J&Ah}function DJ(Z,J){return 1<<SZ(Z,J)}function Ch(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 pM(Z,J){return Ch(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 xh(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 mM(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 wL(Z,J,K,X,W,Y){let V=c1(J);if(V===X)return{type:B5,hash:V,array:[{type:S1,k:J,v:K},{type:S1,k:W,v:Y}]};let G={val:!1};return AZ(nM(cM,Z,V,J,K,G),Z,X,W,Y,G)}function AZ(Z,J,K,X,W,Y){switch(Z.type){case V8:return wh(Z,J,K,X,W,Y);case b1:return nM(Z,J,K,X,W,Y);case B5:return Uh(Z,J,K,X,W,Y)}}function wh(Z,J,K,X,W,Y){let V=SZ(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:S1,k:X,v:W})};if(G.type===S1){if(S0(X,G.k)){if(W===G.v)return Z;return{type:V8,size:Z.size,array:p1(Z.array,V,{type:S1,k:X,v:W})}}return Y.val=!0,{type:V8,size:Z.size,array:p1(Z.array,V,wL(J+G8,G.k,G.v,K,X,W))}}let I=AZ(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 nM(Z,J,K,X,W,Y){let V=DJ(K,J),G=pM(Z.bitmap,V);if((Z.bitmap&V)!==0){let I=Z.array[G];if(I.type!==S1){let N=AZ(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(S0(X,z)){if(W===I.v)return Z;return{type:b1,bitmap:Z.bitmap,array:p1(Z.array,G,{type:S1,k:X,v:W})}}return Y.val=!0,{type:b1,bitmap:Z.bitmap,array:p1(Z.array,G,wL(J+G8,z,I.v,K,X,W))}}else{let I=Z.array.length;if(I>=qh){let z=Array(32),N=SZ(K,J);z[N]=nM(cM,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=xh(Z.array,G,{type:S1,k:X,v:W});return Y.val=!0,{type:b1,bitmap:Z.bitmap|V,array:z}}}}function Uh(Z,J,K,X,W,Y){if(K===Z.hash){let V=iM(Z,X);if(V!==-1){if(Z.array[V].v===W)return Z;return{type:B5,hash:K,array:p1(Z.array,V,{type:S1,k:X,v:W})}}let G=Z.array.length;return Y.val=!0,{type:B5,hash:K,array:p1(Z.array,G,{type:S1,k:X,v:W})}}return AZ({type:b1,bitmap:DJ(Z.hash,J),array:[Z]},J,K,X,W,Y)}function iM(Z,J){let K=Z.array.length;for(let X=0;X<K;X++)if(S0(J,Z.array[X].k))return X;return-1}function HJ(Z,J,K,X){switch(Z.type){case V8:return Mh(Z,J,K,X);case b1:return Rh(Z,J,K,X);case B5:return jh(Z,X)}}function Mh(Z,J,K,X){let W=SZ(K,J),Y=Z.array[W];if(Y===void 0)return;if(Y.type!==S1)return HJ(Y,J+G8,K,X);if(S0(X,Y.k))return Y;return}function Rh(Z,J,K,X){let W=DJ(K,J);if((Z.bitmap&W)===0)return;let Y=pM(Z.bitmap,W),V=Z.array[Y];if(V.type!==S1)return HJ(V,J+G8,K,X);if(S0(X,V.k))return V;return}function jh(Z,J){let K=iM(Z,J);if(K<0)return;return Z.array[K]}function lM(Z,J,K,X){switch(Z.type){case V8:return Lh(Z,J,K,X);case b1:return yh(Z,J,K,X);case B5:return fh(Z,X)}}function Lh(Z,J,K,X){let W=SZ(K,J),Y=Z.array[W];if(Y===void 0)return Z;let V=void 0;if(Y.type===S1){if(!S0(Y.k,X))return Z}else if(V=lM(Y,J+G8,K,X),V===Y)return Z;if(V===void 0){if(Z.size<=Eh){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 yh(Z,J,K,X){let W=DJ(K,J);if((Z.bitmap&W)===0)return Z;let Y=pM(Z.bitmap,W),V=Z.array[Y];if(V.type!==S1){let G=lM(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:mM(Z.array,Y)}}if(S0(X,V.k)){if(Z.bitmap===W)return;return{type:b1,bitmap:Z.bitmap^W,array:mM(Z.array,Y)}}return Z}function fh(Z,J){let K=iM(Z,J);if(K<0)return Z;if(Z.array.length===1)return;return{type:B5,hash:Z.hash,array:mM(Z.array,K)}}function UL(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===S1){J(Y.v,Y.k);continue}UL(Y,J)}}class Y1{static fromObject(Z){let J=Object.keys(Z),K=Y1.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=Y1.new();return Z.forEach((K,X)=>{J=J.set(X,K)}),J}static new(){return new Y1(void 0,0)}constructor(Z,J){this.root=Z,this.size=J}get(Z,J){if(this.root===void 0)return J;let K=HJ(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?cM:this.root,W=AZ(X,0,c1(Z),Z,J,K);if(W===this.root)return this;return new Y1(W,K.val?this.size+1:this.size)}delete(Z){if(this.root===void 0)return this;let J=lM(this.root,0,c1(Z),Z);if(J===this.root)return this;if(J===void 0)return Y1.new();return new Y1(J,this.size-1)}has(Z){if(this.root===void 0)return!1;return HJ(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){UL(this.root,Z)}hashCode(){let Z=0;return this.forEach((J,K)=>{Z=Z+_M(c1(J),c1(K))|0}),Z}equals(Z){if(!(Z instanceof Y1)||this.size!==Z.size)return!1;try{return this.forEach((J,K)=>{if(!S0(Z.get(K,!J),J))throw CL}),!0}catch(J){if(J===CL)return!1;throw J}}}var CL=Symbol();function sM(Z){return BJ(Z)===0}function kh(Z,J){return!S0(D0(J,Z),new $(void 0))}function ML(Z,J){return kh(J,Z)}function n0(Z,J,K){return jL(J,K,Z)}function bh(Z,J){while(!0){let K=Z,X=J;if(K instanceof U)return X;else{let W=K.head;Z=K.tail,J=A(W,X)}}}function hh(Z,J){while(!0){let K=Z,X=J;if(K instanceof U)return bh(X,Q([]));else{let W=K.tail,Y=K.head[0];Z=W,J=A(Y,X)}}}function U8(Z){return hh(n8(Z),Q([]))}function I8(Z,J){return RL(J,Z)}function vh(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof U)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 r5(Z,J,K){return vh(n8(Z),J,K)}class V1 extends O{}class a5 extends O{}function gh(Z,J){while(!0){let K=Z,X=J;if(K instanceof U)return X;else Z=K.tail,J=X+1}}function z8(Z){return gh(Z,0)}function O5(Z,J){while(!0){let K=Z,X=J;if(K instanceof U)return X;else{let W=K.head;Z=K.tail,J=A(W,X)}}}function F0(Z){return O5(Z,Q([]))}function LL(Z){return S0(Z,Q([]))}function rM(Z,J){while(!0){let K=Z,X=J;if(K instanceof U)return!1;else{let W=K.head;if(S0(W,X))return!0;else Z=K.tail,J=X}}}function yL(Z){if(Z instanceof U)return new $(void 0);else{let J=Z.head;return new C(J)}}function _h(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof U)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 _h(Z,J,Q([]))}function mh(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof U)return F0(Y);else{let{head:V,tail:G}=X,I,z=W(V);if(z instanceof C){let F=z[0];I=A(F,Y)}else I=Y;let N=I;Z=G,J=W,K=N}}}function T5(Z,J){return mh(Z,J,Q([]))}function uh(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof U)return F0(Y);else{let V=X.head;Z=X.tail,J=W,K=A(W(V),Y)}}}function H0(Z,J){return uh(Z,J,Q([]))}function dh(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(W instanceof U)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 TJ(Z,J){return dh(Z,J,0,Q([]))}function t5(Z,J){while(!0){let K=Z,X=J;if(X<=0)return K;else if(K instanceof U)return K;else Z=K.tail,J=X-1}}function ch(Z,J){while(!0){let K=Z,X=J;if(K instanceof U)return X;else{let W=K.head;Z=K.tail,J=A(W,X)}}}function _0(Z,J){return ch(F0(Z),J)}function PJ(Z,J){return A(J,Z)}function ph(Z,J){while(!0){let K=Z,X=J;if(K instanceof U)return F0(X);else{let W=K.head;Z=K.tail,J=O5(W,X)}}}function fL(Z){return ph(Z,Q([]))}function v0(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof U)return W;else{let V=X.head;Z=X.tail,J=Y(W,V),K=Y}}}function aM(Z,J){while(!0){let K=Z,X=J;if(K instanceof U)return new $(void 0);else{let{head:W,tail:Y}=K;if(X(W))return new C(W);else Z=Y,J=X}}}function tM(Z,J){while(!0){let K=Z,X=J;if(K instanceof U)return new $(void 0);else{let{head:W,tail:Y}=K,V=X(W);if(V instanceof C)return V;else Z=Y,J=X}}}function nh(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof U)return F0(Y);else{let{head:V,tail:G}=X;if(ML(W,V))Z=G,J=W,K=Y;else Z=G,J=n0(W,V,void 0),K=A(V,Y)}}}function kL(Z){return nh(Z,h0(),Q([]))}function ih(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 U)if(z instanceof V1)return A(F0(D),F);else return A(D,F);else{let{head:B,tail:T}=V,P=G(N,B);if(z instanceof V1)if(P instanceof a0)Z=T,J=G,K=D,X=z,W=B,Y=F;else if(P instanceof t0)Z=T,J=G,K=D,X=z,W=B,Y=F;else{let S;if(z instanceof V1)S=A(F0(D),F);else S=A(D,F);let q=S;if(T instanceof U)return A(Q([B]),q);else{let{head:E,tail:R}=T,k,w=G(B,E);if(w instanceof a0)k=new V1;else if(w instanceof t0)k=new V1;else k=new a5;let f=k;Z=R,J=G,K=Q([B]),X=f,W=E,Y=q}}else if(P instanceof a0){let S;if(z instanceof V1)S=A(F0(D),F);else S=A(D,F);let q=S;if(T instanceof U)return A(Q([B]),q);else{let{head:E,tail:R}=T,k,w=G(B,E);if(w instanceof a0)k=new V1;else if(w instanceof t0)k=new V1;else k=new a5;let f=k;Z=R,J=G,K=Q([B]),X=f,W=E,Y=q}}else if(P instanceof t0){let S;if(z instanceof V1)S=A(F0(D),F);else S=A(D,F);let q=S;if(T instanceof U)return A(Q([B]),q);else{let{head:E,tail:R}=T,k,w=G(B,E);if(w instanceof a0)k=new V1;else if(w instanceof t0)k=new V1;else k=new a5;let f=k;Z=R,J=G,K=Q([B]),X=f,W=E,Y=q}}else Z=T,J=G,K=D,X=z,W=B,Y=F}}}function lh(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(W instanceof U)return O5(Y,G);else if(Y instanceof U)return O5(W,G);else{let{head:I,tail:z}=W,N=Y.head,F=Y.tail,D=V(I,N);if(D instanceof a0)Z=z,J=Y,K=V,X=A(I,G);else if(D instanceof t0)Z=W,J=F,K=V,X=A(N,G);else Z=W,J=F,K=V,X=A(N,G)}}}function sh(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof U)return F0(Y);else{let V=X.tail;if(V instanceof U){let G=X.head;return F0(A(F0(G),Y))}else{let G=X.head,I=V.head,z=V.tail,N=lh(G,I,W,Q([]));Z=z,J=W,K=A(N,Y)}}}}function rh(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(W instanceof U)return O5(Y,G);else if(Y instanceof U)return O5(W,G);else{let{head:I,tail:z}=W,N=Y.head,F=Y.tail,D=V(I,N);if(D instanceof a0)Z=W,J=F,K=V,X=A(N,G);else if(D instanceof t0)Z=z,J=Y,K=V,X=A(I,G);else Z=z,J=Y,K=V,X=A(I,G)}}}function ah(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof U)return F0(Y);else{let V=X.tail;if(V instanceof U){let G=X.head;return F0(A(F0(G),Y))}else{let G=X.head,I=V.head,z=V.tail,N=rh(G,I,W,Q([]));Z=z,J=W,K=A(N,Y)}}}}function th(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof U)return X;else if(W instanceof V1)if(X.tail instanceof U)return X.head;else Z=sh(X,Y,Q([])),J=new a5,K=Y;else if(X.tail instanceof U){let G=X.head;return F0(G)}else Z=ah(X,Y,Q([])),J=new V1,K=Y}}function oM(Z,J){if(Z instanceof U)return Z;else{let K=Z.tail;if(K instanceof U)return Z;else{let X=Z.head,W=K.head,Y=K.tail,V,G=J(X,W);if(G instanceof a0)V=new V1;else if(G instanceof t0)V=new V1;else V=new a5;let I=V,z=ih(Y,J,Q([X]),I,W,Q([]));return th(z,new V1,J)}}}function oh(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(W instanceof U)return F0(A([Y,V],G));else{let I=W.head[0];if(S0(I,Y)){let z=W.tail;return O5(G,A([I,V],z))}else{let z=W.head;Z=W.tail,J=Y,K=V,X=A(z,G)}}}}function eM(Z,J,K){return oh(Z,J,K,Q([]))}function bL(Z,J){while(!0){let K=Z,X=J;if(K instanceof U)return;else{let{head:W,tail:Y}=K;X(W),Z=Y,J=X}}}function hL(Z,J){if(Z instanceof U)return new $(void 0);else{let{head:K,tail:X}=Z;return new C(v0(X,K,J))}}class l8 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}}function I0(Z,J){let K=J.function(Z),X,W;if(X=K[0],W=K[1],W instanceof U)return new C(X);else return new $(W)}function s(Z){return new h1((J)=>{return[Z,Q([])]})}function Jv(Z){return[Z,Q([])]}function P5(Z,J){return new h1((K)=>{let X=Z.function(K),W,Y;return W=X[0],Y=X[1],[J(W),Y]})}function Kv(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(Y instanceof U)return W;else{let{head:V,tail:G}=Y,I=V.function(X),z,N;if(z=I,N=I[1],N instanceof U)return z;else Z=X,J=W,K=G}}}function JR(Z,J){return new h1((K)=>{let X=Z.function(K),W,Y;if(W=X,Y=X[1],Y instanceof U)return W;else return Kv(K,W,J)})}function U1(Z){return new h1((J)=>{if(iL(J))return[new v,Q([])];else{let X=Z.function(J),W,Y;return W=X[0],Y=X[1],[new y(W),Y]}})}var y0=new h1(Jv);function gL(Z,J){return Q([new l8(Z,i8(J),Q([]))])}function KR(Z,J,K){let X=K(Z);if(X instanceof C)return[X[0],Q([])];else return[X[0],Q([new l8(J,i8(Z),Q([]))])]}function Yv(Z){if(S0(N0(!0),Z))return[!0,Q([])];else if(S0(N0(!1),Z))return[!1,Q([])];else return[!1,gL("Bool",Z)]}function Xv(Z){return KR(Z,"Int",pL)}function Wv(Z){return KR(Z,"Float",cL)}var G1=new h1(Yv),p0=new h1(Xv),_L=new h1(Wv);function Qv(Z){return KR(Z,"String",nL)}var u=new h1(Qv);function Vv(Z,J,K,X,W){let Y=X(J),V=Y[1];if(V instanceof U){let G=Y[0],I=W(K),z=I[1];if(z instanceof U){let N=I[0];return[n0(Z[0],G,N),Z[1]]}else{let N=z;return o5([h0(),N],Q(["values"]))}}else{let G=V;return o5([h0(),G],Q(["keys"]))}}function M8(Z,J){return new h1((K)=>{let X=dL(K);if(X instanceof C){let W=X[0];return r5(W,[h0(),Q([])],(Y,V,G)=>{if(Y[1]instanceof U)return Vv(Y,V,G,Z.function,J.function);else return Y})}else return[h0(),gL("Dict",K)]})}function U0(Z){return new h1((J)=>{return uL(J,Z.function,(K,X)=>{return o5(K,Q([X]))},0,Q([]))})}function o5(Z,J){let K=JR(u,Q([(()=>{return P5(p0,X1)})()])),X=H0(J,(Y)=>{let V=N0(Y),G=I0(V,K);if(G instanceof C)return G[0];else return"<"+i8(V)+">"}),W=H0(Z[1],(Y)=>{return new l8(Y.expected,Y.found,_0(X,Y.path))});return[Z[0],W]}function Gv(Z,J,K,X,W){while(!0){let Y=Z,V=J,G=K,I=X,z=W;if(Y instanceof U){let F=G(I);return o5(F,F0(V))}else{let{head:N,tail:F}=Y,D=mL(I,N);if(D instanceof C){let B=D[0];if(B instanceof y){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 l8(B,i8(I),Q([]))])];return o5(S,F0(V))}}}}function qZ(Z,J,K){return new h1((X)=>{let W=Gv(Z,Q([]),J.function,X,(N,F)=>{let D=J.function(N),B;B=D[0];let T=[B,Q([new l8("Field","Nothing",Q([]))])];return o5(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 h(Z,J,K){return qZ(Q([Z]),J,K)}var XR=void 0,lL={};function N0(Z){return Z}function X1(Z){return Z.toString()}function K8(Z){if(Z==="")return 0;let J=SJ(Z);if(J){let K=0;for(let X of J)K++;return K}else return Z.match(/./gsu).length}function EZ(Z){let J=SJ(Z);if(J)return r0.fromArray(Array.from(J).map((K)=>K.segment));else return r0.fromArray(Z.match(/./gsu))}var sL=void 0;function SJ(Z){if(globalThis.Intl&&Intl.Segmenter)return sL||=new Intl.Segmenter,sL.segment(Z)[Symbol.iterator]()}function AJ(Z){let J,K=SJ(Z);if(K)J=K.next().value?.segment;else J=Z.match(/./su)?.[0];if(J)return new C([J,Z.slice(J.length)]);else return new $(XR)}function S5(Z){return[Z.charCodeAt(0)|0,Z.slice(1)]}function i1(Z){return Z.toLowerCase()}function qJ(Z){return Z.toUpperCase()}function WR(Z,J){return r0.fromArray(Z.split(J))}function QR(Z,J,K){if(K<=0||J>=Z.length)return"";let X=SJ(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 I1(Z,J,K){return Z.slice(J,J+K)}function e5(Z,J){return Z.startsWith(J)}function EJ(Z,J){return Z.endsWith(J)}function A5(Z,J){let K=Z.indexOf(J);if(K>=0){let X=Z.slice(0,K),W=Z.slice(K+J.length);return new C([X,W])}else return new $(XR)}var tL=[" ","\t",` 2 - `,"\v","\f","\r","…","\u2028","\u2029"].join(""),zv=new RegExp(`^[${tL}]*`),Nv=new RegExp(`[${tL}]*$`);function oL(Z){return Z.replace(zv,"")}function VR(Z){return Z.replace(Nv,"")}function q5(Z){console.log(Z)}function h0(){return Y1.new()}function BJ(Z){return Z.size}function n8(Z){return r0.fromArray(Z.entries())}function RL(Z,J){return J.delete(Z)}function D0(Z,J){let K=Z.get(J,lL);if(K===lL)return new $(XR);return new C(K)}function jL(Z,J,K){return K.set(Z,J)}function i8(Z){if(typeof Z==="string")return"String";else if(typeof Z==="boolean")return"Bool";else if(Z instanceof s5)return"Result";else if(Z instanceof r0)return"List";else if(Z instanceof PZ)return"BitArray";else if(Z instanceof Y1)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 eL(Z){return new Zy().inspect(Z)}function c0(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 c0(Z);if(Z instanceof fM)return this.#Q(Z);if(Z instanceof PZ)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 Y1)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 U)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 mL(Z,J){if(Z instanceof Y1||Z instanceof WeakMap||Z instanceof Map){let X={},W=Z.get(J,X);if(W===X)return new C(new v);return new C(new y(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 C(new y(W));X++}return new $("Indexable")}if(K&&Array.isArray(Z)||Z&&typeof Z==="object"||Z&&Object.getPrototypeOf(Z)===Object.prototype){if(J in Z)return new C(new y(Z[J]));return new C(new v)}return new $(K?"Indexable":"Dict")}function uL(Z,J,K,X,W){if(!(Z instanceof r0||Array.isArray(Z))){let V=new l8("List",i8(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 dL(Z){if(Z instanceof Y1)return new C(Z);if(Z instanceof Map||Z instanceof WeakMap)return new C(Y1.fromMap(Z));if(Z==null)return new $("Dict");if(typeof Z!=="object")return new $("Dict");let J=Object.getPrototypeOf(Z);if(J===Object.prototype||J===null)return new C(Y1.fromObject(Z));return new $("Dict")}function cL(Z){if(typeof Z==="number")return new C(Z);return new $(0)}function pL(Z){if(Number.isInteger(Z))return new C(Z);return new $(0)}function nL(Z){if(typeof Z==="string")return new C(Z);return new $("")}function iL(Z){return Z===null||Z===void 0}function CJ(Z,J){if(Z>J)return Z;else return J}function Ky(Z,J,K){if(K<=0)return"";else if(J<0){let Y=K8(Z)+J;if(Y<0)return"";else return QR(Z,Y,K)}else return QR(Z,J,K)}function Tv(Z,J){while(!0){let K=Z,X=J;if(K instanceof U)return X;else{let W=K.head;Z=K.tail,J=X+W}}}function CZ(Z){return Tv(Z,"")}function Pv(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof U)return Y;else{let V=X.head;Z=X.tail,J=W,K=Y+W+V}}}function s8(Z,J){if(Z instanceof U)return"";else{let{head:K,tail:X}=Z;return Pv(X,J,K)}}function J4(Z){let K=oL(Z);return VR(K)}function K4(Z,J){if(J==="")return EZ(Z);else{let X=N0(Z),W=WR(X,J);return H0(W,N0)}}function wJ(Z){let K=eL(Z);return N0(K)}function Wy(Z){if(Z instanceof C)return!0;else return!1}function GR(Z,J){if(Z instanceof C){let K=Z[0];return new C(J(K))}else return Z}function Y4(Z,J){if(Z instanceof C)return Z;else{let K=Z[0];return new $(J(K))}}function M1(Z,J){if(Z instanceof C){let K=Z[0];return J(K)}else return Z}function X4(Z,J){if(Z instanceof C)return Z[0];else return J}function Qy(Z){return T5(Z,(J)=>{return J})}function IR(Z){return JSON.stringify(Z)}function Vy(Z){return Object.fromEntries(Z)}function r8(Z){return Z}function Gy(Z){let J=[];while(OL(Z))J.push(TL(Z)),Z=PL(Z);return J}function Iy(){return null}function zy(Z){try{let J=JSON.parse(Z);return SL(J)}catch(J){return AL(Cv(J,Z))}}function Cv(Z,J){if(xv(Z))return Ny();return wv(Z,J)}function xv(Z){return/((unexpected (end|eof))|(end of data)|(unterminated string)|(json( parse error|\.parse)\: expected '(\:|\}|\])'))/i.test(Z.message)}function wv(Z,J){let K=[Uv,Mv,jv,Rv];for(let X of K){let W=X(Z,J);if(W)return W}return W4("")}function Uv(Z){let K=/unexpected token '(.)', ".+" is not valid JSON/i.exec(Z.message);if(!K)return null;let X=UJ(K[1]);return W4(X)}function Mv(Z){let K=/unexpected token (.) in JSON at position (\d+)/i.exec(Z.message);if(!K)return null;let X=UJ(K[1]);return W4(X)}function Rv(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=Lv(W,Y,J),G=UJ(J[V]);return W4(G)}function jv(Z){let K=/unexpected (identifier|token) "(.)"/i.exec(Z.message);if(!K)return null;let X=UJ(K[2]);return W4(X)}function UJ(Z){return"0x"+Z.charCodeAt(0).toString(16).toUpperCase()}function Lv(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 Fy extends O{}var Ny=()=>new Fy;class Hy extends O{constructor(Z){super();this[0]=Z}}var W4=(Z)=>new Hy(Z);class Dy extends O{constructor(Z){super();this[0]=Z}}function yv(Z,J){return M1(zy(Z),(K)=>{let X=I0(K,J);return Y4(X,(W)=>{return new Dy(W)})})}function l1(Z,J){return yv(Z,J)}function R8(Z){return IR(Z)}function d(Z){return r8(Z)}function s1(Z){return r8(Z)}function W1(Z){return r8(Z)}function By(Z){return r8(Z)}function zR(){return Iy()}function b(Z){return Vy(Z)}function Oy(Z){return Gy(Z)}function j0(Z,J){let X=H0(Z,J);return Oy(X)}class MJ extends O{constructor(Z){super();this.dict=Z}}function E5(){return new MJ(h0())}function Q4(Z,J){let K=Z.dict,X=D0(K,J);return Wy(X)}function Ty(Z,J){return new MJ(I8(Z.dict,J))}function Py(Z){return U8(Z.dict)}var kv=void 0;function xZ(Z,J){return new MJ(n0(Z.dict,J,kv))}class W0 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 vv(Z){return 48>=Z&&Z<=57||65>=Z&&Z<=90||97>=Z&&Z<=122||Z===58||Z===46}function Y8(Z,J){return new C(new W0(J.scheme,J.userinfo,J.host,J.port,J.path,J.query,new y(Z)))}function $v(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 Y8(I,V)}else{let I=Y.slice(1),z=I1(W,0,G),N=new W0(V.scheme,V.userinfo,V.host,V.port,V.path,new y(z),V.fragment);return Y8(I,N)}else if(Y==="")return new C(new W0(V.scheme,V.userinfo,V.host,V.port,V.path,new y(W),V.fragment));else{let I=S5(Y),z;z=I[1],Z=W,J=z,K=V,X=G+1}}}function j8(Z,J){return $v(Z,Z,J,0)}function gv(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(Y.startsWith("?")){let I=Y.slice(1),z=I1(W,0,G),N=new W0(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=I1(W,0,G),N=new W0(V.scheme,V.userinfo,V.host,V.port,z,V.query,V.fragment);return Y8(I,N)}else if(Y==="")return new C(new W0(V.scheme,V.userinfo,V.host,V.port,W,V.query,V.fragment));else{let I=S5(Y),z;z=I[1],Z=W,J=z,K=V,X=G+1}}}function C5(Z,J){return gv(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 W0(W.scheme,W.userinfo,W.host,new y(Y),W.path,W.query,W.fragment);return j8(V,G)}else if(X.startsWith("#")){let V=X.slice(1),G=new W0(W.scheme,W.userinfo,W.host,new y(Y),W.path,W.query,W.fragment);return Y8(V,G)}else if(X.startsWith("/")){let V=new W0(W.scheme,W.userinfo,W.host,new y(Y),W.path,W.query,W.fragment);return C5(X,V)}else if(X==="")return new C(new W0(W.scheme,W.userinfo,W.host,new y(Y),W.path,W.query,W.fragment));else return new $(void 0)}}function RJ(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 C(J);else if(Z==="")return new C(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 Y8(K,J)}else if(Z.startsWith(":#")){let K=Z.slice(2);return Y8(K,J)}else if(Z.startsWith("/"))return C5(Z,J);else if(Z.startsWith(":")){let K=Z.slice(1);if(K.startsWith("/"))return C5(K,J);else return new $(void 0)}else return new $(void 0)}function Sy(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(Y==="")return new C(new W0(V.scheme,V.userinfo,new y(W),V.port,V.path,V.query,V.fragment));else if(Y.startsWith(":")){let I=I1(W,0,G),z=new W0(V.scheme,V.userinfo,new y(I),V.port,V.path,V.query,V.fragment);return RJ(Y,z)}else if(Y.startsWith("/")){let I=I1(W,0,G),z=new W0(V.scheme,V.userinfo,new y(I),V.port,V.path,V.query,V.fragment);return C5(Y,z)}else if(Y.startsWith("?")){let I=Y.slice(1),z=I1(W,0,G),N=new W0(V.scheme,V.userinfo,new y(z),V.port,V.path,V.query,V.fragment);return j8(I,N)}else if(Y.startsWith("#")){let I=Y.slice(1),z=I1(W,0,G),N=new W0(V.scheme,V.userinfo,new y(z),V.port,V.path,V.query,V.fragment);return Y8(I,N)}else{let I=S5(Y),z;z=I[1],Z=W,J=z,K=V,X=G+1}}}function _v(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(Y==="")return new C(new W0(V.scheme,V.userinfo,new y(Y),V.port,V.path,V.query,V.fragment));else if(Y.startsWith("]"))if(G===0){let I=Y.slice(1);return RJ(I,V)}else{let I=Y.slice(1),z=I1(W,0,G+1),N=new W0(V.scheme,V.userinfo,new y(z),V.port,V.path,V.query,V.fragment);return RJ(I,N)}else if(Y.startsWith("/"))if(G===0)return C5(Y,V);else{let I=I1(W,0,G),z=new W0(V.scheme,V.userinfo,new y(I),V.port,V.path,V.query,V.fragment);return C5(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=I1(W,0,G),N=new W0(V.scheme,V.userinfo,new y(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 Y8(I,V)}else{let I=Y.slice(1),z=I1(W,0,G),N=new W0(V.scheme,V.userinfo,new y(z),V.port,V.path,V.query,V.fragment);return Y8(I,N)}else{let I=S5(Y),z,N;if(z=I[0],N=I[1],vv(z))Z=W,J=N,K=V,X=G+1;else return Sy(W,W,V,0)}}}function mv(Z,J){return _v(Z,Z,J,0)}function uv(Z,J){return Sy(Z,Z,J,0)}function V4(Z,J){if(Z.startsWith("["))return mv(Z,J);else if(Z.startsWith(":")){let K=new W0(J.scheme,J.userinfo,new y(""),J.port,J.path,J.query,J.fragment);return RJ(Z,K)}else if(Z==="")return new C(new W0(J.scheme,J.userinfo,new y(""),J.port,J.path,J.query,J.fragment));else return uv(Z,J)}function dv(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 V4(I,V)}else{let I=Y.slice(1),z=I1(W,0,G),N=new W0(V.scheme,new y(z),V.host,V.port,V.path,V.query,V.fragment);return V4(I,N)}else if(Y==="")return V4(W,V);else if(Y.startsWith("/"))return V4(W,V);else if(Y.startsWith("?"))return V4(W,V);else if(Y.startsWith("#"))return V4(W,V);else{let I=S5(Y),z;z=I[1],Z=W,J=z,K=V,X=G+1}}}function cv(Z,J){return dv(Z,Z,J,0)}function NR(Z,J){if(Z==="//")return new C(new W0(J.scheme,J.userinfo,new y(""),J.port,J.path,J.query,J.fragment));else if(Z.startsWith("//")){let K=Z.slice(2);return cv(K,J)}else return C5(Z,J)}function pv(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(Y.startsWith("/"))if(G===0)return NR(Y,V);else{let I=I1(W,0,G),z=new W0(new y(i1(I)),V.userinfo,V.host,V.port,V.path,V.query,V.fragment);return NR(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=I1(W,0,G),N=new W0(new y(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 Y8(I,V)}else{let I=Y.slice(1),z=I1(W,0,G),N=new W0(new y(i1(z)),V.userinfo,V.host,V.port,V.path,V.query,V.fragment);return Y8(I,N)}else if(Y.startsWith(":"))if(G===0)return new $(void 0);else{let I=Y.slice(1),z=I1(W,0,G),N=new W0(new y(i1(z)),V.userinfo,V.host,V.port,V.path,V.query,V.fragment);return NR(I,N)}else if(Y==="")return new C(new W0(V.scheme,V.userinfo,V.host,V.port,W,V.query,V.fragment));else{let I=S5(Y),z;z=I[1],Z=W,J=z,K=V,X=G+1}}}function jJ(Z){let J,K=Z.fragment;if(K instanceof y){let w=K[0];J=Q(["#",w])}else J=Q([]);let X=J,W,Y=Z.query;if(Y instanceof y){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=e5(Z.path,"/");if(z instanceof y&&!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 y&&T instanceof y){let w=T[0];D=A(":",A(X1(w),F))}else D=F;let P=D,S,q=Z.scheme,E=Z.userinfo,R=Z.host;if(q instanceof y)if(E instanceof y)if(R instanceof y){let w=q[0],f=E[0],g=R[0];S=A(w,A("://",A(f,A("@",A(g,P)))))}else{let w=q[0];S=A(w,A(":",P))}else if(R instanceof y){let w=q[0],f=R[0];S=A(w,A("://",A(f,P)))}else{let w=q[0];S=A(w,A(":",P))}else if(E instanceof v&&R instanceof y){let w=R[0];S=A("//",A(w,P))}else S=P;return CZ(S)}var nv=new W0(new v,new v,new v,new v,"",new v,new v);function FR(Z){return pv(Z,Z,nv,0)}function G4(Z,J,K){if(Z)return J;else return K()}function O0(Z){return Z}var r1=()=>globalThis?.document,yJ="http://www.w3.org/1999/xhtml",fJ=1,BR=3;var Cy=!!globalThis.HTMLElement?.prototype?.moveBefore;var e=Q([]),kJ=new v;var rv=new w8,av=new a0,tv=new t0;function bJ(Z,J){if(Z.name===J.name)return tv;else if(Z.name<J.name)return av;else return rv}class a1 extends O{constructor(Z,J,K){super();this.kind=Z,this.name=J,this.value=K}}class UZ extends O{constructor(Z,J,K){super();this.kind=Z,this.name=J,this.value=K}}class B1 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 MZ extends O{constructor(Z,J,K){super();this.prevent_default=Z,this.stop_propagation=J,this.message=K}}class Ry extends O{constructor(Z){super();this.kind=Z}}class jy extends O{constructor(Z){super();this.kind=Z}}function Y$(Z,J){while(!0){let K=Z,X=J;if(K instanceof U)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 U){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 U){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 Ly(Z){if(Z instanceof U)return Z;else if(Z.tail instanceof U)return Z;else{let X=oM(Z,(W,Y)=>{return bJ(Y,W)});return Y$(X,e)}}var TR=0;function yy(Z,J){return new a1(TR,Z,J)}var PR=1;function fy(Z,J){return new UZ(PR,Z,J)}var SR=2;function ky(Z,J,K,X,W,Y,V){return new B1(SR,Z,J,K,X,W,Y,V)}var AR=0;var qR=new Ry(AR);var hJ=2,by=new jy(hJ);function M(Z,J){return yy(Z,J)}function ER(Z,J){return fy(Z,J)}function CR(Z,J){if(J)return M(Z,"");else return ER(Z,s1(!1))}function H(Z){return M("class",Z)}function H8(Z){return M("id",Z)}function v1(Z){return M("href",Z)}function hy(Z){return M("alt",Z)}function vy(Z){return M("src",Z)}function x5(Z){return M("action",Z)}function w5(Z){return M("method",Z)}function $y(Z){return M("accept",s8(Z,","))}function RZ(Z){return CR("disabled",Z)}function gy(Z){return M("name",Z)}function q1(Z){return M("placeholder",Z)}function t8(Z){return CR("required",Z)}function xR(Z){return CR("selected",Z)}function M0(Z){return M("type",Z)}function o0(Z){return M("value",Z)}class jZ extends O{constructor(Z,J,K){super();this.synchronous=Z,this.before_paint=J,this.after_paint=K}}class UR 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 X$(Z,J,K){return}function W$(Z,J){return new UR((K)=>{return Z.dispatch(J(K))},Z.emit,(K)=>{return X$(Z,K,J)},Z.root,Z.provide)}function wR(Z,J){return H0(Z,(K)=>{return(X)=>{return K(W$(X,J))}})}function MR(Z,J){return new jZ(wR(Z.synchronous,J),wR(Z.before_paint,J),wR(Z.after_paint,J))}function _y(Z,J,K,X,W,Y){let V=new UR(J,K,X,W,Y);return bL(Z.synchronous,(G)=>{return G(V)})}var vJ=new jZ(Q([]),Q([]),Q([]));function i(){return vJ}function z1(Z){return new jZ(Q([(K)=>{let X=K.dispatch;return Z(X)}]),vJ.before_paint,vJ.after_paint)}function Q1(Z){return v0(Z,vJ,(J,K)=>{return new jZ(v0(K.synchronous,J.synchronous,PJ),v0(K.before_paint,J.before_paint,PJ),v0(K.after_paint,J.after_paint,PJ))})}function E1(){return null}function LZ(Z,J){let K=Z?.get(J);if(K!=null)return new C(K);else return new $(void 0)}function yZ(Z,J){return Z&&Z.has(J)}function U5(Z,J,K){return Z??=new Map,Z.set(J,K),Z}function RR(Z,J){return Z?.delete(J),Z}class jR extends O{}class LR extends O{constructor(Z,J){super();this.key=Z,this.parent=J}}class my extends O{constructor(Z,J){super();this.index=Z,this.parent=J}}function Q$(Z,J){while(!0){let K=Z,X=J;if(X instanceof U)return!1;else{let{head:W,tail:Y}=X,V=e5(K,W);if(V)return V;else Z=K,J=Y}}}function o1(Z,J,K){if(K==="")return new my(J,Z);else return new LR(K,Z)}var z4=new jR,kZ="\t";function uy(Z,J){while(!0){let K=Z,X=J;if(K instanceof jR)if(X instanceof U)return"";else{let W=X.tail;return CZ(W)}else if(K instanceof LR){let W=K.key;Z=K.parent,J=A(kZ,A(W,X))}else{let W=K.index;Z=K.parent,J=A(kZ,A(X1(W),X))}}}function dy(Z){return uy(Z,Q([]))}function cy(Z,J){if(J instanceof U)return!1;else return Q$(dy(Z),J)}var yR=` 5 - `;function fR(Z,J){return uy(Z,Q([yR,J]))}class R1 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 C1 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 o8 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 N4(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 py(Z,J){if(J instanceof R1)return new R1(J.kind,Z,J.mapper,J.children,J.keyed_children);else if(J instanceof C1)return new C1(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 o8(J.kind,Z,J.mapper,J.namespace,J.tag,J.attributes,J.inner_html)}var X8=0;function gJ(Z,J,K,X){return new R1(X8,Z,J,K,X)}var M5=1;function F4(Z,J,K,X,W,Y,V,G,I){return new C1(M5,Z,J,K,X,Ly(W),Y,V,G,I)}var H4=2;function kR(Z,J,K){return new $1(H4,Z,J,K)}var ny=3;var bR=(Z,J)=>Z===J,W8=(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 I$(Z,J);return z$(Z,J)},I$=(Z,J)=>{let K=Z.length;if(K!==J.length)return!1;while(K--)if(!W8(Z[K],J[K]))return!1;return!0},z$=(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(!W8(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 $R extends O{constructor(Z,J){super();this.path=Z,this.handler=J}}class hR extends O{constructor(Z){super();this.path=Z}}function gR(){return new f8(E1(),e,e)}function ry(Z){return new f8(Z.handlers,Z.next_dispatched_paths,e)}function ay(Z,J,K){return RR(Z,fR(J,K))}function _J(Z,J,K){let X=ay(Z.handlers,J,K);return new f8(X,Z.dispatched_paths,Z.next_dispatched_paths)}function iy(Z,J,K){return v0(K,Z,(X,W)=>{if(W instanceof B1){let Y=W.name;return ay(X,J,Y)}else return X})}function _R(Z,J,K,X){let W=LZ(Z.handlers,J+yR+K);if(W instanceof C){let Y=W[0],V=I0(X,Y);if(V instanceof C){let G=V[0];return new $R(J,G)}else return new hR(J)}else return new hR(J)}function mR(Z,J){let K=A(J.path,Z.next_dispatched_paths),X=new f8(Z.handlers,Z.dispatched_paths,K);if(J instanceof $R){let W=J.handler;return[X,new C(W)]}else return[X,new $(void 0)]}function mJ(Z,J,K,X){let W=_R(Z,J,K,X);return((Y)=>{return mR(Z,Y)})(W)}function uJ(Z,J){return cy(J,Z.dispatched_paths)}function ty(Z,J,K,X,W){return U5(Z,fR(K,X),P5(W,(Y)=>{return new MZ(Y.prevent_default,Y.stop_propagation,O0(J)(Y.message))}))}function D4(Z,J,K,X,W){let Y=ty(Z.handlers,J,K,X,W);return new f8(Y,Z.dispatched_paths,Z.next_dispatched_paths)}function ly(Z,J,K,X){return v0(X,Z,(W,Y)=>{if(Y instanceof B1){let{name:V,handler:G}=Y;return ty(W,J,K,V,G)}else return W})}function y8(Z,J){let K=bR(Z,O0);if(bR(J,O0))return Z;else if(K)return J;else return(W)=>{return Z(J(W))}}function sy(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(G instanceof U)return W;else{let{head:I,tail:z}=G;Z=oy(W,Y,V,I),J=Y,K=V+1,X=z}}}function oy(Z,J,K,X){if(X instanceof R1){let W=X.children,Y=o1(J,K,X.key);return sy(Z,Y,0,W)}else if(X instanceof C1){let{attributes:W,children:Y}=X,V=o1(J,K,X.key),I=iy(Z,V,W);return sy(I,V,0,Y)}else if(X instanceof $1)return Z;else{let W=X.attributes,Y=o1(J,K,X.key);return iy(Z,Y,W)}}function k8(Z,J,K,X){let W=oy(Z.handlers,J,K,X);return new f8(W,Z.dispatched_paths,Z.next_dispatched_paths)}function vR(Z,J,K,X,W){while(!0){let Y=Z,V=J,G=K,I=X,z=W;if(z instanceof U)return Y;else{let{head:N,tail:F}=z;Z=ey(Y,V,G,I,N),J=V,K=G,X=I+1,W=F}}}function ey(Z,J,K,X,W){if(W instanceof R1){let Y=W.children,V=o1(K,X,W.key),G=y8(J,W.mapper);return vR(Z,G,V,0,Y)}else if(W instanceof C1){let{attributes:Y,children:V}=W,G=o1(K,X,W.key),I=y8(J,W.mapper),N=ly(Z,I,G,Y);return vR(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 ly(Z,G,V,Y)}}function b8(Z,J,K,X,W){let Y=ey(Z.handlers,J,K,X,W);return new f8(Y,Z.dispatched_paths,Z.next_dispatched_paths)}function uR(Z){return b8(gR(),O0,z4,0,Z)}function Zf(Z,J,K,X,W){let Y=vR(Z.handlers,J,K,X,W);return new f8(Y,Z.dispatched_paths,Z.next_dispatched_paths)}function R0(Z,J,K){return F4("",O0,"",Z,J,K,E1(),!1,N4(Z,""))}function g1(Z,J,K,X){return F4("",O0,Z,J,K,X,E1(),!1,N4(J,Z))}function x(Z){return kR("",O0,Z)}function z0(){return kR("",O0,"")}function Jf(Z){return gJ("",O0,Z,E1())}function bZ(Z,J){let K=O0(y8(O0(J),Z.mapper));if(Z instanceof R1){let{children:X,keyed_children:W}=Z;return new R1(Z.kind,Z.key,K,O0(X),O0(W))}else if(Z instanceof C1){let{attributes:X,children:W,keyed_children:Y}=Z;return new C1(Z.kind,Z.key,K,Z.namespace,Z.tag,O0(X),O0(W),O0(Y),Z.self_closing,Z.void)}else if(Z instanceof $1)return O0(Z);else{let X=Z.attributes;return new o8(Z.kind,Z.key,K,Z.namespace,Z.tag,O0(X),Z.inner_html)}}function l0(Z){return x(Z)}function _1(Z,J){return R0("h1",Z,J)}function B4(Z,J){return R0("h2",Z,J)}function O4(Z,J){return R0("h3",Z,J)}function j(Z,J){return R0("div",Z,J)}function j5(Z,J){return R0("li",Z,J)}function x0(Z,J){return R0("p",Z,J)}function dJ(Z,J){return R0("pre",Z,J)}function cJ(Z,J){return R0("ul",Z,J)}function m1(Z,J){return R0("a",Z,J)}function h8(Z,J){return R0("code",Z,J)}function p(Z,J){return R0("span",Z,J)}function Kf(Z){return R0("img",Z,e)}function q0(Z,J){return R0("button",Z,J)}function v8(Z,J){return R0("form",Z,J)}function N1(Z){return R0("input",Z,e)}function s0(Z,J){return R0("label",Z,J)}function dR(Z,J){return R0("option",Z,Q([x(J)]))}function Yf(Z,J){return R0("select",Z,J)}function cR(Z,J){return R0("textarea",A(ER("value",d(J)),Z),Q([x(J)]))}function Xf(Z,J){return R0("details",Z,J)}function Wf(Z,J){return R0("summary",Z,J)}class hZ extends O{constructor(Z,J,K,X){super();this.index=Z,this.removed=J,this.changes=K,this.children=X}}class Qf extends O{constructor(Z,J){super();this.kind=Z,this.content=J}}class Vf extends O{constructor(Z,J){super();this.kind=Z,this.inner_html=J}}class Gf extends O{constructor(Z,J,K){super();this.kind=Z,this.added=J,this.removed=K}}class If extends O{constructor(Z,J,K){super();this.kind=Z,this.key=J,this.before=K}}class zf extends O{constructor(Z,J,K){super();this.kind=Z,this.index=J,this.with=K}}class Nf extends O{constructor(Z,J){super();this.kind=Z,this.index=J}}class Ff extends O{constructor(Z,J,K){super();this.kind=Z,this.children=J,this.before=K}}function pR(Z,J,K,X){return new hZ(Z,J,K,X)}var nR=0;function Hf(Z){return new Qf(nR,Z)}var iR=1;function Df(Z){return new Vf(iR,Z)}var lR=2;function sR(Z,J){return new Gf(lR,Z,J)}var rR=3;function Bf(Z,J){return new If(rR,Z,J)}var aR=4;function Of(Z){return new Nf(aR,Z)}var tR=5;function L5(Z,J){return new zf(tR,Z,J)}var oR=6;function eR(Z,J){return new Ff(oR,Z,J)}class Pf 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 Sf extends O{constructor(Z,J){super();this.kind=Z,this.patch=J}}class Af extends O{constructor(Z,J,K){super();this.kind=Z,this.name=J,this.data=K}}class qf extends O{constructor(Z,J,K){super();this.kind=Z,this.key=J,this.value=K}}class pJ extends O{constructor(Z,J){super();this.kind=Z,this.messages=J}}class nJ extends O{constructor(Z,J,K){super();this.kind=Z,this.name=J,this.value=K}}class iJ extends O{constructor(Z,J,K){super();this.kind=Z,this.name=J,this.value=K}}class lJ extends O{constructor(Z,J,K,X){super();this.kind=Z,this.path=J,this.name=K,this.event=X}}class Zj extends O{constructor(Z,J,K){super();this.kind=Z,this.key=J,this.value=K}}var H$=0;function Ef(Z,J,K,X,W,Y,V){return new Pf(H$,Z,J,K,X,W,Y,V)}var D$=1;function Jj(Z){return new Sf(D$,Z)}var B$=2;function Cf(Z,J){return new Af(B$,Z,J)}var O$=3;function xf(Z,J){return new qf(O$,Z,J)}class sJ extends O{constructor(Z,J){super();this.patch=Z,this.events=J}}class Mf extends O{constructor(Z,J,K){super();this.added=Z,this.removed=J,this.events=K}}function T$(Z,J,K,X){if(K==="input"&&J==="")return uJ(Z,X);else if(K==="select"&&J==="")return uJ(Z,X);else if(K==="textarea"&&J==="")return uJ(Z,X);else return!1}function Uf(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 U)if(B instanceof U)return new Mf(T,P,F);else{let S=B.head;if(S instanceof B1){let q=S,E=B.tail,R=S.name,k=S.handler,w=A(q,T),f=D4(F,N,z,R,k);Z=I,J=z,K=N,X=f,W=D,Y=E,V=w,G=P}else{let q=S,E=B.tail,R=A(q,T);Z=I,J=z,K=N,X=F,W=D,Y=E,V=R,G=P}}else if(B instanceof U){let S=D.head;if(S instanceof B1){let q=S,E=D.tail,R=S.name,k=A(q,P),w=_J(F,z,R);Z=I,J=z,K=N,X=w,W=E,Y=B,V=T,G=k}else{let q=S,E=D.tail,R=A(q,P);Z=I,J=z,K=N,X=F,W=E,Y=B,V=T,G=R}}else{let{head:S,tail:q}=D,E=B.head,R=B.tail,k=bJ(S,E);if(k instanceof a0)if(S instanceof B1){let w=S.name,f=A(S,P),g=_J(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 t0)if(S instanceof a1)if(E instanceof a1){let w,f=E.name;if(f==="value")w=I||S.value!==E.value;else if(f==="checked")w=I||S.value!==E.value;else if(f==="selected")w=I||S.value!==E.value;else w=S.value!==E.value;let g=w,c;if(g)c=A(E,T);else c=T;let n=c;Z=I,J=z,K=N,X=F,W=q,Y=R,V=n,G=P}else if(E instanceof B1){let{name:w,handler:f}=E,g=A(E,T),c=A(S,P),n=D4(F,N,z,w,f);Z=I,J=z,K=N,X=n,W=q,Y=R,V=g,G=c}else{let w=A(E,T),f=A(S,P);Z=I,J=z,K=N,X=F,W=q,Y=R,V=w,G=f}else if(S instanceof UZ)if(E instanceof UZ){let w,f=E.name;if(f==="scrollLeft")w=!0;else if(f==="scrollRight")w=!0;else if(f==="value")w=I||!W8(S.value,E.value);else if(f==="checked")w=I||!W8(S.value,E.value);else if(f==="selected")w=I||!W8(S.value,E.value);else w=!W8(S.value,E.value);let g=w,c;if(g)c=A(E,T);else c=T;let n=c;Z=I,J=z,K=N,X=F,W=q,Y=R,V=n,G=P}else if(E instanceof B1){let{name:w,handler:f}=E,g=A(E,T),c=A(S,P),n=D4(F,N,z,w,f);Z=I,J=z,K=N,X=n,W=q,Y=R,V=g,G=c}else{let w=A(E,T),f=A(S,P);Z=I,J=z,K=N,X=F,W=q,Y=R,V=w,G=f}else if(E instanceof B1){let{name:w,handler:f}=E,g=S.prevent_default.kind!==E.prevent_default.kind||S.stop_propagation.kind!==E.stop_propagation.kind||S.debounce!==E.debounce||S.throttle!==E.throttle,c;if(g)c=A(E,T);else c=T;let n=c,r=D4(F,N,z,w,f);Z=I,J=z,K=N,X=r,W=q,Y=R,V=n,G=P}else{let w=S.name,f=A(E,T),g=A(S,P),c=_J(F,z,w);Z=I,J=z,K=N,X=c,W=q,Y=R,V=f,G=g}else if(E instanceof B1){let{name:w,handler:f}=E,g=A(E,T),c=D4(F,N,z,w,f);Z=I,J=z,K=N,X=c,W=D,Y=R,V=g,G=P}else{let w=A(E,T);Z=I,J=z,K=N,X=F,W=D,Y=R,V=w,G=P}}}}function Kj(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,E=W,R=Y,k=V,w=G,f=I,g=z,c=N,n=F,r=D,Q0=B;if(T instanceof U)if(S instanceof U)return new sJ(new hZ(f,k,c,n),Q0);else{let E0=Zf(Q0,r,g,w,S),k0=eR(S,w-R),G0=A(k0,c);return new sJ(new hZ(f,k,G0,n),E0)}else if(S instanceof U){let{head:E0,tail:k0}=T,G0;if(E0.key===""||!yZ(E,E0.key))G0=k+1;else G0=k;let V0=G0,J0=k8(Q0,g,w,E0);Z=k0,J=P,K=S,X=q,W=E,Y=R,V=V0,G=w,I=f,z=g,N=c,F=n,D=r,B=J0}else{let E0=T.head,k0=S.head;if(E0.key!==k0.key){let G0=T.tail,P0=S.tail,V0=LZ(P,k0.key);if(yZ(q,E0.key))if(V0 instanceof C){let Z0=V0[0];if(yZ(E,E0.key))Z=G0,J=P,K=S,X=q,W=E,Y=R-1,V=k,G=w,I=f,z=g,N=c,F=n,D=r,B=Q0;else{let L=w-R,_=A(Bf(k0.key,L),c),t=U5(E,k0.key,void 0),o=R+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=Q0}}else{let Z0=w-R,m=b8(Q0,r,g,w,k0),L=eR(Q([k0]),Z0),_=A(L,c);Z=T,J=P,K=P0,X=q,W=E,Y=R+1,V=k,G=w+1,I=f,z=g,N=_,F=n,D=r,B=m}else if(V0 instanceof C){let Z0=w-R,m=A(Of(Z0),c),L=k8(Q0,g,w,E0),_=R-1;Z=G0,J=P,K=S,X=q,W=E,Y=_,V=k,G=w,I=f,z=g,N=m,F=n,D=r,B=L}else{let Z0=L5(w-R,k0),m,_=k8(Q0,g,w,E0);m=b8(_,r,g,w,k0);let t=m;Z=G0,J=P,K=P0,X=q,W=E,Y=R,V=k,G=w+1,I=f,z=g,N=A(Z0,c),F=n,D=r,B=t}}else{let G0=T.head;if(G0 instanceof R1){let P0=S.head;if(P0 instanceof R1){let V0=G0,J0=T.tail,Z0=P0,m=S.tail,L=y8(r,Z0.mapper),_=o1(g,w,Z0.key),t=Kj(V0.children,V0.keyed_children,Z0.children,Z0.keyed_children,E1(),0,0,0,w,_,e,e,L,Q0),o,K0=t.patch;if(K0.changes instanceof U)if(K0.children instanceof U)if(K0.removed===0)o=n;else o=A(t.patch,n);else o=A(t.patch,n);else o=A(t.patch,n);let C0=o;Z=J0,J=P,K=m,X=q,W=E,Y=R,V=k,G=w+1,I=f,z=g,N=c,F=C0,D=r,B=t.events}else{let V0=G0,J0=T.tail,Z0=P0,m=S.tail,L=L5(w-R,Z0),_,o=k8(Q0,g,w,V0);_=b8(o,r,g,w,Z0);let K0=_;Z=J0,J=P,K=m,X=q,W=E,Y=R,V=k,G=w+1,I=f,z=g,N=A(L,c),F=n,D=r,B=K0}}else if(G0 instanceof C1){let P0=S.head;if(P0 instanceof C1){let V0=G0,J0=P0;if(V0.namespace===J0.namespace&&V0.tag===J0.tag){let Z0=T.tail,m=S.tail,L=y8(r,J0.mapper),_=o1(g,w,J0.key),t=T$(Q0,J0.namespace,J0.tag,_),o=Uf(t,_,L,Q0,V0.attributes,J0.attributes,e,e),K0,w0,C0;K0=o.added,w0=o.removed,C0=o.events;let L0;if(K0 instanceof U&&w0 instanceof U)L0=e;else L0=Q([sR(K0,w0)]);let H1=L0,T1=Kj(V0.children,V0.keyed_children,J0.children,J0.keyed_children,E1(),0,0,0,w,_,H1,e,L,C0),P1,w1=T1.patch;if(w1.changes instanceof U)if(w1.children instanceof U)if(w1.removed===0)P1=n;else P1=A(T1.patch,n);else P1=A(T1.patch,n);else P1=A(T1.patch,n);let x8=P1;Z=Z0,J=P,K=m,X=q,W=E,Y=R,V=k,G=w+1,I=f,z=g,N=c,F=x8,D=r,B=T1.events}else{let Z0=G0,m=T.tail,L=P0,_=S.tail,t=L5(w-R,L),o,w0=k8(Q0,g,w,Z0);o=b8(w0,r,g,w,L);let C0=o;Z=m,J=P,K=_,X=q,W=E,Y=R,V=k,G=w+1,I=f,z=g,N=A(t,c),F=n,D=r,B=C0}}else{let V0=G0,J0=T.tail,Z0=P0,m=S.tail,L=L5(w-R,Z0),_,o=k8(Q0,g,w,V0);_=b8(o,r,g,w,Z0);let K0=_;Z=J0,J=P,K=m,X=q,W=E,Y=R,V=k,G=w+1,I=f,z=g,N=A(L,c),F=n,D=r,B=K0}}else if(G0 instanceof $1){let P0=S.head;if(P0 instanceof $1){let V0=G0,J0=P0;if(V0.content===J0.content){let Z0=T.tail,m=S.tail;Z=Z0,J=P,K=m,X=q,W=E,Y=R,V=k,G=w+1,I=f,z=g,N=c,F=n,D=r,B=Q0}else{let Z0=T.tail,m=P0,L=S.tail,_=pR(w,0,Q([Hf(m.content)]),e);Z=Z0,J=P,K=L,X=q,W=E,Y=R,V=k,G=w+1,I=f,z=g,N=c,F=A(_,n),D=r,B=Q0}}else{let V0=G0,J0=T.tail,Z0=P0,m=S.tail,L=L5(w-R,Z0),_,o=k8(Q0,g,w,V0);_=b8(o,r,g,w,Z0);let K0=_;Z=J0,J=P,K=m,X=q,W=E,Y=R,V=k,G=w+1,I=f,z=g,N=A(L,c),F=n,D=r,B=K0}}else{let P0=S.head;if(P0 instanceof o8){let V0=G0,J0=T.tail,Z0=P0,m=S.tail,L=y8(r,Z0.mapper),_=o1(g,w,Z0.key),t=Uf(!1,_,L,Q0,V0.attributes,Z0.attributes,e,e),o,K0,w0;o=t.added,K0=t.removed,w0=t.events;let C0;if(o instanceof U&&K0 instanceof U)C0=e;else C0=Q([sR(o,K0)]);let L0=C0,H1;if(V0.inner_html===Z0.inner_html)H1=L0;else H1=A(Df(Z0.inner_html),L0);let P1=H1,w1;if(P1 instanceof U)w1=n;else w1=A(pR(w,0,P1,Q([])),n);let Q8=w1;Z=J0,J=P,K=m,X=q,W=E,Y=R,V=k,G=w+1,I=f,z=g,N=c,F=Q8,D=r,B=w0}else{let V0=G0,J0=T.tail,Z0=P0,m=S.tail,L=L5(w-R,Z0),_,o=k8(Q0,g,w,V0);_=b8(o,r,g,w,Z0);let K0=_;Z=J0,J=P,K=m,X=q,W=E,Y=R,V=k,G=w+1,I=f,z=g,N=A(L,c),F=n,D=r,B=K0}}}}}}function T4(Z,J,K){return Kj(Q([J]),E1(),Q([K]),E1(),E1(),0,0,0,0,z4,e,e,O0,ry(Z))}var{setTimeout:P$,clearTimeout:Yj}=globalThis,S$=(Z,J)=>r1().createElementNS(Z,J),A$=(Z)=>r1().createTextNode(Z),q$=()=>r1().createDocumentFragment(),P4=(Z,J,K)=>Z.insertBefore(J,K),jf=Cy?(Z,J,K)=>Z.moveBefore(J,K):P4,E$=(Z,J)=>Z.removeChild(J),C$=(Z,J)=>Z.getAttribute(J),Lf=(Z,J,K)=>Z.setAttribute(J,K),x$=(Z,J)=>Z.removeAttribute(J),w$=(Z,J,K,X)=>Z.addEventListener(J,K,X),yf=(Z,J,K)=>Z.removeEventListener(J,K),U$=(Z,J)=>Z.innerHTML=J,M$=(Z,J)=>Z.data=J,$8=Symbol("lustre");class bf{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===X8?this.node.parentNode:this.node}}var g8=(Z,J,K,X,W)=>{let Y=new bf(Z,J,K,W);return K[$8]=Y,J?.children.splice(X,0,Y),Y},R$=(Z)=>{let J="";for(let K=Z[$8];K.parent;K=K.parent)if(K.key)J=`${kZ}${K.key}${J}`;else{let X=K.parent.children.indexOf(K);J=`${kZ}${X}${J}`}return J.slice(1)};class Wj{#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){g8(M5,null,this.#Z,0,null),this.#P(this.#Z,null,this.#Z[$8],0,Z)}push(Z){this.#J.push({node:this.#Z[$8],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(y5(W,(G)=>this.#Q(J,G)),Y)this.#F(J,X.length-Y,Y);y5(V,(G)=>{let I=X[G.index|0];this.#J.push({node:I,patch:G})})}}#Q(Z,J){switch(J.kind){case nR:this.#C(Z,J);break;case iR:this.#S(Z,J);break;case lR:this.#D(Z,J);break;case rR:this.#z(Z,J);break;case aR:this.#O(Z,J);break;case tR:this.#N(Z,J);break;case oR:this.#G(Z,J);break}}#G(Z,{children:J,before:K}){let X=q$(),W=this.#I(Z,K);this.#T(X,null,Z,K|0,J),P4(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!==X8)return null;if(!W)W=Z;while(W.kind===X8&&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(jf(W,I,Y),G===X8)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(jf(Z,Y,K),W===X8)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(E$(W,I),this.#H(Y[V]),G===X8)Y.push(...z)}}#H(Z){let{debouncers:J,children:K}=Z;for(let{timeout:X}of J.values())if(X)Yj(X);J.clear(),y5(K,(X)=>this.#H(X))}#D({node:Z,handlers:J,throttles:K,debouncers:X},{added:W,removed:Y}){y5(Y,({name:V})=>{if(J.delete(V))yf(Z,V,Xj),this.#B(K,V,0),this.#B(X,V,0);else x$(Z,V),kf[V]?.removed?.(Z,V)}),y5(W,(V)=>this.#E(Z,V))}#C({node:Z},{content:J}){M$(Z,J??"")}#S({node:Z},{inner_html:J}){U$(Z,J??"")}#T(Z,J,K,X,W){y5(W,(Y)=>this.#P(Z,J,K,X++,Y))}#P(Z,J,K,X,W){switch(W.kind){case M5:{let Y=this.#A(K,X,W);this.#T(Y,null,Y[$8],0,W.children),P4(Z,Y,J);break}case H4:{let Y=this.#q(K,X,W);P4(Z,Y,J);break}case X8:{let Y=this.#q(K,X,W);P4(Z,Y,J),this.#T(Z,J,Y[$8],0,W.children);break}case ny:{let Y=this.#A(K,X,W);this.#S({node:Y},W),P4(Z,Y,J);break}}}#A(Z,J,{kind:K,key:X,tag:W,namespace:Y,attributes:V}){let G=S$(Y||yJ,W);if(g8(K,Z,G,J,X),this.#Y&&X)Lf(G,"data-lustre-key",X);return y5(V,(I)=>this.#E(G,I)),G}#q(Z,J,{kind:K,key:X,content:W}){let Y=A$(W??"");return g8(K,Z,Y,J,X),Y}#E(Z,J){let{debouncers:K,handlers:X,throttles:W}=Z[$8],{kind:Y,name:V,value:G,prevent_default:I,debounce:z,throttle:N}=J;switch(Y){case TR:{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!==C$(Z,V))Lf(Z,V,F);kf[V]?.added?.(Z,F);break}case PR:Z[V]=G;break;case SR:{if(X.has(V))yf(Z,V,Xj);let F=I.kind===AR;w$(Z,V,Xj,{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)Yj(W);Z.delete(J)}}#x(Z,J){let{currentTarget:K,type:X}=J,{debouncers:W,throttles:Y}=K[$8],V=R$(K),{prevent_default:G,stop_propagation:I,include:z}=Z;if(G.kind===hJ)J.preventDefault();if(I.kind===hJ)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)Yj(D.timeout),D.timeout=P$(()=>{if(J===Y.get(X)?.lastEvent)return;this.#K(J,N)},D.delay);if(!F&&!D)this.#K(J,N)}}var y5=(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)},Xj=(Z)=>{let{currentTarget:J,type:K}=Z;J[$8].handlers.get(K)(Z)},ff=(Z)=>{return{added(J){J[Z]=!0},removed(J){J[Z]=!1}}},j$=(Z)=>{return{added(J,K){J[Z]=K}}},kf={checked:ff("checked"),selected:ff("selected"),value:j$("value"),autofocus:{added(Z){queueMicrotask(()=>{Z.focus?.()})}},autoplay:{added(Z){try{Z.play?.()}catch(J){console.error(J)}}}};function L$(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof U)return[W,F0(Y)];else{let V=X.tail,G=X.head[0],I=X.head[1],z=py(G,I),N;if(G==="")N=W;else N=U5(W,G,z);let F=N,D=A(z,Y);Z=V,J=F,K=D}}}function Qj(Z){return L$(Z,E1(),e)}function hf(Z,J,K){let X=Qj(K),W,Y;return W=X[0],Y=X[1],F4("",O0,"",Z,J,Y,W,!1,N4(Z,""))}function vf(Z,J,K,X){let W=Qj(X),Y,V;return Y=W[0],V=W[1],F4("",O0,Z,J,K,V,Y,!1,N4(J,Z))}function $f(Z){let J=Qj(Z),K,X;return K=J[0],X=J[1],gJ("",O0,X,K)}var gf=(Z)=>{let J=g8(M5,null,Z,0,null),K=0;for(let V=Z.firstChild;V;V=V.nextSibling)if(_f(V))K+=1;if(K===0){let V=r1().createTextNode("");return g8(H4,J,V,0,null),Z.replaceChildren(V),z0()}if(K===1)return Vj(J,Z).head[1];let X=r1().createTextNode(""),W=g8(X8,J,X,0,null),Y=Vj(W,Z);return Z.insertBefore(X,Z.firstChild),$f(Y)},_f=(Z)=>{switch(Z.nodeType){case fJ:return!0;case BR:return!!Z.data;default:return!1}},y$=(Z,J,K,X)=>{if(!_f(J))return null;switch(J.nodeType){case fJ:{let W=g8(M5,Z,J,X,K),Y=J.localName,V=J.namespaceURI,G=!V||V===yJ;if(G&&f$.includes(Y))k$(Y,J);let I=b$(J),z=Vj(W,J);return G?hf(Y,I,z):vf(V,Y,I,z)}case BR:return g8(H4,Z,J,X,null),x(J.data);default:return null}},f$=["input","select","textarea"],k$=(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}))})},Vj=(Z,J)=>{let K=null,X=J.firstChild,W=null,Y=0;while(X){let V=X.nodeType===fJ?X.getAttribute("data-lustre-key"):null;if(V!=null)X.removeAttribute("data-lustre-key");let G=y$(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},b$=(Z)=>{let J=Z.attributes.length,K=e;while(J-- >0){let X=Z.attributes[J];if(X.name==="xmlns")continue;K=new k1(h$(X),K)}return K},h$=(Z)=>{let{localName:J,value:K}=Z;return M(J,K)};var e8=()=>!!r1();class rJ{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)=>_R(this.#J,I,z,G),V=(G,I)=>{let[z,N]=mR(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 Wj(this.root,Y,V),this.#Y=gf(this.root),this.#J=gR(),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(W8(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=uf(this.#I,Z.before_paint),this.#z=uf(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}=T4(this.#J,this.#Y,Z);if(this.#J=K,this.#Y=Z,this.#W.push(J),this.#I instanceof k1){let X=mf(this.#I);this.#I=e,queueMicrotask(()=>{this.#F(X,!0)})}if(this.#z instanceof k1){let X=mf(this.#z);this.#z=e,requestAnimationFrame(()=>{this.#F(X,!0)})}}}function mf(Z){return{synchronous:Z,after_paint:e,before_paint:e}}function uf(Z,J){if(Z instanceof U)return J;else if(J instanceof U)return Z;else return _0(Z,J)}class Ij extends O{constructor(Z){super();this.message=Z}}class zj extends O{constructor(Z){super();this.callback=Z}}class Nj extends O{constructor(Z){super();this.callback=Z}}class Z5 extends O{constructor(Z){super();this.message=Z}}class f5 extends O{constructor(Z,J){super();this.name=Z,this.data=J}}class aJ extends O{constructor(Z,J){super();this.key=Z,this.value=J}}class k5 extends O{}class pf 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 nf(Z){let J=new pf(!0,!0,!1,e,e,e,!1,kJ,kJ,kJ);return v0(Z,J,(K,X)=>{return X.apply(K)})}class sf{#Z;constructor(Z,[J,K],X,W){this.#Z=new rJ(Z,[J,K],W,X)}send(Z){switch(Z.constructor){case Z5:{this.dispatch(Z.message,!1);break}case f5:{this.emit(Z.name,Z.data);break}case k5:break}}dispatch(Z){this.#Z.dispatch(Z)}emit(Z,J){this.#Z.emit(Z,J)}}var rf=({init:Z,update:J,view:K},X,W)=>{if(!e8())return new $(new vZ);let Y=X instanceof HTMLElement?X:r1().querySelector(X);if(!Y)return new $(new Fj(X));return new C(new sf(Y,Z(W),J,K))};class v${#Z;#X;#K;#Y;#J;#W;#Q=h0();#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=uR(this.#J),this.#V(J)}send(Z){switch(Z.constructor){case Ij:{let{message:J}=Z,K=this.#N(J),X=T4(this.#W,this.#J,K);this.#J=K,this.#W=X.events,this.broadcast(Jj(X.patch));return}case zj:{let{callback:J}=Z;this.#G.add(J),J(Ef(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 Nj:{let{callback:J}=Z;this.#G.delete(J);return}case Z5:{let{message:J}=Z,[K,X]=this.#X(this.#Z,J),W=this.#K(K),Y=T4(this.#W,this.#J,W);this.#V(X),this.#Z=K,this.#J=W,this.#W=Y.events,this.broadcast(Jj(Y.patch));return}case f5:{let{name:J,data:K}=Z;this.broadcast(Cf(J,K));return}case aJ:{let{key:J,value:K}=Z,X=D0(this.#Q,J);if(X.isOk()&&W8(X[0],K))return;this.#Q=n0(this.#Q,J,K),this.broadcast(xf(J,K));return}case k5:{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 pJ:{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 C){K=Y[0][0],X=Q1(r0.fromArray([X,Y[0][1]]));break}}return this.#V(X),this.#Z=K,this.#K(this.#Z)}case nJ:{let{name:J,value:K}=Z,X=this.#I(J,K);if(X instanceof $)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 iJ:{let{name:J,value:K}=Z,X=this.#z(J,K);if(X instanceof $)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 lJ:{let{path:J,name:K,event:X}=Z,[W,Y]=mJ(this.#W,J,K,X);if(this.#W=W,Y instanceof $)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 Zj:{let{key:J,value:K}=Z,X=D0(this.#Y.contexts,J);if(X instanceof $)return this.#J;if(X=I0(K,X[0]),X instanceof $)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=D0(this.#Y.attributes,Z);switch(K.constructor){case C:return K[0](J);case $:return new $(void 0)}}#z(Z,J){let K=D0(this.#Y.properties,Z);switch(K.constructor){case C:return K[0](J);case $:return new $(void 0)}}#V(Z){let J=(V)=>this.send(new Z5(V)),K=(V,G)=>this.send(new f5(V,G)),X=()=>{return},W=()=>{return},Y=(V,G)=>this.send(new aJ(V,G));globalThis.queueMicrotask(()=>{_y(Z,J,K,X,W,Y)})}}class af extends O{constructor(Z,J,K,X){super();this.init=Z,this.update=J,this.view=K,this.config=X}}class Fj extends O{constructor(Z){super();this.selector=Z}}class vZ extends O{}function tf(Z,J,K){return new af(Z,J,K,nf(e))}function of(Z,J,K){return G4(!e8(),new $(new vZ),()=>{return rf(Z,J,K)})}function Jk(Z,J){return[Z,J]}var _$={handle_external_links:!1,handle_internal_links:!0},Yk=globalThis?.window?.location?.href,Bj=()=>{if(!Yk)return new $(void 0);else return new C(Dj(new URL(Yk)))},Oj=(Z,J=_$)=>{document.addEventListener("click",(K)=>{let X=Wk(K.target);if(!X)return;try{let W=new URL(X.href),Y=Dj(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=Dj(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)})},Xk=(Z)=>{window.history.pushState({},"",jJ(Z)),window.requestAnimationFrame(()=>{if(Z.fragment[0])document.getElementById(Z.fragment[0])?.scrollIntoView()}),window.dispatchEvent(new CustomEvent("modem-push",{detail:Z}))};var Wk=(Z)=>{if(!Z||Z.tagName==="BODY")return null;else if(Z.tagName==="A")return Z;else return Wk(Z.parentElement)},Dj=(Z)=>{return new W0(Z.protocol?new y(Z.protocol.slice(0,-1)):new v,new v,Z.hostname?new y(Z.hostname):new v,Z.port?new y(Number(Z.port)):new v,Z.pathname,Z.search?new y(Z.search.slice(1)):new v,Z.hash?new y(Z.hash.slice(1)):new v)};function Vk(Z){return z1((J)=>{return G4(!e8(),void 0,()=>{return Oj((K)=>{let W=Z(K);return J(W)})})})}function Qk(Z){if(Z==="")return new v;else return new y(Z)}var tJ=new W0(new v,new v,new v,new v,"",new v,new v);function b5(Z,J,K){return z1((X)=>{return G4(!e8(),void 0,()=>{return Xk(new W0(tJ.scheme,tJ.userinfo,tJ.host,tJ.port,Z,hM(J,Qk),hM(K,Qk)))})})}class Gk extends O{constructor(Z,J){super();this.query=Z,this.module_path=J}}class Tj extends O{constructor(Z){super();this.queries=Z}}function Ik(){return new Tj(h0())}function e0(Z,J,K,X){let W=new Gk(K,X);return new Tj(n0(Z.queries,J,W))}function Pj(Z,J){return D0(Z.queries,J)}class eJ extends O{}class ZK extends O{}class zk extends O{}class Nk extends O{}class Fk extends O{}class Hk extends O{}class Dk extends O{}class Bk extends O{}class Ok extends O{}class Sj extends O{}class JK extends O{}function Tk(Z){if(Z instanceof eJ)return"GET";else if(Z instanceof ZK)return"POST";else if(Z instanceof zk)return"HEAD";else if(Z instanceof Nk)return"PUT";else if(Z instanceof Fk)return"DELETE";else if(Z instanceof Hk)return"TRACE";else if(Z instanceof Dk)return"CONNECT";else if(Z instanceof Bk)return"OPTIONS";else if(Z instanceof Ok)return"PATCH";else return Z[0]}function Pk(Z){if(Z instanceof Sj)return"http";else return"https"}function Sk(Z){let J=i1(Z);if(J==="http")return new C(new Sj);else if(J==="https")return new C(new JK);else return new $(void 0)}class $Z 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 qk(Z){return new W0(new y(Pk(Z.scheme)),new v,new y(Z.host),Z.port,Z.path,Z.query,new v)}function c$(Z){return M1((()=>{let J=Z.scheme,K=qL(J,"");return Sk(K)})(),(J)=>{return M1((()=>{let K=Z.host;return kM(K,void 0)})(),(K)=>{let X=new $Z(new eJ,Q([]),"",J,K,Z.port,Z.path,Z.query);return new C(X)})})}function Aj(Z,J,K){let X=eM(Z.headers,i1(J),K);return new $Z(Z.method,X,Z.body,Z.scheme,Z.host,Z.port,Z.path,Z.query)}function Ek(Z,J){return new $Z(Z.method,Z.headers,J,Z.scheme,Z.host,Z.port,Z.path,Z.query)}function Ck(Z,J){return new $Z(J,Z.headers,Z.body,Z.scheme,Z.host,Z.port,Z.path,Z.query)}function xk(Z){let K=FR(Z);return M1(K,c$)}class qj extends O{constructor(Z,J,K){super();this.status=Z,this.headers=J,this.body=K}}class h5{constructor(Z){this.promise=Z}static wrap(Z){return Z instanceof Promise?new h5(Z):Z}static unwrap(Z){return Z instanceof h5?Z.promise:Z}}function D8(Z){return Promise.resolve(h5.wrap(Z))}function YK(Z,J){return Z.then((K)=>J(h5.unwrap(K)))}function XK(Z,J){return Z.then((K)=>h5.wrap(J(h5.unwrap(K))))}function Cj(Z){return new qj(Z.status,r0.fromArray([...Z.headers]),Z)}function l$(Z){let J=jJ(qk(Z)),K=Tk(Z.method).toUpperCase(),X={headers:s$(Z.headers),method:K};return[J,X]}function xj(Z){let[J,K]=l$(Z);if(K.method!=="GET"&&K.method!=="HEAD")K.body=Z.body;return new globalThis.Request(J,K)}function s$(Z){let J=new globalThis.Headers;for(let[K,X]of Z)J.append(K.toLowerCase(),X);return J}async function WK(Z){let J;try{J=await Z.body.text()}catch(K){return new $(new wj)}return new C(Z.withFields({body:J}))}class QK extends O{constructor(Z){super();this[0]=Z}}class wj extends O{}class Uk extends O{constructor(Z,J){super();this.endpoint=Z,this.headers=J}}function Uj(Z,J){return new Uk(Z,J)}function J1(Z,J,K){let X=b(Q([["query",d(J)],["variables",K]]));return M1((()=>{let W=xk(Z.endpoint);return Y4(W,(Y)=>{return"Invalid endpoint URL"})})(),(W)=>{let Y,G=Ck(W,new ZK),I=Ek(G,R8(X));Y=Aj(I,"content-type","application/json");let z=Y,N=v0(Z.headers,z,(F,D)=>{return Aj(F,D[0],D[1])});return new C(N)})}function T0(Z,J){return M1((()=>{let K=l1(Z,y0);return Y4(K,(X)=>{return"Failed to decode JSON response"})})(),(K)=>{let X=h("data",J,(Y)=>{return s(Y)}),W=I0(K,X);return Y4(W,(Y)=>{return"Failed to decode response data: "+wJ(Y)+". Response body: "+Z})})}async function Mj(Z){try{let J=xj(Z),K=new Request(J,{credentials:"include"}),X=await fetch(K),W=Cj(X);return new C(W)}catch(J){return new $(new QK(J.toString()))}}var yk="src/squall_cache.gleam";class j1 extends O{}class L1 extends O{constructor(Z){super();this[0]=Z}}class y1 extends O{constructor(Z){super();this[0]=Z}}class VK extends O{}class fk extends O{}class Rj extends O{}class _Z extends O{constructor(Z,J,K){super();this.data=Z,this.timestamp=J,this.status=K}}class f1 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 kk(Z){return new f1(h0(),h0(),h0(),h0(),E5(),()=>{return Q([])},0,Z)}function GK(Z,J){return Z+":"+R8(J)}function Mk(Z){let J=AJ(Z);if(J instanceof C){let K=J[0][0],X=J[0][1];return qJ(K)+X}else return Z}function jj(Z){let K=F0(Z),X=tM(K,(W)=>{if(W==="data")return new $(void 0);else if(W==="results")return new $(void 0);else if(W==="edges")return new $(void 0);else if(W==="node")return new $(void 0);else if(EJ(W,"s")){let V=K8(W),G=Ky(W,0,V-1);return new C(Mk(G))}else return new C(Mk(W))});return X4(X,"Entity")}function t$(Z){if(D0(Z,"node")instanceof C)return!0;else return!1}function o$(Z){let J=I0(Z,U0(y0));if(J instanceof C){let K=J[0];if(K instanceof U)return!1;else{let X=K.head,W=I0(X,M8(u,y0));if(W instanceof C){let Y=W[0];return t$(Y)}else return!1}}else return!1}function e$(Z,J,K){let X=GK(J,K),W=D0(Z.queries,X);if(W instanceof C){let Y=W[0],V=new _Z(Y.data,Y.timestamp,new Rj),G=n0(Z.queries,X,V);return new f1(Z.entities,Z.optimistic_entities,Z.optimistic_mutations,G,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}else{let Y=new _Z("",0,new Rj),V=n0(Z.queries,X,Y);return new f1(Z.entities,Z.optimistic_entities,Z.optimistic_mutations,V,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}}function m0(Z,J,K){let X=GK(J,K),W=I8(Z.queries,X);return new f1(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=D0(Z.optimistic_entities,K);if(Y instanceof C){let I=Y[0];W=new y(I)}else{let I=D0(Z.entities,K);if(I instanceof C){let z=I[0];W=new y(z)}else W=new v}let G=X(W);return new f1(Z.entities,n0(Z.optimistic_entities,K,G),n0(Z.optimistic_mutations,J,K),Z.queries,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}function Lj(Z,J){let K=D0(Z.optimistic_mutations,J);if(K instanceof C){let X=K[0];return new f1(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 bk(Z){return!sM(Z.optimistic_mutations)}function S4(Z){let J=I0(Z,M8(u,y0));if(J instanceof C){let X=J[0],W=n8(X),Y=H0(W,(V)=>{let G,I;return G=V[0],I=V[1],[G,S4(I)]});return b(Y)}else{let K=I0(Z,U0(y0));if(K instanceof C){let X=K[0];return j0(X,S4)}else{let X=I0(Z,u);if(X instanceof C){let W=X[0];return d(W)}else{let W=I0(Z,p0);if(W instanceof C){let Y=W[0];return W1(Y)}else{let Y=I0(Z,_L);if(Y instanceof C){let V=Y[0];return By(V)}else{let V=I0(Z,G1);if(V instanceof C){let G=V[0];return s1(G)}else return zR()}}}}}}function Jg(Z,J){let K=R8(Z),X=R8(J),W=l1(K,y0),Y=l1(X,y0);if(W instanceof C&&Y instanceof C){let V=W[0],G=Y[0],I=I0(V,M8(u,y0)),z=I0(G,M8(u,y0));if(I instanceof C&&z instanceof C){let N=I[0],F=z[0],D,B=_0(U8(N),U8(F));D=kL(B);let P=T5(D,(S)=>{let q,E=D0(F,S);if(E instanceof C)q=E;else q=D0(N,S);let R=q;if(R instanceof C){let k=R[0];return new C([S,S4(k)])}else return new $(void 0)});return b(P)}else return J}else return J}function _8(Z,J){return r5(J,Z,(K,X,W)=>{let Y=D0(K,X);if(Y instanceof C){let V=Y[0],G=Jg(V,W);return n0(K,X,G)}else return n0(K,X,W)})}function Rk(Z){let J=A5(Z,":");if(J instanceof C){let K=J[0][0],X=J[0][1],W=l1(X,y0);if(W instanceof C){let Y=W[0];return new C([K,S4(Y)])}else return new C([K,zR()])}else return new $(void 0)}function Kg(Z,J,K,X,W,Y,V){let G=Pj(J,K);if(G instanceof C){let I=G[0];return z1((z)=>{let N=Z.get_headers(),F=Uj(Z.endpoint,N),D=J1(F,I.query,X),B;if(D instanceof C)B=D[0];else throw c8("let_assert",yk,"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=Mj(B);T=XK(P,(q)=>{if(q instanceof C){let E=q[0],R=WK(E);return YK(R,(k)=>{if(k instanceof C){let w=k[0],f=Y(w.body);if(f instanceof C){let g=f[0];return z(V(W,new C(g),w.body)),D8(void 0)}else{let g=f[0];return z(V(W,new $("Parse error: "+g),w.body)),D8(void 0)}}else return z(V(W,new $("Failed to read response"),"")),D8(void 0)})}else return z(V(W,new $("Failed to fetch"),"")),D8(void 0)});let S=T;return})}else return z1((I)=>{I(V(W,new $("Query not found in registry"),""));return})}function uZ(Z,J,K,X,W,Y,V,G){let I="mutation-"+X1(Z.mutation_counter),z=Zg(Z,I,W,Y),N=new f1(z.entities,z.optimistic_entities,z.optimistic_mutations,z.queries,z.pending_fetches,z.get_headers,Z.mutation_counter+1,z.endpoint),F=Kg(N,J,K,X,I,V,G);return[N,I,F]}function Yg(Z,J,K,X,W){return z1((Y)=>{let V=Z.get_headers(),G=Uj(Z.endpoint,V),I=J1(G,J,X),z;if(I instanceof C)z=I[0];else throw c8("let_assert",yk,"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=Mj(z);N=XK(F,(B)=>{if(B instanceof C){let T=B[0],P=WK(T);return YK(P,(S)=>{if(S instanceof C){let q=S[0];return Y(W(K,X,new C(q.body))),D8(void 0)}else return Y(W(K,X,new $("Failed to read response"))),D8(void 0)})}else return Y(W(K,X,new $("Failed to fetch"))),D8(void 0)});let D=N;return})}function u0(Z,J,K,X){let W=Py(Z.pending_fetches),Y=T5(W,(I)=>{let z=Rk(I);if(z instanceof C){let N=z[0][0],F=z[0][1],D=Pj(J,N);if(D instanceof C){let B=D[0];return new C(Yg(Z,B.query,N,F,K))}else return new $(void 0)}else return new $(void 0)}),V=v0(W,Z,(I,z)=>{let N=Rk(z);if(N instanceof C){let F=N[0][0],D=N[0][1];return e$(I,F,D)}else return I});return[new f1(V.entities,V.optimistic_entities,V.optimistic_mutations,V.queries,E5(),V.get_headers,V.mutation_counter,V.endpoint),Y]}function jk(Z,J,K){let X=n8(Z),W=H0(X,(Y)=>{let V,G;return V=Y[0],G=Y[1],[V,yj(G,J,K)]});return b(W)}function yj(Z,J,K){let X=I0(Z,M8(u,y0));if(X instanceof C){let W=X[0],Y=D0(W,"__ref");if(Y instanceof C){let V=Y[0],G=I0(V,u);if(G instanceof C){let I=G[0],z=D0(J,I);if(z instanceof C)return z[0];else{let N=D0(K,I);if(N instanceof C)return N[0];else return b(Q([["__ref",d(I)]]))}}else return jk(W,J,K)}else return jk(W,J,K)}else{let W=I0(Z,U0(y0));if(W instanceof C){let Y=W[0];return j0(Y,(V)=>{return yj(V,J,K)})}else return S4(Z)}}function Lk(Z,J,K){let X=l1(Z,y0);if(X instanceof C){let W=X[0],Y=yj(W,J,K);return R8(Y)}else return Z}function a(Z,J,K,X){let W=GK(J,K),Y=D0(Z.queries,W);if(Y instanceof C){let V=Y[0],G=V.status;if(G instanceof VK){let I=Lk(V.data,Z.optimistic_entities,Z.entities),z=X(I);if(z instanceof C){let N=z[0];return[Z,new y1(N)]}else{let N=z[0];return[Z,new L1("Parse error: "+N)]}}else if(G instanceof fk){let I=Lk(V.data,Z.optimistic_entities,Z.entities),z=X(I);if(z instanceof C){let N=z[0];return[Z,new y1(N)]}else{let N=z[0];return[Z,new L1("Parse error: "+N)]}}else return[Z,new j1]}else return[new f1(Z.entities,Z.optimistic_entities,Z.optimistic_mutations,Z.queries,xZ(Z.pending_fetches,W),Z.get_headers,Z.mutation_counter,Z.endpoint),new j1]}function Xg(Z,J){let K=v0(Z,[h0(),Q([]),E5()],(Y,V)=>{let G,I,z;G=Y[0],I=Y[1],z=Y[2];let N=I0(V,M8(u,y0));if(N instanceof C){let F=N[0],D=D0(F,"node");if(D instanceof C){let B=D[0],T,P=I0(B,M8(u,y0));if(P instanceof C){let q=P[0],E=D0(q,"id");if(E instanceof C){let R=E[0],k=I0(R,u);if(k instanceof C){let w=k[0],f,g=D0(q,"__typename");if(g instanceof C){let n=g[0],r=I0(n,u);if(r instanceof C)f=r[0];else f="Node"}else f=jj(_0(J,Q(["node"])));T=new y(f+":"+w)}else T=new v}else T=new v}else T=new v;let S=T;if(S instanceof y){let q=S[0];if(Q4(z,q))return Y;else{let R=gZ(F,J),k,w;return k=R[0],w=R[1],[_8(G,k),_0(I,Q([w])),xZ(z,q)]}}else{let q=gZ(F,J),E,R;return E=q[0],R=q[1],[_8(G,E),_0(I,Q([R])),z]}}else{let B=gZ(F,J),T,P;return T=B[0],P=B[1],[_8(G,T),_0(I,Q([P])),z]}}else{let F=mZ(V,J),D,B;return D=F[0],B=F[1],[_8(G,D),_0(I,Q([B])),z]}}),X,W;return X=K[0],W=K[1],[X,j0(W,(Y)=>{return Y})]}function mZ(Z,J){let K=I0(Z,M8(u,y0));if(K instanceof C){let X=K[0],W=D0(X,"id");if(W instanceof C){let Y=W[0],V=I0(Y,u);if(V instanceof C){let G=V[0],I,z=D0(X,"__typename");if(z instanceof C){let k=z[0],w=I0(k,u);if(w instanceof C)I=w[0];else I=jj(J)}else I=jj(J);let F=I+":"+G,D,B=n8(X);D=H0(B,(k)=>{let w,f;w=k[0],f=k[1];let g=_0(J,Q([w])),c=mZ(f,g),n,r;return n=c[0],r=c[1],[w,n,r]});let T=D,P=v0(T,h0(),(k,w)=>{let f;return f=w[1],_8(k,f)}),S,q=H0(T,(k)=>{let w,f;return w=k[0],f=k[2],[w,f]});return S=b(q),[n0(P,F,S),b(Q([["__ref",d(F)]]))]}else return gZ(X,J)}else return gZ(X,J)}else{let X=I0(Z,U0(y0));if(X instanceof C){let W=X[0];if(o$(Z))return Xg(W,J);else{let V=H0(W,(z)=>{return mZ(z,J)}),G=v0(V,h0(),(z,N)=>{let F;return F=N[0],_8(z,F)}),I=H0(V,(z)=>{let N;return N=z[1],N});return[G,j0(I,(z)=>{return z})]}}else return[h0(),S4(Z)]}}function hk(Z){return mZ(Z,Q([]))}function vk(Z,J,K,X,W){let Y=GK(J,K),V=l1(X,y0);if(V instanceof C){let G=V[0],I=hk(G),z,N;z=I[0],N=I[1];let F=_8(Z.entities,z),D=R8(N),B=new _Z(D,W,new VK),T=n0(Z.queries,Y,B);return new f1(F,Z.optimistic_entities,Z.optimistic_mutations,T,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}else{let G=new _Z(X,W,new VK),I=n0(Z.queries,Y,G);return new f1(Z.entities,Z.optimistic_entities,Z.optimistic_mutations,I,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}}function gZ(Z,J){let K,X=n8(Z);K=H0(X,(z)=>{let N,F;N=z[0],F=z[1];let D=_0(J,Q([N])),B=mZ(F,D),T,P;return T=B[0],P=B[1],[N,T,P]});let W=K,Y=v0(W,h0(),(z,N)=>{let F;return F=N[1],_8(z,F)}),V,G=H0(W,(z)=>{let N,F;return N=z[0],F=z[2],[N,F]});return V=b(G),[Y,V]}function fj(Z,J,K){let X=D0(Z.optimistic_mutations,J);if(X instanceof C){let W=X[0],Y=l1(K,y0);if(Y instanceof C){let V=Y[0],G=hk(V),I;I=G[0];let z=_8(Z.entities,I);return new f1(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 f1(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 $k extends O{constructor(Z){super();this.is_backfilling=Z}}function Wg(){return h("isBackfilling",G1,(Z)=>{return s(new $k(Z))})}function dZ(Z){return T0(Z,Wg())}class IK extends O{}class m8 extends O{}class B8 extends O{}class v5 extends O{}function _k(Z,J,K){let X=b(Q([])),W=m0(Z,"IsBackfilling",X),Y=a(W,"IsBackfilling",X,dZ),V;return V=Y[0],u0(V,J,K,()=>{return 0})}function mk(Z,J){if(J)if(Z instanceof m8)return new B8;else if(Z instanceof B8)return Z;else return Z;else if(Z instanceof m8)return Z;else if(Z instanceof B8)return new v5;else return Z}function $5(Z){if(Z instanceof m8)return!0;else if(Z instanceof B8)return!0;else return!1}function u8(Z,J){return ky(Z,P5(J,(K)=>{return new MZ(!1,!1,K)}),e,qR,qR,0,0)}function Qg(Z){if(Z instanceof B1)return new B1(Z.kind,Z.name,Z.handler,Z.include,by,Z.stop_propagation,Z.debounce,Z.throttle);else return Z}function f0(Z){return u8("click",s(Z))}function K1(Z){return u8("input",qZ(Q(["target","value"]),u,(J)=>{return s(Z(J))}))}function dk(Z){return u8("change",qZ(Q(["target","value"]),u,(J)=>{return s(Z(J))}))}function Vg(){let J=h(0,u,(X)=>{return h(1,JR(P5(u,(W)=>{return new C(W)}),Q([s(new $(void 0))])),(W)=>{let V=GR(W,(G)=>{return Jk(X,G)});return s(V)})}),K=U0(J);return P5(K,Qy)}function ck(Z){let J=u8("submit",qZ(Q(["detail","formData"]),Vg(),(K)=>{let W=Z(K);return s(W)}));return Qg(J)}var A4=null;function pk(Z,J,K){if(A4)clearTimeout(A4);if(!Z||Z.trim()===""){K(new C(Q([])));return}A4=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 $("Search failed"));return}let V=((await W.json()).actors||[]).map((G)=>new cZ(G.did||"",G.handle||"",G.displayName||"",G.avatar?new y(G.avatar):new v));K(new C(Q(V)))}catch(X){K(new $(X.message||"Search failed"))}},J)}function nk(){if(A4)clearTimeout(A4),A4=null}class cZ extends O{constructor(Z,J,K,X){super();this.did=Z,this.handle=J,this.display_name=K,this.avatar=X}}class O8 extends O{constructor(Z,J,K,X){super();this.query=Z,this.actors=J,this.highlighted_index=K,this.is_open=X}}class zK extends O{constructor(Z){super();this[0]=Z}}class q4 extends O{constructor(Z){super();this[0]=Z}}class pZ extends O{constructor(Z){super();this[0]=Z}}class NK extends O{}class FK extends O{}class nZ extends O{}class kj extends O{}function ik(){return new O8("",Q([]),-1,!1)}function T8(Z,J){if(J instanceof zK){let K=J[0],X=z1((W)=>{return pk(K,300,(Y)=>{return W(new q4(Y))})});return[new O8(K,Z.actors,Z.highlighted_index,K!==""),X]}else if(J instanceof q4){let K=J[0];if(K instanceof C){let X=K[0];return[new O8(Z.query,X,-1,Z.is_open),i()]}else return[new O8(Z.query,Q([]),-1,Z.is_open),i()]}else if(J instanceof pZ){let K=J[0];return[new O8(K.handle,Q([]),-1,!1),i()]}else if(J instanceof NK){let K=z8(Z.actors),X;if(Z.highlighted_index<K-1)X=Z.highlighted_index+1;else X=0;let Y=X;return[new O8(Z.query,Z.actors,Y,Z.is_open),i()]}else if(J instanceof FK){let K=z8(Z.actors),X;if(Z.highlighted_index>0)X=Z.highlighted_index-1;else X=K-1;let Y=X;return[new O8(Z.query,Z.actors,Y,Z.is_open),i()]}else if(J instanceof nZ)return nk(),[new O8(Z.query,Z.actors,-1,!1),i()];else return[new O8(Z.query,Z.actors,Z.highlighted_index,Z.query!==""),i()]}function lk(Z){if(Z.highlighted_index>=0){let K=Z.actors,X=t5(K,Z.highlighted_index),W=yL(X);return bM(W)}else return new v}function Gg(Z,J,K){let X;if(J)X="bg-zinc-700";else X="hover:bg-zinc-700";return j(Q([H("flex items-center gap-2 px-3 py-2 cursor-pointer transition-colors "+X),u8("mousedown",s(K(Z.handle)))]),Q([(()=>{let Y=Z.avatar;if(Y instanceof y){let V=Y[0];return Kf(Q([vy(V),H("w-8 h-8 rounded-full flex-shrink-0"),hy("")]))}else return z0()})(),j(Q([H("flex-1 min-w-0")]),Q([(()=>{let Y=Z.display_name;if(Y==="")return z0();else{let V=Y;return j(Q([H("text-sm text-zinc-200 truncate")]),Q([x(V)]))}})(),j(Q([H("text-xs text-zinc-400 truncate")]),Q([x("@"+Z.handle)]))]))]))}function Ig(Z,J){return j(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")]),TJ(Z.actors,(K,X)=>{return Gg(K,X===Z.highlighted_index,J)}))}function iZ(Z,J,K,X,W,Y,V,G,I,z){return j(Q([H("relative")]),Q([N1(Q([M0("text"),H8(J),gy(K),o0(Z.query),q1(X),H(W),t8(!0),M("autocomplete","off"),K1(Y),u8("blur",s(I())),u8("focus",s(z())),u8("keydown",h("key",u,(N)=>{return s(G(N))}))])),(()=>{if(Z.is_open&&!S0(Z.actors,Q([])))return Ig(Z,V);else return z0()})()]))}var _5="http://www.w3.org/2000/svg";function K5(Z){return g1(_5,"ellipse",Z,e)}function lZ(Z){return g1(_5,"rect",Z,e)}function HK(Z,J){return g1(_5,"defs",Z,J)}function m5(Z,J){return g1(_5,"g",Z,J)}function E4(Z,J){return g1(_5,"svg",Z,J)}function C4(Z,J){return g1(_5,"linearGradient",Z,J)}function P8(Z){return g1(_5,"stop",Z,e)}function sk(Z){return E4(Q([M("viewBox","0 0 128 128"),M("xmlns","http://www.w3.org/2000/svg"),M("overflow","visible"),H(Z)]),Q([HK(Q([]),Q([C4(Q([H8("backfill-board1"),M("x1","0%"),M("y1","0%"),M("x2","100%"),M("y2","100%")]),Q([P8(Q([M("offset","0%"),M("stop-color","#FF6347"),M("stop-opacity","1")])),P8(Q([M("offset","100%"),M("stop-color","#FF4500"),M("stop-opacity","1")]))])),C4(Q([H8("backfill-board2"),M("x1","0%"),M("y1","0%"),M("x2","100%"),M("y2","100%")]),Q([P8(Q([M("offset","0%"),M("stop-color","#00CED1"),M("stop-opacity","1")])),P8(Q([M("offset","100%"),M("stop-color","#4682B4"),M("stop-opacity","1")]))])),R0("style",Q([]),Q([x(` 1 + var Hh=Object.defineProperty;var BL=(Z,J)=>{for(var K in J)Hh(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 n0{static fromArray(Z,J){let K=J||new U;for(let X=Z.length-1;X>=0;--X)K=new k1(Z[X],K);return K}[Symbol.iterator](){return new SL(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 U}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 n0.fromArray(Z,J)}class SL{#Z;constructor(Z){this.#Z=Z}next(){if(this.#Z instanceof U)return{done:!0};else{let{head:Z,tail:J}=this.#Z;return this.#Z=J,{value:Z,done:!1}}}}class U extends n0{}class k1 extends n0{constructor(Z,J){super();this.head=Z,this.tail=J}}var AL=(Z)=>Z instanceof k1,qL=(Z)=>Z.head,EL=(Z)=>Z.tail;class PZ{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 TZ(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=TZ(this.rawBuffer,this.bitOffset,X),Y=TZ(Z.rawBuffer,Z.bitOffset,X);if(W!==Y)return!1}let K=this.bitSize%8;if(K){let X=TZ(this.rawBuffer,this.bitOffset,J),W=TZ(Z.rawBuffer,Z.bitOffset,J),Y=8-K;if(X>>Y!==W>>Y)return!1}}return!0}get buffer(){if(TL("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(TL("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 TZ(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 gM{constructor(Z){this.value=Z}}var OL={};function TL(Z,J){if(OL[Z])return;console.warn(`Deprecated BitArray.${Z} property used in JavaScript FFI code. ${J}.`),OL[Z]=!0}class r5 extends O{static isResult(Z){return Z instanceof r5}}class E extends r5{constructor(Z){super();this[0]=Z}isOk(){return!0}}var CL=(Z)=>new E(Z);class v extends r5{constructor(Z){super();this[0]=Z}isOk(){return!1}}var xL=(Z)=>new v(Z);function O0(Z,J){let K=[Z,J];while(K.length){let X=K.pop(),W=K.pop();if(X===W)continue;if(!PL(X)||!PL(W))return!1;if(!qh(X,W)||Bh(X,W)||Oh(X,W)||Th(X,W)||Ph(X,W)||Sh(X,W)||Ah(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]=Dh(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 Dh(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 Bh(Z,J){return Z instanceof Date&&(Z>J||Z<J)}function Oh(Z,J){return!(Z instanceof PZ)&&Z.buffer instanceof ArrayBuffer&&Z.BYTES_PER_ELEMENT&&!(Z.byteLength===J.byteLength&&Z.every((K,X)=>K===J[X]))}function Th(Z,J){return Array.isArray(Z)&&Z.length!==J.length}function Ph(Z,J){return Z instanceof Map&&Z.size!==J.size}function Sh(Z,J){return Z instanceof Set&&(Z.size!=J.size||[...Z].some((K)=>!J.has(K)))}function Ah(Z,J){return Z instanceof RegExp&&(Z.source!==J.source||Z.flags!==J.flags)}function PL(Z){return typeof Z==="object"&&Z!==null}function qh(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 DJ(Z,J){if(J===0)return 0;else return Z/J}function n8(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 a0 extends O{}class t0 extends O{}class U8 extends O{}class L extends O{constructor(Z){super();this[0]=Z}}class h extends O{}function $M(Z,J){if(Z instanceof L){let K=Z[0];return new E(K)}else return new v(J)}function _M(Z){if(Z instanceof E){let J=Z[0];return new L(J)}else return new h}function wL(Z,J){if(Z instanceof L)return Z[0];else return J}function mM(Z,J){if(Z instanceof L){let K=Z[0];return J(K)}else return Z}var UL=new WeakMap,uM=new DataView(new ArrayBuffer(8)),dM=0;function cM(Z){let J=UL.get(Z);if(J!==void 0)return J;let K=dM++;if(dM===2147483647)dM=0;return UL.set(Z,K),K}function pM(Z,J){return Z^J+2654435769+(Z<<6)+(Z>>2)|0}function iM(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 RL(Z){uM.setFloat64(0,Z);let J=uM.getInt32(0),K=uM.getInt32(4);return Math.imul(73244475,J>>16^J)^K}function Eh(Z){return iM(Z.toString())}function Ch(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 cM(Z);if(Z instanceof Date)return RL(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+pM(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+pM(c1(V),iM(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 RL(Z);case"string":return iM(Z);case"bigint":return Eh(Z);case"object":return Ch(Z);case"symbol":return cM(Z);case"function":return cM(Z);default:return 0}}var I8=5,lM=Math.pow(2,I8),xh=lM-1,wh=lM/2,Uh=lM/4,A1=0,G8=1,b1=2,T5=3,sM={type:b1,bitmap:0,array:[]};function SZ(Z,J){return Z>>>J&xh}function OJ(Z,J){return 1<<SZ(Z,J)}function Mh(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 rM(Z,J){return Mh(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 Rh(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 nM(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 jL(Z,J,K,X,W,Y){let V=c1(J);if(V===X)return{type:T5,hash:V,array:[{type:A1,k:J,v:K},{type:A1,k:W,v:Y}]};let G={val:!1};return AZ(aM(sM,Z,V,J,K,G),Z,X,W,Y,G)}function AZ(Z,J,K,X,W,Y){switch(Z.type){case G8:return jh(Z,J,K,X,W,Y);case b1:return aM(Z,J,K,X,W,Y);case T5:return Lh(Z,J,K,X,W,Y)}}function jh(Z,J,K,X,W,Y){let V=SZ(K,J),G=Z.array[V];if(G===void 0)return Y.val=!0,{type:G8,size:Z.size+1,array:p1(Z.array,V,{type:A1,k:X,v:W})};if(G.type===A1){if(O0(X,G.k)){if(W===G.v)return Z;return{type:G8,size:Z.size,array:p1(Z.array,V,{type:A1,k:X,v:W})}}return Y.val=!0,{type:G8,size:Z.size,array:p1(Z.array,V,jL(J+I8,G.k,G.v,K,X,W))}}let I=AZ(G,J+I8,K,X,W,Y);if(I===G)return Z;return{type:G8,size:Z.size,array:p1(Z.array,V,I)}}function aM(Z,J,K,X,W,Y){let V=OJ(K,J),G=rM(Z.bitmap,V);if((Z.bitmap&V)!==0){let I=Z.array[G];if(I.type!==A1){let N=AZ(I,J+I8,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(O0(X,z)){if(W===I.v)return Z;return{type:b1,bitmap:Z.bitmap,array:p1(Z.array,G,{type:A1,k:X,v:W})}}return Y.val=!0,{type:b1,bitmap:Z.bitmap,array:p1(Z.array,G,jL(J+I8,z,I.v,K,X,W))}}else{let I=Z.array.length;if(I>=wh){let z=Array(32),N=SZ(K,J);z[N]=aM(sM,J+I8,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:G8,size:I+1,array:z}}else{let z=Rh(Z.array,G,{type:A1,k:X,v:W});return Y.val=!0,{type:b1,bitmap:Z.bitmap|V,array:z}}}}function Lh(Z,J,K,X,W,Y){if(K===Z.hash){let V=tM(Z,X);if(V!==-1){if(Z.array[V].v===W)return Z;return{type:T5,hash:K,array:p1(Z.array,V,{type:A1,k:X,v:W})}}let G=Z.array.length;return Y.val=!0,{type:T5,hash:K,array:p1(Z.array,G,{type:A1,k:X,v:W})}}return AZ({type:b1,bitmap:OJ(Z.hash,J),array:[Z]},J,K,X,W,Y)}function tM(Z,J){let K=Z.array.length;for(let X=0;X<K;X++)if(O0(J,Z.array[X].k))return X;return-1}function BJ(Z,J,K,X){switch(Z.type){case G8:return yh(Z,J,K,X);case b1:return fh(Z,J,K,X);case T5:return kh(Z,X)}}function yh(Z,J,K,X){let W=SZ(K,J),Y=Z.array[W];if(Y===void 0)return;if(Y.type!==A1)return BJ(Y,J+I8,K,X);if(O0(X,Y.k))return Y;return}function fh(Z,J,K,X){let W=OJ(K,J);if((Z.bitmap&W)===0)return;let Y=rM(Z.bitmap,W),V=Z.array[Y];if(V.type!==A1)return BJ(V,J+I8,K,X);if(O0(X,V.k))return V;return}function kh(Z,J){let K=tM(Z,J);if(K<0)return;return Z.array[K]}function oM(Z,J,K,X){switch(Z.type){case G8:return bh(Z,J,K,X);case b1:return hh(Z,J,K,X);case T5:return vh(Z,X)}}function bh(Z,J,K,X){let W=SZ(K,J),Y=Z.array[W];if(Y===void 0)return Z;let V=void 0;if(Y.type===A1){if(!O0(Y.k,X))return Z}else if(V=oM(Y,J+I8,K,X),V===Y)return Z;if(V===void 0){if(Z.size<=Uh){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:G8,size:Z.size-1,array:p1(Z.array,W,V)}}return{type:G8,size:Z.size,array:p1(Z.array,W,V)}}function hh(Z,J,K,X){let W=OJ(K,J);if((Z.bitmap&W)===0)return Z;let Y=rM(Z.bitmap,W),V=Z.array[Y];if(V.type!==A1){let G=oM(V,J+I8,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:nM(Z.array,Y)}}if(O0(X,V.k)){if(Z.bitmap===W)return;return{type:b1,bitmap:Z.bitmap^W,array:nM(Z.array,Y)}}return Z}function vh(Z,J){let K=tM(Z,J);if(K<0)return Z;if(Z.array.length===1)return;return{type:T5,hash:Z.hash,array:nM(Z.array,K)}}function LL(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===A1){J(Y.v,Y.k);continue}LL(Y,J)}}class Y1{static fromObject(Z){let J=Object.keys(Z),K=Y1.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=Y1.new();return Z.forEach((K,X)=>{J=J.set(X,K)}),J}static new(){return new Y1(void 0,0)}constructor(Z,J){this.root=Z,this.size=J}get(Z,J){if(this.root===void 0)return J;let K=BJ(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?sM:this.root,W=AZ(X,0,c1(Z),Z,J,K);if(W===this.root)return this;return new Y1(W,K.val?this.size+1:this.size)}delete(Z){if(this.root===void 0)return this;let J=oM(this.root,0,c1(Z),Z);if(J===this.root)return this;if(J===void 0)return Y1.new();return new Y1(J,this.size-1)}has(Z){if(this.root===void 0)return!1;return BJ(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){LL(this.root,Z)}hashCode(){let Z=0;return this.forEach((J,K)=>{Z=Z+pM(c1(J),c1(K))|0}),Z}equals(Z){if(!(Z instanceof Y1)||this.size!==Z.size)return!1;try{return this.forEach((J,K)=>{if(!O0(Z.get(K,!J),J))throw ML}),!0}catch(J){if(J===ML)return!1;throw J}}}var ML=Symbol();function eM(Z){return TJ(Z)===0}function gh(Z,J){return!O0(T0(J,Z),new v(void 0))}function yL(Z,J){return gh(J,Z)}function i0(Z,J,K){return kL(J,K,Z)}function $h(Z,J){while(!0){let K=Z,X=J;if(K instanceof U)return X;else{let W=K.head;Z=K.tail,J=A(W,X)}}}function _h(Z,J){while(!0){let K=Z,X=J;if(K instanceof U)return $h(X,Q([]));else{let W=K.tail,Y=K.head[0];Z=W,J=A(Y,X)}}}function M8(Z){return _h(l8(Z),Q([]))}function z8(Z,J){return fL(J,Z)}function mh(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof U)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 a5(Z,J,K){return mh(l8(Z),J,K)}class V1 extends O{}class t5 extends O{}function dh(Z,J){while(!0){let K=Z,X=J;if(K instanceof U)return X;else Z=K.tail,J=X+1}}function N8(Z){return dh(Z,0)}function P5(Z,J){while(!0){let K=Z,X=J;if(K instanceof U)return X;else{let W=K.head;Z=K.tail,J=A(W,X)}}}function F0(Z){return P5(Z,Q([]))}function bL(Z){return O0(Z,Q([]))}function ZR(Z,J){while(!0){let K=Z,X=J;if(K instanceof U)return!1;else{let W=K.head;if(O0(W,X))return!0;else Z=K.tail,J=X}}}function hL(Z){if(Z instanceof U)return new v(void 0);else{let J=Z.head;return new E(J)}}function ch(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof U)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 PJ(Z,J){return ch(Z,J,Q([]))}function ph(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof U)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 S5(Z,J){return ph(Z,J,Q([]))}function nh(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof U)return F0(Y);else{let V=X.head;Z=X.tail,J=W,K=A(W(V),Y)}}}function H0(Z,J){return nh(Z,J,Q([]))}function ih(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(W instanceof U)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 SJ(Z,J){return ih(Z,J,0,Q([]))}function o5(Z,J){while(!0){let K=Z,X=J;if(X<=0)return K;else if(K instanceof U)return K;else Z=K.tail,J=X-1}}function lh(Z,J){while(!0){let K=Z,X=J;if(K instanceof U)return X;else{let W=K.head;Z=K.tail,J=A(W,X)}}}function _0(Z,J){return lh(F0(Z),J)}function AJ(Z,J){return A(J,Z)}function sh(Z,J){while(!0){let K=Z,X=J;if(K instanceof U)return F0(X);else{let W=K.head;Z=K.tail,J=P5(W,X)}}}function vL(Z){return sh(Z,Q([]))}function v0(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof U)return W;else{let V=X.head;Z=X.tail,J=Y(W,V),K=Y}}}function JR(Z,J){while(!0){let K=Z,X=J;if(K instanceof U)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 qJ(Z,J){while(!0){let K=Z,X=J;if(K instanceof U)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 rh(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof U)return F0(Y);else{let{head:V,tail:G}=X;if(yL(W,V))Z=G,J=W,K=Y;else Z=G,J=i0(W,V,void 0),K=A(V,Y)}}}function gL(Z){return rh(Z,h0(),Q([]))}function ah(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 U)if(z instanceof V1)return A(F0(D),F);else return A(D,F);else{let{head:B,tail:T}=V,P=G(N,B);if(z instanceof V1)if(P instanceof a0)Z=T,J=G,K=D,X=z,W=B,Y=F;else if(P instanceof t0)Z=T,J=G,K=D,X=z,W=B,Y=F;else{let S;if(z instanceof V1)S=A(F0(D),F);else S=A(D,F);let q=S;if(T instanceof U)return A(Q([B]),q);else{let{head:C,tail:M}=T,k,w=G(B,C);if(w instanceof a0)k=new V1;else if(w instanceof t0)k=new V1;else k=new t5;let f=k;Z=M,J=G,K=Q([B]),X=f,W=C,Y=q}}else if(P instanceof a0){let S;if(z instanceof V1)S=A(F0(D),F);else S=A(D,F);let q=S;if(T instanceof U)return A(Q([B]),q);else{let{head:C,tail:M}=T,k,w=G(B,C);if(w instanceof a0)k=new V1;else if(w instanceof t0)k=new V1;else k=new t5;let f=k;Z=M,J=G,K=Q([B]),X=f,W=C,Y=q}}else if(P instanceof t0){let S;if(z instanceof V1)S=A(F0(D),F);else S=A(D,F);let q=S;if(T instanceof U)return A(Q([B]),q);else{let{head:C,tail:M}=T,k,w=G(B,C);if(w instanceof a0)k=new V1;else if(w instanceof t0)k=new V1;else k=new t5;let f=k;Z=M,J=G,K=Q([B]),X=f,W=C,Y=q}}else Z=T,J=G,K=D,X=z,W=B,Y=F}}}function th(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(W instanceof U)return P5(Y,G);else if(Y instanceof U)return P5(W,G);else{let{head:I,tail:z}=W,N=Y.head,F=Y.tail,D=V(I,N);if(D instanceof a0)Z=z,J=Y,K=V,X=A(I,G);else if(D instanceof t0)Z=W,J=F,K=V,X=A(N,G);else Z=W,J=F,K=V,X=A(N,G)}}}function oh(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof U)return F0(Y);else{let V=X.tail;if(V instanceof U){let G=X.head;return F0(A(F0(G),Y))}else{let G=X.head,I=V.head,z=V.tail,N=th(G,I,W,Q([]));Z=z,J=W,K=A(N,Y)}}}}function eh(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(W instanceof U)return P5(Y,G);else if(Y instanceof U)return P5(W,G);else{let{head:I,tail:z}=W,N=Y.head,F=Y.tail,D=V(I,N);if(D instanceof a0)Z=W,J=F,K=V,X=A(N,G);else if(D instanceof t0)Z=z,J=Y,K=V,X=A(I,G);else Z=z,J=Y,K=V,X=A(I,G)}}}function Zv(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof U)return F0(Y);else{let V=X.tail;if(V instanceof U){let G=X.head;return F0(A(F0(G),Y))}else{let G=X.head,I=V.head,z=V.tail,N=eh(G,I,W,Q([]));Z=z,J=W,K=A(N,Y)}}}}function Jv(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof U)return X;else if(W instanceof V1)if(X.tail instanceof U)return X.head;else Z=oh(X,Y,Q([])),J=new t5,K=Y;else if(X.tail instanceof U){let G=X.head;return F0(G)}else Z=Zv(X,Y,Q([])),J=new V1,K=Y}}function KR(Z,J){if(Z instanceof U)return Z;else{let K=Z.tail;if(K instanceof U)return Z;else{let X=Z.head,W=K.head,Y=K.tail,V,G=J(X,W);if(G instanceof a0)V=new V1;else if(G instanceof t0)V=new V1;else V=new t5;let I=V,z=ah(Y,J,Q([X]),I,W,Q([]));return Jv(z,new V1,J)}}}function qZ(Z,J){return qJ(Z,(K)=>{let X,W;if(X=K[0],W=K[1],O0(X,J))return new E(W);else return new v(void 0)})}function Kv(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(W instanceof U)return F0(A([Y,V],G));else{let I=W.head[0];if(O0(I,Y)){let z=W.tail;return P5(G,A([I,V],z))}else{let z=W.head;Z=W.tail,J=Y,K=V,X=A(z,G)}}}}function YR(Z,J,K){return Kv(Z,J,K,Q([]))}function $L(Z,J){while(!0){let K=Z,X=J;if(K instanceof U)return;else{let{head:W,tail:Y}=K;X(W),Z=Y,J=X}}}function _L(Z,J){if(Z instanceof U)return new v(void 0);else{let{head:K,tail:X}=Z;return new E(v0(X,K,J))}}class r8 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}}function z0(Z,J){let K=J.function(Z),X,W;if(X=K[0],W=K[1],W instanceof U)return new E(X);else return new v(W)}function s(Z){return new h1((J)=>{return[Z,Q([])]})}function Wv(Z){return[Z,Q([])]}function A5(Z,J){return new h1((K)=>{let X=Z.function(K),W,Y;return W=X[0],Y=X[1],[J(W),Y]})}function Qv(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(Y instanceof U)return W;else{let{head:V,tail:G}=Y,I=V.function(X),z,N;if(z=I,N=I[1],N instanceof U)return z;else Z=X,J=W,K=G}}}function WR(Z,J){return new h1((K)=>{let X=Z.function(K),W,Y;if(W=X,Y=X[1],Y instanceof U)return W;else return Qv(K,W,J)})}function U1(Z){return new h1((J)=>{if(aL(J))return[new h,Q([])];else{let X=Z.function(J),W,Y;return W=X[0],Y=X[1],[new L(W),Y]}})}var f0=new h1(Wv);function dL(Z,J){return Q([new r8(Z,s8(J),Q([]))])}function QR(Z,J,K){let X=K(Z);if(X instanceof E)return[X[0],Q([])];else return[X[0],Q([new r8(J,s8(Z),Q([]))])]}function Vv(Z){if(O0(N0(!0),Z))return[!0,Q([])];else if(O0(N0(!1),Z))return[!1,Q([])];else return[!1,dL("Bool",Z)]}function Gv(Z){return QR(Z,"Int",sL)}function Iv(Z){return QR(Z,"Float",lL)}var G1=new h1(Vv),p0=new h1(Gv),cL=new h1(Iv);function zv(Z){return QR(Z,"String",rL)}var u=new h1(zv);function Nv(Z,J,K,X,W){let Y=X(J),V=Y[1];if(V instanceof U){let G=Y[0],I=W(K),z=I[1];if(z instanceof U){let N=I[0];return[i0(Z[0],G,N),Z[1]]}else{let N=z;return e5([h0(),N],Q(["values"]))}}else{let G=V;return e5([h0(),G],Q(["keys"]))}}function R8(Z,J){return new h1((K)=>{let X=iL(K);if(X instanceof E){let W=X[0];return a5(W,[h0(),Q([])],(Y,V,G)=>{if(Y[1]instanceof U)return Nv(Y,V,G,Z.function,J.function);else return Y})}else return[h0(),dL("Dict",K)]})}function U0(Z){return new h1((J)=>{return nL(J,Z.function,(K,X)=>{return e5(K,Q([X]))},0,Q([]))})}function e5(Z,J){let K=WR(u,Q([(()=>{return A5(p0,X1)})()])),X=H0(J,(Y)=>{let V=N0(Y),G=z0(V,K);if(G instanceof E)return G[0];else return"<"+s8(V)+">"}),W=H0(Z[1],(Y)=>{return new r8(Y.expected,Y.found,_0(X,Y.path))});return[Z[0],W]}function Fv(Z,J,K,X,W){while(!0){let Y=Z,V=J,G=K,I=X,z=W;if(Y instanceof U){let F=G(I);return e5(F,F0(V))}else{let{head:N,tail:F}=Y,D=pL(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 r8(B,s8(I),Q([]))])];return e5(S,F0(V))}}}}function EZ(Z,J,K){return new h1((X)=>{let W=Fv(Z,Q([]),J.function,X,(N,F)=>{let D=J.function(N),B;B=D[0];let T=[B,Q([new r8("Field","Nothing",Q([]))])];return e5(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 g(Z,J,K){return EZ(Q([Z]),J,K)}var CZ=void 0,tL={};function N0(Z){return Z}function X1(Z){return Z.toString()}function Y8(Z){if(Z==="")return 0;let J=EJ(Z);if(J){let K=0;for(let X of J)K++;return K}else return Z.match(/./gsu).length}function xZ(Z){let J=EJ(Z);if(J)return n0.fromArray(Array.from(J).map((K)=>K.segment));else return n0.fromArray(Z.match(/./gsu))}var oL=void 0;function EJ(Z){if(globalThis.Intl&&Intl.Segmenter)return oL||=new Intl.Segmenter,oL.segment(Z)[Symbol.iterator]()}function CJ(Z){let J,K=EJ(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(CZ)}function q5(Z){return[Z.charCodeAt(0)|0,Z.slice(1)]}function i1(Z){return Z.toLowerCase()}function xJ(Z){return Z.toUpperCase()}function GR(Z,J){return n0.fromArray(Z.split(J))}function IR(Z,J,K){if(K<=0||J>=Z.length)return"";let X=EJ(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 I1(Z,J,K){return Z.slice(J,J+K)}function Z4(Z,J){return Z.startsWith(J)}function wJ(Z,J){return Z.endsWith(J)}function E5(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(CZ)}var Ky=[" ","\t",` 2 + `,"\v","\f","\r","…","\u2028","\u2029"].join(""),Dv=new RegExp(`^[${Ky}]*`),Bv=new RegExp(`[${Ky}]*$`);function Yy(Z){return Z.replace(Dv,"")}function zR(Z){return Z.replace(Bv,"")}function C5(Z){console.log(Z)}function h0(){return Y1.new()}function TJ(Z){return Z.size}function l8(Z){return n0.fromArray(Z.entries())}function fL(Z,J){return J.delete(Z)}function T0(Z,J){let K=Z.get(J,tL);if(K===tL)return new v(CZ);return new E(K)}function kL(Z,J,K){return K.set(Z,J)}function Ov(Z){return decodeURIComponent(Z||"")}function eL(Z){return decodeURIComponent((Z||"").replace("+"," "))}function NR(Z){try{return new E(Ov(Z))}catch{return new v(CZ)}}function UJ(Z){try{let J=[];for(let K of Z.split("&")){let[X,W]=K.split("=");if(!X)continue;let Y=eL(X),V=eL(W);J.push([Y,V])}return new E(n0.fromArray(J))}catch{return new v(CZ)}}function s8(Z){if(typeof Z==="string")return"String";else if(typeof Z==="boolean")return"Bool";else if(Z instanceof r5)return"Result";else if(Z instanceof n0)return"List";else if(Z instanceof PZ)return"BitArray";else if(Z instanceof Y1)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 Xy(Z){return new Wy().inspect(Z)}function c0(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 Wy{#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 c0(Z);if(Z instanceof gM)return this.#Q(Z);if(Z instanceof PZ)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 n0)K=this.#J(Z);else if(Z instanceof O)K=this.#Y(Z);else if(Z instanceof Y1)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 U)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 pL(Z,J){if(Z instanceof Y1||Z instanceof WeakMap||Z instanceof Map){let X={},W=Z.get(J,X);if(W===X)return new E(new h);return new E(new L(W))}let K=Number.isInteger(J);if(K&&J>=0&&J<8&&Z instanceof n0){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 h)}return new v(K?"Indexable":"Dict")}function nL(Z,J,K,X,W){if(!(Z instanceof n0||Array.isArray(Z))){let V=new r8("List",s8(Z),W);return[W,n0.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[n0.fromArray(Y),W]}function iL(Z){if(Z instanceof Y1)return new E(Z);if(Z instanceof Map||Z instanceof WeakMap)return new E(Y1.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(Y1.fromObject(Z));return new v("Dict")}function lL(Z){if(typeof Z==="number")return new E(Z);return new v(0)}function sL(Z){if(Number.isInteger(Z))return new E(Z);return new v(0)}function rL(Z){if(typeof Z==="string")return new E(Z);return new v("")}function aL(Z){return Z===null||Z===void 0}function MJ(Z,J){if(Z>J)return Z;else return J}function Vy(Z,J,K){if(K<=0)return"";else if(J<0){let Y=Y8(Z)+J;if(Y<0)return"";else return IR(Z,Y,K)}else return IR(Z,J,K)}function Ev(Z,J){while(!0){let K=Z,X=J;if(K instanceof U)return X;else{let W=K.head;Z=K.tail,J=X+W}}}function wZ(Z){return Ev(Z,"")}function Cv(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof U)return Y;else{let V=X.head;Z=X.tail,J=W,K=Y+W+V}}}function a8(Z,J){if(Z instanceof U)return"";else{let{head:K,tail:X}=Z;return Cv(X,J,K)}}function K4(Z){let K=Yy(Z);return zR(K)}function Y4(Z,J){if(J==="")return xZ(Z);else{let X=N0(Z),W=GR(X,J);return H0(W,N0)}}function jJ(Z){let K=Xy(Z);return N0(K)}function zy(Z){if(Z instanceof E)return!0;else return!1}function FR(Z,J){if(Z instanceof E){let K=Z[0];return new E(J(K))}else return Z}function X4(Z,J){if(Z instanceof E)return Z;else{let K=Z[0];return new v(J(K))}}function M1(Z,J){if(Z instanceof E){let K=Z[0];return J(K)}else return Z}function F8(Z,J){if(Z instanceof E)return Z[0];else return J}function Ny(Z){return S5(Z,(J)=>{return J})}function HR(Z){return JSON.stringify(Z)}function Fy(Z){return Object.fromEntries(Z)}function t8(Z){return Z}function Hy(Z){let J=[];while(AL(Z))J.push(qL(Z)),Z=EL(Z);return J}function Dy(){return null}function By(Z){try{let J=JSON.parse(Z);return CL(J)}catch(J){return xL(Rv(J,Z))}}function Rv(Z,J){if(jv(Z))return Oy();return Lv(Z,J)}function jv(Z){return/((unexpected (end|eof))|(end of data)|(unterminated string)|(json( parse error|\.parse)\: expected '(\:|\}|\])'))/i.test(Z.message)}function Lv(Z,J){let K=[yv,fv,bv,kv];for(let X of K){let W=X(Z,J);if(W)return W}return W4("")}function yv(Z){let K=/unexpected token '(.)', ".+" is not valid JSON/i.exec(Z.message);if(!K)return null;let X=LJ(K[1]);return W4(X)}function fv(Z){let K=/unexpected token (.) in JSON at position (\d+)/i.exec(Z.message);if(!K)return null;let X=LJ(K[1]);return W4(X)}function kv(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=hv(W,Y,J),G=LJ(J[V]);return W4(G)}function bv(Z){let K=/unexpected (identifier|token) "(.)"/i.exec(Z.message);if(!K)return null;let X=LJ(K[2]);return W4(X)}function LJ(Z){return"0x"+Z.charCodeAt(0).toString(16).toUpperCase()}function hv(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 Ty extends O{}var Oy=()=>new Ty;class Py extends O{constructor(Z){super();this[0]=Z}}var W4=(Z)=>new Py(Z);class Sy extends O{constructor(Z){super();this[0]=Z}}function vv(Z,J){return M1(By(Z),(K)=>{let X=z0(K,J);return X4(X,(W)=>{return new Sy(W)})})}function l1(Z,J){return vv(Z,J)}function j8(Z){return HR(Z)}function d(Z){return t8(Z)}function s1(Z){return t8(Z)}function W1(Z){return t8(Z)}function Ay(Z){return t8(Z)}function DR(){return Dy()}function b(Z){return Fy(Z)}function qy(Z){return Hy(Z)}function j0(Z,J){let X=H0(Z,J);return qy(X)}class yJ extends O{constructor(Z){super();this.dict=Z}}function x5(){return new yJ(h0())}function Q4(Z,J){let K=Z.dict,X=T0(K,J);return zy(X)}function Ey(Z,J){return new yJ(z8(Z.dict,J))}function Cy(Z){return M8(Z.dict)}var $v=void 0;function UZ(Z,J){return new yJ(i0(Z.dict,J,$v))}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}}function mv(Z){return 48>=Z&&Z<=57||65>=Z&&Z<=90||97>=Z&&Z<=122||Z===58||Z===46}function X8(Z,J){return new E(new V0(J.scheme,J.userinfo,J.host,J.port,J.path,J.query,new L(Z)))}function uv(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 X8(I,V)}else{let I=Y.slice(1),z=I1(W,0,G),N=new V0(V.scheme,V.userinfo,V.host,V.port,V.path,new L(z),V.fragment);return X8(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=q5(Y),z;z=I[1],Z=W,J=z,K=V,X=G+1}}}function L8(Z,J){return uv(Z,Z,J,0)}function dv(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(Y.startsWith("?")){let I=Y.slice(1),z=I1(W,0,G),N=new V0(V.scheme,V.userinfo,V.host,V.port,z,V.query,V.fragment);return L8(I,N)}else if(Y.startsWith("#")){let I=Y.slice(1),z=I1(W,0,G),N=new V0(V.scheme,V.userinfo,V.host,V.port,z,V.query,V.fragment);return X8(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=q5(Y),z;z=I[1],Z=W,J=z,K=V,X=G+1}}}function w5(Z,J){return dv(Z,Z,J,0)}function H8(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 L8(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 X8(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 w5(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 fJ(Z,J){if(Z.startsWith(":0")){let K=Z.slice(2);return H8(K,J,0)}else if(Z.startsWith(":1")){let K=Z.slice(2);return H8(K,J,1)}else if(Z.startsWith(":2")){let K=Z.slice(2);return H8(K,J,2)}else if(Z.startsWith(":3")){let K=Z.slice(2);return H8(K,J,3)}else if(Z.startsWith(":4")){let K=Z.slice(2);return H8(K,J,4)}else if(Z.startsWith(":5")){let K=Z.slice(2);return H8(K,J,5)}else if(Z.startsWith(":6")){let K=Z.slice(2);return H8(K,J,6)}else if(Z.startsWith(":7")){let K=Z.slice(2);return H8(K,J,7)}else if(Z.startsWith(":8")){let K=Z.slice(2);return H8(K,J,8)}else if(Z.startsWith(":9")){let K=Z.slice(2);return H8(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 L8(K,J)}else if(Z.startsWith(":?")){let K=Z.slice(2);return L8(K,J)}else if(Z.startsWith("#")){let K=Z.slice(1);return X8(K,J)}else if(Z.startsWith(":#")){let K=Z.slice(2);return X8(K,J)}else if(Z.startsWith("/"))return w5(Z,J);else if(Z.startsWith(":")){let K=Z.slice(1);if(K.startsWith("/"))return w5(K,J);else return new v(void 0)}else return new v(void 0)}function xy(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=I1(W,0,G),z=new V0(V.scheme,V.userinfo,new L(I),V.port,V.path,V.query,V.fragment);return fJ(Y,z)}else if(Y.startsWith("/")){let I=I1(W,0,G),z=new V0(V.scheme,V.userinfo,new L(I),V.port,V.path,V.query,V.fragment);return w5(Y,z)}else if(Y.startsWith("?")){let I=Y.slice(1),z=I1(W,0,G),N=new V0(V.scheme,V.userinfo,new L(z),V.port,V.path,V.query,V.fragment);return L8(I,N)}else if(Y.startsWith("#")){let I=Y.slice(1),z=I1(W,0,G),N=new V0(V.scheme,V.userinfo,new L(z),V.port,V.path,V.query,V.fragment);return X8(I,N)}else{let I=q5(Y),z;z=I[1],Z=W,J=z,K=V,X=G+1}}}function cv(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 fJ(I,V)}else{let I=Y.slice(1),z=I1(W,0,G+1),N=new V0(V.scheme,V.userinfo,new L(z),V.port,V.path,V.query,V.fragment);return fJ(I,N)}else if(Y.startsWith("/"))if(G===0)return w5(Y,V);else{let I=I1(W,0,G),z=new V0(V.scheme,V.userinfo,new L(I),V.port,V.path,V.query,V.fragment);return w5(Y,z)}else if(Y.startsWith("?"))if(G===0){let I=Y.slice(1);return L8(I,V)}else{let I=Y.slice(1),z=I1(W,0,G),N=new V0(V.scheme,V.userinfo,new L(z),V.port,V.path,V.query,V.fragment);return L8(I,N)}else if(Y.startsWith("#"))if(G===0){let I=Y.slice(1);return X8(I,V)}else{let I=Y.slice(1),z=I1(W,0,G),N=new V0(V.scheme,V.userinfo,new L(z),V.port,V.path,V.query,V.fragment);return X8(I,N)}else{let I=q5(Y),z,N;if(z=I[0],N=I[1],mv(z))Z=W,J=N,K=V,X=G+1;else return xy(W,W,V,0)}}}function pv(Z,J){return cv(Z,Z,J,0)}function nv(Z,J){return xy(Z,Z,J,0)}function V4(Z,J){if(Z.startsWith("["))return pv(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 fJ(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 nv(Z,J)}function iv(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 V4(I,V)}else{let I=Y.slice(1),z=I1(W,0,G),N=new V0(V.scheme,new L(z),V.host,V.port,V.path,V.query,V.fragment);return V4(I,N)}else if(Y==="")return V4(W,V);else if(Y.startsWith("/"))return V4(W,V);else if(Y.startsWith("?"))return V4(W,V);else if(Y.startsWith("#"))return V4(W,V);else{let I=q5(Y),z;z=I[1],Z=W,J=z,K=V,X=G+1}}}function lv(Z,J){return iv(Z,Z,J,0)}function BR(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 lv(K,J)}else return w5(Z,J)}function sv(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(Y.startsWith("/"))if(G===0)return BR(Y,V);else{let I=I1(W,0,G),z=new V0(new L(i1(I)),V.userinfo,V.host,V.port,V.path,V.query,V.fragment);return BR(Y,z)}else if(Y.startsWith("?"))if(G===0){let I=Y.slice(1);return L8(I,V)}else{let I=Y.slice(1),z=I1(W,0,G),N=new V0(new L(i1(z)),V.userinfo,V.host,V.port,V.path,V.query,V.fragment);return L8(I,N)}else if(Y.startsWith("#"))if(G===0){let I=Y.slice(1);return X8(I,V)}else{let I=Y.slice(1),z=I1(W,0,G),N=new V0(new L(i1(z)),V.userinfo,V.host,V.port,V.path,V.query,V.fragment);return X8(I,N)}else if(Y.startsWith(":"))if(G===0)return new v(void 0);else{let I=Y.slice(1),z=I1(W,0,G),N=new V0(new L(i1(z)),V.userinfo,V.host,V.port,V.path,V.query,V.fragment);return BR(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=q5(Y),z;z=I[1],Z=W,J=z,K=V,X=G+1}}}function kJ(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=Z4(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,C=Z.userinfo,M=Z.host;if(q instanceof L)if(C instanceof L)if(M instanceof L){let w=q[0],f=C[0],$=M[0];S=A(w,A("://",A(f,A("@",A($,P)))))}else{let w=q[0];S=A(w,A(":",P))}else if(M instanceof L){let w=q[0],f=M[0];S=A(w,A("://",A(f,P)))}else{let w=q[0];S=A(w,A(":",P))}else if(C instanceof h&&M instanceof L){let w=M[0];S=A("//",A(w,P))}else S=P;return wZ(S)}var rv=new V0(new h,new h,new h,new h,"",new h,new h);function OR(Z){return sv(Z,Z,rv,0)}function G4(Z,J,K){if(Z)return J;else return K()}function S0(Z){return Z}var r1=()=>globalThis?.document,hJ="http://www.w3.org/1999/xhtml",vJ=1,SR=3;var Ry=!!globalThis.HTMLElement?.prototype?.moveBefore;var e=Q([]),gJ=new h;var ev=new U8,Zg=new a0,Jg=new t0;function $J(Z,J){if(Z.name===J.name)return Jg;else if(Z.name<J.name)return Zg;else return ev}class a1 extends O{constructor(Z,J,K){super();this.kind=Z,this.name=J,this.value=K}}class RZ extends O{constructor(Z,J,K){super();this.kind=Z,this.name=J,this.value=K}}class O1 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 jZ extends O{constructor(Z,J,K){super();this.prevent_default=Z,this.stop_propagation=J,this.message=K}}class ky extends O{constructor(Z){super();this.kind=Z}}class by extends O{constructor(Z){super();this.kind=Z}}function Vg(Z,J){while(!0){let K=Z,X=J;if(K instanceof U)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 U){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 U){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 hy(Z){if(Z instanceof U)return Z;else if(Z.tail instanceof U)return Z;else{let X=KR(Z,(W,Y)=>{return $J(Y,W)});return Vg(X,e)}}var qR=0;function vy(Z,J){return new a1(qR,Z,J)}var ER=1;function gy(Z,J){return new RZ(ER,Z,J)}var CR=2;function $y(Z,J,K,X,W,Y,V){return new O1(CR,Z,J,K,X,W,Y,V)}var xR=0;var wR=new ky(xR);var _J=2,_y=new by(_J);function R(Z,J){return vy(Z,J)}function UR(Z,J){return gy(Z,J)}function MR(Z,J){if(J)return R(Z,"");else return UR(Z,s1(!1))}function H(Z){return R("class",Z)}function B8(Z){return R("id",Z)}function v1(Z){return R("href",Z)}function my(Z){return R("alt",Z)}function uy(Z){return R("src",Z)}function U5(Z){return R("action",Z)}function M5(Z){return R("method",Z)}function dy(Z){return R("accept",a8(Z,","))}function LZ(Z){return MR("disabled",Z)}function cy(Z){return R("name",Z)}function q1(Z){return R("placeholder",Z)}function e8(Z){return MR("required",Z)}function RR(Z){return MR("selected",Z)}function M0(Z){return R("type",Z)}function o0(Z){return R("value",Z)}class yZ extends O{constructor(Z,J,K){super();this.synchronous=Z,this.before_paint=J,this.after_paint=K}}class LR 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 Gg(Z,J,K){return}function Ig(Z,J){return new LR((K)=>{return Z.dispatch(J(K))},Z.emit,(K)=>{return Gg(Z,K,J)},Z.root,Z.provide)}function jR(Z,J){return H0(Z,(K)=>{return(X)=>{return K(Ig(X,J))}})}function yR(Z,J){return new yZ(jR(Z.synchronous,J),jR(Z.before_paint,J),jR(Z.after_paint,J))}function py(Z,J,K,X,W,Y){let V=new LR(J,K,X,W,Y);return $L(Z.synchronous,(G)=>{return G(V)})}var mJ=new yZ(Q([]),Q([]),Q([]));function i(){return mJ}function z1(Z){return new yZ(Q([(K)=>{let X=K.dispatch;return Z(X)}]),mJ.before_paint,mJ.after_paint)}function Q1(Z){return v0(Z,mJ,(J,K)=>{return new yZ(v0(K.synchronous,J.synchronous,AJ),v0(K.before_paint,J.before_paint,AJ),v0(K.after_paint,J.after_paint,AJ))})}function E1(){return null}function fZ(Z,J){let K=Z?.get(J);if(K!=null)return new E(K);else return new v(void 0)}function kZ(Z,J){return Z&&Z.has(J)}function R5(Z,J,K){return Z??=new Map,Z.set(J,K),Z}function fR(Z,J){return Z?.delete(J),Z}class kR extends O{}class bR extends O{constructor(Z,J){super();this.key=Z,this.parent=J}}class ny extends O{constructor(Z,J){super();this.index=Z,this.parent=J}}function zg(Z,J){while(!0){let K=Z,X=J;if(X instanceof U)return!1;else{let{head:W,tail:Y}=X,V=Z4(K,W);if(V)return V;else Z=K,J=Y}}}function o1(Z,J,K){if(K==="")return new ny(J,Z);else return new bR(K,Z)}var z4=new kR,hZ="\t";function iy(Z,J){while(!0){let K=Z,X=J;if(K instanceof kR)if(X instanceof U)return"";else{let W=X.tail;return wZ(W)}else if(K instanceof bR){let W=K.key;Z=K.parent,J=A(hZ,A(W,X))}else{let W=K.index;Z=K.parent,J=A(hZ,A(X1(W),X))}}}function ly(Z){return iy(Z,Q([]))}function sy(Z,J){if(J instanceof U)return!1;else return zg(ly(Z),J)}var hR=` 5 + `;function vR(Z,J){return iy(Z,Q([hR,J]))}class R1 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 C1 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 g1 extends O{constructor(Z,J,K,X){super();this.kind=Z,this.key=J,this.mapper=K,this.content=X}}class Z5 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 N4(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 ry(Z,J){if(J instanceof R1)return new R1(J.kind,Z,J.mapper,J.children,J.keyed_children);else if(J instanceof C1)return new C1(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 g1)return new g1(J.kind,Z,J.mapper,J.content);else return new Z5(J.kind,Z,J.mapper,J.namespace,J.tag,J.attributes,J.inner_html)}var W8=0;function dJ(Z,J,K,X){return new R1(W8,Z,J,K,X)}var j5=1;function F4(Z,J,K,X,W,Y,V,G,I){return new C1(j5,Z,J,K,X,hy(W),Y,V,G,I)}var H4=2;function gR(Z,J,K){return new g1(H4,Z,J,K)}var ay=3;var $R=(Z,J)=>Z===J,Q8=(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 Hg(Z,J);return Dg(Z,J)},Hg=(Z,J)=>{let K=Z.length;if(K!==J.length)return!1;while(K--)if(!Q8(Z[K],J[K]))return!1;return!0},Dg=(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(!Q8(Z[W],J[W]))return!1}return!0};class k8 extends O{constructor(Z,J,K){super();this.handlers=Z,this.dispatched_paths=J,this.next_dispatched_paths=K}}class uR extends O{constructor(Z,J){super();this.path=Z,this.handler=J}}class _R extends O{constructor(Z){super();this.path=Z}}function dR(){return new k8(E1(),e,e)}function Zf(Z){return new k8(Z.handlers,Z.next_dispatched_paths,e)}function Jf(Z,J,K){return fR(Z,vR(J,K))}function cJ(Z,J,K){let X=Jf(Z.handlers,J,K);return new k8(X,Z.dispatched_paths,Z.next_dispatched_paths)}function ty(Z,J,K){return v0(K,Z,(X,W)=>{if(W instanceof O1){let Y=W.name;return Jf(X,J,Y)}else return X})}function cR(Z,J,K,X){let W=fZ(Z.handlers,J+hR+K);if(W instanceof E){let Y=W[0],V=z0(X,Y);if(V instanceof E){let G=V[0];return new uR(J,G)}else return new _R(J)}else return new _R(J)}function pR(Z,J){let K=A(J.path,Z.next_dispatched_paths),X=new k8(Z.handlers,Z.dispatched_paths,K);if(J instanceof uR){let W=J.handler;return[X,new E(W)]}else return[X,new v(void 0)]}function pJ(Z,J,K,X){let W=cR(Z,J,K,X);return((Y)=>{return pR(Z,Y)})(W)}function nJ(Z,J){return sy(J,Z.dispatched_paths)}function Kf(Z,J,K,X,W){return R5(Z,vR(K,X),A5(W,(Y)=>{return new jZ(Y.prevent_default,Y.stop_propagation,S0(J)(Y.message))}))}function D4(Z,J,K,X,W){let Y=Kf(Z.handlers,J,K,X,W);return new k8(Y,Z.dispatched_paths,Z.next_dispatched_paths)}function oy(Z,J,K,X){return v0(X,Z,(W,Y)=>{if(Y instanceof O1){let{name:V,handler:G}=Y;return Kf(W,J,K,V,G)}else return W})}function f8(Z,J){let K=$R(Z,S0);if($R(J,S0))return Z;else if(K)return J;else return(W)=>{return Z(J(W))}}function ey(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(G instanceof U)return W;else{let{head:I,tail:z}=G;Z=Yf(W,Y,V,I),J=Y,K=V+1,X=z}}}function Yf(Z,J,K,X){if(X instanceof R1){let W=X.children,Y=o1(J,K,X.key);return ey(Z,Y,0,W)}else if(X instanceof C1){let{attributes:W,children:Y}=X,V=o1(J,K,X.key),I=ty(Z,V,W);return ey(I,V,0,Y)}else if(X instanceof g1)return Z;else{let W=X.attributes,Y=o1(J,K,X.key);return ty(Z,Y,W)}}function b8(Z,J,K,X){let W=Yf(Z.handlers,J,K,X);return new k8(W,Z.dispatched_paths,Z.next_dispatched_paths)}function mR(Z,J,K,X,W){while(!0){let Y=Z,V=J,G=K,I=X,z=W;if(z instanceof U)return Y;else{let{head:N,tail:F}=z;Z=Xf(Y,V,G,I,N),J=V,K=G,X=I+1,W=F}}}function Xf(Z,J,K,X,W){if(W instanceof R1){let Y=W.children,V=o1(K,X,W.key),G=f8(J,W.mapper);return mR(Z,G,V,0,Y)}else if(W instanceof C1){let{attributes:Y,children:V}=W,G=o1(K,X,W.key),I=f8(J,W.mapper),N=oy(Z,I,G,Y);return mR(N,I,G,0,V)}else if(W instanceof g1)return Z;else{let Y=W.attributes,V=o1(K,X,W.key),G=f8(J,W.mapper);return oy(Z,G,V,Y)}}function h8(Z,J,K,X,W){let Y=Xf(Z.handlers,J,K,X,W);return new k8(Y,Z.dispatched_paths,Z.next_dispatched_paths)}function nR(Z){return h8(dR(),S0,z4,0,Z)}function Wf(Z,J,K,X,W){let Y=mR(Z.handlers,J,K,X,W);return new k8(Y,Z.dispatched_paths,Z.next_dispatched_paths)}function R0(Z,J,K){return F4("",S0,"",Z,J,K,E1(),!1,N4(Z,""))}function $1(Z,J,K,X){return F4("",S0,Z,J,K,X,E1(),!1,N4(J,Z))}function x(Z){return gR("",S0,Z)}function G0(){return gR("",S0,"")}function Qf(Z){return dJ("",S0,Z,E1())}function vZ(Z,J){let K=S0(f8(S0(J),Z.mapper));if(Z instanceof R1){let{children:X,keyed_children:W}=Z;return new R1(Z.kind,Z.key,K,S0(X),S0(W))}else if(Z instanceof C1){let{attributes:X,children:W,keyed_children:Y}=Z;return new C1(Z.kind,Z.key,K,Z.namespace,Z.tag,S0(X),S0(W),S0(Y),Z.self_closing,Z.void)}else if(Z instanceof g1)return S0(Z);else{let X=Z.attributes;return new Z5(Z.kind,Z.key,K,Z.namespace,Z.tag,S0(X),Z.inner_html)}}function s0(Z){return x(Z)}function _1(Z,J){return R0("h1",Z,J)}function B4(Z,J){return R0("h2",Z,J)}function O4(Z,J){return R0("h3",Z,J)}function j(Z,J){return R0("div",Z,J)}function y5(Z,J){return R0("li",Z,J)}function x0(Z,J){return R0("p",Z,J)}function iJ(Z,J){return R0("pre",Z,J)}function lJ(Z,J){return R0("ul",Z,J)}function m1(Z,J){return R0("a",Z,J)}function v8(Z,J){return R0("code",Z,J)}function p(Z,J){return R0("span",Z,J)}function Vf(Z){return R0("img",Z,e)}function E0(Z,J){return R0("button",Z,J)}function g8(Z,J){return R0("form",Z,J)}function N1(Z){return R0("input",Z,e)}function r0(Z,J){return R0("label",Z,J)}function iR(Z,J){return R0("option",Z,Q([x(J)]))}function Gf(Z,J){return R0("select",Z,J)}function lR(Z,J){return R0("textarea",A(UR("value",d(J)),Z),Q([x(J)]))}function If(Z,J){return R0("details",Z,J)}function zf(Z,J){return R0("summary",Z,J)}class gZ extends O{constructor(Z,J,K,X){super();this.index=Z,this.removed=J,this.changes=K,this.children=X}}class Nf extends O{constructor(Z,J){super();this.kind=Z,this.content=J}}class Ff extends O{constructor(Z,J){super();this.kind=Z,this.inner_html=J}}class Hf extends O{constructor(Z,J,K){super();this.kind=Z,this.added=J,this.removed=K}}class Df extends O{constructor(Z,J,K){super();this.kind=Z,this.key=J,this.before=K}}class Bf extends O{constructor(Z,J,K){super();this.kind=Z,this.index=J,this.with=K}}class Of extends O{constructor(Z,J){super();this.kind=Z,this.index=J}}class Tf extends O{constructor(Z,J,K){super();this.kind=Z,this.children=J,this.before=K}}function sR(Z,J,K,X){return new gZ(Z,J,K,X)}var rR=0;function Pf(Z){return new Nf(rR,Z)}var aR=1;function Sf(Z){return new Ff(aR,Z)}var tR=2;function oR(Z,J){return new Hf(tR,Z,J)}var eR=3;function Af(Z,J){return new Df(eR,Z,J)}var Zj=4;function qf(Z){return new Of(Zj,Z)}var Jj=5;function f5(Z,J){return new Bf(Jj,Z,J)}var Kj=6;function Yj(Z,J){return new Tf(Kj,Z,J)}class Cf 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 xf extends O{constructor(Z,J){super();this.kind=Z,this.patch=J}}class wf extends O{constructor(Z,J,K){super();this.kind=Z,this.name=J,this.data=K}}class Uf extends O{constructor(Z,J,K){super();this.kind=Z,this.key=J,this.value=K}}class sJ extends O{constructor(Z,J){super();this.kind=Z,this.messages=J}}class rJ extends O{constructor(Z,J,K){super();this.kind=Z,this.name=J,this.value=K}}class aJ extends O{constructor(Z,J,K){super();this.kind=Z,this.name=J,this.value=K}}class tJ extends O{constructor(Z,J,K,X){super();this.kind=Z,this.path=J,this.name=K,this.event=X}}class Xj extends O{constructor(Z,J,K){super();this.kind=Z,this.key=J,this.value=K}}var Tg=0;function Mf(Z,J,K,X,W,Y,V){return new Cf(Tg,Z,J,K,X,W,Y,V)}var Pg=1;function Wj(Z){return new xf(Pg,Z)}var Sg=2;function Rf(Z,J){return new wf(Sg,Z,J)}var Ag=3;function jf(Z,J){return new Uf(Ag,Z,J)}class oJ extends O{constructor(Z,J){super();this.patch=Z,this.events=J}}class ff extends O{constructor(Z,J,K){super();this.added=Z,this.removed=J,this.events=K}}function qg(Z,J,K,X){if(K==="input"&&J==="")return nJ(Z,X);else if(K==="select"&&J==="")return nJ(Z,X);else if(K==="textarea"&&J==="")return nJ(Z,X);else return!1}function yf(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 U)if(B instanceof U)return new ff(T,P,F);else{let S=B.head;if(S instanceof O1){let q=S,C=B.tail,M=S.name,k=S.handler,w=A(q,T),f=D4(F,N,z,M,k);Z=I,J=z,K=N,X=f,W=D,Y=C,V=w,G=P}else{let q=S,C=B.tail,M=A(q,T);Z=I,J=z,K=N,X=F,W=D,Y=C,V=M,G=P}}else if(B instanceof U){let S=D.head;if(S instanceof O1){let q=S,C=D.tail,M=S.name,k=A(q,P),w=cJ(F,z,M);Z=I,J=z,K=N,X=w,W=C,Y=B,V=T,G=k}else{let q=S,C=D.tail,M=A(q,P);Z=I,J=z,K=N,X=F,W=C,Y=B,V=T,G=M}}else{let{head:S,tail:q}=D,C=B.head,M=B.tail,k=$J(S,C);if(k instanceof a0)if(S instanceof O1){let w=S.name,f=A(S,P),$=cJ(F,z,w);Z=I,J=z,K=N,X=$,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 t0)if(S instanceof a1)if(C instanceof a1){let w,f=C.name;if(f==="value")w=I||S.value!==C.value;else if(f==="checked")w=I||S.value!==C.value;else if(f==="selected")w=I||S.value!==C.value;else w=S.value!==C.value;let $=w,c;if($)c=A(C,T);else c=T;let n=c;Z=I,J=z,K=N,X=F,W=q,Y=M,V=n,G=P}else if(C instanceof O1){let{name:w,handler:f}=C,$=A(C,T),c=A(S,P),n=D4(F,N,z,w,f);Z=I,J=z,K=N,X=n,W=q,Y=M,V=$,G=c}else{let w=A(C,T),f=A(S,P);Z=I,J=z,K=N,X=F,W=q,Y=M,V=w,G=f}else if(S instanceof RZ)if(C instanceof RZ){let w,f=C.name;if(f==="scrollLeft")w=!0;else if(f==="scrollRight")w=!0;else if(f==="value")w=I||!Q8(S.value,C.value);else if(f==="checked")w=I||!Q8(S.value,C.value);else if(f==="selected")w=I||!Q8(S.value,C.value);else w=!Q8(S.value,C.value);let $=w,c;if($)c=A(C,T);else c=T;let n=c;Z=I,J=z,K=N,X=F,W=q,Y=M,V=n,G=P}else if(C instanceof O1){let{name:w,handler:f}=C,$=A(C,T),c=A(S,P),n=D4(F,N,z,w,f);Z=I,J=z,K=N,X=n,W=q,Y=M,V=$,G=c}else{let w=A(C,T),f=A(S,P);Z=I,J=z,K=N,X=F,W=q,Y=M,V=w,G=f}else if(C instanceof O1){let{name:w,handler:f}=C,$=S.prevent_default.kind!==C.prevent_default.kind||S.stop_propagation.kind!==C.stop_propagation.kind||S.debounce!==C.debounce||S.throttle!==C.throttle,c;if($)c=A(C,T);else c=T;let n=c,r=D4(F,N,z,w,f);Z=I,J=z,K=N,X=r,W=q,Y=M,V=n,G=P}else{let w=S.name,f=A(C,T),$=A(S,P),c=cJ(F,z,w);Z=I,J=z,K=N,X=c,W=q,Y=M,V=f,G=$}else if(C instanceof O1){let{name:w,handler:f}=C,$=A(C,T),c=D4(F,N,z,w,f);Z=I,J=z,K=N,X=c,W=D,Y=M,V=$,G=P}else{let w=A(C,T);Z=I,J=z,K=N,X=F,W=D,Y=M,V=w,G=P}}}}function Qj(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,C=W,M=Y,k=V,w=G,f=I,$=z,c=N,n=F,r=D,X0=B;if(T instanceof U)if(S instanceof U)return new oJ(new gZ(f,k,c,n),X0);else{let B0=Wf(X0,r,$,w,S),L0=Yj(S,w-M),I0=A(L0,c);return new oJ(new gZ(f,k,I0,n),B0)}else if(S instanceof U){let{head:B0,tail:L0}=T,I0;if(B0.key===""||!kZ(C,B0.key))I0=k+1;else I0=k;let W0=I0,J0=b8(X0,$,w,B0);Z=L0,J=P,K=S,X=q,W=C,Y=M,V=W0,G=w,I=f,z=$,N=c,F=n,D=r,B=J0}else{let B0=T.head,L0=S.head;if(B0.key!==L0.key){let I0=T.tail,D0=S.tail,W0=fZ(P,L0.key);if(kZ(q,B0.key))if(W0 instanceof E){let Z0=W0[0];if(kZ(C,B0.key))Z=I0,J=P,K=S,X=q,W=C,Y=M-1,V=k,G=w,I=f,z=$,N=c,F=n,D=r,B=X0;else{let y=w-M,_=A(Af(L0.key,y),c),t=R5(C,L0.key,void 0),o=M+1;Z=A(Z0,T),J=P,K=S,X=q,W=t,Y=o,V=k,G=w,I=f,z=$,N=_,F=n,D=r,B=X0}}else{let Z0=w-M,m=h8(X0,r,$,w,L0),y=Yj(Q([L0]),Z0),_=A(y,c);Z=T,J=P,K=D0,X=q,W=C,Y=M+1,V=k,G=w+1,I=f,z=$,N=_,F=n,D=r,B=m}else if(W0 instanceof E){let Z0=w-M,m=A(qf(Z0),c),y=b8(X0,$,w,B0),_=M-1;Z=I0,J=P,K=S,X=q,W=C,Y=_,V=k,G=w,I=f,z=$,N=m,F=n,D=r,B=y}else{let Z0=f5(w-M,L0),m,_=b8(X0,$,w,B0);m=h8(_,r,$,w,L0);let t=m;Z=I0,J=P,K=D0,X=q,W=C,Y=M,V=k,G=w+1,I=f,z=$,N=A(Z0,c),F=n,D=r,B=t}}else{let I0=T.head;if(I0 instanceof R1){let D0=S.head;if(D0 instanceof R1){let W0=I0,J0=T.tail,Z0=D0,m=S.tail,y=f8(r,Z0.mapper),_=o1($,w,Z0.key),t=Qj(W0.children,W0.keyed_children,Z0.children,Z0.keyed_children,E1(),0,0,0,w,_,e,e,y,X0),o,K0=t.patch;if(K0.changes instanceof U)if(K0.children instanceof U)if(K0.removed===0)o=n;else o=A(t.patch,n);else o=A(t.patch,n);else o=A(t.patch,n);let C0=o;Z=J0,J=P,K=m,X=q,W=C,Y=M,V=k,G=w+1,I=f,z=$,N=c,F=C0,D=r,B=t.events}else{let W0=I0,J0=T.tail,Z0=D0,m=S.tail,y=f5(w-M,Z0),_,o=b8(X0,$,w,W0);_=h8(o,r,$,w,Z0);let K0=_;Z=J0,J=P,K=m,X=q,W=C,Y=M,V=k,G=w+1,I=f,z=$,N=A(y,c),F=n,D=r,B=K0}}else if(I0 instanceof C1){let D0=S.head;if(D0 instanceof C1){let W0=I0,J0=D0;if(W0.namespace===J0.namespace&&W0.tag===J0.tag){let Z0=T.tail,m=S.tail,y=f8(r,J0.mapper),_=o1($,w,J0.key),t=qg(X0,J0.namespace,J0.tag,_),o=yf(t,_,y,X0,W0.attributes,J0.attributes,e,e),K0,w0,C0;K0=o.added,w0=o.removed,C0=o.events;let y0;if(K0 instanceof U&&w0 instanceof U)y0=e;else y0=Q([oR(K0,w0)]);let H1=y0,P1=Qj(W0.children,W0.keyed_children,J0.children,J0.keyed_children,E1(),0,0,0,w,_,H1,e,y,C0),S1,w1=P1.patch;if(w1.changes instanceof U)if(w1.children instanceof U)if(w1.removed===0)S1=n;else S1=A(P1.patch,n);else S1=A(P1.patch,n);else S1=A(P1.patch,n);let w8=S1;Z=Z0,J=P,K=m,X=q,W=C,Y=M,V=k,G=w+1,I=f,z=$,N=c,F=w8,D=r,B=P1.events}else{let Z0=I0,m=T.tail,y=D0,_=S.tail,t=f5(w-M,y),o,w0=b8(X0,$,w,Z0);o=h8(w0,r,$,w,y);let C0=o;Z=m,J=P,K=_,X=q,W=C,Y=M,V=k,G=w+1,I=f,z=$,N=A(t,c),F=n,D=r,B=C0}}else{let W0=I0,J0=T.tail,Z0=D0,m=S.tail,y=f5(w-M,Z0),_,o=b8(X0,$,w,W0);_=h8(o,r,$,w,Z0);let K0=_;Z=J0,J=P,K=m,X=q,W=C,Y=M,V=k,G=w+1,I=f,z=$,N=A(y,c),F=n,D=r,B=K0}}else if(I0 instanceof g1){let D0=S.head;if(D0 instanceof g1){let W0=I0,J0=D0;if(W0.content===J0.content){let Z0=T.tail,m=S.tail;Z=Z0,J=P,K=m,X=q,W=C,Y=M,V=k,G=w+1,I=f,z=$,N=c,F=n,D=r,B=X0}else{let Z0=T.tail,m=D0,y=S.tail,_=sR(w,0,Q([Pf(m.content)]),e);Z=Z0,J=P,K=y,X=q,W=C,Y=M,V=k,G=w+1,I=f,z=$,N=c,F=A(_,n),D=r,B=X0}}else{let W0=I0,J0=T.tail,Z0=D0,m=S.tail,y=f5(w-M,Z0),_,o=b8(X0,$,w,W0);_=h8(o,r,$,w,Z0);let K0=_;Z=J0,J=P,K=m,X=q,W=C,Y=M,V=k,G=w+1,I=f,z=$,N=A(y,c),F=n,D=r,B=K0}}else{let D0=S.head;if(D0 instanceof Z5){let W0=I0,J0=T.tail,Z0=D0,m=S.tail,y=f8(r,Z0.mapper),_=o1($,w,Z0.key),t=yf(!1,_,y,X0,W0.attributes,Z0.attributes,e,e),o,K0,w0;o=t.added,K0=t.removed,w0=t.events;let C0;if(o instanceof U&&K0 instanceof U)C0=e;else C0=Q([oR(o,K0)]);let y0=C0,H1;if(W0.inner_html===Z0.inner_html)H1=y0;else H1=A(Sf(Z0.inner_html),y0);let S1=H1,w1;if(S1 instanceof U)w1=n;else w1=A(sR(w,0,S1,Q([])),n);let V8=w1;Z=J0,J=P,K=m,X=q,W=C,Y=M,V=k,G=w+1,I=f,z=$,N=c,F=V8,D=r,B=w0}else{let W0=I0,J0=T.tail,Z0=D0,m=S.tail,y=f5(w-M,Z0),_,o=b8(X0,$,w,W0);_=h8(o,r,$,w,Z0);let K0=_;Z=J0,J=P,K=m,X=q,W=C,Y=M,V=k,G=w+1,I=f,z=$,N=A(y,c),F=n,D=r,B=K0}}}}}}function T4(Z,J,K){return Qj(Q([J]),E1(),Q([K]),E1(),E1(),0,0,0,0,z4,e,e,S0,Zf(Z))}var{setTimeout:Eg,clearTimeout:Vj}=globalThis,Cg=(Z,J)=>r1().createElementNS(Z,J),xg=(Z)=>r1().createTextNode(Z),wg=()=>r1().createDocumentFragment(),P4=(Z,J,K)=>Z.insertBefore(J,K),bf=Ry?(Z,J,K)=>Z.moveBefore(J,K):P4,Ug=(Z,J)=>Z.removeChild(J),Mg=(Z,J)=>Z.getAttribute(J),hf=(Z,J,K)=>Z.setAttribute(J,K),Rg=(Z,J)=>Z.removeAttribute(J),jg=(Z,J,K,X)=>Z.addEventListener(J,K,X),vf=(Z,J,K)=>Z.removeEventListener(J,K),Lg=(Z,J)=>Z.innerHTML=J,yg=(Z,J)=>Z.data=J,$8=Symbol("lustre");class _f{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===W8?this.node.parentNode:this.node}}var _8=(Z,J,K,X,W)=>{let Y=new _f(Z,J,K,W);return K[$8]=Y,J?.children.splice(X,0,Y),Y},fg=(Z)=>{let J="";for(let K=Z[$8];K.parent;K=K.parent)if(K.key)J=`${hZ}${K.key}${J}`;else{let X=K.parent.children.indexOf(K);J=`${hZ}${X}${J}`}return J.slice(1)};class Ij{#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(j5,null,this.#Z,0,null),this.#P(this.#Z,null,this.#Z[$8],0,Z)}push(Z){this.#J.push({node:this.#Z[$8],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(k5(W,(G)=>this.#Q(J,G)),Y)this.#F(J,X.length-Y,Y);k5(V,(G)=>{let I=X[G.index|0];this.#J.push({node:I,patch:G})})}}#Q(Z,J){switch(J.kind){case rR:this.#C(Z,J);break;case aR:this.#S(Z,J);break;case tR:this.#D(Z,J);break;case eR:this.#z(Z,J);break;case Zj:this.#O(Z,J);break;case Jj:this.#N(Z,J);break;case Kj:this.#G(Z,J);break}}#G(Z,{children:J,before:K}){let X=wg(),W=this.#I(Z,K);this.#T(X,null,Z,K|0,J),P4(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!==W8)return null;if(!W)W=Z;while(W.kind===W8&&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(bf(W,I,Y),G===W8)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(bf(Z,Y,K),W===W8)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(Ug(W,I),this.#H(Y[V]),G===W8)Y.push(...z)}}#H(Z){let{debouncers:J,children:K}=Z;for(let{timeout:X}of J.values())if(X)Vj(X);J.clear(),k5(K,(X)=>this.#H(X))}#D({node:Z,handlers:J,throttles:K,debouncers:X},{added:W,removed:Y}){k5(Y,({name:V})=>{if(J.delete(V))vf(Z,V,Gj),this.#B(K,V,0),this.#B(X,V,0);else Rg(Z,V),$f[V]?.removed?.(Z,V)}),k5(W,(V)=>this.#E(Z,V))}#C({node:Z},{content:J}){yg(Z,J??"")}#S({node:Z},{inner_html:J}){Lg(Z,J??"")}#T(Z,J,K,X,W){k5(W,(Y)=>this.#P(Z,J,K,X++,Y))}#P(Z,J,K,X,W){switch(W.kind){case j5:{let Y=this.#A(K,X,W);this.#T(Y,null,Y[$8],0,W.children),P4(Z,Y,J);break}case H4:{let Y=this.#q(K,X,W);P4(Z,Y,J);break}case W8:{let Y=this.#q(K,X,W);P4(Z,Y,J),this.#T(Z,J,Y[$8],0,W.children);break}case ay:{let Y=this.#A(K,X,W);this.#S({node:Y},W),P4(Z,Y,J);break}}}#A(Z,J,{kind:K,key:X,tag:W,namespace:Y,attributes:V}){let G=Cg(Y||hJ,W);if(_8(K,Z,G,J,X),this.#Y&&X)hf(G,"data-lustre-key",X);return k5(V,(I)=>this.#E(G,I)),G}#q(Z,J,{kind:K,key:X,content:W}){let Y=xg(W??"");return _8(K,Z,Y,J,X),Y}#E(Z,J){let{debouncers:K,handlers:X,throttles:W}=Z[$8],{kind:Y,name:V,value:G,prevent_default:I,debounce:z,throttle:N}=J;switch(Y){case qR:{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!==Mg(Z,V))hf(Z,V,F);$f[V]?.added?.(Z,F);break}case ER:Z[V]=G;break;case CR:{if(X.has(V))vf(Z,V,Gj);let F=I.kind===xR;jg(Z,V,Gj,{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)Vj(W);Z.delete(J)}}#x(Z,J){let{currentTarget:K,type:X}=J,{debouncers:W,throttles:Y}=K[$8],V=fg(K),{prevent_default:G,stop_propagation:I,include:z}=Z;if(G.kind===_J)J.preventDefault();if(I.kind===_J)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)Vj(D.timeout),D.timeout=Eg(()=>{if(J===Y.get(X)?.lastEvent)return;this.#K(J,N)},D.delay);if(!F&&!D)this.#K(J,N)}}var k5=(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)},Gj=(Z)=>{let{currentTarget:J,type:K}=Z;J[$8].handlers.get(K)(Z)},gf=(Z)=>{return{added(J){J[Z]=!0},removed(J){J[Z]=!1}}},kg=(Z)=>{return{added(J,K){J[Z]=K}}},$f={checked:gf("checked"),selected:gf("selected"),value:kg("value"),autofocus:{added(Z){queueMicrotask(()=>{Z.focus?.()})}},autoplay:{added(Z){try{Z.play?.()}catch(J){console.error(J)}}}};function bg(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof U)return[W,F0(Y)];else{let V=X.tail,G=X.head[0],I=X.head[1],z=ry(G,I),N;if(G==="")N=W;else N=R5(W,G,z);let F=N,D=A(z,Y);Z=V,J=F,K=D}}}function zj(Z){return bg(Z,E1(),e)}function mf(Z,J,K){let X=zj(K),W,Y;return W=X[0],Y=X[1],F4("",S0,"",Z,J,Y,W,!1,N4(Z,""))}function uf(Z,J,K,X){let W=zj(X),Y,V;return Y=W[0],V=W[1],F4("",S0,Z,J,K,V,Y,!1,N4(J,Z))}function df(Z){let J=zj(Z),K,X;return K=J[0],X=J[1],dJ("",S0,X,K)}var cf=(Z)=>{let J=_8(j5,null,Z,0,null),K=0;for(let V=Z.firstChild;V;V=V.nextSibling)if(pf(V))K+=1;if(K===0){let V=r1().createTextNode("");return _8(H4,J,V,0,null),Z.replaceChildren(V),G0()}if(K===1)return Nj(J,Z).head[1];let X=r1().createTextNode(""),W=_8(W8,J,X,0,null),Y=Nj(W,Z);return Z.insertBefore(X,Z.firstChild),df(Y)},pf=(Z)=>{switch(Z.nodeType){case vJ:return!0;case SR:return!!Z.data;default:return!1}},hg=(Z,J,K,X)=>{if(!pf(J))return null;switch(J.nodeType){case vJ:{let W=_8(j5,Z,J,X,K),Y=J.localName,V=J.namespaceURI,G=!V||V===hJ;if(G&&vg.includes(Y))gg(Y,J);let I=$g(J),z=Nj(W,J);return G?mf(Y,I,z):uf(V,Y,I,z)}case SR:return _8(H4,Z,J,X,null),x(J.data);default:return null}},vg=["input","select","textarea"],gg=(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}))})},Nj=(Z,J)=>{let K=null,X=J.firstChild,W=null,Y=0;while(X){let V=X.nodeType===vJ?X.getAttribute("data-lustre-key"):null;if(V!=null)X.removeAttribute("data-lustre-key");let G=hg(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},$g=(Z)=>{let J=Z.attributes.length,K=e;while(J-- >0){let X=Z.attributes[J];if(X.name==="xmlns")continue;K=new k1(_g(X),K)}return K},_g=(Z)=>{let{localName:J,value:K}=Z;return R(J,K)};var J5=()=>!!r1();class eJ{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)=>cR(this.#J,I,z,G),V=(G,I)=>{let[z,N]=pR(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 Ij(this.root,Y,V),this.#Y=cf(this.root),this.#J=dR(),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(Q8(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=lf(this.#I,Z.before_paint),this.#z=lf(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}=T4(this.#J,this.#Y,Z);if(this.#J=K,this.#Y=Z,this.#W.push(J),this.#I instanceof k1){let X=nf(this.#I);this.#I=e,queueMicrotask(()=>{this.#F(X,!0)})}if(this.#z instanceof k1){let X=nf(this.#z);this.#z=e,requestAnimationFrame(()=>{this.#F(X,!0)})}}}function nf(Z){return{synchronous:Z,after_paint:e,before_paint:e}}function lf(Z,J){if(Z instanceof U)return J;else if(J instanceof U)return Z;else return _0(Z,J)}class Hj extends O{constructor(Z){super();this.message=Z}}class Dj extends O{constructor(Z){super();this.callback=Z}}class Bj extends O{constructor(Z){super();this.callback=Z}}class K5 extends O{constructor(Z){super();this.message=Z}}class b5 extends O{constructor(Z,J){super();this.name=Z,this.data=J}}class ZK extends O{constructor(Z,J){super();this.key=Z,this.value=J}}class h5 extends O{}class af 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 tf(Z){let J=new af(!0,!0,!1,e,e,e,!1,gJ,gJ,gJ);return v0(Z,J,(K,X)=>{return X.apply(K)})}class ef{#Z;constructor(Z,[J,K],X,W){this.#Z=new eJ(Z,[J,K],W,X)}send(Z){switch(Z.constructor){case K5:{this.dispatch(Z.message,!1);break}case b5:{this.emit(Z.name,Z.data);break}case h5:break}}dispatch(Z){this.#Z.dispatch(Z)}emit(Z,J){this.#Z.emit(Z,J)}}var Zk=({init:Z,update:J,view:K},X,W)=>{if(!J5())return new v(new $Z);let Y=X instanceof HTMLElement?X:r1().querySelector(X);if(!Y)return new v(new Oj(X));return new E(new ef(Y,Z(W),J,K))};class mg{#Z;#X;#K;#Y;#J;#W;#Q=h0();#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=nR(this.#J),this.#V(J)}send(Z){switch(Z.constructor){case Hj:{let{message:J}=Z,K=this.#N(J),X=T4(this.#W,this.#J,K);this.#J=K,this.#W=X.events,this.broadcast(Wj(X.patch));return}case Dj:{let{callback:J}=Z;this.#G.add(J),J(Mf(this.#Y.open_shadow_root,this.#Y.adopt_styles,M8(this.#Y.attributes),M8(this.#Y.properties),M8(this.#Y.contexts),this.#Q,this.#J));return}case Bj:{let{callback:J}=Z;this.#G.delete(J);return}case K5:{let{message:J}=Z,[K,X]=this.#X(this.#Z,J),W=this.#K(K),Y=T4(this.#W,this.#J,W);this.#V(X),this.#Z=K,this.#J=W,this.#W=Y.events,this.broadcast(Wj(Y.patch));return}case b5:{let{name:J,data:K}=Z;this.broadcast(Rf(J,K));return}case ZK:{let{key:J,value:K}=Z,X=T0(this.#Q,J);if(X.isOk()&&Q8(X[0],K))return;this.#Q=i0(this.#Q,J,K),this.broadcast(jf(J,K));return}case h5:{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 sJ:{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=Q1(n0.fromArray([X,Y[0][1]]));break}}return this.#V(X),this.#Z=K,this.#K(this.#Z)}case rJ:{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 aJ:{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 tJ:{let{path:J,name:K,event:X}=Z,[W,Y]=pJ(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 Xj:{let{key:J,value:K}=Z,X=T0(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=T0(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=T0(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 K5(V)),K=(V,G)=>this.send(new b5(V,G)),X=()=>{return},W=()=>{return},Y=(V,G)=>this.send(new ZK(V,G));globalThis.queueMicrotask(()=>{py(Z,J,K,X,W,Y)})}}class Jk extends O{constructor(Z,J,K,X){super();this.init=Z,this.update=J,this.view=K,this.config=X}}class Oj extends O{constructor(Z){super();this.selector=Z}}class $Z extends O{}function Kk(Z,J,K){return new Jk(Z,J,K,tf(e))}function Yk(Z,J,K){return G4(!J5(),new v(new $Z),()=>{return Zk(Z,J,K)})}function Qk(Z,J){return[Z,J]}var cg={handle_external_links:!1,handle_internal_links:!0},Gk=globalThis?.window?.location?.href,Sj=()=>{if(!Gk)return new v(void 0);else return new E(Pj(new URL(Gk)))},Aj=(Z,J=cg)=>{document.addEventListener("click",(K)=>{let X=zk(K.target);if(!X)return;try{let W=new URL(X.href),Y=Pj(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=Pj(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)})},Ik=(Z)=>{window.history.pushState({},"",kJ(Z)),window.requestAnimationFrame(()=>{if(Z.fragment[0])document.getElementById(Z.fragment[0])?.scrollIntoView()}),window.dispatchEvent(new CustomEvent("modem-push",{detail:Z}))};var zk=(Z)=>{if(!Z||Z.tagName==="BODY")return null;else if(Z.tagName==="A")return Z;else return zk(Z.parentElement)},Pj=(Z)=>{return new V0(Z.protocol?new L(Z.protocol.slice(0,-1)):new h,new h,Z.hostname?new L(Z.hostname):new h,Z.port?new L(Number(Z.port)):new h,Z.pathname,Z.search?new L(Z.search.slice(1)):new h,Z.hash?new L(Z.hash.slice(1)):new h)};function Fk(Z){return z1((J)=>{return G4(!J5(),void 0,()=>{return Aj((K)=>{let W=Z(K);return J(W)})})})}function Nk(Z){if(Z==="")return new h;else return new L(Z)}var JK=new V0(new h,new h,new h,new h,"",new h,new h);function v5(Z,J,K){return z1((X)=>{return G4(!J5(),void 0,()=>{return Ik(new V0(JK.scheme,JK.userinfo,JK.host,JK.port,Z,mM(J,Nk),mM(K,Nk)))})})}class Hk extends O{constructor(Z,J){super();this.query=Z,this.module_path=J}}class qj extends O{constructor(Z){super();this.queries=Z}}function Dk(){return new qj(h0())}function e0(Z,J,K,X){let W=new Hk(K,X);return new qj(i0(Z.queries,J,W))}function Ej(Z,J){return T0(Z.queries,J)}class YK extends O{}class XK extends O{}class Bk extends O{}class Ok extends O{}class Tk extends O{}class Pk extends O{}class Sk extends O{}class Ak extends O{}class qk extends O{}class Cj extends O{}class WK extends O{}function Ek(Z){if(Z instanceof YK)return"GET";else if(Z instanceof XK)return"POST";else if(Z instanceof Bk)return"HEAD";else if(Z instanceof Ok)return"PUT";else if(Z instanceof Tk)return"DELETE";else if(Z instanceof Pk)return"TRACE";else if(Z instanceof Sk)return"CONNECT";else if(Z instanceof Ak)return"OPTIONS";else if(Z instanceof qk)return"PATCH";else return Z[0]}function Ck(Z){if(Z instanceof Cj)return"http";else return"https"}function xk(Z){let J=i1(Z);if(J==="http")return new E(new Cj);else if(J==="https")return new E(new WK);else return new v(void 0)}class _Z 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 Uk(Z){return new V0(new L(Ck(Z.scheme)),new h,new L(Z.host),Z.port,Z.path,Z.query,new h)}function ig(Z){return M1((()=>{let J=Z.scheme,K=wL(J,"");return xk(K)})(),(J)=>{return M1((()=>{let K=Z.host;return $M(K,void 0)})(),(K)=>{let X=new _Z(new YK,Q([]),"",J,K,Z.port,Z.path,Z.query);return new E(X)})})}function xj(Z,J,K){let X=YR(Z.headers,i1(J),K);return new _Z(Z.method,X,Z.body,Z.scheme,Z.host,Z.port,Z.path,Z.query)}function Mk(Z,J){return new _Z(Z.method,Z.headers,J,Z.scheme,Z.host,Z.port,Z.path,Z.query)}function Rk(Z,J){return new _Z(J,Z.headers,Z.body,Z.scheme,Z.host,Z.port,Z.path,Z.query)}function jk(Z){let K=OR(Z);return M1(K,ig)}class wj extends O{constructor(Z,J,K){super();this.status=Z,this.headers=J,this.body=K}}class g5{constructor(Z){this.promise=Z}static wrap(Z){return Z instanceof Promise?new g5(Z):Z}static unwrap(Z){return Z instanceof g5?Z.promise:Z}}function O8(Z){return Promise.resolve(g5.wrap(Z))}function VK(Z,J){return Z.then((K)=>J(g5.unwrap(K)))}function GK(Z,J){return Z.then((K)=>g5.wrap(J(g5.unwrap(K))))}function Mj(Z){return new wj(Z.status,n0.fromArray([...Z.headers]),Z)}function ag(Z){let J=kJ(Uk(Z)),K=Ek(Z.method).toUpperCase(),X={headers:tg(Z.headers),method:K};return[J,X]}function Rj(Z){let[J,K]=ag(Z);if(K.method!=="GET"&&K.method!=="HEAD")K.body=Z.body;return new globalThis.Request(J,K)}function tg(Z){let J=new globalThis.Headers;for(let[K,X]of Z)J.append(K.toLowerCase(),X);return J}async function IK(Z){let J;try{J=await Z.body.text()}catch(K){return new v(new jj)}return new E(Z.withFields({body:J}))}class zK extends O{constructor(Z){super();this[0]=Z}}class jj extends O{}class yk extends O{constructor(Z,J){super();this.endpoint=Z,this.headers=J}}function Lj(Z,J){return new yk(Z,J)}function J1(Z,J,K){let X=b(Q([["query",d(J)],["variables",K]]));return M1((()=>{let W=jk(Z.endpoint);return X4(W,(Y)=>{return"Invalid endpoint URL"})})(),(W)=>{let Y,G=Rk(W,new XK),I=Mk(G,j8(X));Y=xj(I,"content-type","application/json");let z=Y,N=v0(Z.headers,z,(F,D)=>{return xj(F,D[0],D[1])});return new E(N)})}function A0(Z,J){return M1((()=>{let K=l1(Z,f0);return X4(K,(X)=>{return"Failed to decode JSON response"})})(),(K)=>{let X=g("data",J,(Y)=>{return s(Y)}),W=z0(K,X);return X4(W,(Y)=>{return"Failed to decode response data: "+jJ(Y)+". Response body: "+Z})})}async function yj(Z){try{let J=Rj(Z),K=new Request(J,{credentials:"include"}),X=await fetch(K),W=Mj(X);return new E(W)}catch(J){return new v(new zK(J.toString()))}}var vk="src/squall_cache.gleam";class j1 extends O{}class L1 extends O{constructor(Z){super();this[0]=Z}}class y1 extends O{constructor(Z){super();this[0]=Z}}class NK extends O{}class gk extends O{}class fj extends O{}class uZ extends O{constructor(Z,J,K){super();this.data=Z,this.timestamp=J,this.status=K}}class f1 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 $k(Z){return new f1(h0(),h0(),h0(),h0(),x5(),()=>{return Q([])},0,Z)}function FK(Z,J){return Z+":"+j8(J)}function fk(Z){let J=CJ(Z);if(J instanceof E){let K=J[0][0],X=J[0][1];return xJ(K)+X}else return Z}function kj(Z){let K=F0(Z),X=qJ(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(wJ(W,"s")){let V=Y8(W),G=Vy(W,0,V-1);return new E(fk(G))}else return new E(fk(W))});return F8(X,"Entity")}function Z$(Z){if(T0(Z,"node")instanceof E)return!0;else return!1}function J$(Z){let J=z0(Z,U0(f0));if(J instanceof E){let K=J[0];if(K instanceof U)return!1;else{let X=K.head,W=z0(X,R8(u,f0));if(W instanceof E){let Y=W[0];return Z$(Y)}else return!1}}else return!1}function K$(Z,J,K){let X=FK(J,K),W=T0(Z.queries,X);if(W instanceof E){let Y=W[0],V=new uZ(Y.data,Y.timestamp,new fj),G=i0(Z.queries,X,V);return new f1(Z.entities,Z.optimistic_entities,Z.optimistic_mutations,G,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}else{let Y=new uZ("",0,new fj),V=i0(Z.queries,X,Y);return new f1(Z.entities,Z.optimistic_entities,Z.optimistic_mutations,V,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}}function m0(Z,J,K){let X=FK(J,K),W=z8(Z.queries,X);return new f1(Z.entities,Z.optimistic_entities,Z.optimistic_mutations,W,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}function Y$(Z,J,K,X){let W,Y=T0(Z.optimistic_entities,K);if(Y instanceof E){let I=Y[0];W=new L(I)}else{let I=T0(Z.entities,K);if(I instanceof E){let z=I[0];W=new L(z)}else W=new h}let G=X(W);return new f1(Z.entities,i0(Z.optimistic_entities,K,G),i0(Z.optimistic_mutations,J,K),Z.queries,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}function bj(Z,J){let K=T0(Z.optimistic_mutations,J);if(K instanceof E){let X=K[0];return new f1(Z.entities,z8(Z.optimistic_entities,X),z8(Z.optimistic_mutations,J),Z.queries,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}else return Z}function _k(Z){return!eM(Z.optimistic_mutations)}function S4(Z){let J=z0(Z,R8(u,f0));if(J instanceof E){let X=J[0],W=l8(X),Y=H0(W,(V)=>{let G,I;return G=V[0],I=V[1],[G,S4(I)]});return b(Y)}else{let K=z0(Z,U0(f0));if(K instanceof E){let X=K[0];return j0(X,S4)}else{let X=z0(Z,u);if(X instanceof E){let W=X[0];return d(W)}else{let W=z0(Z,p0);if(W instanceof E){let Y=W[0];return W1(Y)}else{let Y=z0(Z,cL);if(Y instanceof E){let V=Y[0];return Ay(V)}else{let V=z0(Z,G1);if(V instanceof E){let G=V[0];return s1(G)}else return DR()}}}}}}function X$(Z,J){let K=j8(Z),X=j8(J),W=l1(K,f0),Y=l1(X,f0);if(W instanceof E&&Y instanceof E){let V=W[0],G=Y[0],I=z0(V,R8(u,f0)),z=z0(G,R8(u,f0));if(I instanceof E&&z instanceof E){let N=I[0],F=z[0],D,B=_0(M8(N),M8(F));D=gL(B);let P=S5(D,(S)=>{let q,C=T0(F,S);if(C instanceof E)q=C;else q=T0(N,S);let M=q;if(M instanceof E){let k=M[0];return new E([S,S4(k)])}else return new v(void 0)});return b(P)}else return J}else return J}function m8(Z,J){return a5(J,Z,(K,X,W)=>{let Y=T0(K,X);if(Y instanceof E){let V=Y[0],G=X$(V,W);return i0(K,X,G)}else return i0(K,X,W)})}function kk(Z){let J=E5(Z,":");if(J instanceof E){let K=J[0][0],X=J[0][1],W=l1(X,f0);if(W instanceof E){let Y=W[0];return new E([K,S4(Y)])}else return new E([K,DR()])}else return new v(void 0)}function W$(Z,J,K,X,W,Y,V){let G=Ej(J,K);if(G instanceof E){let I=G[0];return z1((z)=>{let N=Z.get_headers(),F=Lj(Z.endpoint,N),D=J1(F,I.query,X),B;if(D instanceof E)B=D[0];else throw n8("let_assert",vk,"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=yj(B);T=GK(P,(q)=>{if(q instanceof E){let C=q[0],M=IK(C);return VK(M,(k)=>{if(k instanceof E){let w=k[0],f=Y(w.body);if(f instanceof E){let $=f[0];return z(V(W,new E($),w.body)),O8(void 0)}else{let $=f[0];return z(V(W,new v("Parse error: "+$),w.body)),O8(void 0)}}else return z(V(W,new v("Failed to read response"),"")),O8(void 0)})}else return z(V(W,new v("Failed to fetch"),"")),O8(void 0)});let S=T;return})}else return z1((I)=>{I(V(W,new v("Query not found in registry"),""));return})}function cZ(Z,J,K,X,W,Y,V,G){let I="mutation-"+X1(Z.mutation_counter),z=Y$(Z,I,W,Y),N=new f1(z.entities,z.optimistic_entities,z.optimistic_mutations,z.queries,z.pending_fetches,z.get_headers,Z.mutation_counter+1,z.endpoint),F=W$(N,J,K,X,I,V,G);return[N,I,F]}function Q$(Z,J,K,X,W){return z1((Y)=>{let V=Z.get_headers(),G=Lj(Z.endpoint,V),I=J1(G,J,X),z;if(I instanceof E)z=I[0];else throw n8("let_assert",vk,"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=yj(z);N=GK(F,(B)=>{if(B instanceof E){let T=B[0],P=IK(T);return VK(P,(S)=>{if(S instanceof E){let q=S[0];return Y(W(K,X,new E(q.body))),O8(void 0)}else return Y(W(K,X,new v("Failed to read response"))),O8(void 0)})}else return Y(W(K,X,new v("Failed to fetch"))),O8(void 0)});let D=N;return})}function u0(Z,J,K,X){let W=Cy(Z.pending_fetches),Y=S5(W,(I)=>{let z=kk(I);if(z instanceof E){let N=z[0][0],F=z[0][1],D=Ej(J,N);if(D instanceof E){let B=D[0];return new E(Q$(Z,B.query,N,F,K))}else return new v(void 0)}else return new v(void 0)}),V=v0(W,Z,(I,z)=>{let N=kk(z);if(N instanceof E){let F=N[0][0],D=N[0][1];return K$(I,F,D)}else return I});return[new f1(V.entities,V.optimistic_entities,V.optimistic_mutations,V.queries,x5(),V.get_headers,V.mutation_counter,V.endpoint),Y]}function bk(Z,J,K){let X=l8(Z),W=H0(X,(Y)=>{let V,G;return V=Y[0],G=Y[1],[V,hj(G,J,K)]});return b(W)}function hj(Z,J,K){let X=z0(Z,R8(u,f0));if(X instanceof E){let W=X[0],Y=T0(W,"__ref");if(Y instanceof E){let V=Y[0],G=z0(V,u);if(G instanceof E){let I=G[0],z=T0(J,I);if(z instanceof E)return z[0];else{let N=T0(K,I);if(N instanceof E)return N[0];else return b(Q([["__ref",d(I)]]))}}else return bk(W,J,K)}else return bk(W,J,K)}else{let W=z0(Z,U0(f0));if(W instanceof E){let Y=W[0];return j0(Y,(V)=>{return hj(V,J,K)})}else return S4(Z)}}function hk(Z,J,K){let X=l1(Z,f0);if(X instanceof E){let W=X[0],Y=hj(W,J,K);return j8(Y)}else return Z}function a(Z,J,K,X){let W=FK(J,K),Y=T0(Z.queries,W);if(Y instanceof E){let V=Y[0],G=V.status;if(G instanceof NK){let I=hk(V.data,Z.optimistic_entities,Z.entities),z=X(I);if(z instanceof E){let N=z[0];return[Z,new y1(N)]}else{let N=z[0];return[Z,new L1("Parse error: "+N)]}}else if(G instanceof gk){let I=hk(V.data,Z.optimistic_entities,Z.entities),z=X(I);if(z instanceof E){let N=z[0];return[Z,new y1(N)]}else{let N=z[0];return[Z,new L1("Parse error: "+N)]}}else return[Z,new j1]}else return[new f1(Z.entities,Z.optimistic_entities,Z.optimistic_mutations,Z.queries,UZ(Z.pending_fetches,W),Z.get_headers,Z.mutation_counter,Z.endpoint),new j1]}function V$(Z,J){let K=v0(Z,[h0(),Q([]),x5()],(Y,V)=>{let G,I,z;G=Y[0],I=Y[1],z=Y[2];let N=z0(V,R8(u,f0));if(N instanceof E){let F=N[0],D=T0(F,"node");if(D instanceof E){let B=D[0],T,P=z0(B,R8(u,f0));if(P instanceof E){let q=P[0],C=T0(q,"id");if(C instanceof E){let M=C[0],k=z0(M,u);if(k instanceof E){let w=k[0],f,$=T0(q,"__typename");if($ instanceof E){let n=$[0],r=z0(n,u);if(r instanceof E)f=r[0];else f="Node"}else f=kj(_0(J,Q(["node"])));T=new L(f+":"+w)}else T=new h}else T=new h}else T=new h;let S=T;if(S instanceof L){let q=S[0];if(Q4(z,q))return Y;else{let M=mZ(F,J),k,w;return k=M[0],w=M[1],[m8(G,k),_0(I,Q([w])),UZ(z,q)]}}else{let q=mZ(F,J),C,M;return C=q[0],M=q[1],[m8(G,C),_0(I,Q([M])),z]}}else{let B=mZ(F,J),T,P;return T=B[0],P=B[1],[m8(G,T),_0(I,Q([P])),z]}}else{let F=dZ(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,j0(W,(Y)=>{return Y})]}function dZ(Z,J){let K=z0(Z,R8(u,f0));if(K instanceof E){let X=K[0],W=T0(X,"id");if(W instanceof E){let Y=W[0],V=z0(Y,u);if(V instanceof E){let G=V[0],I,z=T0(X,"__typename");if(z instanceof E){let k=z[0],w=z0(k,u);if(w instanceof E)I=w[0];else I=kj(J)}else I=kj(J);let F=I+":"+G,D,B=l8(X);D=H0(B,(k)=>{let w,f;w=k[0],f=k[1];let $=_0(J,Q([w])),c=dZ(f,$),n,r;return n=c[0],r=c[1],[w,n,r]});let T=D,P=v0(T,h0(),(k,w)=>{let f;return f=w[1],m8(k,f)}),S,q=H0(T,(k)=>{let w,f;return w=k[0],f=k[2],[w,f]});return S=b(q),[i0(P,F,S),b(Q([["__ref",d(F)]]))]}else return mZ(X,J)}else return mZ(X,J)}else{let X=z0(Z,U0(f0));if(X instanceof E){let W=X[0];if(J$(Z))return V$(W,J);else{let V=H0(W,(z)=>{return dZ(z,J)}),G=v0(V,h0(),(z,N)=>{let F;return F=N[0],m8(z,F)}),I=H0(V,(z)=>{let N;return N=z[1],N});return[G,j0(I,(z)=>{return z})]}}else return[h0(),S4(Z)]}}function mk(Z){return dZ(Z,Q([]))}function uk(Z,J,K,X,W){let Y=FK(J,K),V=l1(X,f0);if(V instanceof E){let G=V[0],I=mk(G),z,N;z=I[0],N=I[1];let F=m8(Z.entities,z),D=j8(N),B=new uZ(D,W,new NK),T=i0(Z.queries,Y,B);return new f1(F,Z.optimistic_entities,Z.optimistic_mutations,T,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}else{let G=new uZ(X,W,new NK),I=i0(Z.queries,Y,G);return new f1(Z.entities,Z.optimistic_entities,Z.optimistic_mutations,I,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}}function mZ(Z,J){let K,X=l8(Z);K=H0(X,(z)=>{let N,F;N=z[0],F=z[1];let D=_0(J,Q([N])),B=dZ(F,D),T,P;return T=B[0],P=B[1],[N,T,P]});let W=K,Y=v0(W,h0(),(z,N)=>{let F;return F=N[1],m8(z,F)}),V,G=H0(W,(z)=>{let N,F;return N=z[0],F=z[2],[N,F]});return V=b(G),[Y,V]}function vj(Z,J,K){let X=T0(Z.optimistic_mutations,J);if(X instanceof E){let W=X[0],Y=l1(K,f0);if(Y instanceof E){let V=Y[0],G=mk(V),I;I=G[0];let z=m8(Z.entities,I);return new f1(z,z8(Z.optimistic_entities,W),z8(Z.optimistic_mutations,J),Z.queries,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}else return new f1(Z.entities,z8(Z.optimistic_entities,W),z8(Z.optimistic_mutations,J),Z.queries,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}else return Z}class dk extends O{constructor(Z){super();this.is_backfilling=Z}}function G$(){return g("isBackfilling",G1,(Z)=>{return s(new dk(Z))})}function pZ(Z){return A0(Z,G$())}class HK extends O{}class u8 extends O{}class T8 extends O{}class $5 extends O{}function pk(Z,J,K){let X=b(Q([])),W=m0(Z,"IsBackfilling",X),Y=a(W,"IsBackfilling",X,pZ),V;return V=Y[0],u0(V,J,K,()=>{return 0})}function nk(Z,J){if(J)if(Z instanceof u8)return new T8;else if(Z instanceof T8)return Z;else return Z;else if(Z instanceof u8)return Z;else if(Z instanceof T8)return new $5;else return Z}function _5(Z){if(Z instanceof u8)return!0;else if(Z instanceof T8)return!0;else return!1}function d8(Z,J){return $y(Z,A5(J,(K)=>{return new jZ(!1,!1,K)}),e,wR,wR,0,0)}function I$(Z){if(Z instanceof O1)return new O1(Z.kind,Z.name,Z.handler,Z.include,_y,Z.stop_propagation,Z.debounce,Z.throttle);else return Z}function k0(Z){return d8("click",s(Z))}function K1(Z){return d8("input",EZ(Q(["target","value"]),u,(J)=>{return s(Z(J))}))}function lk(Z){return d8("change",EZ(Q(["target","value"]),u,(J)=>{return s(Z(J))}))}function z$(){let J=g(0,u,(X)=>{return g(1,WR(A5(u,(W)=>{return new E(W)}),Q([s(new v(void 0))])),(W)=>{let V=FR(W,(G)=>{return Qk(X,G)});return s(V)})}),K=U0(J);return A5(K,Ny)}function sk(Z){let J=d8("submit",EZ(Q(["detail","formData"]),z$(),(K)=>{let W=Z(K);return s(W)}));return I$(J)}var A4=null;function rk(Z,J,K){if(A4)clearTimeout(A4);if(!Z||Z.trim()===""){K(new E(Q([])));return}A4=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 nZ(G.did||"",G.handle||"",G.displayName||"",G.avatar?new L(G.avatar):new h));K(new E(Q(V)))}catch(X){K(new v(X.message||"Search failed"))}},J)}function ak(){if(A4)clearTimeout(A4),A4=null}class nZ extends O{constructor(Z,J,K,X){super();this.did=Z,this.handle=J,this.display_name=K,this.avatar=X}}class P8 extends O{constructor(Z,J,K,X){super();this.query=Z,this.actors=J,this.highlighted_index=K,this.is_open=X}}class DK extends O{constructor(Z){super();this[0]=Z}}class q4 extends O{constructor(Z){super();this[0]=Z}}class iZ extends O{constructor(Z){super();this[0]=Z}}class BK extends O{}class OK extends O{}class lZ extends O{}class gj extends O{}function tk(){return new P8("",Q([]),-1,!1)}function S8(Z,J){if(J instanceof DK){let K=J[0],X=z1((W)=>{return rk(K,300,(Y)=>{return W(new q4(Y))})});return[new P8(K,Z.actors,Z.highlighted_index,K!==""),X]}else if(J instanceof q4){let K=J[0];if(K instanceof E){let X=K[0];return[new P8(Z.query,X,-1,Z.is_open),i()]}else return[new P8(Z.query,Q([]),-1,Z.is_open),i()]}else if(J instanceof iZ){let K=J[0];return[new P8(K.handle,Q([]),-1,!1),i()]}else if(J instanceof BK){let K=N8(Z.actors),X;if(Z.highlighted_index<K-1)X=Z.highlighted_index+1;else X=0;let Y=X;return[new P8(Z.query,Z.actors,Y,Z.is_open),i()]}else if(J instanceof OK){let K=N8(Z.actors),X;if(Z.highlighted_index>0)X=Z.highlighted_index-1;else X=K-1;let Y=X;return[new P8(Z.query,Z.actors,Y,Z.is_open),i()]}else if(J instanceof lZ)return ak(),[new P8(Z.query,Z.actors,-1,!1),i()];else return[new P8(Z.query,Z.actors,Z.highlighted_index,Z.query!==""),i()]}function ok(Z){if(Z.highlighted_index>=0){let K=Z.actors,X=o5(K,Z.highlighted_index),W=hL(X);return _M(W)}else return new h}function N$(Z,J,K){let X;if(J)X="bg-zinc-700";else X="hover:bg-zinc-700";return j(Q([H("flex items-center gap-2 px-3 py-2 cursor-pointer transition-colors "+X),d8("mousedown",s(K(Z.handle)))]),Q([(()=>{let Y=Z.avatar;if(Y instanceof L){let V=Y[0];return Vf(Q([uy(V),H("w-8 h-8 rounded-full flex-shrink-0"),my("")]))}else return G0()})(),j(Q([H("flex-1 min-w-0")]),Q([(()=>{let Y=Z.display_name;if(Y==="")return G0();else{let V=Y;return j(Q([H("text-sm text-zinc-200 truncate")]),Q([x(V)]))}})(),j(Q([H("text-xs text-zinc-400 truncate")]),Q([x("@"+Z.handle)]))]))]))}function F$(Z,J){return j(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")]),SJ(Z.actors,(K,X)=>{return N$(K,X===Z.highlighted_index,J)}))}function sZ(Z,J,K,X,W,Y,V,G,I,z){return j(Q([H("relative")]),Q([N1(Q([M0("text"),B8(J),cy(K),o0(Z.query),q1(X),H(W),e8(!0),R("autocomplete","off"),K1(Y),d8("blur",s(I())),d8("focus",s(z())),d8("keydown",g("key",u,(N)=>{return s(G(N))}))])),(()=>{if(Z.is_open&&!O0(Z.actors,Q([])))return F$(Z,V);else return G0()})()]))}class A8 extends O{}class e1 extends O{}class Z8 extends O{}class _j extends O{}function c8(Z,J){let K;if(Z instanceof A8)K=["bg-green-900/30","border-green-800","text-green-300","✓"];else if(Z instanceof e1)K=["bg-red-900/30","border-red-800","text-red-300","✗"];else if(Z instanceof Z8)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],j(Q([H("mb-6 p-4 rounded border "+W+" "+Y)]),Q([j(Q([H("flex items-center gap-3")]),Q([p(Q([H("text-lg "+V)]),Q([x(G)])),p(Q([H("text-sm "+V)]),Q([x(J)]))]))]))}function mj(Z,J,K,X){let W;if(Z instanceof A8)W=["bg-green-900/30","border-green-800","text-green-300","✓"];else if(Z instanceof e1)W=["bg-red-900/30","border-red-800","text-red-300","✗"];else if(Z instanceof Z8)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],j(Q([H("mb-6 p-4 rounded border "+V+" "+G)]),Q([j(Q([H("flex items-center gap-3")]),Q([p(Q([H("text-lg "+I)]),Q([x(z)])),p(Q([H("text-sm "+I)]),Q([x(J+" "),m1(Q([v1(X),H("underline hover:no-underline")]),Q([x(K)]))]))]))]))}var u5="http://www.w3.org/2000/svg";function X5(Z){return $1(u5,"ellipse",Z,e)}function rZ(Z){return $1(u5,"rect",Z,e)}function PK(Z,J){return $1(u5,"defs",Z,J)}function d5(Z,J){return $1(u5,"g",Z,J)}function E4(Z,J){return $1(u5,"svg",Z,J)}function C4(Z,J){return $1(u5,"linearGradient",Z,J)}function q8(Z){return $1(u5,"stop",Z,e)}function ek(Z){return E4(Q([R("viewBox","0 0 128 128"),R("xmlns","http://www.w3.org/2000/svg"),R("overflow","visible"),H(Z)]),Q([PK(Q([]),Q([C4(Q([B8("backfill-board1"),R("x1","0%"),R("y1","0%"),R("x2","100%"),R("y2","100%")]),Q([q8(Q([R("offset","0%"),R("stop-color","#FF6347"),R("stop-opacity","1")])),q8(Q([R("offset","100%"),R("stop-color","#FF4500"),R("stop-opacity","1")]))])),C4(Q([B8("backfill-board2"),R("x1","0%"),R("y1","0%"),R("x2","100%"),R("y2","100%")]),Q([q8(Q([R("offset","0%"),R("stop-color","#00CED1"),R("stop-opacity","1")])),q8(Q([R("offset","100%"),R("stop-color","#4682B4"),R("stop-opacity","1")]))])),R0("style",Q([]),Q([x(` 6 6 .backfill-ellipse1 { animation: backfill-pulse 1.5s ease-in-out infinite; } 7 7 .backfill-ellipse2 { animation: backfill-pulse 1.5s ease-in-out infinite 0.2s; } 8 8 .backfill-ellipse3 { animation: backfill-pulse 1.5s ease-in-out infinite 0.4s; } ··· 10 10 0%, 100% { transform: scale(1); opacity: 1; } 11 11 50% { transform: scale(1.1); opacity: 0.8; } 12 12 } 13 - `)]))])),m5(Q([M("transform","translate(64, 64)")]),Q([K5(Q([H("backfill-ellipse1"),M("cx","0"),M("cy","-28"),M("rx","50"),M("ry","20"),M("fill","url(#backfill-board1)"),M("style","transform-origin: 0 -28px;")])),K5(Q([H("backfill-ellipse2"),M("cx","0"),M("cy","0"),M("rx","60"),M("ry","20"),M("fill","url(#backfill-board2)"),M("style","transform-origin: 0 0;")])),K5(Q([H("backfill-ellipse3"),M("cx","0"),M("cy","28"),M("rx","40"),M("ry","20"),M("fill","#32CD32"),M("style","transform-origin: 0 28px;")]))]))]))}var gj={};NL(gj,{icons:()=>$j,createIcons:()=>ak,createElement:()=>BK,ZoomOut:()=>hU,ZoomIn:()=>bU,ZapOff:()=>fU,Zap:()=>kU,Youtube:()=>yU,XSquare:()=>i9,XOctagon:()=>U6,XCircle:()=>L7,X:()=>jU,Wrench:()=>RU,WrapText:()=>e9,Worm:()=>LU,Workflow:()=>MU,WineOff:()=>wU,Wine:()=>UU,WindArrowDown:()=>CU,Wind:()=>xU,WifiZero:()=>AU,WifiSync:()=>qU,WifiPen:()=>SU,WifiOff:()=>PU,WifiLow:()=>TU,WifiHigh:()=>OU,WifiCog:()=>BU,Wifi:()=>EU,WholeWord:()=>DU,WheatOff:()=>FU,Wheat:()=>HU,Weight:()=>NU,WebhookOff:()=>IU,Webhook:()=>zU,Webcam:()=>GU,Waypoints:()=>QU,WavesLadder:()=>WU,Waves:()=>VU,Watch:()=>XU,WashingMachine:()=>YU,Warehouse:()=>KU,WandSparkles:()=>BZ,Wand2:()=>BZ,Wand:()=>JU,Wallpaper:()=>ZU,WalletMinimal:()=>DZ,WalletCards:()=>ow,Wallet2:()=>DZ,Wallet:()=>ew,Vote:()=>tw,VolumeX:()=>rw,VolumeOff:()=>sw,Volume2:()=>lw,Volume1:()=>iw,Volume:()=>aw,Volleyball:()=>nw,Voicemail:()=>pw,View:()=>cw,Videotape:()=>dw,VideoOff:()=>mw,Video:()=>uw,VibrateOff:()=>gw,Vibrate:()=>_w,Verified:()=>b4,VenusAndMars:()=>vw,Venus:()=>$w,VenetianMask:()=>hw,Vegan:()=>bw,VectorSquare:()=>kw,Vault:()=>fw,Variable:()=>Lw,UtilityPole:()=>yw,UtensilsCrossed:()=>FZ,Utensils:()=>HZ,UsersRound:()=>NZ,Users2:()=>NZ,Users:()=>jw,UserX2:()=>IZ,UserX:()=>Mw,UserStar:()=>Uw,UserSquare2:()=>p9,UserSquare:()=>n9,UserSearch:()=>ww,UserRoundX:()=>IZ,UserRoundSearch:()=>xw,UserRoundPlus:()=>GZ,UserRoundPen:()=>Cw,UserRoundMinus:()=>VZ,UserRoundCog:()=>QZ,UserRoundCheck:()=>WZ,UserRound:()=>zZ,UserPlus2:()=>GZ,UserPlus:()=>Ew,UserPen:()=>qw,UserMinus2:()=>VZ,UserMinus:()=>Aw,UserLock:()=>Sw,UserCog2:()=>QZ,UserCog:()=>Pw,UserCircle2:()=>R7,UserCircle:()=>j7,UserCheck2:()=>WZ,UserCheck:()=>Ow,User2:()=>zZ,User:()=>Rw,Usb:()=>Tw,UploadCloud:()=>b7,Upload:()=>Dw,Unplug:()=>Bw,UnlockKeyhole:()=>T6,Unlock:()=>P6,Unlink2:()=>Fw,Unlink:()=>Hw,University:()=>XZ,Ungroup:()=>Nw,UnfoldVertical:()=>zw,UnfoldHorizontal:()=>Iw,UndoDot:()=>Gw,Undo2:()=>Qw,Undo:()=>Vw,Underline:()=>Ww,UmbrellaOff:()=>Yw,Umbrella:()=>Xw,TypeOutline:()=>Jw,Type:()=>Kw,Twitter:()=>Zw,Twitch:()=>ox,TvMinimalPlay:()=>tx,TvMinimal:()=>YZ,Tv2:()=>YZ,Tv:()=>ex,Turtle:()=>ax,Turntable:()=>rx,TurkishLira:()=>sx,TruckElectric:()=>ix,Truck:()=>lx,Trophy:()=>nx,TriangleRight:()=>px,TriangleDashed:()=>dx,TriangleAlert:()=>KZ,Triangle:()=>cx,TrendingUpDown:()=>mx,TrendingUp:()=>ux,TrendingDown:()=>gx,Trello:()=>_x,Trees:()=>$x,TreePine:()=>vx,TreePalm:()=>JZ,TreeDeciduous:()=>hx,Trash2:()=>kx,Trash:()=>bx,Transgender:()=>fx,TramFront:()=>ZZ,TrainTrack:()=>yx,TrainFrontTunnel:()=>Lx,TrainFront:()=>jx,Train:()=>ZZ,TrafficCone:()=>Rx,Tractor:()=>Mx,ToyBrick:()=>Ux,TowerControl:()=>wx,TouchpadOff:()=>Ex,Touchpad:()=>Cx,Torus:()=>xx,Tornado:()=>qx,ToolCase:()=>Ax,Toilet:()=>Sx,ToggleRight:()=>Px,ToggleLeft:()=>Tx,TimerReset:()=>Bx,TimerOff:()=>Dx,Timer:()=>Ox,TicketsPlane:()=>Fx,Tickets:()=>Hx,TicketX:()=>zx,TicketSlash:()=>Ix,TicketPlus:()=>Gx,TicketPercent:()=>Vx,TicketMinus:()=>Qx,TicketCheck:()=>Wx,Ticket:()=>Nx,ThumbsUp:()=>Xx,ThumbsDown:()=>Yx,ThermometerSun:()=>Jx,ThermometerSnowflake:()=>Zx,Thermometer:()=>Kx,Theater:()=>eC,TextWrap:()=>e9,TextSelection:()=>o9,TextSelect:()=>o9,TextSearch:()=>oC,TextQuote:()=>tC,TextInitial:()=>t9,TextCursorInput:()=>rC,TextCursor:()=>aC,TextAlignStart:()=>I5,TextAlignJustify:()=>r9,TextAlignEnd:()=>a9,TextAlignCenter:()=>s9,Text:()=>I5,TestTubes:()=>lC,TestTubeDiagonal:()=>l9,TestTube2:()=>l9,TestTube:()=>sC,TerminalSquare:()=>c9,Terminal:()=>iC,TentTree:()=>pC,Tent:()=>nC,Telescope:()=>cC,Target:()=>uC,Tangent:()=>dC,Tally5:()=>mC,Tally4:()=>_C,Tally3:()=>gC,Tally2:()=>$C,Tally1:()=>vC,Tags:()=>hC,Tag:()=>bC,Tablets:()=>kC,TabletSmartphone:()=>yC,Tablet:()=>fC,TableRowsSplit:()=>jC,TableProperties:()=>RC,TableOfContents:()=>MC,TableConfig:()=>X5,TableColumnsSplit:()=>UC,TableCellsSplit:()=>wC,TableCellsMerge:()=>xC,Table2:()=>CC,Table:()=>LC,Syringe:()=>EC,Swords:()=>qC,Sword:()=>AC,SwitchCamera:()=>SC,SwissFranc:()=>PC,SwatchBook:()=>TC,Superscript:()=>OC,Sunset:()=>BC,Sunrise:()=>DC,SunSnow:()=>FC,SunMoon:()=>NC,SunMedium:()=>zC,SunDim:()=>IC,Sun:()=>HC,Subtitles:()=>m4,Subscript:()=>GC,Strikethrough:()=>VC,StretchVertical:()=>QC,StretchHorizontal:()=>WC,Store:()=>XC,StopCircle:()=>M7,StickyNote:()=>YC,Sticker:()=>KC,Stethoscope:()=>JC,StepForward:()=>ZC,StepBack:()=>eE,Stars:()=>s6,StarOff:()=>tE,StarHalf:()=>aE,Star:()=>oE,Stamp:()=>rE,Squirrel:()=>sE,SquircleDashed:()=>iE,Squircle:()=>lE,SquaresUnite:()=>nE,SquaresSubtract:()=>cE,SquaresIntersect:()=>pE,SquaresExclude:()=>dE,SquareX:()=>i9,SquareUserRound:()=>p9,SquareUser:()=>n9,SquareTerminal:()=>c9,SquareStop:()=>mE,SquareStar:()=>_E,SquareStack:()=>gE,SquareSquare:()=>$E,SquareSplitVertical:()=>d9,SquareSplitHorizontal:()=>u9,SquareSlash:()=>m9,SquareSigma:()=>_9,SquareScissors:()=>g9,SquareRoundCorner:()=>vE,SquareRadical:()=>hE,SquarePower:()=>$9,SquarePlus:()=>v9,SquarePlay:()=>h9,SquarePilcrow:()=>b9,SquarePi:()=>k9,SquarePercent:()=>f9,SquarePen:()=>S8,SquarePause:()=>bE,SquareParkingOff:()=>L9,SquareParking:()=>y9,SquareMousePointer:()=>j9,SquareMinus:()=>R9,SquareMenu:()=>M9,SquareM:()=>U9,SquareLibrary:()=>w9,SquareKanban:()=>x9,SquareGanttChart:()=>G5,SquareFunction:()=>C9,SquareEqual:()=>E9,SquareDot:()=>q9,SquareDivide:()=>A9,SquareDashedTopSolid:()=>kE,SquareDashedMousePointer:()=>P9,SquareDashedKanban:()=>T9,SquareDashedBottomCode:()=>yE,SquareDashedBottom:()=>fE,SquareDashed:()=>S9,SquareCode:()=>O9,SquareChevronUp:()=>B9,SquareChevronRight:()=>D9,SquareChevronLeft:()=>H9,SquareChevronDown:()=>F9,SquareCheckBig:()=>z9,SquareCheck:()=>N9,SquareChartGantt:()=>G5,SquareBottomDashedScissors:()=>I9,SquareAsterisk:()=>G9,SquareArrowUpRight:()=>Q9,SquareArrowUpLeft:()=>W9,SquareArrowUp:()=>V9,SquareArrowRight:()=>X9,SquareArrowOutUpRight:()=>Y9,SquareArrowOutUpLeft:()=>K9,SquareArrowOutDownRight:()=>J9,SquareArrowOutDownLeft:()=>Z9,SquareArrowLeft:()=>e6,SquareArrowDownRight:()=>t6,SquareArrowDownLeft:()=>a6,SquareArrowDown:()=>o6,SquareActivity:()=>r6,Square:()=>uE,Sprout:()=>LE,SprayCan:()=>jE,Spotlight:()=>RE,Spool:()=>ME,SplitSquareVertical:()=>d9,SplitSquareHorizontal:()=>u9,Split:()=>UE,SplinePointer:()=>xE,Spline:()=>wE,SpellCheck2:()=>EE,SpellCheck:()=>CE,Speech:()=>qE,Speaker:()=>AE,Sparkles:()=>s6,Sparkle:()=>SE,Spade:()=>PE,Space:()=>TE,Soup:()=>OE,SortDesc:()=>R4,SortAsc:()=>y4,Sofa:()=>BE,SoapDispenserDroplet:()=>HE,Snowflake:()=>DE,Snail:()=>FE,SmilePlus:()=>zE,Smile:()=>NE,SmartphoneNfc:()=>GE,SmartphoneCharging:()=>VE,Smartphone:()=>IE,SlidersVertical:()=>l6,SlidersHorizontal:()=>QE,Sliders:()=>l6,Slice:()=>WE,SlashSquare:()=>m9,Slash:()=>XE,Slack:()=>YE,Skull:()=>KE,SkipForward:()=>JE,SkipBack:()=>ZE,Siren:()=>eq,SignpostBig:()=>tq,Signpost:()=>oq,Signature:()=>aq,SignalZero:()=>sq,SignalMedium:()=>lq,SignalLow:()=>iq,SignalHigh:()=>nq,Signal:()=>rq,SigmaSquare:()=>_9,Sigma:()=>pq,SidebarOpen:()=>y6,SidebarClose:()=>j6,Sidebar:()=>f6,Shuffle:()=>cq,Shrub:()=>dq,Shrink:()=>uq,Shrimp:()=>mq,Shredder:()=>_q,ShowerHead:()=>gq,Shovel:()=>$q,ShoppingCart:()=>vq,ShoppingBasket:()=>hq,ShoppingBag:()=>bq,Shirt:()=>kq,ShipWheel:()=>yq,Ship:()=>fq,ShieldX:()=>i6,ShieldUser:()=>jq,ShieldQuestionMark:()=>n6,ShieldQuestion:()=>n6,ShieldPlus:()=>Rq,ShieldOff:()=>Mq,ShieldMinus:()=>Uq,ShieldHalf:()=>wq,ShieldEllipsis:()=>xq,ShieldClose:()=>i6,ShieldCheck:()=>Cq,ShieldBan:()=>qq,ShieldAlert:()=>Eq,Shield:()=>Lq,Shell:()=>Sq,Sheet:()=>Aq,Share2:()=>Tq,Share:()=>Pq,Shapes:()=>Oq,Settings2:()=>Dq,Settings:()=>Bq,ServerOff:()=>Fq,ServerCrash:()=>Nq,ServerCog:()=>Iq,Server:()=>Hq,SeparatorVertical:()=>zq,SeparatorHorizontal:()=>Gq,SendToBack:()=>Qq,SendHorizontal:()=>p6,SendHorizonal:()=>p6,Send:()=>Vq,Section:()=>Wq,SearchX:()=>Yq,SearchSlash:()=>Kq,SearchCode:()=>Zq,SearchCheck:()=>Jq,Search:()=>Xq,ScrollText:()=>oA,Scroll:()=>eA,ScreenShareOff:()=>aA,ScreenShare:()=>tA,ScissorsSquareDashedBottom:()=>I9,ScissorsSquare:()=>g9,ScissorsLineDashed:()=>sA,Scissors:()=>rA,School2:()=>XZ,School:()=>lA,ScatterChart:()=>e4,ScanText:()=>nA,ScanSearch:()=>pA,ScanQrCode:()=>cA,ScanLine:()=>dA,ScanHeart:()=>uA,ScanFace:()=>mA,ScanEye:()=>_A,ScanBarcode:()=>gA,Scan:()=>iA,Scaling:()=>$A,Scale3d:()=>c6,Scale3D:()=>c6,Scale:()=>vA,SaveOff:()=>bA,SaveAll:()=>kA,Save:()=>hA,SaudiRiyal:()=>fA,SatelliteDish:()=>LA,Satellite:()=>yA,Sandwich:()=>jA,Salad:()=>RA,Sailboat:()=>MA,RussianRuble:()=>UA,RulerDimensionLine:()=>xA,Ruler:()=>wA,Rss:()=>EA,Rows4:()=>CA,Rows3:()=>d6,Rows2:()=>u6,Rows:()=>u6,Router:()=>qA,RouteOff:()=>SA,Route:()=>AA,RotateCwSquare:()=>TA,RotateCw:()=>PA,RotateCcwSquare:()=>BA,RotateCcwKey:()=>DA,RotateCcw:()=>OA,Rotate3d:()=>m6,Rotate3D:()=>m6,Rose:()=>HA,RollerCoaster:()=>FA,RockingChair:()=>NA,Rocket:()=>zA,Ribbon:()=>IA,Rewind:()=>GA,ReplyAll:()=>QA,Reply:()=>VA,ReplaceAll:()=>XA,Replace:()=>WA,Repeat2:()=>KA,Repeat1:()=>JA,Repeat:()=>YA,RemoveFormatting:()=>ZA,Regex:()=>eS,Refrigerator:()=>oS,RefreshCwOff:()=>aS,RefreshCw:()=>tS,RefreshCcwDot:()=>sS,RefreshCcw:()=>rS,RedoDot:()=>iS,Redo2:()=>nS,Redo:()=>lS,Recycle:()=>pS,RectangleVertical:()=>cS,RectangleHorizontal:()=>dS,RectangleGoggles:()=>uS,RectangleEllipsis:()=>_6,RectangleCircle:()=>mS,ReceiptTurkishLira:()=>_S,ReceiptText:()=>$S,ReceiptSwissFranc:()=>vS,ReceiptRussianRuble:()=>hS,ReceiptPoundSterling:()=>bS,ReceiptJapaneseYen:()=>kS,ReceiptIndianRupee:()=>fS,ReceiptEuro:()=>yS,ReceiptCent:()=>LS,Receipt:()=>gS,Ratio:()=>jS,Rat:()=>MS,Rainbow:()=>RS,RailSymbol:()=>US,Radius:()=>wS,RadioTower:()=>CS,RadioReceiver:()=>ES,Radio:()=>xS,Radical:()=>qS,Radiation:()=>AS,Radar:()=>SS,Rabbit:()=>PS,Quote:()=>TS,QrCode:()=>BS,Pyramid:()=>OS,Puzzle:()=>DS,Proportions:()=>HS,Projector:()=>FS,PrinterCheck:()=>zS,Printer:()=>NS,Presentation:()=>IS,PowerSquare:()=>$9,PowerOff:()=>VS,PowerCircle:()=>w7,Power:()=>GS,PoundSterling:()=>QS,Popsicle:()=>WS,Popcorn:()=>XS,PointerOff:()=>KS,Pointer:()=>YS,Podcast:()=>JS,PocketKnife:()=>eP,Pocket:()=>ZS,PlusSquare:()=>v9,PlusCircle:()=>x7,Plus:()=>oP,PlugZap2:()=>g6,PlugZap:()=>g6,Plug2:()=>aP,Plug:()=>tP,PlaySquare:()=>h9,PlayCircle:()=>C7,Play:()=>rP,PlaneTakeoff:()=>lP,PlaneLanding:()=>iP,Plane:()=>sP,Pizza:()=>nP,Pipette:()=>cP,PinOff:()=>pP,Pin:()=>dP,PillBottle:()=>mP,Pill:()=>uP,PilcrowSquare:()=>b9,PilcrowRight:()=>gP,PilcrowLeft:()=>vP,Pilcrow:()=>_P,PiggyBank:()=>$P,PieChart:()=>o4,PictureInPicture2:()=>bP,PictureInPicture:()=>hP,Pickaxe:()=>kP,Piano:()=>fP,PiSquare:()=>k9,Pi:()=>yP,PhoneOutgoing:()=>jP,PhoneOff:()=>RP,PhoneMissed:()=>MP,PhoneIncoming:()=>UP,PhoneForwarded:()=>wP,PhoneCall:()=>xP,Phone:()=>LP,PhilippinePeso:()=>CP,PersonStanding:()=>EP,PercentSquare:()=>f9,PercentDiamond:()=>_7,PercentCircle:()=>E7,Percent:()=>qP,Pentagon:()=>AP,PencilRuler:()=>PP,PencilOff:()=>TP,PencilLine:()=>OP,Pencil:()=>SP,PenTool:()=>BP,PenSquare:()=>S8,PenOff:()=>DP,PenLine:()=>v6,PenBox:()=>S8,Pen:()=>$6,PcCase:()=>HP,PawPrint:()=>FP,PauseOctagon:()=>w6,PauseCircle:()=>q7,Pause:()=>NP,PartyPopper:()=>zP,ParkingSquareOff:()=>L9,ParkingSquare:()=>y9,ParkingMeter:()=>GP,ParkingCircleOff:()=>S7,ParkingCircle:()=>A7,Parentheses:()=>IP,Paperclip:()=>VP,PanelsTopLeft:()=>h6,PanelsTopBottom:()=>d6,PanelsRightBottom:()=>QP,PanelsLeftRight:()=>$7,PanelsLeftBottom:()=>XP,PanelTopOpen:()=>YP,PanelTopInactive:()=>b6,PanelTopDashed:()=>b6,PanelTopClose:()=>KP,PanelTopBottomDashed:()=>JP,PanelTop:()=>WP,PanelRightOpen:()=>ZP,PanelRightInactive:()=>k6,PanelRightDashed:()=>k6,PanelRightClose:()=>oT,PanelRight:()=>eT,PanelLeftRightDashed:()=>tT,PanelLeftOpen:()=>y6,PanelLeftInactive:()=>L6,PanelLeftDashed:()=>L6,PanelLeftClose:()=>j6,PanelLeft:()=>f6,PanelBottomOpen:()=>rT,PanelBottomInactive:()=>R6,PanelBottomDashed:()=>R6,PanelBottomClose:()=>sT,PanelBottom:()=>aT,Panda:()=>lT,Palmtree:()=>JZ,Palette:()=>iT,PaintbrushVertical:()=>M6,Paintbrush2:()=>M6,Paintbrush:()=>nT,PaintRoller:()=>pT,PaintBucket:()=>cT,PackageX:()=>uT,PackageSearch:()=>mT,PackagePlus:()=>_T,PackageOpen:()=>gT,PackageMinus:()=>$T,PackageCheck:()=>vT,Package2:()=>hT,Package:()=>dT,Outdent:()=>Q5,Origami:()=>bT,Orbit:()=>kT,Option:()=>fT,Omega:()=>yT,OctagonX:()=>U6,OctagonPause:()=>w6,OctagonMinus:()=>jT,OctagonAlert:()=>x6,Octagon:()=>LT,NutOff:()=>MT,Nut:()=>RT,NotepadTextDashed:()=>wT,NotepadText:()=>UT,NotebookText:()=>CT,NotebookTabs:()=>ET,NotebookPen:()=>qT,Notebook:()=>xT,NonBinary:()=>AT,Nfc:()=>ST,Newspaper:()=>PT,Network:()=>TT,NavigationOff:()=>BT,Navigation2Off:()=>HT,Navigation2:()=>DT,Navigation:()=>OT,Music4:()=>NT,Music3:()=>zT,Music2:()=>IT,Music:()=>FT,MoveVertical:()=>VT,MoveUpRight:()=>WT,MoveUpLeft:()=>XT,MoveUp:()=>QT,MoveRight:()=>YT,MoveLeft:()=>KT,MoveHorizontal:()=>JT,MoveDownRight:()=>e2,MoveDownLeft:()=>o2,MoveDown:()=>ZT,MoveDiagonal2:()=>a2,MoveDiagonal:()=>t2,Move3d:()=>C6,Move3D:()=>C6,Move:()=>GT,MousePointerSquareDashed:()=>P9,MousePointerClick:()=>l2,MousePointerBan:()=>i2,MousePointer2:()=>n2,MousePointer:()=>s2,MouseOff:()=>p2,Mouse:()=>r2,MountainSnow:()=>d2,Mountain:()=>c2,Motorbike:()=>u2,MoreVertical:()=>u7,MoreHorizontal:()=>d7,MoonStar:()=>_2,Moon:()=>m2,MonitorX:()=>$2,MonitorUp:()=>v2,MonitorStop:()=>h2,MonitorSpeaker:()=>b2,MonitorSmartphone:()=>k2,MonitorPlay:()=>f2,MonitorPause:()=>y2,MonitorOff:()=>L2,MonitorDown:()=>j2,MonitorDot:()=>R2,MonitorCog:()=>M2,MonitorCloud:()=>U2,MonitorCheck:()=>w2,Monitor:()=>g2,MinusSquare:()=>R9,MinusCircle:()=>P7,Minus:()=>x2,Minimize2:()=>E2,Minimize:()=>C2,MilkOff:()=>q2,Milk:()=>A2,Milestone:()=>S2,Microwave:()=>P2,Microscope:()=>T2,Microchip:()=>O2,MicVocal:()=>E6,MicOff:()=>D2,Mic2:()=>E6,Mic:()=>B2,MessagesSquare:()=>H2,MessageSquareX:()=>N2,MessageSquareWarning:()=>z2,MessageSquareText:()=>I2,MessageSquareShare:()=>V2,MessageSquareReply:()=>G2,MessageSquareQuote:()=>Q2,MessageSquarePlus:()=>W2,MessageSquareOff:()=>X2,MessageSquareMore:()=>Y2,MessageSquareLock:()=>K2,MessageSquareHeart:()=>J2,MessageSquareDot:()=>Z2,MessageSquareDiff:()=>eO,MessageSquareDashed:()=>oO,MessageSquareCode:()=>tO,MessageSquare:()=>F2,MessageCircleX:()=>rO,MessageCircleWarning:()=>sO,MessageCircleReply:()=>lO,MessageCircleQuestionMark:()=>q6,MessageCircleQuestion:()=>q6,MessageCirclePlus:()=>iO,MessageCircleOff:()=>nO,MessageCircleMore:()=>pO,MessageCircleHeart:()=>cO,MessageCircleDashed:()=>dO,MessageCircleCode:()=>uO,MessageCircle:()=>aO,Merge:()=>mO,MenuSquare:()=>M9,Menu:()=>_O,MemoryStick:()=>gO,Meh:()=>$O,MegaphoneOff:()=>hO,Megaphone:()=>vO,Medal:()=>bO,Maximize2:()=>fO,Maximize:()=>kO,Martini:()=>yO,MarsStroke:()=>jO,Mars:()=>LO,MapPlus:()=>RO,MapPinned:()=>UO,MapPinXInside:()=>CO,MapPinX:()=>xO,MapPinPlusInside:()=>qO,MapPinPlus:()=>EO,MapPinPen:()=>A6,MapPinOff:()=>AO,MapPinMinusInside:()=>SO,MapPinMinus:()=>PO,MapPinHouse:()=>TO,MapPinCheckInside:()=>BO,MapPinCheck:()=>OO,MapPin:()=>wO,MapMinus:()=>DO,Map:()=>MO,Mails:()=>HO,Mailbox:()=>FO,MailX:()=>zO,MailWarning:()=>IO,MailSearch:()=>GO,MailQuestionMark:()=>S6,MailQuestion:()=>S6,MailPlus:()=>VO,MailOpen:()=>QO,MailMinus:()=>WO,MailCheck:()=>XO,Mail:()=>NO,Magnet:()=>YO,MSquare:()=>U9,Luggage:()=>KO,Lollipop:()=>JO,Logs:()=>ZO,LogOut:()=>eB,LogIn:()=>oB,LockOpen:()=>P6,LockKeyholeOpen:()=>T6,LockKeyhole:()=>aB,Lock:()=>tB,LocationEdit:()=>A6,LocateOff:()=>sB,LocateFixed:()=>lB,Locate:()=>rB,LoaderPinwheel:()=>nB,LoaderCircle:()=>O6,Loader2:()=>O6,Loader:()=>iB,ListX:()=>cB,ListVideo:()=>dB,ListTree:()=>uB,ListTodo:()=>mB,ListStart:()=>_B,ListRestart:()=>$B,ListPlus:()=>vB,ListOrdered:()=>gB,ListMusic:()=>hB,ListMinus:()=>bB,ListIndentIncrease:()=>V5,ListIndentDecrease:()=>Q5,ListFilterPlus:()=>kB,ListFilter:()=>fB,ListEnd:()=>yB,ListCollapse:()=>LB,ListChevronsUpDown:()=>jB,ListChevronsDownUp:()=>RB,ListChecks:()=>MB,ListCheck:()=>UB,List:()=>pB,Linkedin:()=>wB,Link2Off:()=>EB,Link2:()=>CB,Link:()=>xB,LineSquiggle:()=>qB,LineChart:()=>s4,LightbulbOff:()=>SB,Lightbulb:()=>AB,Ligature:()=>PB,LifeBuoy:()=>OB,LibrarySquare:()=>w9,LibraryBig:()=>BB,Library:()=>TB,LetterText:()=>t9,Lectern:()=>DB,LeafyGreen:()=>HB,Leaf:()=>FB,LayoutTemplate:()=>NB,LayoutPanelTop:()=>zB,LayoutPanelLeft:()=>IB,LayoutList:()=>GB,LayoutGrid:()=>VB,LayoutDashboard:()=>QB,Layout:()=>h6,Layers3:()=>B6,Layers2:()=>WB,Layers:()=>B6,Laugh:()=>XB,LassoSelect:()=>KB,Lasso:()=>YB,LaptopMinimalCheck:()=>ZB,LaptopMinimal:()=>D6,Laptop2:()=>D6,Laptop:()=>JB,Languages:()=>eD,Landmark:()=>oD,LandPlot:()=>tD,LampWallUp:()=>rD,LampWallDown:()=>sD,LampFloor:()=>lD,LampDesk:()=>iD,LampCeiling:()=>nD,Lamp:()=>aD,KeyboardOff:()=>cD,KeyboardMusic:()=>dD,Keyboard:()=>pD,KeySquare:()=>mD,KeyRound:()=>_D,Key:()=>uD,Kayak:()=>gD,KanbanSquareDashed:()=>T9,KanbanSquare:()=>x9,Kanban:()=>$D,Joystick:()=>vD,JapaneseYen:()=>hD,IterationCw:()=>bD,IterationCcw:()=>fD,Italic:()=>yD,Instagram:()=>kD,InspectionPanel:()=>LD,Inspect:()=>j9,Info:()=>RD,Infinity:()=>jD,IndianRupee:()=>MD,IndentIncrease:()=>V5,IndentDecrease:()=>Q5,Indent:()=>V5,Inbox:()=>UD,Import:()=>wD,Images:()=>xD,ImageUpscale:()=>ED,ImageUp:()=>qD,ImagePlus:()=>AD,ImagePlay:()=>SD,ImageOff:()=>PD,ImageMinus:()=>TD,ImageDown:()=>OD,Image:()=>CD,IdCardLanyard:()=>BD,IdCard:()=>DD,IceCreamCone:()=>H6,IceCreamBowl:()=>F6,IceCream2:()=>F6,IceCream:()=>H6,HouseWifi:()=>FD,HousePlus:()=>HD,HousePlug:()=>zD,HouseHeart:()=>ND,House:()=>N6,Hourglass:()=>ID,Hotel:()=>GD,Hospital:()=>VD,HopOff:()=>WD,Hop:()=>QD,Home:()=>N6,History:()=>XD,Highlighter:()=>KD,Hexagon:()=>YD,HelpingHand:()=>z6,HelpCircle:()=>Y5,Heater:()=>JD,HeartPulse:()=>eH,HeartPlus:()=>oH,HeartOff:()=>tH,HeartMinus:()=>aH,HeartHandshake:()=>rH,HeartCrack:()=>sH,Heart:()=>ZD,Headset:()=>lH,Headphones:()=>iH,HeadphoneOff:()=>nH,Heading6:()=>cH,Heading5:()=>dH,Heading4:()=>uH,Heading3:()=>mH,Heading2:()=>_H,Heading1:()=>gH,Heading:()=>pH,HdmiPort:()=>$H,Haze:()=>vH,HatGlasses:()=>hH,Hash:()=>bH,HardHat:()=>kH,HardDriveUpload:()=>yH,HardDriveDownload:()=>LH,HardDrive:()=>fH,Handshake:()=>jH,Handbag:()=>RH,HandPlatter:()=>UH,HandMetal:()=>wH,HandHelping:()=>z6,HandHeart:()=>xH,HandGrab:()=>I6,HandFist:()=>CH,HandCoins:()=>EH,Hand:()=>MH,Hammer:()=>qH,Hamburger:()=>AH,Ham:()=>SH,Guitar:()=>PH,Group:()=>TH,GripVertical:()=>BH,GripHorizontal:()=>DH,Grip:()=>OH,Grid3x3:()=>W5,Grid3x2:()=>HH,Grid3X3:()=>W5,Grid2x2X:()=>V6,Grid2x2Plus:()=>Q6,Grid2x2Check:()=>W6,Grid2x2:()=>G6,Grid2X2X:()=>V6,Grid2X2Plus:()=>Q6,Grid2X2Check:()=>W6,Grid2X2:()=>G6,Grid:()=>W5,Grape:()=>FH,GraduationCap:()=>NH,Grab:()=>I6,Gpu:()=>zH,Goal:()=>IH,GlobeLock:()=>VH,Globe2:()=>m7,Globe:()=>GH,Glasses:()=>QH,GlassWater:()=>WH,Gitlab:()=>XH,Github:()=>YH,GitPullRequestDraft:()=>JH,GitPullRequestCreateArrow:()=>oF,GitPullRequestCreate:()=>ZH,GitPullRequestClosed:()=>eF,GitPullRequestArrow:()=>tF,GitPullRequest:()=>KH,GitMerge:()=>aF,GitGraph:()=>rF,GitFork:()=>sF,GitCompareArrows:()=>iF,GitCompare:()=>lF,GitCommitVertical:()=>nF,GitCommitHorizontal:()=>X6,GitCommit:()=>X6,GitBranchPlus:()=>cF,GitBranch:()=>pF,Gift:()=>dF,Ghost:()=>uF,GeorgianLari:()=>mF,Gem:()=>_F,Gavel:()=>gF,GaugeCircle:()=>T7,Gauge:()=>$F,GanttChartSquare:()=>G5,GanttChart:()=>t4,GamepadDirectional:()=>hF,Gamepad2:()=>bF,Gamepad:()=>vF,GalleryVerticalEnd:()=>fF,GalleryVertical:()=>kF,GalleryThumbnails:()=>yF,GalleryHorizontalEnd:()=>jF,GalleryHorizontal:()=>LF,FunnelX:()=>K6,FunnelPlus:()=>RF,Funnel:()=>Y6,FunctionSquare:()=>C9,Fullscreen:()=>MF,Fuel:()=>UF,Frown:()=>wF,Framer:()=>xF,Frame:()=>CF,Forward:()=>EF,FormInput:()=>_6,Forklift:()=>qF,ForkKnifeCrossed:()=>FZ,ForkKnife:()=>HZ,Footprints:()=>AF,Folders:()=>SF,FolderX:()=>TF,FolderUp:()=>OF,FolderTree:()=>BF,FolderSync:()=>DF,FolderSymlink:()=>HF,FolderSearch2:()=>NF,FolderSearch:()=>FF,FolderRoot:()=>zF,FolderPlus:()=>IF,FolderPen:()=>J6,FolderOutput:()=>GF,FolderOpenDot:()=>QF,FolderOpen:()=>VF,FolderMinus:()=>WF,FolderLock:()=>XF,FolderKey:()=>YF,FolderKanban:()=>KF,FolderInput:()=>JF,FolderHeart:()=>ZF,FolderGit2:()=>tN,FolderGit:()=>eN,FolderEdit:()=>J6,FolderDown:()=>oN,FolderDot:()=>aN,FolderCog2:()=>Z6,FolderCog:()=>Z6,FolderCode:()=>rN,FolderClosed:()=>sN,FolderClock:()=>lN,FolderCheck:()=>iN,FolderArchive:()=>nN,Folder:()=>PF,FoldVertical:()=>pN,FoldHorizontal:()=>cN,Focus:()=>dN,Flower2:()=>mN,Flower:()=>uN,FlipVertical2:()=>gN,FlipVertical:()=>_N,FlipHorizontal2:()=>vN,FlipHorizontal:()=>$N,FlaskRound:()=>hN,FlaskConicalOff:()=>kN,FlaskConical:()=>bN,FlashlightOff:()=>yN,Flashlight:()=>fN,FlameKindling:()=>jN,Flame:()=>LN,FlagTriangleRight:()=>MN,FlagTriangleLeft:()=>UN,FlagOff:()=>xN,Flag:()=>RN,FishSymbol:()=>CN,FishOff:()=>EN,Fish:()=>wN,FireExtinguisher:()=>qN,Fingerprint:()=>AN,FilterX:()=>K6,Filter:()=>Y6,Film:()=>SN,Files:()=>TN,FileX2:()=>BN,FileX:()=>ON,FileWarning:()=>DN,FileVolume2:()=>FN,FileVolume:()=>HN,FileVideoCamera:()=>e7,FileVideo2:()=>e7,FileVideo:()=>t7,FileUser:()=>NN,FileUp:()=>zN,FileType2:()=>GN,FileType:()=>IN,FileText:()=>VN,FileTerminal:()=>QN,FileSymlink:()=>WN,FileStack:()=>XN,FileSpreadsheet:()=>YN,FileSliders:()=>KN,FileSignature:()=>r7,FileSearch2:()=>ZN,FileSearch:()=>JN,FileScan:()=>ez,FileQuestionMark:()=>o7,FileQuestion:()=>o7,FilePlus2:()=>oz,FilePlus:()=>tz,FilePlay:()=>t7,FilePieChart:()=>i7,FilePenLine:()=>r7,FilePen:()=>a7,FileOutput:()=>az,FileMusic:()=>rz,FileMinus2:()=>sz,FileMinus:()=>lz,FileLock2:()=>nz,FileLock:()=>iz,FileLineChart:()=>l7,FileKey2:()=>cz,FileKey:()=>pz,FileJson2:()=>uz,FileJson:()=>dz,FileInput:()=>mz,FileImage:()=>_z,FileHeart:()=>gz,FileEdit:()=>a7,FileDown:()=>$z,FileDigit:()=>vz,FileDiff:()=>hz,FileCog2:()=>s7,FileCog:()=>s7,FileCode2:()=>kz,FileCode:()=>bz,FileClock:()=>fz,FileCheck2:()=>Lz,FileCheck:()=>yz,FileChartPie:()=>i7,FileChartLine:()=>l7,FileChartColumnIncreasing:()=>p7,FileChartColumn:()=>n7,FileBox:()=>Rz,FileBarChart2:()=>n7,FileBarChart:()=>p7,FileBadge2:()=>Mz,FileBadge:()=>jz,FileAxis3d:()=>c7,FileAxis3D:()=>c7,FileAudio2:()=>wz,FileAudio:()=>Uz,FileArchive:()=>xz,File:()=>PN,Figma:()=>Cz,FerrisWheel:()=>Ez,Fence:()=>qz,Feather:()=>Az,FastForward:()=>Sz,Fan:()=>Pz,Factory:()=>Tz,Facebook:()=>Oz,EyeOff:()=>Hz,EyeClosed:()=>Fz,Eye:()=>Bz,ExternalLink:()=>Dz,Expand:()=>Nz,EvCharger:()=>zz,Euro:()=>Iz,EthernetPort:()=>Gz,Eraser:()=>Vz,EqualSquare:()=>E9,EqualNot:()=>Wz,EqualApproximately:()=>Xz,Equal:()=>Qz,EllipsisVertical:()=>u7,Ellipsis:()=>d7,EggOff:()=>Kz,EggFried:()=>Jz,Egg:()=>Yz,Edit3:()=>v6,Edit2:()=>$6,Edit:()=>S8,Eclipse:()=>Zz,EarthLock:()=>oI,Earth:()=>m7,EarOff:()=>tI,Ear:()=>eI,Dumbbell:()=>aI,Drumstick:()=>rI,Drum:()=>lI,Droplets:()=>sI,DropletOff:()=>nI,Droplet:()=>iI,Drone:()=>pI,Drill:()=>cI,Dribbble:()=>dI,Drama:()=>uI,DraftingCompass:()=>mI,DownloadCloud:()=>k7,Download:()=>_I,DotSquare:()=>q9,Dot:()=>gI,DoorOpen:()=>$I,DoorClosedLocked:()=>hI,DoorClosed:()=>vI,Donut:()=>bI,DollarSign:()=>kI,Dog:()=>fI,Dock:()=>yI,DnaOff:()=>jI,Dna:()=>LI,DivideSquare:()=>A9,DivideCircle:()=>O7,Divide:()=>RI,DiscAlbum:()=>UI,Disc3:()=>wI,Disc2:()=>xI,Disc:()=>MI,Diff:()=>CI,Dices:()=>qI,Dice6:()=>EI,Dice5:()=>AI,Dice4:()=>SI,Dice3:()=>PI,Dice2:()=>TI,Dice1:()=>OI,DiamondPlus:()=>DI,DiamondPercent:()=>_7,DiamondMinus:()=>HI,Diamond:()=>BI,Diameter:()=>FI,Dessert:()=>zI,Delete:()=>NI,DecimalsArrowRight:()=>II,DecimalsArrowLeft:()=>VI,DatabaseZap:()=>WI,DatabaseBackup:()=>QI,Database:()=>GI,Dam:()=>XI,Cylinder:()=>YI,Currency:()=>KI,CurlyBraces:()=>_4,CupSoda:()=>JI,Cuboid:()=>ZI,Crown:()=>e3,Crosshair:()=>o3,Cross:()=>t3,Crop:()=>a3,Croissant:()=>r3,CreditCard:()=>s3,CreativeCommons:()=>l3,Cpu:()=>i3,CornerUpRight:()=>n3,CornerUpLeft:()=>p3,CornerRightUp:()=>c3,CornerRightDown:()=>d3,CornerLeftUp:()=>u3,CornerLeftDown:()=>m3,CornerDownRight:()=>g3,CornerDownLeft:()=>_3,Copyright:()=>$3,Copyleft:()=>v3,CopyX:()=>b3,CopySlash:()=>k3,CopyPlus:()=>f3,CopyMinus:()=>y3,CopyCheck:()=>L3,Copy:()=>h3,CookingPot:()=>j3,Cookie:()=>R3,Contrast:()=>M3,Container:()=>w3,ContactRound:()=>g7,Contact2:()=>g7,Contact:()=>U3,Construction:()=>x3,Cone:()=>C3,ConciergeBell:()=>E3,Computer:()=>q3,Component:()=>A3,Compass:()=>P3,Command:()=>S3,Combine:()=>T3,ColumnsSettings:()=>X5,Columns4:()=>O3,Columns3Cog:()=>X5,Columns3:()=>$7,Columns2:()=>v7,Columns:()=>v7,Coins:()=>B3,Cog:()=>D3,Coffee:()=>H3,Codesandbox:()=>F3,Codepen:()=>N3,CodeXml:()=>h7,CodeSquare:()=>O9,Code2:()=>h7,Code:()=>z3,Club:()=>I3,Clover:()=>G3,Cloudy:()=>V3,CloudUpload:()=>b7,CloudSunRain:()=>X3,CloudSun:()=>W3,CloudSnow:()=>Y3,CloudRainWind:()=>J3,CloudRain:()=>K3,CloudOff:()=>eG,CloudMoonRain:()=>oG,CloudMoon:()=>Z3,CloudLightning:()=>tG,CloudHail:()=>aG,CloudFog:()=>rG,CloudDrizzle:()=>sG,CloudDownload:()=>k7,CloudCog:()=>lG,CloudCheck:()=>iG,CloudAlert:()=>nG,Cloud:()=>Q3,ClosedCaption:()=>pG,ClockPlus:()=>dG,ClockFading:()=>uG,ClockArrowUp:()=>mG,ClockArrowDown:()=>_G,ClockAlert:()=>gG,Clock9:()=>$G,Clock8:()=>vG,Clock7:()=>hG,Clock6:()=>bG,Clock5:()=>kG,Clock4:()=>fG,Clock3:()=>yG,Clock2:()=>LG,Clock12:()=>jG,Clock11:()=>RG,Clock10:()=>MG,Clock1:()=>UG,Clock:()=>cG,ClipboardX:()=>CG,ClipboardType:()=>EG,ClipboardSignature:()=>y7,ClipboardPlus:()=>xG,ClipboardPenLine:()=>y7,ClipboardPen:()=>f7,ClipboardPaste:()=>qG,ClipboardMinus:()=>AG,ClipboardList:()=>SG,ClipboardEdit:()=>f7,ClipboardCopy:()=>PG,ClipboardClock:()=>TG,ClipboardCheck:()=>OG,Clipboard:()=>wG,Clapperboard:()=>BG,Citrus:()=>DG,CircuitBoard:()=>HG,CircleX:()=>L7,CircleUserRound:()=>R7,CircleUser:()=>j7,CircleStop:()=>M7,CircleStar:()=>NG,CircleSmall:()=>zG,CircleSlashed:()=>U7,CircleSlash2:()=>U7,CircleSlash:()=>IG,CircleQuestionMark:()=>Y5,CirclePower:()=>w7,CirclePoundSterling:()=>GG,CirclePlus:()=>x7,CirclePlay:()=>C7,CirclePercent:()=>E7,CirclePause:()=>q7,CircleParkingOff:()=>S7,CircleParking:()=>A7,CircleOff:()=>VG,CircleMinus:()=>P7,CircleHelp:()=>Y5,CircleGauge:()=>T7,CircleFadingPlus:()=>QG,CircleFadingArrowUp:()=>WG,CircleEqual:()=>XG,CircleEllipsis:()=>YG,CircleDotDashed:()=>JG,CircleDot:()=>KG,CircleDollarSign:()=>ZG,CircleDivide:()=>O7,CircleDashed:()=>eV,CircleChevronUp:()=>B7,CircleChevronRight:()=>D7,CircleChevronLeft:()=>H7,CircleChevronDown:()=>N7,CircleCheckBig:()=>z7,CircleCheck:()=>F7,CircleArrowUp:()=>I7,CircleArrowRight:()=>G7,CircleArrowOutUpRight:()=>V7,CircleArrowOutUpLeft:()=>Q7,CircleArrowOutDownRight:()=>W7,CircleArrowOutDownLeft:()=>X7,CircleArrowLeft:()=>Y7,CircleArrowDown:()=>K7,CircleAlert:()=>J7,Circle:()=>FG,CigaretteOff:()=>tV,Cigarette:()=>oV,Church:()=>aV,Chromium:()=>Z7,Chrome:()=>Z7,ChevronsUpDown:()=>rV,ChevronsUp:()=>sV,ChevronsRightLeft:()=>iV,ChevronsRight:()=>lV,ChevronsLeftRightEllipsis:()=>cV,ChevronsLeftRight:()=>pV,ChevronsLeft:()=>nV,ChevronsDownUp:()=>uV,ChevronsDown:()=>dV,ChevronUpSquare:()=>B9,ChevronUpCircle:()=>B7,ChevronUp:()=>_V,ChevronRightSquare:()=>D9,ChevronRightCircle:()=>D7,ChevronRight:()=>gV,ChevronLeftSquare:()=>H9,ChevronLeftCircle:()=>H7,ChevronLeft:()=>mV,ChevronLast:()=>$V,ChevronFirst:()=>vV,ChevronDownSquare:()=>F9,ChevronDownCircle:()=>N7,ChevronDown:()=>hV,Cherry:()=>bV,ChefHat:()=>kV,CheckSquare2:()=>N9,CheckSquare:()=>z9,CheckLine:()=>fV,CheckCircle2:()=>F7,CheckCircle:()=>z7,CheckCheck:()=>LV,Check:()=>yV,ChartSpline:()=>jV,ChartScatter:()=>e4,ChartPie:()=>o4,ChartNoAxesGantt:()=>t4,ChartNoAxesCombined:()=>RV,ChartNoAxesColumnIncreasing:()=>r4,ChartNoAxesColumnDecreasing:()=>MV,ChartNoAxesColumn:()=>a4,ChartNetwork:()=>UV,ChartLine:()=>s4,ChartGantt:()=>wV,ChartColumnStacked:()=>xV,ChartColumnIncreasing:()=>i4,ChartColumnDecreasing:()=>CV,ChartColumnBig:()=>n4,ChartColumn:()=>l4,ChartCandlestick:()=>p4,ChartBarStacked:()=>EV,ChartBarIncreasing:()=>qV,ChartBarDecreasing:()=>AV,ChartBarBig:()=>d4,ChartBar:()=>c4,ChartArea:()=>u4,Cctv:()=>SV,Cat:()=>PV,Castle:()=>TV,Cast:()=>BV,CassetteTape:()=>OV,CaseUpper:()=>DV,CaseSensitive:()=>HV,CaseLower:()=>FV,Carrot:()=>zV,CardSim:()=>NV,Caravan:()=>IV,CarTaxiFront:()=>VV,CarFront:()=>QV,Car:()=>GV,CaptionsOff:()=>WV,Captions:()=>m4,Cannabis:()=>XV,CandyOff:()=>KV,CandyCane:()=>JV,Candy:()=>YV,CandlestickChart:()=>p4,CameraOff:()=>ZV,Camera:()=>eQ,CalendarX2:()=>aQ,CalendarX:()=>tQ,CalendarSync:()=>rQ,CalendarSearch:()=>sQ,CalendarRange:()=>lQ,CalendarPlus2:()=>nQ,CalendarPlus:()=>iQ,CalendarOff:()=>pQ,CalendarMinus2:()=>dQ,CalendarMinus:()=>cQ,CalendarHeart:()=>uQ,CalendarFold:()=>mQ,CalendarDays:()=>_Q,CalendarCog:()=>gQ,CalendarClock:()=>$Q,CalendarCheck2:()=>hQ,CalendarCheck:()=>vQ,CalendarArrowUp:()=>bQ,CalendarArrowDown:()=>kQ,Calendar1:()=>fQ,Calendar:()=>oQ,Calculator:()=>yQ,CakeSlice:()=>jQ,Cake:()=>LQ,CableCar:()=>MQ,Cable:()=>RQ,BusFront:()=>wQ,Bus:()=>UQ,Building2:()=>CQ,Building:()=>xQ,BugPlay:()=>qQ,BugOff:()=>AQ,Bug:()=>EQ,Bubbles:()=>SQ,BrushCleaning:()=>TQ,Brush:()=>PQ,BringToFront:()=>OQ,BriefcaseMedical:()=>DQ,BriefcaseConveyorBelt:()=>HQ,BriefcaseBusiness:()=>FQ,Briefcase:()=>BQ,BrickWallShield:()=>zQ,BrickWallFire:()=>IQ,BrickWall:()=>NQ,BrainCog:()=>VQ,BrainCircuit:()=>QQ,Brain:()=>GQ,Brackets:()=>WQ,Braces:()=>_4,Boxes:()=>XQ,BoxSelect:()=>S9,Box:()=>YQ,BowArrow:()=>KQ,BottleWine:()=>JQ,BotOff:()=>eW,BotMessageSquare:()=>tW,Bot:()=>ZQ,BoomBox:()=>oW,BookmarkX:()=>rW,BookmarkPlus:()=>sW,BookmarkMinus:()=>lW,BookmarkCheck:()=>iW,Bookmark:()=>aW,BookX:()=>pW,BookUser:()=>cW,BookUp2:()=>uW,BookUp:()=>dW,BookType:()=>mW,BookText:()=>_W,BookTemplate:()=>g4,BookPlus:()=>gW,BookOpenText:()=>vW,BookOpenCheck:()=>hW,BookOpen:()=>$W,BookMinus:()=>bW,BookMarked:()=>kW,BookLock:()=>fW,BookKey:()=>yW,BookImage:()=>LW,BookHeart:()=>jW,BookHeadphones:()=>MW,BookDown:()=>RW,BookDashed:()=>g4,BookCopy:()=>UW,BookCheck:()=>wW,BookAudio:()=>xW,BookAlert:()=>CW,BookA:()=>EW,Book:()=>nW,Bone:()=>qW,Bomb:()=>AW,Bolt:()=>SW,Bold:()=>TW,BluetoothSearching:()=>PW,BluetoothOff:()=>BW,BluetoothConnected:()=>DW,Bluetooth:()=>OW,Blocks:()=>HW,Blinds:()=>NW,Blend:()=>zW,Bitcoin:()=>FW,Birdhouse:()=>IW,Bird:()=>GW,Biohazard:()=>VW,Binoculars:()=>QW,Binary:()=>WW,Bike:()=>XW,BicepsFlexed:()=>YW,BetweenVerticalStart:()=>KW,BetweenVerticalEnd:()=>JW,BetweenHorizontalStart:()=>$4,BetweenHorizontalEnd:()=>v4,BetweenHorizonalStart:()=>$4,BetweenHorizonalEnd:()=>v4,BellRing:()=>eX,BellPlus:()=>oX,BellOff:()=>tX,BellMinus:()=>aX,BellElectric:()=>sX,BellDot:()=>rX,Bell:()=>ZW,BeerOff:()=>iX,Beer:()=>lX,Beef:()=>pX,BedSingle:()=>cX,BedDouble:()=>uX,Bed:()=>nX,BeanOff:()=>mX,Bean:()=>dX,Beaker:()=>_X,BatteryWarning:()=>$X,BatteryPlus:()=>hX,BatteryMedium:()=>vX,BatteryLow:()=>bX,BatteryFull:()=>kX,BatteryCharging:()=>fX,Battery:()=>gX,Bath:()=>yX,Baseline:()=>LX,Barrel:()=>jX,Barcode:()=>RX,BarChartHorizontalBig:()=>d4,BarChartHorizontal:()=>c4,BarChartBig:()=>n4,BarChart4:()=>i4,BarChart3:()=>l4,BarChart2:()=>a4,BarChart:()=>r4,BanknoteX:()=>wX,BanknoteArrowUp:()=>UX,BanknoteArrowDown:()=>xX,Banknote:()=>MX,Bandage:()=>CX,Banana:()=>EX,Ban:()=>qX,BaggageClaim:()=>AX,BadgeX:()=>PX,BadgeTurkishLira:()=>TX,BadgeSwissFranc:()=>OX,BadgeRussianRuble:()=>BX,BadgeQuestionMark:()=>h4,BadgePoundSterling:()=>DX,BadgePlus:()=>HX,BadgePercent:()=>FX,BadgeMinus:()=>NX,BadgeJapaneseYen:()=>zX,BadgeInfo:()=>IX,BadgeIndianRupee:()=>GX,BadgeHelp:()=>h4,BadgeEuro:()=>VX,BadgeDollarSign:()=>QX,BadgeCheck:()=>b4,BadgeCent:()=>WX,BadgeAlert:()=>XX,Badge:()=>SX,Backpack:()=>YX,Baby:()=>KX,Axis3d:()=>k4,Axis3D:()=>k4,Axe:()=>JX,Award:()=>ZX,AudioWaveform:()=>eY,AudioLines:()=>oY,Atom:()=>tY,AtSign:()=>aY,AsteriskSquare:()=>G9,Asterisk:()=>rY,ArrowsUpFromLine:()=>sY,ArrowUpZa:()=>f4,ArrowUpZA:()=>f4,ArrowUpWideNarrow:()=>iY,ArrowUpToLine:()=>nY,ArrowUpSquare:()=>V9,ArrowUpRightSquare:()=>Q9,ArrowUpRightFromSquare:()=>Y9,ArrowUpRightFromCircle:()=>V7,ArrowUpRight:()=>pY,ArrowUpNarrowWide:()=>y4,ArrowUpLeftSquare:()=>W9,ArrowUpLeftFromSquare:()=>K9,ArrowUpLeftFromCircle:()=>Q7,ArrowUpLeft:()=>cY,ArrowUpFromLine:()=>dY,ArrowUpFromDot:()=>uY,ArrowUpDown:()=>mY,ArrowUpCircle:()=>I7,ArrowUpAz:()=>L4,ArrowUpAZ:()=>L4,ArrowUp10:()=>_Y,ArrowUp01:()=>gY,ArrowUp:()=>lY,ArrowRightToLine:()=>vY,ArrowRightSquare:()=>X9,ArrowRightLeft:()=>hY,ArrowRightFromLine:()=>bY,ArrowRightCircle:()=>G7,ArrowRight:()=>$Y,ArrowLeftToLine:()=>fY,ArrowLeftSquare:()=>e6,ArrowLeftRight:()=>LY,ArrowLeftFromLine:()=>yY,ArrowLeftCircle:()=>Y7,ArrowLeft:()=>kY,ArrowDownZa:()=>j4,ArrowDownZA:()=>j4,ArrowDownWideNarrow:()=>R4,ArrowDownUp:()=>RY,ArrowDownToLine:()=>MY,ArrowDownToDot:()=>UY,ArrowDownSquare:()=>o6,ArrowDownRightSquare:()=>t6,ArrowDownRightFromSquare:()=>J9,ArrowDownRightFromCircle:()=>W7,ArrowDownRight:()=>wY,ArrowDownNarrowWide:()=>xY,ArrowDownLeftSquare:()=>a6,ArrowDownLeftFromSquare:()=>Z9,ArrowDownLeftFromCircle:()=>X7,ArrowDownLeft:()=>CY,ArrowDownFromLine:()=>EY,ArrowDownCircle:()=>K7,ArrowDownAz:()=>M4,ArrowDownAZ:()=>M4,ArrowDown10:()=>qY,ArrowDown01:()=>AY,ArrowDown:()=>jY,ArrowBigUpDash:()=>PY,ArrowBigUp:()=>SY,ArrowBigRightDash:()=>OY,ArrowBigRight:()=>TY,ArrowBigLeftDash:()=>DY,ArrowBigLeft:()=>BY,ArrowBigDownDash:()=>FY,ArrowBigDown:()=>HY,Armchair:()=>NY,AreaChart:()=>u4,ArchiveX:()=>IY,ArchiveRestore:()=>GY,Archive:()=>zY,Apple:()=>VY,AppWindowMac:()=>WY,AppWindow:()=>QY,Aperture:()=>XY,Anvil:()=>YY,Antenna:()=>KY,Annoyed:()=>JY,Angry:()=>ZY,Anchor:()=>eK,Amphora:()=>oK,Ampersands:()=>tK,Ampersand:()=>aK,Ambulance:()=>rK,AlignVerticalSpaceBetween:()=>sK,AlignVerticalSpaceAround:()=>lK,AlignVerticalJustifyStart:()=>iK,AlignVerticalJustifyEnd:()=>nK,AlignVerticalJustifyCenter:()=>pK,AlignVerticalDistributeStart:()=>cK,AlignVerticalDistributeEnd:()=>dK,AlignVerticalDistributeCenter:()=>uK,AlignStartVertical:()=>mK,AlignStartHorizontal:()=>_K,AlignRight:()=>a9,AlignLeft:()=>I5,AlignJustify:()=>r9,AlignHorizontalSpaceBetween:()=>gK,AlignHorizontalSpaceAround:()=>$K,AlignHorizontalJustifyStart:()=>vK,AlignHorizontalJustifyEnd:()=>hK,AlignHorizontalJustifyCenter:()=>bK,AlignHorizontalDistributeStart:()=>kK,AlignHorizontalDistributeEnd:()=>fK,AlignHorizontalDistributeCenter:()=>yK,AlignEndVertical:()=>LK,AlignEndHorizontal:()=>jK,AlignCenterVertical:()=>RK,AlignCenterHorizontal:()=>MK,AlignCenter:()=>s9,AlertTriangle:()=>KZ,AlertOctagon:()=>x6,AlertCircle:()=>J7,Album:()=>UK,AlarmSmoke:()=>wK,AlarmPlus:()=>U4,AlarmMinus:()=>w4,AlarmClockPlus:()=>U4,AlarmClockOff:()=>CK,AlarmClockMinus:()=>w4,AlarmClockCheck:()=>x4,AlarmClock:()=>xK,AlarmCheck:()=>x4,Airplay:()=>EK,AirVent:()=>qK,ActivitySquare:()=>r6,Activity:()=>AK,Accessibility:()=>SK,ALargeSmall:()=>PK,AArrowUp:()=>TK,AArrowDown:()=>OK});var DK={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 rk=([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=rk(W);X.appendChild(Y)});return X},BK=(Z,J={})=>{let X={...DK,...J};return rk(["svg",X,Z])};var Ng=(Z)=>Array.from(Z.attributes).reduce((J,K)=>{return J[K.name]=K.value,J},{}),Fg=(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""},Hg=(Z)=>{return Z.flatMap(Fg).map((K)=>K.trim()).filter(Boolean).filter((K,X,W)=>W.indexOf(K)===X).join(" ")},Dg=(Z)=>Z.replace(/(\w)(\w*)(_|-|\s*)/g,(J,K,X)=>K.toUpperCase()+X.toLowerCase()),vj=(Z,{nameAttr:J,icons:K,attrs:X})=>{let W=Z.getAttribute(J);if(W==null)return;let Y=Dg(W),V=K[Y];if(!V)return console.warn(`${Z.outerHTML} icon name was not found in the provided icons object.`);let G=Ng(Z),I={...DK,"data-lucide":W,...X,...G},z=Hg(["lucide",`lucide-${W}`,G,X]);if(z)Object.assign(I,{class:z});let N=BK(V,I);return Z.parentNode?.replaceChild(N,Z)};var $j={};NL($j,{ZoomOut:()=>hU,ZoomIn:()=>bU,ZapOff:()=>fU,Zap:()=>kU,Youtube:()=>yU,XSquare:()=>i9,XOctagon:()=>U6,XCircle:()=>L7,X:()=>jU,Wrench:()=>RU,WrapText:()=>e9,Worm:()=>LU,Workflow:()=>MU,WineOff:()=>wU,Wine:()=>UU,WindArrowDown:()=>CU,Wind:()=>xU,WifiZero:()=>AU,WifiSync:()=>qU,WifiPen:()=>SU,WifiOff:()=>PU,WifiLow:()=>TU,WifiHigh:()=>OU,WifiCog:()=>BU,Wifi:()=>EU,WholeWord:()=>DU,WheatOff:()=>FU,Wheat:()=>HU,Weight:()=>NU,WebhookOff:()=>IU,Webhook:()=>zU,Webcam:()=>GU,Waypoints:()=>QU,WavesLadder:()=>WU,Waves:()=>VU,Watch:()=>XU,WashingMachine:()=>YU,Warehouse:()=>KU,WandSparkles:()=>BZ,Wand2:()=>BZ,Wand:()=>JU,Wallpaper:()=>ZU,WalletMinimal:()=>DZ,WalletCards:()=>ow,Wallet2:()=>DZ,Wallet:()=>ew,Vote:()=>tw,VolumeX:()=>rw,VolumeOff:()=>sw,Volume2:()=>lw,Volume1:()=>iw,Volume:()=>aw,Volleyball:()=>nw,Voicemail:()=>pw,View:()=>cw,Videotape:()=>dw,VideoOff:()=>mw,Video:()=>uw,VibrateOff:()=>gw,Vibrate:()=>_w,Verified:()=>b4,VenusAndMars:()=>vw,Venus:()=>$w,VenetianMask:()=>hw,Vegan:()=>bw,VectorSquare:()=>kw,Vault:()=>fw,Variable:()=>Lw,UtilityPole:()=>yw,UtensilsCrossed:()=>FZ,Utensils:()=>HZ,UsersRound:()=>NZ,Users2:()=>NZ,Users:()=>jw,UserX2:()=>IZ,UserX:()=>Mw,UserStar:()=>Uw,UserSquare2:()=>p9,UserSquare:()=>n9,UserSearch:()=>ww,UserRoundX:()=>IZ,UserRoundSearch:()=>xw,UserRoundPlus:()=>GZ,UserRoundPen:()=>Cw,UserRoundMinus:()=>VZ,UserRoundCog:()=>QZ,UserRoundCheck:()=>WZ,UserRound:()=>zZ,UserPlus2:()=>GZ,UserPlus:()=>Ew,UserPen:()=>qw,UserMinus2:()=>VZ,UserMinus:()=>Aw,UserLock:()=>Sw,UserCog2:()=>QZ,UserCog:()=>Pw,UserCircle2:()=>R7,UserCircle:()=>j7,UserCheck2:()=>WZ,UserCheck:()=>Ow,User2:()=>zZ,User:()=>Rw,Usb:()=>Tw,UploadCloud:()=>b7,Upload:()=>Dw,Unplug:()=>Bw,UnlockKeyhole:()=>T6,Unlock:()=>P6,Unlink2:()=>Fw,Unlink:()=>Hw,University:()=>XZ,Ungroup:()=>Nw,UnfoldVertical:()=>zw,UnfoldHorizontal:()=>Iw,UndoDot:()=>Gw,Undo2:()=>Qw,Undo:()=>Vw,Underline:()=>Ww,UmbrellaOff:()=>Yw,Umbrella:()=>Xw,TypeOutline:()=>Jw,Type:()=>Kw,Twitter:()=>Zw,Twitch:()=>ox,TvMinimalPlay:()=>tx,TvMinimal:()=>YZ,Tv2:()=>YZ,Tv:()=>ex,Turtle:()=>ax,Turntable:()=>rx,TurkishLira:()=>sx,TruckElectric:()=>ix,Truck:()=>lx,Trophy:()=>nx,TriangleRight:()=>px,TriangleDashed:()=>dx,TriangleAlert:()=>KZ,Triangle:()=>cx,TrendingUpDown:()=>mx,TrendingUp:()=>ux,TrendingDown:()=>gx,Trello:()=>_x,Trees:()=>$x,TreePine:()=>vx,TreePalm:()=>JZ,TreeDeciduous:()=>hx,Trash2:()=>kx,Trash:()=>bx,Transgender:()=>fx,TramFront:()=>ZZ,TrainTrack:()=>yx,TrainFrontTunnel:()=>Lx,TrainFront:()=>jx,Train:()=>ZZ,TrafficCone:()=>Rx,Tractor:()=>Mx,ToyBrick:()=>Ux,TowerControl:()=>wx,TouchpadOff:()=>Ex,Touchpad:()=>Cx,Torus:()=>xx,Tornado:()=>qx,ToolCase:()=>Ax,Toilet:()=>Sx,ToggleRight:()=>Px,ToggleLeft:()=>Tx,TimerReset:()=>Bx,TimerOff:()=>Dx,Timer:()=>Ox,TicketsPlane:()=>Fx,Tickets:()=>Hx,TicketX:()=>zx,TicketSlash:()=>Ix,TicketPlus:()=>Gx,TicketPercent:()=>Vx,TicketMinus:()=>Qx,TicketCheck:()=>Wx,Ticket:()=>Nx,ThumbsUp:()=>Xx,ThumbsDown:()=>Yx,ThermometerSun:()=>Jx,ThermometerSnowflake:()=>Zx,Thermometer:()=>Kx,Theater:()=>eC,TextWrap:()=>e9,TextSelection:()=>o9,TextSelect:()=>o9,TextSearch:()=>oC,TextQuote:()=>tC,TextInitial:()=>t9,TextCursorInput:()=>rC,TextCursor:()=>aC,TextAlignStart:()=>I5,TextAlignJustify:()=>r9,TextAlignEnd:()=>a9,TextAlignCenter:()=>s9,Text:()=>I5,TestTubes:()=>lC,TestTubeDiagonal:()=>l9,TestTube2:()=>l9,TestTube:()=>sC,TerminalSquare:()=>c9,Terminal:()=>iC,TentTree:()=>pC,Tent:()=>nC,Telescope:()=>cC,Target:()=>uC,Tangent:()=>dC,Tally5:()=>mC,Tally4:()=>_C,Tally3:()=>gC,Tally2:()=>$C,Tally1:()=>vC,Tags:()=>hC,Tag:()=>bC,Tablets:()=>kC,TabletSmartphone:()=>yC,Tablet:()=>fC,TableRowsSplit:()=>jC,TableProperties:()=>RC,TableOfContents:()=>MC,TableConfig:()=>X5,TableColumnsSplit:()=>UC,TableCellsSplit:()=>wC,TableCellsMerge:()=>xC,Table2:()=>CC,Table:()=>LC,Syringe:()=>EC,Swords:()=>qC,Sword:()=>AC,SwitchCamera:()=>SC,SwissFranc:()=>PC,SwatchBook:()=>TC,Superscript:()=>OC,Sunset:()=>BC,Sunrise:()=>DC,SunSnow:()=>FC,SunMoon:()=>NC,SunMedium:()=>zC,SunDim:()=>IC,Sun:()=>HC,Subtitles:()=>m4,Subscript:()=>GC,Strikethrough:()=>VC,StretchVertical:()=>QC,StretchHorizontal:()=>WC,Store:()=>XC,StopCircle:()=>M7,StickyNote:()=>YC,Sticker:()=>KC,Stethoscope:()=>JC,StepForward:()=>ZC,StepBack:()=>eE,Stars:()=>s6,StarOff:()=>tE,StarHalf:()=>aE,Star:()=>oE,Stamp:()=>rE,Squirrel:()=>sE,SquircleDashed:()=>iE,Squircle:()=>lE,SquaresUnite:()=>nE,SquaresSubtract:()=>cE,SquaresIntersect:()=>pE,SquaresExclude:()=>dE,SquareX:()=>i9,SquareUserRound:()=>p9,SquareUser:()=>n9,SquareTerminal:()=>c9,SquareStop:()=>mE,SquareStar:()=>_E,SquareStack:()=>gE,SquareSquare:()=>$E,SquareSplitVertical:()=>d9,SquareSplitHorizontal:()=>u9,SquareSlash:()=>m9,SquareSigma:()=>_9,SquareScissors:()=>g9,SquareRoundCorner:()=>vE,SquareRadical:()=>hE,SquarePower:()=>$9,SquarePlus:()=>v9,SquarePlay:()=>h9,SquarePilcrow:()=>b9,SquarePi:()=>k9,SquarePercent:()=>f9,SquarePen:()=>S8,SquarePause:()=>bE,SquareParkingOff:()=>L9,SquareParking:()=>y9,SquareMousePointer:()=>j9,SquareMinus:()=>R9,SquareMenu:()=>M9,SquareM:()=>U9,SquareLibrary:()=>w9,SquareKanban:()=>x9,SquareGanttChart:()=>G5,SquareFunction:()=>C9,SquareEqual:()=>E9,SquareDot:()=>q9,SquareDivide:()=>A9,SquareDashedTopSolid:()=>kE,SquareDashedMousePointer:()=>P9,SquareDashedKanban:()=>T9,SquareDashedBottomCode:()=>yE,SquareDashedBottom:()=>fE,SquareDashed:()=>S9,SquareCode:()=>O9,SquareChevronUp:()=>B9,SquareChevronRight:()=>D9,SquareChevronLeft:()=>H9,SquareChevronDown:()=>F9,SquareCheckBig:()=>z9,SquareCheck:()=>N9,SquareChartGantt:()=>G5,SquareBottomDashedScissors:()=>I9,SquareAsterisk:()=>G9,SquareArrowUpRight:()=>Q9,SquareArrowUpLeft:()=>W9,SquareArrowUp:()=>V9,SquareArrowRight:()=>X9,SquareArrowOutUpRight:()=>Y9,SquareArrowOutUpLeft:()=>K9,SquareArrowOutDownRight:()=>J9,SquareArrowOutDownLeft:()=>Z9,SquareArrowLeft:()=>e6,SquareArrowDownRight:()=>t6,SquareArrowDownLeft:()=>a6,SquareArrowDown:()=>o6,SquareActivity:()=>r6,Square:()=>uE,Sprout:()=>LE,SprayCan:()=>jE,Spotlight:()=>RE,Spool:()=>ME,SplitSquareVertical:()=>d9,SplitSquareHorizontal:()=>u9,Split:()=>UE,SplinePointer:()=>xE,Spline:()=>wE,SpellCheck2:()=>EE,SpellCheck:()=>CE,Speech:()=>qE,Speaker:()=>AE,Sparkles:()=>s6,Sparkle:()=>SE,Spade:()=>PE,Space:()=>TE,Soup:()=>OE,SortDesc:()=>R4,SortAsc:()=>y4,Sofa:()=>BE,SoapDispenserDroplet:()=>HE,Snowflake:()=>DE,Snail:()=>FE,SmilePlus:()=>zE,Smile:()=>NE,SmartphoneNfc:()=>GE,SmartphoneCharging:()=>VE,Smartphone:()=>IE,SlidersVertical:()=>l6,SlidersHorizontal:()=>QE,Sliders:()=>l6,Slice:()=>WE,SlashSquare:()=>m9,Slash:()=>XE,Slack:()=>YE,Skull:()=>KE,SkipForward:()=>JE,SkipBack:()=>ZE,Siren:()=>eq,SignpostBig:()=>tq,Signpost:()=>oq,Signature:()=>aq,SignalZero:()=>sq,SignalMedium:()=>lq,SignalLow:()=>iq,SignalHigh:()=>nq,Signal:()=>rq,SigmaSquare:()=>_9,Sigma:()=>pq,SidebarOpen:()=>y6,SidebarClose:()=>j6,Sidebar:()=>f6,Shuffle:()=>cq,Shrub:()=>dq,Shrink:()=>uq,Shrimp:()=>mq,Shredder:()=>_q,ShowerHead:()=>gq,Shovel:()=>$q,ShoppingCart:()=>vq,ShoppingBasket:()=>hq,ShoppingBag:()=>bq,Shirt:()=>kq,ShipWheel:()=>yq,Ship:()=>fq,ShieldX:()=>i6,ShieldUser:()=>jq,ShieldQuestionMark:()=>n6,ShieldQuestion:()=>n6,ShieldPlus:()=>Rq,ShieldOff:()=>Mq,ShieldMinus:()=>Uq,ShieldHalf:()=>wq,ShieldEllipsis:()=>xq,ShieldClose:()=>i6,ShieldCheck:()=>Cq,ShieldBan:()=>qq,ShieldAlert:()=>Eq,Shield:()=>Lq,Shell:()=>Sq,Sheet:()=>Aq,Share2:()=>Tq,Share:()=>Pq,Shapes:()=>Oq,Settings2:()=>Dq,Settings:()=>Bq,ServerOff:()=>Fq,ServerCrash:()=>Nq,ServerCog:()=>Iq,Server:()=>Hq,SeparatorVertical:()=>zq,SeparatorHorizontal:()=>Gq,SendToBack:()=>Qq,SendHorizontal:()=>p6,SendHorizonal:()=>p6,Send:()=>Vq,Section:()=>Wq,SearchX:()=>Yq,SearchSlash:()=>Kq,SearchCode:()=>Zq,SearchCheck:()=>Jq,Search:()=>Xq,ScrollText:()=>oA,Scroll:()=>eA,ScreenShareOff:()=>aA,ScreenShare:()=>tA,ScissorsSquareDashedBottom:()=>I9,ScissorsSquare:()=>g9,ScissorsLineDashed:()=>sA,Scissors:()=>rA,School2:()=>XZ,School:()=>lA,ScatterChart:()=>e4,ScanText:()=>nA,ScanSearch:()=>pA,ScanQrCode:()=>cA,ScanLine:()=>dA,ScanHeart:()=>uA,ScanFace:()=>mA,ScanEye:()=>_A,ScanBarcode:()=>gA,Scan:()=>iA,Scaling:()=>$A,Scale3d:()=>c6,Scale3D:()=>c6,Scale:()=>vA,SaveOff:()=>bA,SaveAll:()=>kA,Save:()=>hA,SaudiRiyal:()=>fA,SatelliteDish:()=>LA,Satellite:()=>yA,Sandwich:()=>jA,Salad:()=>RA,Sailboat:()=>MA,RussianRuble:()=>UA,RulerDimensionLine:()=>xA,Ruler:()=>wA,Rss:()=>EA,Rows4:()=>CA,Rows3:()=>d6,Rows2:()=>u6,Rows:()=>u6,Router:()=>qA,RouteOff:()=>SA,Route:()=>AA,RotateCwSquare:()=>TA,RotateCw:()=>PA,RotateCcwSquare:()=>BA,RotateCcwKey:()=>DA,RotateCcw:()=>OA,Rotate3d:()=>m6,Rotate3D:()=>m6,Rose:()=>HA,RollerCoaster:()=>FA,RockingChair:()=>NA,Rocket:()=>zA,Ribbon:()=>IA,Rewind:()=>GA,ReplyAll:()=>QA,Reply:()=>VA,ReplaceAll:()=>XA,Replace:()=>WA,Repeat2:()=>KA,Repeat1:()=>JA,Repeat:()=>YA,RemoveFormatting:()=>ZA,Regex:()=>eS,Refrigerator:()=>oS,RefreshCwOff:()=>aS,RefreshCw:()=>tS,RefreshCcwDot:()=>sS,RefreshCcw:()=>rS,RedoDot:()=>iS,Redo2:()=>nS,Redo:()=>lS,Recycle:()=>pS,RectangleVertical:()=>cS,RectangleHorizontal:()=>dS,RectangleGoggles:()=>uS,RectangleEllipsis:()=>_6,RectangleCircle:()=>mS,ReceiptTurkishLira:()=>_S,ReceiptText:()=>$S,ReceiptSwissFranc:()=>vS,ReceiptRussianRuble:()=>hS,ReceiptPoundSterling:()=>bS,ReceiptJapaneseYen:()=>kS,ReceiptIndianRupee:()=>fS,ReceiptEuro:()=>yS,ReceiptCent:()=>LS,Receipt:()=>gS,Ratio:()=>jS,Rat:()=>MS,Rainbow:()=>RS,RailSymbol:()=>US,Radius:()=>wS,RadioTower:()=>CS,RadioReceiver:()=>ES,Radio:()=>xS,Radical:()=>qS,Radiation:()=>AS,Radar:()=>SS,Rabbit:()=>PS,Quote:()=>TS,QrCode:()=>BS,Pyramid:()=>OS,Puzzle:()=>DS,Proportions:()=>HS,Projector:()=>FS,PrinterCheck:()=>zS,Printer:()=>NS,Presentation:()=>IS,PowerSquare:()=>$9,PowerOff:()=>VS,PowerCircle:()=>w7,Power:()=>GS,PoundSterling:()=>QS,Popsicle:()=>WS,Popcorn:()=>XS,PointerOff:()=>KS,Pointer:()=>YS,Podcast:()=>JS,PocketKnife:()=>eP,Pocket:()=>ZS,PlusSquare:()=>v9,PlusCircle:()=>x7,Plus:()=>oP,PlugZap2:()=>g6,PlugZap:()=>g6,Plug2:()=>aP,Plug:()=>tP,PlaySquare:()=>h9,PlayCircle:()=>C7,Play:()=>rP,PlaneTakeoff:()=>lP,PlaneLanding:()=>iP,Plane:()=>sP,Pizza:()=>nP,Pipette:()=>cP,PinOff:()=>pP,Pin:()=>dP,PillBottle:()=>mP,Pill:()=>uP,PilcrowSquare:()=>b9,PilcrowRight:()=>gP,PilcrowLeft:()=>vP,Pilcrow:()=>_P,PiggyBank:()=>$P,PieChart:()=>o4,PictureInPicture2:()=>bP,PictureInPicture:()=>hP,Pickaxe:()=>kP,Piano:()=>fP,PiSquare:()=>k9,Pi:()=>yP,PhoneOutgoing:()=>jP,PhoneOff:()=>RP,PhoneMissed:()=>MP,PhoneIncoming:()=>UP,PhoneForwarded:()=>wP,PhoneCall:()=>xP,Phone:()=>LP,PhilippinePeso:()=>CP,PersonStanding:()=>EP,PercentSquare:()=>f9,PercentDiamond:()=>_7,PercentCircle:()=>E7,Percent:()=>qP,Pentagon:()=>AP,PencilRuler:()=>PP,PencilOff:()=>TP,PencilLine:()=>OP,Pencil:()=>SP,PenTool:()=>BP,PenSquare:()=>S8,PenOff:()=>DP,PenLine:()=>v6,PenBox:()=>S8,Pen:()=>$6,PcCase:()=>HP,PawPrint:()=>FP,PauseOctagon:()=>w6,PauseCircle:()=>q7,Pause:()=>NP,PartyPopper:()=>zP,ParkingSquareOff:()=>L9,ParkingSquare:()=>y9,ParkingMeter:()=>GP,ParkingCircleOff:()=>S7,ParkingCircle:()=>A7,Parentheses:()=>IP,Paperclip:()=>VP,PanelsTopLeft:()=>h6,PanelsTopBottom:()=>d6,PanelsRightBottom:()=>QP,PanelsLeftRight:()=>$7,PanelsLeftBottom:()=>XP,PanelTopOpen:()=>YP,PanelTopInactive:()=>b6,PanelTopDashed:()=>b6,PanelTopClose:()=>KP,PanelTopBottomDashed:()=>JP,PanelTop:()=>WP,PanelRightOpen:()=>ZP,PanelRightInactive:()=>k6,PanelRightDashed:()=>k6,PanelRightClose:()=>oT,PanelRight:()=>eT,PanelLeftRightDashed:()=>tT,PanelLeftOpen:()=>y6,PanelLeftInactive:()=>L6,PanelLeftDashed:()=>L6,PanelLeftClose:()=>j6,PanelLeft:()=>f6,PanelBottomOpen:()=>rT,PanelBottomInactive:()=>R6,PanelBottomDashed:()=>R6,PanelBottomClose:()=>sT,PanelBottom:()=>aT,Panda:()=>lT,Palmtree:()=>JZ,Palette:()=>iT,PaintbrushVertical:()=>M6,Paintbrush2:()=>M6,Paintbrush:()=>nT,PaintRoller:()=>pT,PaintBucket:()=>cT,PackageX:()=>uT,PackageSearch:()=>mT,PackagePlus:()=>_T,PackageOpen:()=>gT,PackageMinus:()=>$T,PackageCheck:()=>vT,Package2:()=>hT,Package:()=>dT,Outdent:()=>Q5,Origami:()=>bT,Orbit:()=>kT,Option:()=>fT,Omega:()=>yT,OctagonX:()=>U6,OctagonPause:()=>w6,OctagonMinus:()=>jT,OctagonAlert:()=>x6,Octagon:()=>LT,NutOff:()=>MT,Nut:()=>RT,NotepadTextDashed:()=>wT,NotepadText:()=>UT,NotebookText:()=>CT,NotebookTabs:()=>ET,NotebookPen:()=>qT,Notebook:()=>xT,NonBinary:()=>AT,Nfc:()=>ST,Newspaper:()=>PT,Network:()=>TT,NavigationOff:()=>BT,Navigation2Off:()=>HT,Navigation2:()=>DT,Navigation:()=>OT,Music4:()=>NT,Music3:()=>zT,Music2:()=>IT,Music:()=>FT,MoveVertical:()=>VT,MoveUpRight:()=>WT,MoveUpLeft:()=>XT,MoveUp:()=>QT,MoveRight:()=>YT,MoveLeft:()=>KT,MoveHorizontal:()=>JT,MoveDownRight:()=>e2,MoveDownLeft:()=>o2,MoveDown:()=>ZT,MoveDiagonal2:()=>a2,MoveDiagonal:()=>t2,Move3d:()=>C6,Move3D:()=>C6,Move:()=>GT,MousePointerSquareDashed:()=>P9,MousePointerClick:()=>l2,MousePointerBan:()=>i2,MousePointer2:()=>n2,MousePointer:()=>s2,MouseOff:()=>p2,Mouse:()=>r2,MountainSnow:()=>d2,Mountain:()=>c2,Motorbike:()=>u2,MoreVertical:()=>u7,MoreHorizontal:()=>d7,MoonStar:()=>_2,Moon:()=>m2,MonitorX:()=>$2,MonitorUp:()=>v2,MonitorStop:()=>h2,MonitorSpeaker:()=>b2,MonitorSmartphone:()=>k2,MonitorPlay:()=>f2,MonitorPause:()=>y2,MonitorOff:()=>L2,MonitorDown:()=>j2,MonitorDot:()=>R2,MonitorCog:()=>M2,MonitorCloud:()=>U2,MonitorCheck:()=>w2,Monitor:()=>g2,MinusSquare:()=>R9,MinusCircle:()=>P7,Minus:()=>x2,Minimize2:()=>E2,Minimize:()=>C2,MilkOff:()=>q2,Milk:()=>A2,Milestone:()=>S2,Microwave:()=>P2,Microscope:()=>T2,Microchip:()=>O2,MicVocal:()=>E6,MicOff:()=>D2,Mic2:()=>E6,Mic:()=>B2,MessagesSquare:()=>H2,MessageSquareX:()=>N2,MessageSquareWarning:()=>z2,MessageSquareText:()=>I2,MessageSquareShare:()=>V2,MessageSquareReply:()=>G2,MessageSquareQuote:()=>Q2,MessageSquarePlus:()=>W2,MessageSquareOff:()=>X2,MessageSquareMore:()=>Y2,MessageSquareLock:()=>K2,MessageSquareHeart:()=>J2,MessageSquareDot:()=>Z2,MessageSquareDiff:()=>eO,MessageSquareDashed:()=>oO,MessageSquareCode:()=>tO,MessageSquare:()=>F2,MessageCircleX:()=>rO,MessageCircleWarning:()=>sO,MessageCircleReply:()=>lO,MessageCircleQuestionMark:()=>q6,MessageCircleQuestion:()=>q6,MessageCirclePlus:()=>iO,MessageCircleOff:()=>nO,MessageCircleMore:()=>pO,MessageCircleHeart:()=>cO,MessageCircleDashed:()=>dO,MessageCircleCode:()=>uO,MessageCircle:()=>aO,Merge:()=>mO,MenuSquare:()=>M9,Menu:()=>_O,MemoryStick:()=>gO,Meh:()=>$O,MegaphoneOff:()=>hO,Megaphone:()=>vO,Medal:()=>bO,Maximize2:()=>fO,Maximize:()=>kO,Martini:()=>yO,MarsStroke:()=>jO,Mars:()=>LO,MapPlus:()=>RO,MapPinned:()=>UO,MapPinXInside:()=>CO,MapPinX:()=>xO,MapPinPlusInside:()=>qO,MapPinPlus:()=>EO,MapPinPen:()=>A6,MapPinOff:()=>AO,MapPinMinusInside:()=>SO,MapPinMinus:()=>PO,MapPinHouse:()=>TO,MapPinCheckInside:()=>BO,MapPinCheck:()=>OO,MapPin:()=>wO,MapMinus:()=>DO,Map:()=>MO,Mails:()=>HO,Mailbox:()=>FO,MailX:()=>zO,MailWarning:()=>IO,MailSearch:()=>GO,MailQuestionMark:()=>S6,MailQuestion:()=>S6,MailPlus:()=>VO,MailOpen:()=>QO,MailMinus:()=>WO,MailCheck:()=>XO,Mail:()=>NO,Magnet:()=>YO,MSquare:()=>U9,Luggage:()=>KO,Lollipop:()=>JO,Logs:()=>ZO,LogOut:()=>eB,LogIn:()=>oB,LockOpen:()=>P6,LockKeyholeOpen:()=>T6,LockKeyhole:()=>aB,Lock:()=>tB,LocationEdit:()=>A6,LocateOff:()=>sB,LocateFixed:()=>lB,Locate:()=>rB,LoaderPinwheel:()=>nB,LoaderCircle:()=>O6,Loader2:()=>O6,Loader:()=>iB,ListX:()=>cB,ListVideo:()=>dB,ListTree:()=>uB,ListTodo:()=>mB,ListStart:()=>_B,ListRestart:()=>$B,ListPlus:()=>vB,ListOrdered:()=>gB,ListMusic:()=>hB,ListMinus:()=>bB,ListIndentIncrease:()=>V5,ListIndentDecrease:()=>Q5,ListFilterPlus:()=>kB,ListFilter:()=>fB,ListEnd:()=>yB,ListCollapse:()=>LB,ListChevronsUpDown:()=>jB,ListChevronsDownUp:()=>RB,ListChecks:()=>MB,ListCheck:()=>UB,List:()=>pB,Linkedin:()=>wB,Link2Off:()=>EB,Link2:()=>CB,Link:()=>xB,LineSquiggle:()=>qB,LineChart:()=>s4,LightbulbOff:()=>SB,Lightbulb:()=>AB,Ligature:()=>PB,LifeBuoy:()=>OB,LibrarySquare:()=>w9,LibraryBig:()=>BB,Library:()=>TB,LetterText:()=>t9,Lectern:()=>DB,LeafyGreen:()=>HB,Leaf:()=>FB,LayoutTemplate:()=>NB,LayoutPanelTop:()=>zB,LayoutPanelLeft:()=>IB,LayoutList:()=>GB,LayoutGrid:()=>VB,LayoutDashboard:()=>QB,Layout:()=>h6,Layers3:()=>B6,Layers2:()=>WB,Layers:()=>B6,Laugh:()=>XB,LassoSelect:()=>KB,Lasso:()=>YB,LaptopMinimalCheck:()=>ZB,LaptopMinimal:()=>D6,Laptop2:()=>D6,Laptop:()=>JB,Languages:()=>eD,Landmark:()=>oD,LandPlot:()=>tD,LampWallUp:()=>rD,LampWallDown:()=>sD,LampFloor:()=>lD,LampDesk:()=>iD,LampCeiling:()=>nD,Lamp:()=>aD,KeyboardOff:()=>cD,KeyboardMusic:()=>dD,Keyboard:()=>pD,KeySquare:()=>mD,KeyRound:()=>_D,Key:()=>uD,Kayak:()=>gD,KanbanSquareDashed:()=>T9,KanbanSquare:()=>x9,Kanban:()=>$D,Joystick:()=>vD,JapaneseYen:()=>hD,IterationCw:()=>bD,IterationCcw:()=>fD,Italic:()=>yD,Instagram:()=>kD,InspectionPanel:()=>LD,Inspect:()=>j9,Info:()=>RD,Infinity:()=>jD,IndianRupee:()=>MD,IndentIncrease:()=>V5,IndentDecrease:()=>Q5,Indent:()=>V5,Inbox:()=>UD,Import:()=>wD,Images:()=>xD,ImageUpscale:()=>ED,ImageUp:()=>qD,ImagePlus:()=>AD,ImagePlay:()=>SD,ImageOff:()=>PD,ImageMinus:()=>TD,ImageDown:()=>OD,Image:()=>CD,IdCardLanyard:()=>BD,IdCard:()=>DD,IceCreamCone:()=>H6,IceCreamBowl:()=>F6,IceCream2:()=>F6,IceCream:()=>H6,HouseWifi:()=>FD,HousePlus:()=>HD,HousePlug:()=>zD,HouseHeart:()=>ND,House:()=>N6,Hourglass:()=>ID,Hotel:()=>GD,Hospital:()=>VD,HopOff:()=>WD,Hop:()=>QD,Home:()=>N6,History:()=>XD,Highlighter:()=>KD,Hexagon:()=>YD,HelpingHand:()=>z6,HelpCircle:()=>Y5,Heater:()=>JD,HeartPulse:()=>eH,HeartPlus:()=>oH,HeartOff:()=>tH,HeartMinus:()=>aH,HeartHandshake:()=>rH,HeartCrack:()=>sH,Heart:()=>ZD,Headset:()=>lH,Headphones:()=>iH,HeadphoneOff:()=>nH,Heading6:()=>cH,Heading5:()=>dH,Heading4:()=>uH,Heading3:()=>mH,Heading2:()=>_H,Heading1:()=>gH,Heading:()=>pH,HdmiPort:()=>$H,Haze:()=>vH,HatGlasses:()=>hH,Hash:()=>bH,HardHat:()=>kH,HardDriveUpload:()=>yH,HardDriveDownload:()=>LH,HardDrive:()=>fH,Handshake:()=>jH,Handbag:()=>RH,HandPlatter:()=>UH,HandMetal:()=>wH,HandHelping:()=>z6,HandHeart:()=>xH,HandGrab:()=>I6,HandFist:()=>CH,HandCoins:()=>EH,Hand:()=>MH,Hammer:()=>qH,Hamburger:()=>AH,Ham:()=>SH,Guitar:()=>PH,Group:()=>TH,GripVertical:()=>BH,GripHorizontal:()=>DH,Grip:()=>OH,Grid3x3:()=>W5,Grid3x2:()=>HH,Grid3X3:()=>W5,Grid2x2X:()=>V6,Grid2x2Plus:()=>Q6,Grid2x2Check:()=>W6,Grid2x2:()=>G6,Grid2X2X:()=>V6,Grid2X2Plus:()=>Q6,Grid2X2Check:()=>W6,Grid2X2:()=>G6,Grid:()=>W5,Grape:()=>FH,GraduationCap:()=>NH,Grab:()=>I6,Gpu:()=>zH,Goal:()=>IH,GlobeLock:()=>VH,Globe2:()=>m7,Globe:()=>GH,Glasses:()=>QH,GlassWater:()=>WH,Gitlab:()=>XH,Github:()=>YH,GitPullRequestDraft:()=>JH,GitPullRequestCreateArrow:()=>oF,GitPullRequestCreate:()=>ZH,GitPullRequestClosed:()=>eF,GitPullRequestArrow:()=>tF,GitPullRequest:()=>KH,GitMerge:()=>aF,GitGraph:()=>rF,GitFork:()=>sF,GitCompareArrows:()=>iF,GitCompare:()=>lF,GitCommitVertical:()=>nF,GitCommitHorizontal:()=>X6,GitCommit:()=>X6,GitBranchPlus:()=>cF,GitBranch:()=>pF,Gift:()=>dF,Ghost:()=>uF,GeorgianLari:()=>mF,Gem:()=>_F,Gavel:()=>gF,GaugeCircle:()=>T7,Gauge:()=>$F,GanttChartSquare:()=>G5,GanttChart:()=>t4,GamepadDirectional:()=>hF,Gamepad2:()=>bF,Gamepad:()=>vF,GalleryVerticalEnd:()=>fF,GalleryVertical:()=>kF,GalleryThumbnails:()=>yF,GalleryHorizontalEnd:()=>jF,GalleryHorizontal:()=>LF,FunnelX:()=>K6,FunnelPlus:()=>RF,Funnel:()=>Y6,FunctionSquare:()=>C9,Fullscreen:()=>MF,Fuel:()=>UF,Frown:()=>wF,Framer:()=>xF,Frame:()=>CF,Forward:()=>EF,FormInput:()=>_6,Forklift:()=>qF,ForkKnifeCrossed:()=>FZ,ForkKnife:()=>HZ,Footprints:()=>AF,Folders:()=>SF,FolderX:()=>TF,FolderUp:()=>OF,FolderTree:()=>BF,FolderSync:()=>DF,FolderSymlink:()=>HF,FolderSearch2:()=>NF,FolderSearch:()=>FF,FolderRoot:()=>zF,FolderPlus:()=>IF,FolderPen:()=>J6,FolderOutput:()=>GF,FolderOpenDot:()=>QF,FolderOpen:()=>VF,FolderMinus:()=>WF,FolderLock:()=>XF,FolderKey:()=>YF,FolderKanban:()=>KF,FolderInput:()=>JF,FolderHeart:()=>ZF,FolderGit2:()=>tN,FolderGit:()=>eN,FolderEdit:()=>J6,FolderDown:()=>oN,FolderDot:()=>aN,FolderCog2:()=>Z6,FolderCog:()=>Z6,FolderCode:()=>rN,FolderClosed:()=>sN,FolderClock:()=>lN,FolderCheck:()=>iN,FolderArchive:()=>nN,Folder:()=>PF,FoldVertical:()=>pN,FoldHorizontal:()=>cN,Focus:()=>dN,Flower2:()=>mN,Flower:()=>uN,FlipVertical2:()=>gN,FlipVertical:()=>_N,FlipHorizontal2:()=>vN,FlipHorizontal:()=>$N,FlaskRound:()=>hN,FlaskConicalOff:()=>kN,FlaskConical:()=>bN,FlashlightOff:()=>yN,Flashlight:()=>fN,FlameKindling:()=>jN,Flame:()=>LN,FlagTriangleRight:()=>MN,FlagTriangleLeft:()=>UN,FlagOff:()=>xN,Flag:()=>RN,FishSymbol:()=>CN,FishOff:()=>EN,Fish:()=>wN,FireExtinguisher:()=>qN,Fingerprint:()=>AN,FilterX:()=>K6,Filter:()=>Y6,Film:()=>SN,Files:()=>TN,FileX2:()=>BN,FileX:()=>ON,FileWarning:()=>DN,FileVolume2:()=>FN,FileVolume:()=>HN,FileVideoCamera:()=>e7,FileVideo2:()=>e7,FileVideo:()=>t7,FileUser:()=>NN,FileUp:()=>zN,FileType2:()=>GN,FileType:()=>IN,FileText:()=>VN,FileTerminal:()=>QN,FileSymlink:()=>WN,FileStack:()=>XN,FileSpreadsheet:()=>YN,FileSliders:()=>KN,FileSignature:()=>r7,FileSearch2:()=>ZN,FileSearch:()=>JN,FileScan:()=>ez,FileQuestionMark:()=>o7,FileQuestion:()=>o7,FilePlus2:()=>oz,FilePlus:()=>tz,FilePlay:()=>t7,FilePieChart:()=>i7,FilePenLine:()=>r7,FilePen:()=>a7,FileOutput:()=>az,FileMusic:()=>rz,FileMinus2:()=>sz,FileMinus:()=>lz,FileLock2:()=>nz,FileLock:()=>iz,FileLineChart:()=>l7,FileKey2:()=>cz,FileKey:()=>pz,FileJson2:()=>uz,FileJson:()=>dz,FileInput:()=>mz,FileImage:()=>_z,FileHeart:()=>gz,FileEdit:()=>a7,FileDown:()=>$z,FileDigit:()=>vz,FileDiff:()=>hz,FileCog2:()=>s7,FileCog:()=>s7,FileCode2:()=>kz,FileCode:()=>bz,FileClock:()=>fz,FileCheck2:()=>Lz,FileCheck:()=>yz,FileChartPie:()=>i7,FileChartLine:()=>l7,FileChartColumnIncreasing:()=>p7,FileChartColumn:()=>n7,FileBox:()=>Rz,FileBarChart2:()=>n7,FileBarChart:()=>p7,FileBadge2:()=>Mz,FileBadge:()=>jz,FileAxis3d:()=>c7,FileAxis3D:()=>c7,FileAudio2:()=>wz,FileAudio:()=>Uz,FileArchive:()=>xz,File:()=>PN,Figma:()=>Cz,FerrisWheel:()=>Ez,Fence:()=>qz,Feather:()=>Az,FastForward:()=>Sz,Fan:()=>Pz,Factory:()=>Tz,Facebook:()=>Oz,EyeOff:()=>Hz,EyeClosed:()=>Fz,Eye:()=>Bz,ExternalLink:()=>Dz,Expand:()=>Nz,EvCharger:()=>zz,Euro:()=>Iz,EthernetPort:()=>Gz,Eraser:()=>Vz,EqualSquare:()=>E9,EqualNot:()=>Wz,EqualApproximately:()=>Xz,Equal:()=>Qz,EllipsisVertical:()=>u7,Ellipsis:()=>d7,EggOff:()=>Kz,EggFried:()=>Jz,Egg:()=>Yz,Edit3:()=>v6,Edit2:()=>$6,Edit:()=>S8,Eclipse:()=>Zz,EarthLock:()=>oI,Earth:()=>m7,EarOff:()=>tI,Ear:()=>eI,Dumbbell:()=>aI,Drumstick:()=>rI,Drum:()=>lI,Droplets:()=>sI,DropletOff:()=>nI,Droplet:()=>iI,Drone:()=>pI,Drill:()=>cI,Dribbble:()=>dI,Drama:()=>uI,DraftingCompass:()=>mI,DownloadCloud:()=>k7,Download:()=>_I,DotSquare:()=>q9,Dot:()=>gI,DoorOpen:()=>$I,DoorClosedLocked:()=>hI,DoorClosed:()=>vI,Donut:()=>bI,DollarSign:()=>kI,Dog:()=>fI,Dock:()=>yI,DnaOff:()=>jI,Dna:()=>LI,DivideSquare:()=>A9,DivideCircle:()=>O7,Divide:()=>RI,DiscAlbum:()=>UI,Disc3:()=>wI,Disc2:()=>xI,Disc:()=>MI,Diff:()=>CI,Dices:()=>qI,Dice6:()=>EI,Dice5:()=>AI,Dice4:()=>SI,Dice3:()=>PI,Dice2:()=>TI,Dice1:()=>OI,DiamondPlus:()=>DI,DiamondPercent:()=>_7,DiamondMinus:()=>HI,Diamond:()=>BI,Diameter:()=>FI,Dessert:()=>zI,Delete:()=>NI,DecimalsArrowRight:()=>II,DecimalsArrowLeft:()=>VI,DatabaseZap:()=>WI,DatabaseBackup:()=>QI,Database:()=>GI,Dam:()=>XI,Cylinder:()=>YI,Currency:()=>KI,CurlyBraces:()=>_4,CupSoda:()=>JI,Cuboid:()=>ZI,Crown:()=>e3,Crosshair:()=>o3,Cross:()=>t3,Crop:()=>a3,Croissant:()=>r3,CreditCard:()=>s3,CreativeCommons:()=>l3,Cpu:()=>i3,CornerUpRight:()=>n3,CornerUpLeft:()=>p3,CornerRightUp:()=>c3,CornerRightDown:()=>d3,CornerLeftUp:()=>u3,CornerLeftDown:()=>m3,CornerDownRight:()=>g3,CornerDownLeft:()=>_3,Copyright:()=>$3,Copyleft:()=>v3,CopyX:()=>b3,CopySlash:()=>k3,CopyPlus:()=>f3,CopyMinus:()=>y3,CopyCheck:()=>L3,Copy:()=>h3,CookingPot:()=>j3,Cookie:()=>R3,Contrast:()=>M3,Container:()=>w3,ContactRound:()=>g7,Contact2:()=>g7,Contact:()=>U3,Construction:()=>x3,Cone:()=>C3,ConciergeBell:()=>E3,Computer:()=>q3,Component:()=>A3,Compass:()=>P3,Command:()=>S3,Combine:()=>T3,ColumnsSettings:()=>X5,Columns4:()=>O3,Columns3Cog:()=>X5,Columns3:()=>$7,Columns2:()=>v7,Columns:()=>v7,Coins:()=>B3,Cog:()=>D3,Coffee:()=>H3,Codesandbox:()=>F3,Codepen:()=>N3,CodeXml:()=>h7,CodeSquare:()=>O9,Code2:()=>h7,Code:()=>z3,Club:()=>I3,Clover:()=>G3,Cloudy:()=>V3,CloudUpload:()=>b7,CloudSunRain:()=>X3,CloudSun:()=>W3,CloudSnow:()=>Y3,CloudRainWind:()=>J3,CloudRain:()=>K3,CloudOff:()=>eG,CloudMoonRain:()=>oG,CloudMoon:()=>Z3,CloudLightning:()=>tG,CloudHail:()=>aG,CloudFog:()=>rG,CloudDrizzle:()=>sG,CloudDownload:()=>k7,CloudCog:()=>lG,CloudCheck:()=>iG,CloudAlert:()=>nG,Cloud:()=>Q3,ClosedCaption:()=>pG,ClockPlus:()=>dG,ClockFading:()=>uG,ClockArrowUp:()=>mG,ClockArrowDown:()=>_G,ClockAlert:()=>gG,Clock9:()=>$G,Clock8:()=>vG,Clock7:()=>hG,Clock6:()=>bG,Clock5:()=>kG,Clock4:()=>fG,Clock3:()=>yG,Clock2:()=>LG,Clock12:()=>jG,Clock11:()=>RG,Clock10:()=>MG,Clock1:()=>UG,Clock:()=>cG,ClipboardX:()=>CG,ClipboardType:()=>EG,ClipboardSignature:()=>y7,ClipboardPlus:()=>xG,ClipboardPenLine:()=>y7,ClipboardPen:()=>f7,ClipboardPaste:()=>qG,ClipboardMinus:()=>AG,ClipboardList:()=>SG,ClipboardEdit:()=>f7,ClipboardCopy:()=>PG,ClipboardClock:()=>TG,ClipboardCheck:()=>OG,Clipboard:()=>wG,Clapperboard:()=>BG,Citrus:()=>DG,CircuitBoard:()=>HG,CircleX:()=>L7,CircleUserRound:()=>R7,CircleUser:()=>j7,CircleStop:()=>M7,CircleStar:()=>NG,CircleSmall:()=>zG,CircleSlashed:()=>U7,CircleSlash2:()=>U7,CircleSlash:()=>IG,CircleQuestionMark:()=>Y5,CirclePower:()=>w7,CirclePoundSterling:()=>GG,CirclePlus:()=>x7,CirclePlay:()=>C7,CirclePercent:()=>E7,CirclePause:()=>q7,CircleParkingOff:()=>S7,CircleParking:()=>A7,CircleOff:()=>VG,CircleMinus:()=>P7,CircleHelp:()=>Y5,CircleGauge:()=>T7,CircleFadingPlus:()=>QG,CircleFadingArrowUp:()=>WG,CircleEqual:()=>XG,CircleEllipsis:()=>YG,CircleDotDashed:()=>JG,CircleDot:()=>KG,CircleDollarSign:()=>ZG,CircleDivide:()=>O7,CircleDashed:()=>eV,CircleChevronUp:()=>B7,CircleChevronRight:()=>D7,CircleChevronLeft:()=>H7,CircleChevronDown:()=>N7,CircleCheckBig:()=>z7,CircleCheck:()=>F7,CircleArrowUp:()=>I7,CircleArrowRight:()=>G7,CircleArrowOutUpRight:()=>V7,CircleArrowOutUpLeft:()=>Q7,CircleArrowOutDownRight:()=>W7,CircleArrowOutDownLeft:()=>X7,CircleArrowLeft:()=>Y7,CircleArrowDown:()=>K7,CircleAlert:()=>J7,Circle:()=>FG,CigaretteOff:()=>tV,Cigarette:()=>oV,Church:()=>aV,Chromium:()=>Z7,Chrome:()=>Z7,ChevronsUpDown:()=>rV,ChevronsUp:()=>sV,ChevronsRightLeft:()=>iV,ChevronsRight:()=>lV,ChevronsLeftRightEllipsis:()=>cV,ChevronsLeftRight:()=>pV,ChevronsLeft:()=>nV,ChevronsDownUp:()=>uV,ChevronsDown:()=>dV,ChevronUpSquare:()=>B9,ChevronUpCircle:()=>B7,ChevronUp:()=>_V,ChevronRightSquare:()=>D9,ChevronRightCircle:()=>D7,ChevronRight:()=>gV,ChevronLeftSquare:()=>H9,ChevronLeftCircle:()=>H7,ChevronLeft:()=>mV,ChevronLast:()=>$V,ChevronFirst:()=>vV,ChevronDownSquare:()=>F9,ChevronDownCircle:()=>N7,ChevronDown:()=>hV,Cherry:()=>bV,ChefHat:()=>kV,CheckSquare2:()=>N9,CheckSquare:()=>z9,CheckLine:()=>fV,CheckCircle2:()=>F7,CheckCircle:()=>z7,CheckCheck:()=>LV,Check:()=>yV,ChartSpline:()=>jV,ChartScatter:()=>e4,ChartPie:()=>o4,ChartNoAxesGantt:()=>t4,ChartNoAxesCombined:()=>RV,ChartNoAxesColumnIncreasing:()=>r4,ChartNoAxesColumnDecreasing:()=>MV,ChartNoAxesColumn:()=>a4,ChartNetwork:()=>UV,ChartLine:()=>s4,ChartGantt:()=>wV,ChartColumnStacked:()=>xV,ChartColumnIncreasing:()=>i4,ChartColumnDecreasing:()=>CV,ChartColumnBig:()=>n4,ChartColumn:()=>l4,ChartCandlestick:()=>p4,ChartBarStacked:()=>EV,ChartBarIncreasing:()=>qV,ChartBarDecreasing:()=>AV,ChartBarBig:()=>d4,ChartBar:()=>c4,ChartArea:()=>u4,Cctv:()=>SV,Cat:()=>PV,Castle:()=>TV,Cast:()=>BV,CassetteTape:()=>OV,CaseUpper:()=>DV,CaseSensitive:()=>HV,CaseLower:()=>FV,Carrot:()=>zV,CardSim:()=>NV,Caravan:()=>IV,CarTaxiFront:()=>VV,CarFront:()=>QV,Car:()=>GV,CaptionsOff:()=>WV,Captions:()=>m4,Cannabis:()=>XV,CandyOff:()=>KV,CandyCane:()=>JV,Candy:()=>YV,CandlestickChart:()=>p4,CameraOff:()=>ZV,Camera:()=>eQ,CalendarX2:()=>aQ,CalendarX:()=>tQ,CalendarSync:()=>rQ,CalendarSearch:()=>sQ,CalendarRange:()=>lQ,CalendarPlus2:()=>nQ,CalendarPlus:()=>iQ,CalendarOff:()=>pQ,CalendarMinus2:()=>dQ,CalendarMinus:()=>cQ,CalendarHeart:()=>uQ,CalendarFold:()=>mQ,CalendarDays:()=>_Q,CalendarCog:()=>gQ,CalendarClock:()=>$Q,CalendarCheck2:()=>hQ,CalendarCheck:()=>vQ,CalendarArrowUp:()=>bQ,CalendarArrowDown:()=>kQ,Calendar1:()=>fQ,Calendar:()=>oQ,Calculator:()=>yQ,CakeSlice:()=>jQ,Cake:()=>LQ,CableCar:()=>MQ,Cable:()=>RQ,BusFront:()=>wQ,Bus:()=>UQ,Building2:()=>CQ,Building:()=>xQ,BugPlay:()=>qQ,BugOff:()=>AQ,Bug:()=>EQ,Bubbles:()=>SQ,BrushCleaning:()=>TQ,Brush:()=>PQ,BringToFront:()=>OQ,BriefcaseMedical:()=>DQ,BriefcaseConveyorBelt:()=>HQ,BriefcaseBusiness:()=>FQ,Briefcase:()=>BQ,BrickWallShield:()=>zQ,BrickWallFire:()=>IQ,BrickWall:()=>NQ,BrainCog:()=>VQ,BrainCircuit:()=>QQ,Brain:()=>GQ,Brackets:()=>WQ,Braces:()=>_4,Boxes:()=>XQ,BoxSelect:()=>S9,Box:()=>YQ,BowArrow:()=>KQ,BottleWine:()=>JQ,BotOff:()=>eW,BotMessageSquare:()=>tW,Bot:()=>ZQ,BoomBox:()=>oW,BookmarkX:()=>rW,BookmarkPlus:()=>sW,BookmarkMinus:()=>lW,BookmarkCheck:()=>iW,Bookmark:()=>aW,BookX:()=>pW,BookUser:()=>cW,BookUp2:()=>uW,BookUp:()=>dW,BookType:()=>mW,BookText:()=>_W,BookTemplate:()=>g4,BookPlus:()=>gW,BookOpenText:()=>vW,BookOpenCheck:()=>hW,BookOpen:()=>$W,BookMinus:()=>bW,BookMarked:()=>kW,BookLock:()=>fW,BookKey:()=>yW,BookImage:()=>LW,BookHeart:()=>jW,BookHeadphones:()=>MW,BookDown:()=>RW,BookDashed:()=>g4,BookCopy:()=>UW,BookCheck:()=>wW,BookAudio:()=>xW,BookAlert:()=>CW,BookA:()=>EW,Book:()=>nW,Bone:()=>qW,Bomb:()=>AW,Bolt:()=>SW,Bold:()=>TW,BluetoothSearching:()=>PW,BluetoothOff:()=>BW,BluetoothConnected:()=>DW,Bluetooth:()=>OW,Blocks:()=>HW,Blinds:()=>NW,Blend:()=>zW,Bitcoin:()=>FW,Birdhouse:()=>IW,Bird:()=>GW,Biohazard:()=>VW,Binoculars:()=>QW,Binary:()=>WW,Bike:()=>XW,BicepsFlexed:()=>YW,BetweenVerticalStart:()=>KW,BetweenVerticalEnd:()=>JW,BetweenHorizontalStart:()=>$4,BetweenHorizontalEnd:()=>v4,BetweenHorizonalStart:()=>$4,BetweenHorizonalEnd:()=>v4,BellRing:()=>eX,BellPlus:()=>oX,BellOff:()=>tX,BellMinus:()=>aX,BellElectric:()=>sX,BellDot:()=>rX,Bell:()=>ZW,BeerOff:()=>iX,Beer:()=>lX,Beef:()=>pX,BedSingle:()=>cX,BedDouble:()=>uX,Bed:()=>nX,BeanOff:()=>mX,Bean:()=>dX,Beaker:()=>_X,BatteryWarning:()=>$X,BatteryPlus:()=>hX,BatteryMedium:()=>vX,BatteryLow:()=>bX,BatteryFull:()=>kX,BatteryCharging:()=>fX,Battery:()=>gX,Bath:()=>yX,Baseline:()=>LX,Barrel:()=>jX,Barcode:()=>RX,BarChartHorizontalBig:()=>d4,BarChartHorizontal:()=>c4,BarChartBig:()=>n4,BarChart4:()=>i4,BarChart3:()=>l4,BarChart2:()=>a4,BarChart:()=>r4,BanknoteX:()=>wX,BanknoteArrowUp:()=>UX,BanknoteArrowDown:()=>xX,Banknote:()=>MX,Bandage:()=>CX,Banana:()=>EX,Ban:()=>qX,BaggageClaim:()=>AX,BadgeX:()=>PX,BadgeTurkishLira:()=>TX,BadgeSwissFranc:()=>OX,BadgeRussianRuble:()=>BX,BadgeQuestionMark:()=>h4,BadgePoundSterling:()=>DX,BadgePlus:()=>HX,BadgePercent:()=>FX,BadgeMinus:()=>NX,BadgeJapaneseYen:()=>zX,BadgeInfo:()=>IX,BadgeIndianRupee:()=>GX,BadgeHelp:()=>h4,BadgeEuro:()=>VX,BadgeDollarSign:()=>QX,BadgeCheck:()=>b4,BadgeCent:()=>WX,BadgeAlert:()=>XX,Badge:()=>SX,Backpack:()=>YX,Baby:()=>KX,Axis3d:()=>k4,Axis3D:()=>k4,Axe:()=>JX,Award:()=>ZX,AudioWaveform:()=>eY,AudioLines:()=>oY,Atom:()=>tY,AtSign:()=>aY,AsteriskSquare:()=>G9,Asterisk:()=>rY,ArrowsUpFromLine:()=>sY,ArrowUpZa:()=>f4,ArrowUpZA:()=>f4,ArrowUpWideNarrow:()=>iY,ArrowUpToLine:()=>nY,ArrowUpSquare:()=>V9,ArrowUpRightSquare:()=>Q9,ArrowUpRightFromSquare:()=>Y9,ArrowUpRightFromCircle:()=>V7,ArrowUpRight:()=>pY,ArrowUpNarrowWide:()=>y4,ArrowUpLeftSquare:()=>W9,ArrowUpLeftFromSquare:()=>K9,ArrowUpLeftFromCircle:()=>Q7,ArrowUpLeft:()=>cY,ArrowUpFromLine:()=>dY,ArrowUpFromDot:()=>uY,ArrowUpDown:()=>mY,ArrowUpCircle:()=>I7,ArrowUpAz:()=>L4,ArrowUpAZ:()=>L4,ArrowUp10:()=>_Y,ArrowUp01:()=>gY,ArrowUp:()=>lY,ArrowRightToLine:()=>vY,ArrowRightSquare:()=>X9,ArrowRightLeft:()=>hY,ArrowRightFromLine:()=>bY,ArrowRightCircle:()=>G7,ArrowRight:()=>$Y,ArrowLeftToLine:()=>fY,ArrowLeftSquare:()=>e6,ArrowLeftRight:()=>LY,ArrowLeftFromLine:()=>yY,ArrowLeftCircle:()=>Y7,ArrowLeft:()=>kY,ArrowDownZa:()=>j4,ArrowDownZA:()=>j4,ArrowDownWideNarrow:()=>R4,ArrowDownUp:()=>RY,ArrowDownToLine:()=>MY,ArrowDownToDot:()=>UY,ArrowDownSquare:()=>o6,ArrowDownRightSquare:()=>t6,ArrowDownRightFromSquare:()=>J9,ArrowDownRightFromCircle:()=>W7,ArrowDownRight:()=>wY,ArrowDownNarrowWide:()=>xY,ArrowDownLeftSquare:()=>a6,ArrowDownLeftFromSquare:()=>Z9,ArrowDownLeftFromCircle:()=>X7,ArrowDownLeft:()=>CY,ArrowDownFromLine:()=>EY,ArrowDownCircle:()=>K7,ArrowDownAz:()=>M4,ArrowDownAZ:()=>M4,ArrowDown10:()=>qY,ArrowDown01:()=>AY,ArrowDown:()=>jY,ArrowBigUpDash:()=>PY,ArrowBigUp:()=>SY,ArrowBigRightDash:()=>OY,ArrowBigRight:()=>TY,ArrowBigLeftDash:()=>DY,ArrowBigLeft:()=>BY,ArrowBigDownDash:()=>FY,ArrowBigDown:()=>HY,Armchair:()=>NY,AreaChart:()=>u4,ArchiveX:()=>IY,ArchiveRestore:()=>GY,Archive:()=>zY,Apple:()=>VY,AppWindowMac:()=>WY,AppWindow:()=>QY,Aperture:()=>XY,Anvil:()=>YY,Antenna:()=>KY,Annoyed:()=>JY,Angry:()=>ZY,Anchor:()=>eK,Amphora:()=>oK,Ampersands:()=>tK,Ampersand:()=>aK,Ambulance:()=>rK,AlignVerticalSpaceBetween:()=>sK,AlignVerticalSpaceAround:()=>lK,AlignVerticalJustifyStart:()=>iK,AlignVerticalJustifyEnd:()=>nK,AlignVerticalJustifyCenter:()=>pK,AlignVerticalDistributeStart:()=>cK,AlignVerticalDistributeEnd:()=>dK,AlignVerticalDistributeCenter:()=>uK,AlignStartVertical:()=>mK,AlignStartHorizontal:()=>_K,AlignRight:()=>a9,AlignLeft:()=>I5,AlignJustify:()=>r9,AlignHorizontalSpaceBetween:()=>gK,AlignHorizontalSpaceAround:()=>$K,AlignHorizontalJustifyStart:()=>vK,AlignHorizontalJustifyEnd:()=>hK,AlignHorizontalJustifyCenter:()=>bK,AlignHorizontalDistributeStart:()=>kK,AlignHorizontalDistributeEnd:()=>fK,AlignHorizontalDistributeCenter:()=>yK,AlignEndVertical:()=>LK,AlignEndHorizontal:()=>jK,AlignCenterVertical:()=>RK,AlignCenterHorizontal:()=>MK,AlignCenter:()=>s9,AlertTriangle:()=>KZ,AlertOctagon:()=>x6,AlertCircle:()=>J7,Album:()=>UK,AlarmSmoke:()=>wK,AlarmPlus:()=>U4,AlarmMinus:()=>w4,AlarmClockPlus:()=>U4,AlarmClockOff:()=>CK,AlarmClockMinus:()=>w4,AlarmClockCheck:()=>x4,AlarmClock:()=>xK,AlarmCheck:()=>x4,Airplay:()=>EK,AirVent:()=>qK,ActivitySquare:()=>r6,Activity:()=>AK,Accessibility:()=>SK,ALargeSmall:()=>PK,AArrowUp:()=>TK,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 TK=[["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 PK=[["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 SK=[["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 AK=[["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 qK=[["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 EK=[["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 x4=[["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 w4=[["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 CK=[["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 U4=[["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 xK=[["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 wK=[["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 UK=[["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 MK=[["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 RK=[["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 jK=[["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 LK=[["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 yK=[["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 fK=[["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 kK=[["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 bK=[["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 hK=[["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 vK=[["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 $K=[["rect",{width:"6",height:"10",x:"9",y:"7",rx:"2"}],["path",{d:"M4 22V2"}],["path",{d:"M20 22V2"}]];var gK=[["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 _K=[["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 mK=[["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 uK=[["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 dK=[["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 cK=[["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 pK=[["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 nK=[["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 iK=[["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 lK=[["rect",{width:"10",height:"6",x:"7",y:"9",rx:"2"}],["path",{d:"M22 20H2"}],["path",{d:"M22 4H2"}]];var sK=[["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 rK=[["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 aK=[["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 tK=[["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 oK=[["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 eK=[["path",{d:"M12 22V8"}],["path",{d:"M5 12H2a10 10 0 0 0 20 0h-3"}],["circle",{cx:"12",cy:"5",r:"3"}]];var ZY=[["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 JY=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M8 15h8"}],["path",{d:"M8 9h2"}],["path",{d:"M14 9h2"}]];var KY=[["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 YY=[["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 XY=[["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 WY=[["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 QY=[["rect",{x:"2",y:"4",width:"20",height:"16",rx:"2"}],["path",{d:"M10 4v4"}],["path",{d:"M2 8h20"}],["path",{d:"M6 4v4"}]];var VY=[["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 GY=[["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 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:"m9.5 17 5-5"}],["path",{d:"m9.5 12 5 5"}]];var zY=[["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 NY=[["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 FY=[["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 HY=[["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 DY=[["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 BY=[["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 TY=[["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 PY=[["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 SY=[["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 AY=[["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 qY=[["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 M4=[["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 EY=[["path",{d:"M19 3H5"}],["path",{d:"M12 21V7"}],["path",{d:"m6 15 6 6 6-6"}]];var CY=[["path",{d:"M17 7 7 17"}],["path",{d:"M17 17H7V7"}]];var xY=[["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 wY=[["path",{d:"m7 7 10 10"}],["path",{d:"M17 7v10H7"}]];var UY=[["path",{d:"M12 2v14"}],["path",{d:"m19 9-7 7-7-7"}],["circle",{cx:"12",cy:"21",r:"1"}]];var MY=[["path",{d:"M12 17V3"}],["path",{d:"m6 11 6 6 6-6"}],["path",{d:"M19 21H5"}]];var RY=[["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 R4=[["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 j4=[["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 jY=[["path",{d:"M12 5v14"}],["path",{d:"m19 12-7 7-7-7"}]];var LY=[["path",{d:"M8 3 4 7l4 4"}],["path",{d:"M4 7h16"}],["path",{d:"m16 21 4-4-4-4"}],["path",{d:"M20 17H4"}]];var yY=[["path",{d:"m9 6-6 6 6 6"}],["path",{d:"M3 12h14"}],["path",{d:"M21 19V5"}]];var fY=[["path",{d:"M3 19V5"}],["path",{d:"m13 6-6 6 6 6"}],["path",{d:"M7 12h14"}]];var kY=[["path",{d:"m12 19-7-7 7-7"}],["path",{d:"M19 12H5"}]];var bY=[["path",{d:"M3 5v14"}],["path",{d:"M21 12H7"}],["path",{d:"m15 18 6-6-6-6"}]];var hY=[["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 vY=[["path",{d:"M17 12H3"}],["path",{d:"m11 18 6-6-6-6"}],["path",{d:"M21 5v14"}]];var $Y=[["path",{d:"M5 12h14"}],["path",{d:"m12 5 7 7-7 7"}]];var gY=[["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 _Y=[["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 L4=[["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 mY=[["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 uY=[["path",{d:"m5 9 7-7 7 7"}],["path",{d:"M12 16V2"}],["circle",{cx:"12",cy:"21",r:"1"}]];var dY=[["path",{d:"m18 9-6-6-6 6"}],["path",{d:"M12 3v14"}],["path",{d:"M5 21h14"}]];var cY=[["path",{d:"M7 17V7h10"}],["path",{d:"M17 17 7 7"}]];var y4=[["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 pY=[["path",{d:"M7 7h10v10"}],["path",{d:"M7 17 17 7"}]];var nY=[["path",{d:"M5 3h14"}],["path",{d:"m18 13-6-6-6 6"}],["path",{d:"M12 7v14"}]];var iY=[["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 f4=[["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 lY=[["path",{d:"m5 12 7-7 7 7"}],["path",{d:"M12 19V5"}]];var sY=[["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 rY=[["path",{d:"M12 6v12"}],["path",{d:"M17.196 9 6.804 15"}],["path",{d:"m6.804 9 10.392 6"}]];var aY=[["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 tY=[["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 oY=[["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 eY=[["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 ZX=[["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 JX=[["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 k4=[["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 KX=[["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 YX=[["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 XX=[["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 WX=[["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 b4=[["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 QX=[["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 VX=[["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 GX=[["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 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"}],["line",{x1:"12",x2:"12",y1:"16",y2:"12"}],["line",{x1:"12",x2:"12.01",y1:"8",y2:"8"}]];var zX=[["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 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:"8",x2:"16",y1:"12",y2:"12"}]];var FX=[["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 HX=[["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 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:"M8 12h4"}],["path",{d:"M10 16V9.5a2.5 2.5 0 0 1 5 0"}],["path",{d:"M8 16h7"}]];var h4=[["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 BX=[["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 TX=[["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 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"}],["line",{x1:"15",x2:"9",y1:"9",y2:"15"}],["line",{x1:"9",x2:"15",y1:"9",y2:"15"}]];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"}]];var AX=[["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 qX=[["path",{d:"M4.929 4.929 19.07 19.071"}],["circle",{cx:"12",cy:"12",r:"10"}]];var EX=[["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 CX=[["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 xX=[["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 wX=[["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 UX=[["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 MX=[["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 RX=[["path",{d:"M3 5v14"}],["path",{d:"M8 5v14"}],["path",{d:"M12 5v14"}],["path",{d:"M17 5v14"}],["path",{d:"M21 5v14"}]];var jX=[["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 LX=[["path",{d:"M4 20h16"}],["path",{d:"m6 16 6-12 6 12"}],["path",{d:"M8 12h8"}]];var yX=[["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 fX=[["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 kX=[["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 bX=[["path",{d:"M22 14v-4"}],["path",{d:"M6 14v-4"}],["rect",{x:"2",y:"6",width:"16",height:"12",rx:"2"}]];var hX=[["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 vX=[["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 $X=[["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 gX=[["path",{d:"M 22 14 L 22 10"}],["rect",{x:"2",y:"6",width:"16",height:"12",rx:"2"}]];var _X=[["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 mX=[["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 uX=[["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 dX=[["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 cX=[["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 pX=[["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 nX=[["path",{d:"M2 4v16"}],["path",{d:"M2 8h18a2 2 0 0 1 2 2v10"}],["path",{d:"M2 17h20"}],["path",{d:"M6 8v9"}]];var iX=[["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 lX=[["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 sX=[["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 rX=[["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 aX=[["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 tX=[["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 oX=[["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 eX=[["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 ZW=[["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 v4=[["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 $4=[["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 JW=[["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 KW=[["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 YW=[["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 XW=[["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 WW=[["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 QW=[["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 VW=[["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 GW=[["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 IW=[["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 zW=[["circle",{cx:"9",cy:"9",r:"7"}],["circle",{cx:"15",cy:"15",r:"7"}]];var NW=[["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 FW=[["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 HW=[["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 DW=[["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 BW=[["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 TW=[["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 PW=[["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 SW=[["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 AW=[["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 qW=[["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 EW=[["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 CW=[["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 xW=[["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 wW=[["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 UW=[["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 g4=[["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 MW=[["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 RW=[["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 jW=[["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 LW=[["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 yW=[["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 fW=[["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 kW=[["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 bW=[["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 hW=[["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 vW=[["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 $W=[["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 gW=[["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 _W=[["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 mW=[["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 uW=[["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 dW=[["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 cW=[["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 pW=[["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 nW=[["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 iW=[["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 lW=[["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 sW=[["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 rW=[["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 aW=[["path",{d:"m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z"}]];var tW=[["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 oW=[["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 eW=[["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 ZQ=[["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 JQ=[["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 KQ=[["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 YQ=[["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 XQ=[["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 _4=[["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 WQ=[["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 QQ=[["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 VQ=[["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 GQ=[["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 IQ=[["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 zQ=[["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 NQ=[["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 FQ=[["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 HQ=[["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 DQ=[["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 BQ=[["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 TQ=[["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 PQ=[["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 SQ=[["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 AQ=[["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 qQ=[["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 EQ=[["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 CQ=[["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 xQ=[["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 wQ=[["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 UQ=[["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 MQ=[["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 RQ=[["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 jQ=[["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 LQ=[["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 yQ=[["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 fQ=[["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 kQ=[["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 bQ=[["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 hQ=[["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 vQ=[["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 $Q=[["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 gQ=[["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 _Q=[["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 mQ=[["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 uQ=[["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 dQ=[["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 cQ=[["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 pQ=[["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 nQ=[["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 iQ=[["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 lQ=[["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 sQ=[["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 rQ=[["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 aQ=[["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 tQ=[["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 oQ=[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2"}],["path",{d:"M3 10h18"}]];var eQ=[["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 ZV=[["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 JV=[["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 KV=[["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 YV=[["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 XV=[["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 WV=[["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 m4=[["rect",{width:"18",height:"14",x:"3",y:"5",rx:"2",ry:"2"}],["path",{d:"M7 15h4M15 15h2M7 11h2M13 11h4"}]];var QV=[["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 VV=[["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 GV=[["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 IV=[["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 zV=[["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 NV=[["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 FV=[["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 HV=[["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 DV=[["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 BV=[["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 TV=[["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 PV=[["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 SV=[["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 u4=[["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 d4=[["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 AV=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M7 11h8"}],["path",{d:"M7 16h3"}],["path",{d:"M7 6h12"}]];var qV=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M7 11h8"}],["path",{d:"M7 16h12"}],["path",{d:"M7 6h3"}]];var EV=[["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 c4=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M7 16h8"}],["path",{d:"M7 11h12"}],["path",{d:"M7 6h3"}]];var p4=[["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 n4=[["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 CV=[["path",{d:"M13 17V9"}],["path",{d:"M18 17v-3"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M8 17V5"}]];var i4=[["path",{d:"M13 17V9"}],["path",{d:"M18 17V5"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M8 17v-3"}]];var xV=[["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 l4=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M18 17V9"}],["path",{d:"M13 17V5"}],["path",{d:"M8 17v-3"}]];var wV=[["path",{d:"M10 6h8"}],["path",{d:"M12 16h6"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M8 11h7"}]];var s4=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"m19 9-5 5-4-4-3 3"}]];var UV=[["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 MV=[["path",{d:"M5 21V3"}],["path",{d:"M12 21V9"}],["path",{d:"M19 21v-6"}]];var r4=[["path",{d:"M5 21v-6"}],["path",{d:"M12 21V9"}],["path",{d:"M19 21V3"}]];var a4=[["path",{d:"M5 21v-6"}],["path",{d:"M12 21V3"}],["path",{d:"M19 21V9"}]];var t4=[["path",{d:"M6 5h12"}],["path",{d:"M4 12h10"}],["path",{d:"M12 19h8"}]];var RV=[["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 o4=[["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 e4=[["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 jV=[["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 LV=[["path",{d:"M18 6 7 17l-5-5"}],["path",{d:"m22 10-7.5 7.5L13 16"}]];var yV=[["path",{d:"M20 6 9 17l-5-5"}]];var fV=[["path",{d:"M20 4L9 15"}],["path",{d:"M21 19L3 19"}],["path",{d:"M9 15L4 10"}]];var kV=[["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 bV=[["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 hV=[["path",{d:"m6 9 6 6 6-6"}]];var vV=[["path",{d:"m17 18-6-6 6-6"}],["path",{d:"M7 6v12"}]];var $V=[["path",{d:"m7 18 6-6-6-6"}],["path",{d:"M17 6v12"}]];var gV=[["path",{d:"m9 18 6-6-6-6"}]];var _V=[["path",{d:"m18 15-6-6-6 6"}]];var mV=[["path",{d:"m15 18-6-6 6-6"}]];var uV=[["path",{d:"m7 20 5-5 5 5"}],["path",{d:"m7 4 5 5 5-5"}]];var dV=[["path",{d:"m7 6 5 5 5-5"}],["path",{d:"m7 13 5 5 5-5"}]];var cV=[["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 pV=[["path",{d:"m9 7-5 5 5 5"}],["path",{d:"m15 7 5 5-5 5"}]];var nV=[["path",{d:"m11 17-5-5 5-5"}],["path",{d:"m18 17-5-5 5-5"}]];var iV=[["path",{d:"m20 17-5-5 5-5"}],["path",{d:"m4 17 5-5-5-5"}]];var lV=[["path",{d:"m6 17 5-5-5-5"}],["path",{d:"m13 17 5-5-5-5"}]];var sV=[["path",{d:"m17 11-5-5-5 5"}],["path",{d:"m17 18-5-5-5 5"}]];var rV=[["path",{d:"m7 15 5 5 5-5"}],["path",{d:"m7 9 5-5 5 5"}]];var aV=[["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 Z7=[["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 tV=[["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 oV=[["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 J7=[["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 K7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 8v8"}],["path",{d:"m8 12 4 4 4-4"}]];var Y7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m12 8-4 4 4 4"}],["path",{d:"M16 12H8"}]];var X7=[["path",{d:"M2 12a10 10 0 1 1 10 10"}],["path",{d:"m2 22 10-10"}],["path",{d:"M8 22H2v-6"}]];var W7=[["path",{d:"M12 22a10 10 0 1 1 10-10"}],["path",{d:"M22 22 12 12"}],["path",{d:"M22 16v6h-6"}]];var Q7=[["path",{d:"M2 8V2h6"}],["path",{d:"m2 2 10 10"}],["path",{d:"M12 2A10 10 0 1 1 2 12"}]];var V7=[["path",{d:"M22 12A10 10 0 1 1 12 2"}],["path",{d:"M22 2 12 12"}],["path",{d:"M16 2h6v6"}]];var G7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m12 16 4-4-4-4"}],["path",{d:"M8 12h8"}]];var I7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m16 12-4-4-4 4"}],["path",{d:"M12 16V8"}]];var z7=[["path",{d:"M21.801 10A10 10 0 1 1 17 3.335"}],["path",{d:"m9 11 3 3L22 4"}]];var N7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m16 10-4 4-4-4"}]];var F7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m9 12 2 2 4-4"}]];var H7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m14 16-4-4 4-4"}]];var D7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m10 8 4 4-4 4"}]];var B7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m8 14 4-4 4 4"}]];var eV=[["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 O7=[["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 ZG=[["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 JG=[["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 KG=[["circle",{cx:"12",cy:"12",r:"10"}],["circle",{cx:"12",cy:"12",r:"1"}]];var YG=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M17 12h.01"}],["path",{d:"M12 12h.01"}],["path",{d:"M7 12h.01"}]];var XG=[["path",{d:"M7 10h10"}],["path",{d:"M7 14h10"}],["circle",{cx:"12",cy:"12",r:"10"}]];var WG=[["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 QG=[["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 T7=[["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 P7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M8 12h8"}]];var VG=[["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 S7=[["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 A7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M9 17V7h4a3 3 0 0 1 0 6H9"}]];var q7=[["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 E7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m15 9-6 6"}],["path",{d:"M9 9h.01"}],["path",{d:"M15 15h.01"}]];var C7=[["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 x7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M8 12h8"}],["path",{d:"M12 8v8"}]];var GG=[["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 w7=[["path",{d:"M12 7v4"}],["path",{d:"M7.998 9.003a5 5 0 1 0 8-.005"}],["circle",{cx:"12",cy:"12",r:"10"}]];var Y5=[["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 U7=[["path",{d:"M22 2 2 22"}],["circle",{cx:"12",cy:"12",r:"10"}]];var IG=[["circle",{cx:"12",cy:"12",r:"10"}],["line",{x1:"9",x2:"15",y1:"15",y2:"9"}]];var zG=[["circle",{cx:"12",cy:"12",r:"6"}]];var NG=[["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 M7=[["circle",{cx:"12",cy:"12",r:"10"}],["rect",{x:"9",y:"9",width:"6",height:"6",rx:"1"}]];var R7=[["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 j7=[["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 L7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m15 9-6 6"}],["path",{d:"m9 9 6 6"}]];var FG=[["circle",{cx:"12",cy:"12",r:"10"}]];var HG=[["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 DG=[["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 BG=[["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 TG=[["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 PG=[["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 SG=[["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 AG=[["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 qG=[["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 y7=[["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 f7=[["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 EG=[["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 CG=[["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 xG=[["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 wG=[["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 UG=[["path",{d:"M12 6v6l2-4"}],["circle",{cx:"12",cy:"12",r:"10"}]];var MG=[["path",{d:"M12 6v6l-4-2"}],["circle",{cx:"12",cy:"12",r:"10"}]];var RG=[["path",{d:"M12 6v6l-2-4"}],["circle",{cx:"12",cy:"12",r:"10"}]];var jG=[["path",{d:"M12 6v6"}],["circle",{cx:"12",cy:"12",r:"10"}]];var LG=[["path",{d:"M12 6v6l4-2"}],["circle",{cx:"12",cy:"12",r:"10"}]];var yG=[["path",{d:"M12 6v6h4"}],["circle",{cx:"12",cy:"12",r:"10"}]];var fG=[["path",{d:"M12 6v6l4 2"}],["circle",{cx:"12",cy:"12",r:"10"}]];var kG=[["path",{d:"M12 6v6l2 4"}],["circle",{cx:"12",cy:"12",r:"10"}]];var bG=[["path",{d:"M12 6v10"}],["circle",{cx:"12",cy:"12",r:"10"}]];var hG=[["path",{d:"M12 6v6l-2 4"}],["circle",{cx:"12",cy:"12",r:"10"}]];var vG=[["path",{d:"M12 6v6l-4 2"}],["circle",{cx:"12",cy:"12",r:"10"}]];var $G=[["path",{d:"M12 6v6H8"}],["circle",{cx:"12",cy:"12",r:"10"}]];var gG=[["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 _G=[["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 mG=[["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 uG=[["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 dG=[["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 cG=[["path",{d:"M12 6v6l4 2"}],["circle",{cx:"12",cy:"12",r:"10"}]];var pG=[["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 nG=[["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 iG=[["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 lG=[["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 k7=[["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 sG=[["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 rG=[["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 aG=[["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 tG=[["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 oG=[["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 eG=[["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 Z3=[["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 J3=[["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 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 14v6"}],["path",{d:"M8 14v6"}],["path",{d:"M12 16v6"}]];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:"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 X3=[["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 W3=[["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 b7=[["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 Q3=[["path",{d:"M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z"}]];var V3=[["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 G3=[["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 I3=[["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 h7=[["path",{d:"m18 16 4-4-4-4"}],["path",{d:"m6 8-4 4 4 4"}],["path",{d:"m14.5 4-5 16"}]];var z3=[["path",{d:"m16 18 6-6-6-6"}],["path",{d:"m8 6-6 6 6 6"}]];var N3=[["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 F3=[["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 H3=[["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 D3=[["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 B3=[["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 v7=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M12 3v18"}]];var X5=[["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 $7=[["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 T3=[["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 P3=[["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 S3=[["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 A3=[["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 q3=[["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 E3=[["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 C3=[["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 x3=[["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 g7=[["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 w3=[["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 U3=[["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 M3=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 18a6 6 0 0 0 0-12v12z"}]];var R3=[["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 j3=[["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 L3=[["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 y3=[["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 f3=[["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 k3=[["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 b3=[["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 h3=[["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 v3=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M9.17 14.83a4 4 0 1 0 0-5.66"}]];var $3=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M14.83 14.83a4 4 0 1 1 0-5.66"}]];var g3=[["path",{d:"m15 10 5 5-5 5"}],["path",{d:"M4 4v7a4 4 0 0 0 4 4h12"}]];var _3=[["path",{d:"M20 4v7a4 4 0 0 1-4 4H4"}],["path",{d:"m9 10-5 5 5 5"}]];var m3=[["path",{d:"m14 15-5 5-5-5"}],["path",{d:"M20 4h-7a4 4 0 0 0-4 4v12"}]];var u3=[["path",{d:"M14 9 9 4 4 9"}],["path",{d:"M20 20h-7a4 4 0 0 1-4-4V4"}]];var d3=[["path",{d:"m10 15 5 5 5-5"}],["path",{d:"M4 4h7a4 4 0 0 1 4 4v12"}]];var c3=[["path",{d:"m10 9 5-5 5 5"}],["path",{d:"M4 20h7a4 4 0 0 0 4-4V4"}]];var p3=[["path",{d:"M20 20v-7a4 4 0 0 0-4-4H4"}],["path",{d:"M9 14 4 9l5-5"}]];var n3=[["path",{d:"m15 14 5-5-5-5"}],["path",{d:"M4 20v-7a4 4 0 0 1 4-4h12"}]];var i3=[["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 l3=[["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 s3=[["rect",{width:"20",height:"14",x:"2",y:"5",rx:"2"}],["line",{x1:"2",x2:"22",y1:"10",y2:"10"}]];var r3=[["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 a3=[["path",{d:"M6 2v14a2 2 0 0 0 2 2h14"}],["path",{d:"M18 22V8a2 2 0 0 0-2-2H2"}]];var t3=[["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 o3=[["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 e3=[["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 ZI=[["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 JI=[["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 KI=[["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 YI=[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3"}],["path",{d:"M3 5v14a9 3 0 0 0 18 0V5"}]];var XI=[["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 WI=[["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 QI=[["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 VI=[["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 GI=[["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 II=[["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 zI=[["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 NI=[["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 FI=[["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 HI=[["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 _7=[["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 DI=[["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 BI=[["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 TI=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["path",{d:"M15 9h.01"}],["path",{d:"M9 15h.01"}]];var PI=[["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 SI=[["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 AI=[["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 qI=[["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 EI=[["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 CI=[["path",{d:"M12 3v14"}],["path",{d:"M5 10h14"}],["path",{d:"M5 21h14"}]];var xI=[["circle",{cx:"12",cy:"12",r:"10"}],["circle",{cx:"12",cy:"12",r:"4"}],["path",{d:"M12 12h.01"}]];var wI=[["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 UI=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["circle",{cx:"12",cy:"12",r:"5"}],["path",{d:"M12 12h.01"}]];var MI=[["circle",{cx:"12",cy:"12",r:"10"}],["circle",{cx:"12",cy:"12",r:"2"}]];var RI=[["circle",{cx:"12",cy:"6",r:"1"}],["line",{x1:"5",x2:"19",y1:"12",y2:"12"}],["circle",{cx:"12",cy:"18",r:"1"}]];var jI=[["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 LI=[["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 yI=[["path",{d:"M2 8h20"}],["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2"}],["path",{d:"M6 16h12"}]];var fI=[["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 kI=[["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 bI=[["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 hI=[["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 vI=[["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 $I=[["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 gI=[["circle",{cx:"12.1",cy:"12.1",r:"1"}]];var _I=[["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 mI=[["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 uI=[["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 dI=[["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 cI=[["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 pI=[["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 nI=[["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 iI=[["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 lI=[["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 sI=[["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 rI=[["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 aI=[["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 tI=[["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 oI=[["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 eI=[["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 m7=[["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 Zz=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 2a7 7 0 1 0 10 10"}]];var Jz=[["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 Kz=[["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 Yz=[["path",{d:"M12 2C8 2 4 8 4 14a8 8 0 0 0 16 0c0-6-4-12-8-12"}]];var u7=[["circle",{cx:"12",cy:"12",r:"1"}],["circle",{cx:"12",cy:"5",r:"1"}],["circle",{cx:"12",cy:"19",r:"1"}]];var d7=[["circle",{cx:"12",cy:"12",r:"1"}],["circle",{cx:"19",cy:"12",r:"1"}],["circle",{cx:"5",cy:"12",r:"1"}]];var Xz=[["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 Wz=[["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 Qz=[["line",{x1:"5",x2:"19",y1:"9",y2:"9"}],["line",{x1:"5",x2:"19",y1:"15",y2:"15"}]];var Vz=[["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 Gz=[["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 Iz=[["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 zz=[["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 Nz=[["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 Fz=[["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 Hz=[["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 Dz=[["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 Bz=[["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 Tz=[["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 Pz=[["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 Sz=[["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 Az=[["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 qz=[["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 Ez=[["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 Cz=[["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 xz=[["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 wz=[["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 Uz=[["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 Mz=[["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 c7=[["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 Rz=[["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 jz=[["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 p7=[["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 n7=[["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 i7=[["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 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:"m16 13-3.5 3.5-2-2L8 17"}]];var Lz=[["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 yz=[["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 fz=[["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 kz=[["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 bz=[["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 s7=[["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 hz=[["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 vz=[["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 $z=[["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 gz=[["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 _z=[["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 mz=[["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 uz=[["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 dz=[["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 cz=[["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 pz=[["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 nz=[["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 iz=[["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 lz=[["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 sz=[["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 rz=[["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 az=[["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 r7=[["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 a7=[["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 t7=[["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 tz=[["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 oz=[["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 o7=[["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 ez=[["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 ZN=[["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 JN=[["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 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:"M8 12h8"}],["path",{d:"M10 11v2"}],["path",{d:"M8 17h8"}],["path",{d:"M14 16v2"}]];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:"M8 13h2"}],["path",{d:"M14 13h2"}],["path",{d:"M8 17h2"}],["path",{d:"M14 17h2"}]];var XN=[["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 WN=[["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 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:"m8 16 2-2-2-2"}],["path",{d:"M12 18h4"}]];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"}],["path",{d:"M10 9H8"}],["path",{d:"M16 13H8"}],["path",{d:"M16 17H8"}]];var GN=[["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 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:"M9 13v-1h6v1"}],["path",{d:"M12 12v6"}],["path",{d:"M11 18h2"}]];var zN=[["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 NN=[["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 e7=[["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 FN=[["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 HN=[["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 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:"M12 9v4"}],["path",{d:"M12 17h.01"}]];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:"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 TN=[["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 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"}]];var SN=[["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 AN=[["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 qN=[["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 EN=[["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 CN=[["path",{d:"M2 16s9-15 20-4C11 23 2 8 2 8"}]];var xN=[["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 wN=[["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 UN=[["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 MN=[["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 RN=[["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 jN=[["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 LN=[["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 yN=[["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 fN=[["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 kN=[["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 bN=[["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 hN=[["path",{d:"M10 2v6.292a7 7 0 1 0 4 0V2"}],["path",{d:"M5 15h14"}],["path",{d:"M8.5 2h7"}]];var vN=[["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 $N=[["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 gN=[["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 _N=[["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 mN=[["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 uN=[["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 dN=[["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 cN=[["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 pN=[["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 nN=[["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 iN=[["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 lN=[["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 sN=[["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 rN=[["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 Z6=[["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 aN=[["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 tN=[["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 oN=[["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 eN=[["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 ZF=[["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 JF=[["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 KF=[["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 YF=[["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 XF=[["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 WF=[["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 QF=[["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 VF=[["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 GF=[["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 J6=[["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 IF=[["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 zF=[["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 NF=[["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 FF=[["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 HF=[["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 DF=[["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 BF=[["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 TF=[["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 PF=[["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:"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 AF=[["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 qF=[["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 EF=[["path",{d:"m15 17 5-5-5-5"}],["path",{d:"M4 18v-2a4 4 0 0 1 4-4h12"}]];var CF=[["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 xF=[["path",{d:"M5 16V9h14V2H5l14 14h-7m-7 0 7 7v-7m-7 0h7"}]];var wF=[["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 UF=[["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 MF=[["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 RF=[["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 K6=[["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 Y6=[["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 jF=[["path",{d:"M2 7v10"}],["path",{d:"M6 5v14"}],["rect",{width:"12",height:"18",x:"10",y:"3",rx:"2"}]];var LF=[["path",{d:"M2 3v18"}],["rect",{width:"12",height:"18",x:"6",y:"3",rx:"2"}],["path",{d:"M22 3v18"}]];var yF=[["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 fF=[["path",{d:"M7 2h10"}],["path",{d:"M5 6h14"}],["rect",{width:"18",height:"12",x:"3",y:"10",rx:"2"}]];var kF=[["path",{d:"M3 2h18"}],["rect",{width:"18",height:"12",x:"3",y:"6",rx:"2"}],["path",{d:"M3 22h18"}]];var bF=[["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 hF=[["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 vF=[["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 $F=[["path",{d:"m12 14 4-4"}],["path",{d:"M3.34 19a10 10 0 1 1 17.32 0"}]];var gF=[["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 _F=[["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 mF=[["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 uF=[["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 dF=[["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 cF=[["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 pF=[["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 X6=[["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 nF=[["path",{d:"M12 3v6"}],["circle",{cx:"12",cy:"12",r:"3"}],["path",{d:"M12 15v6"}]];var iF=[["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 lF=[["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 sF=[["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 rF=[["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 aF=[["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 tF=[["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 oF=[["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 eF=[["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 ZH=[["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 JH=[["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 KH=[["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 YH=[["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 XH=[["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 WH=[["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 QH=[["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 VH=[["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 GH=[["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 IH=[["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 zH=[["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 NH=[["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 FH=[["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 W6=[["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 Q6=[["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 V6=[["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 G6=[["path",{d:"M12 3v18"}],["path",{d:"M3 12h18"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]];var HH=[["path",{d:"M15 3v18"}],["path",{d:"M3 12h18"}],["path",{d:"M9 3v18"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]];var W5=[["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 DH=[["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 BH=[["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 TH=[["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 PH=[["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 SH=[["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 AH=[["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 qH=[["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 EH=[["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 CH=[["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 xH=[["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 I6=[["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 z6=[["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 wH=[["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 UH=[["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 MH=[["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 RH=[["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 jH=[["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 LH=[["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 yH=[["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 fH=[["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 kH=[["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 bH=[["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 hH=[["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 vH=[["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 $H=[["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 gH=[["path",{d:"M4 12h8"}],["path",{d:"M4 18V6"}],["path",{d:"M12 18V6"}],["path",{d:"m17 12 3-2v8"}]];var _H=[["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 mH=[["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 uH=[["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 dH=[["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 cH=[["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 pH=[["path",{d:"M6 12h12"}],["path",{d:"M6 20V4"}],["path",{d:"M18 20V4"}]];var nH=[["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 iH=[["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 lH=[["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 sH=[["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 rH=[["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 aH=[["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 tH=[["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 oH=[["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 eH=[["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 ZD=[["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 JD=[["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 KD=[["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 YD=[["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 XD=[["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 WD=[["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 QD=[["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 VD=[["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 GD=[["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 ID=[["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 zD=[["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 ND=[["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 FD=[["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 HD=[["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 N6=[["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 F6=[["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 H6=[["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 DD=[["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 BD=[["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 TD=[["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 PD=[["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 SD=[["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 AD=[["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 qD=[["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 ED=[["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 CD=[["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 xD=[["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 wD=[["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 UD=[["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 MD=[["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 RD=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 16v-4"}],["path",{d:"M12 8h.01"}]];var jD=[["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 LD=[["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 yD=[["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 fD=[["path",{d:"m16 14 4 4-4 4"}],["path",{d:"M20 10a8 8 0 1 0-8 8h8"}]];var kD=[["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 bD=[["path",{d:"M4 10a8 8 0 1 1 8 8H4"}],["path",{d:"m8 22-4-4 4-4"}]];var hD=[["path",{d:"M12 9.5V21m0-11.5L6 3m6 6.5L18 3"}],["path",{d:"M6 15h12"}],["path",{d:"M6 11h12"}]];var vD=[["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 $D=[["path",{d:"M5 3v14"}],["path",{d:"M12 3v8"}],["path",{d:"M19 3v18"}]];var gD=[["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 _D=[["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 mD=[["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 uD=[["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 dD=[["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 cD=[["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 pD=[["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 nD=[["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 iD=[["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 lD=[["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 sD=[["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 rD=[["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 aD=[["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 tD=[["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 oD=[["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 eD=[["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 ZB=[["path",{d:"M2 20h20"}],["path",{d:"m9 10 2 2 4-4"}],["rect",{x:"3",y:"4",width:"18",height:"12",rx:"2"}]];var D6=[["rect",{width:"18",height:"12",x:"3",y:"4",rx:"2",ry:"2"}],["line",{x1:"2",x2:"22",y1:"20",y2:"20"}]];var JB=[["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 KB=[["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 YB=[["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 XB=[["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 WB=[["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 B6=[["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 QB=[["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 VB=[["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 GB=[["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 IB=[["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 zB=[["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 NB=[["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 FB=[["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 HB=[["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 DB=[["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 BB=[["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 TB=[["path",{d:"m16 6 4 14"}],["path",{d:"M12 6v14"}],["path",{d:"M8 8v12"}],["path",{d:"M4 4v16"}]];var PB=[["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 SB=[["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 AB=[["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 qB=[["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 EB=[["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 CB=[["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 xB=[["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 wB=[["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 UB=[["path",{d:"M16 5H3"}],["path",{d:"M16 12H3"}],["path",{d:"M11 19H3"}],["path",{d:"m15 18 2 2 4-4"}]];var MB=[["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 RB=[["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 jB=[["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 LB=[["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 yB=[["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 fB=[["path",{d:"M2 5h20"}],["path",{d:"M6 12h12"}],["path",{d:"M9 19h6"}]];var kB=[["path",{d:"M12 5H2"}],["path",{d:"M6 12h12"}],["path",{d:"M9 19h6"}],["path",{d:"M16 5h6"}],["path",{d:"M19 8V2"}]];var Q5=[["path",{d:"M21 5H11"}],["path",{d:"M21 12H11"}],["path",{d:"M21 19H11"}],["path",{d:"m7 8-4 4 4 4"}]];var V5=[["path",{d:"M21 5H11"}],["path",{d:"M21 12H11"}],["path",{d:"M21 19H11"}],["path",{d:"m3 8 4 4-4 4"}]];var bB=[["path",{d:"M16 5H3"}],["path",{d:"M11 12H3"}],["path",{d:"M16 19H3"}],["path",{d:"M21 12h-6"}]];var hB=[["path",{d:"M16 5H3"}],["path",{d:"M11 12H3"}],["path",{d:"M11 19H3"}],["path",{d:"M21 16V5"}],["circle",{cx:"18",cy:"16",r:"3"}]];var vB=[["path",{d:"M16 5H3"}],["path",{d:"M11 12H3"}],["path",{d:"M16 19H3"}],["path",{d:"M18 9v6"}],["path",{d:"M21 12h-6"}]];var $B=[["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 gB=[["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 _B=[["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 mB=[["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 uB=[["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 dB=[["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 cB=[["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 pB=[["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 O6=[["path",{d:"M21 12a9 9 0 1 1-6.219-8.56"}]];var nB=[["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 iB=[["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 lB=[["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 sB=[["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 rB=[["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 T6=[["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 aB=[["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 P6=[["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 tB=[["rect",{width:"18",height:"11",x:"3",y:"11",rx:"2",ry:"2"}],["path",{d:"M7 11V7a5 5 0 0 1 10 0v4"}]];var oB=[["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 eB=[["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 ZO=[["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 JO=[["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 KO=[["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 YO=[["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 XO=[["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 WO=[["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 QO=[["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 VO=[["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 S6=[["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 GO=[["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 IO=[["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 zO=[["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 NO=[["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 FO=[["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 HO=[["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 DO=[["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 BO=[["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 TO=[["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 PO=[["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 SO=[["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 AO=[["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 A6=[["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 qO=[["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 EO=[["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 CO=[["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 xO=[["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 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"}],["circle",{cx:"12",cy:"10",r:"3"}]];var UO=[["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 MO=[["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 RO=[["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 jO=[["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 LO=[["path",{d:"M16 3h5v5"}],["path",{d:"m21 3-6.75 6.75"}],["circle",{cx:"10",cy:"14",r:"6"}]];var yO=[["path",{d:"M8 22h8"}],["path",{d:"M12 11v11"}],["path",{d:"m19 3-7 8-7-8Z"}]];var fO=[["path",{d:"M15 3h6v6"}],["path",{d:"m21 3-7 7"}],["path",{d:"m3 21 7-7"}],["path",{d:"M9 21H3v-6"}]];var kO=[["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 bO=[["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 hO=[["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 vO=[["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 $O=[["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 gO=[["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 _O=[["path",{d:"M4 5h16"}],["path",{d:"M4 12h16"}],["path",{d:"M4 19h16"}]];var mO=[["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 uO=[["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 dO=[["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 cO=[["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 pO=[["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 nO=[["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 iO=[["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 q6=[["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 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:"m10 15-3-3 3-3"}],["path",{d:"M7 12h8a2 2 0 0 1 2 2v1"}]];var sO=[["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 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:"m15 9-6 6"}],["path",{d:"m9 9 6 6"}]];var aO=[["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 tO=[["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 oO=[["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 eO=[["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 Z2=[["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 J2=[["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 K2=[["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 Y2=[["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 X2=[["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 W2=[["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 Q2=[["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 V2=[["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 G2=[["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 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:"M7 11h10"}],["path",{d:"M7 15h6"}],["path",{d:"M7 7h8"}]];var z2=[["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 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:"m14.5 8.5-5 5"}],["path",{d:"m9.5 8.5 5 5"}]];var F2=[["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 H2=[["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 D2=[["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 E6=[["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 B2=[["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 T2=[["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 P2=[["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 S2=[["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 A2=[["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 q2=[["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 E2=[["path",{d:"m14 10 7-7"}],["path",{d:"M20 10h-6V4"}],["path",{d:"m3 21 7-7"}],["path",{d:"M4 14h6v6"}]];var C2=[["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 x2=[["path",{d:"M5 12h14"}]];var w2=[["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 U2=[["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 M2=[["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 R2=[["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 j2=[["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 L2=[["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 y2=[["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 f2=[["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 k2=[["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 b2=[["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 h2=[["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 v2=[["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 $2=[["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 g2=[["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 _2=[["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 m2=[["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 u2=[["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 d2=[["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 c2=[["path",{d:"m8 3 4 8 5-5 5 15H2L8 3z"}]];var p2=[["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 n2=[["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 i2=[["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 l2=[["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 s2=[["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 r2=[["rect",{x:"5",y:"2",width:"14",height:"20",rx:"7"}],["path",{d:"M12 6v4"}]];var C6=[["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 a2=[["path",{d:"M19 13v6h-6"}],["path",{d:"M5 11V5h6"}],["path",{d:"m5 5 14 14"}]];var t2=[["path",{d:"M11 19H5v-6"}],["path",{d:"M13 5h6v6"}],["path",{d:"M19 5 5 19"}]];var o2=[["path",{d:"M11 19H5V13"}],["path",{d:"M19 5L5 19"}]];var e2=[["path",{d:"M19 13V19H13"}],["path",{d:"M5 5L19 19"}]];var ZT=[["path",{d:"M8 18L12 22L16 18"}],["path",{d:"M12 2V22"}]];var JT=[["path",{d:"m18 8 4 4-4 4"}],["path",{d:"M2 12h20"}],["path",{d:"m6 8-4 4 4 4"}]];var KT=[["path",{d:"M6 8L2 12L6 16"}],["path",{d:"M2 12H22"}]];var YT=[["path",{d:"M18 8L22 12L18 16"}],["path",{d:"M2 12H22"}]];var XT=[["path",{d:"M5 11V5H11"}],["path",{d:"M5 5L19 19"}]];var WT=[["path",{d:"M13 5H19V11"}],["path",{d:"M19 5L5 19"}]];var QT=[["path",{d:"M8 6L12 2L16 6"}],["path",{d:"M12 2V22"}]];var VT=[["path",{d:"M12 2v20"}],["path",{d:"m8 18 4 4 4-4"}],["path",{d:"m8 6 4-4 4 4"}]];var GT=[["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 IT=[["circle",{cx:"8",cy:"18",r:"4"}],["path",{d:"M12 18V2l7 4"}]];var zT=[["circle",{cx:"12",cy:"18",r:"4"}],["path",{d:"M16 18V2"}]];var NT=[["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 FT=[["path",{d:"M9 18V5l12-2v13"}],["circle",{cx:"6",cy:"18",r:"3"}],["circle",{cx:"18",cy:"16",r:"3"}]];var HT=[["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 DT=[["polygon",{points:"12 2 19 21 12 17 5 21 12 2"}]];var BT=[["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 TT=[["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 PT=[["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 ST=[["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 AT=[["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 qT=[["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 ET=[["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 CT=[["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 xT=[["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 wT=[["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 UT=[["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 MT=[["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 RT=[["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 x6=[["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 jT=[["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 w6=[["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 U6=[["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 LT=[["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 yT=[["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 fT=[["path",{d:"M3 3h6l6 18h6"}],["path",{d:"M14 3h7"}]];var kT=[["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 bT=[["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 hT=[["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 vT=[["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 $T=[["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 gT=[["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 _T=[["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 mT=[["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 uT=[["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 dT=[["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 cT=[["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 pT=[["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 M6=[["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 nT=[["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 iT=[["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 lT=[["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 sT=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 15h18"}],["path",{d:"m15 8-3 3-3-3"}]];var R6=[["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 rT=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 15h18"}],["path",{d:"m9 10 3-3 3 3"}]];var aT=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 15h18"}]];var j6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 3v18"}],["path",{d:"m16 15-3-3 3-3"}]];var L6=[["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 y6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 3v18"}],["path",{d:"m14 9 3 3-3 3"}]];var tT=[["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 f6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 3v18"}]];var oT=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M15 3v18"}],["path",{d:"m8 9 3 3-3 3"}]];var eT=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M15 3v18"}]];var ZP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M15 3v18"}],["path",{d:"m10 15-3-3 3-3"}]];var k6=[["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 JP=[["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 KP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 9h18"}],["path",{d:"m9 16 3-3 3 3"}]];var b6=[["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 YP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 9h18"}],["path",{d:"m15 14-3 3-3-3"}]];var XP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 3v18"}],["path",{d:"M9 15h12"}]];var WP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 9h18"}]];var QP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 15h12"}],["path",{d:"M15 3v18"}]];var h6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 9h18"}],["path",{d:"M9 21V9"}]];var VP=[["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 GP=[["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 IP=[["path",{d:"M8 21s-4-3-4-9 4-9 4-9"}],["path",{d:"M16 3s4 3 4 9-4 9-4 9"}]];var zP=[["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 NP=[["rect",{x:"14",y:"3",width:"5",height:"18",rx:"1"}],["rect",{x:"5",y:"3",width:"5",height:"18",rx:"1"}]];var FP=[["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 HP=[["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 v6=[["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 DP=[["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 BP=[["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 $6=[["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 TP=[["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 PP=[["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 SP=[["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 AP=[["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 qP=[["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 EP=[["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 CP=[["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 xP=[["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 wP=[["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 UP=[["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 MP=[["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 RP=[["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 jP=[["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 LP=[["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 yP=[["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 fP=[["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 kP=[["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 bP=[["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 hP=[["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 vP=[["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 $P=[["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 gP=[["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 _P=[["path",{d:"M13 4v16"}],["path",{d:"M17 4v16"}],["path",{d:"M19 4H9.5a4.5 4.5 0 0 0 0 9H13"}]];var mP=[["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 uP=[["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 dP=[["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 cP=[["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 pP=[["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 nP=[["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 iP=[["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 lP=[["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 sP=[["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 rP=[["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 aP=[["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 g6=[["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 tP=[["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 oP=[["path",{d:"M5 12h14"}],["path",{d:"M12 5v14"}]];var eP=[["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 ZS=[["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 JS=[["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 KS=[["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 YS=[["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 XS=[["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 WS=[["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 QS=[["path",{d:"M18 7c0-5.333-8-5.333-8 0"}],["path",{d:"M10 7v14"}],["path",{d:"M6 21h12"}],["path",{d:"M6 13h10"}]];var VS=[["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 GS=[["path",{d:"M12 2v10"}],["path",{d:"M18.4 6.6a9 9 0 1 1-12.77.04"}]];var IS=[["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 zS=[["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 NS=[["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 FS=[["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 HS=[["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 DS=[["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 BS=[["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 TS=[["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 PS=[["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 SS=[["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 AS=[["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 qS=[["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 ES=[["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 CS=[["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 xS=[["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 wS=[["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 US=[["path",{d:"M5 15h14"}],["path",{d:"M5 9h14"}],["path",{d:"m14 20-5-5 6-6-5-5"}]];var MS=[["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 RS=[["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 jS=[["rect",{width:"12",height:"20",x:"6",y:"2",rx:"2"}],["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2"}]];var LS=[["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 yS=[["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 fS=[["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 kS=[["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 bS=[["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 hS=[["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 vS=[["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 $S=[["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 gS=[["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 _S=[["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 mS=[["path",{d:"M14 4v16H3a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1z"}],["circle",{cx:"14",cy:"12",r:"8"}]];var _6=[["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 uS=[["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 dS=[["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2"}]];var cS=[["rect",{width:"12",height:"20",x:"6",y:"2",rx:"2"}]];var pS=[["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 nS=[["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 iS=[["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 lS=[["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 sS=[["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 rS=[["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 aS=[["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 tS=[["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 oS=[["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 eS=[["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 ZA=[["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 JA=[["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 KA=[["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 YA=[["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 XA=[["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 WA=[["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 QA=[["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 VA=[["path",{d:"M20 18v-2a4 4 0 0 0-4-4H4"}],["path",{d:"m9 17-5-5 5-5"}]];var GA=[["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 IA=[["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 zA=[["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 NA=[["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 FA=[["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 HA=[["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 m6=[["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 DA=[["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 BA=[["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 TA=[["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 PA=[["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 SA=[["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 AA=[["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 qA=[["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 u6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 12h18"}]];var d6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M21 9H3"}],["path",{d:"M21 15H3"}]];var EA=[["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 CA=[["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 xA=[["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 wA=[["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 UA=[["path",{d:"M6 11h8a4 4 0 0 0 0-8H9v18"}],["path",{d:"M6 15h8"}]];var MA=[["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 RA=[["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 jA=[["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 LA=[["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 yA=[["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 fA=[["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 kA=[["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 bA=[["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 hA=[["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 c6=[["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 vA=[["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 $A=[["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 gA=[["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 _A=[["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 mA=[["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 uA=[["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 dA=[["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 cA=[["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 pA=[["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 nA=[["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 iA=[["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 lA=[["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 sA=[["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 rA=[["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 aA=[["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 tA=[["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 oA=[["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 eA=[["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 Zq=[["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 Jq=[["path",{d:"m8 11 2 2 4-4"}],["circle",{cx:"11",cy:"11",r:"8"}],["path",{d:"m21 21-4.3-4.3"}]];var Kq=[["path",{d:"m13.5 8.5-5 5"}],["circle",{cx:"11",cy:"11",r:"8"}],["path",{d:"m21 21-4.3-4.3"}]];var Yq=[["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 Xq=[["path",{d:"m21 21-4.34-4.34"}],["circle",{cx:"11",cy:"11",r:"8"}]];var Wq=[["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 p6=[["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 Qq=[["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 Vq=[["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 Gq=[["path",{d:"m16 16-4 4-4-4"}],["path",{d:"M3 12h18"}],["path",{d:"m8 8 4-4 4 4"}]];var Iq=[["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 zq=[["path",{d:"M12 3v18"}],["path",{d:"m16 16 4-4-4-4"}],["path",{d:"m8 8-4 4 4 4"}]];var Nq=[["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 Fq=[["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 Hq=[["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 Dq=[["path",{d:"M14 17H5"}],["path",{d:"M19 7h-9"}],["circle",{cx:"17",cy:"17",r:"3"}],["circle",{cx:"7",cy:"7",r:"3"}]];var Bq=[["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 Tq=[["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 Pq=[["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 Sq=[["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 Aq=[["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 qq=[["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 Eq=[["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 Cq=[["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 xq=[["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 wq=[["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 Uq=[["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 Mq=[["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 Rq=[["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 n6=[["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 jq=[["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 i6=[["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 Lq=[["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 yq=[["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 fq=[["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 kq=[["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 bq=[["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 hq=[["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 vq=[["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 $q=[["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 gq=[["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 _q=[["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 mq=[["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 uq=[["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 dq=[["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 cq=[["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 pq=[["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 nq=[["path",{d:"M2 20h.01"}],["path",{d:"M7 20v-4"}],["path",{d:"M12 20v-8"}],["path",{d:"M17 20V8"}]];var iq=[["path",{d:"M2 20h.01"}],["path",{d:"M7 20v-4"}]];var lq=[["path",{d:"M2 20h.01"}],["path",{d:"M7 20v-4"}],["path",{d:"M12 20v-8"}]];var sq=[["path",{d:"M2 20h.01"}]];var rq=[["path",{d:"M2 20h.01"}],["path",{d:"M7 20v-4"}],["path",{d:"M12 20v-8"}],["path",{d:"M17 20V8"}],["path",{d:"M22 4v16"}]];var aq=[["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 tq=[["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 oq=[["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 eq=[["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 ZE=[["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 JE=[["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 KE=[["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 YE=[["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 XE=[["path",{d:"M22 2 2 22"}]];var WE=[["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 QE=[["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 VE=[["rect",{width:"14",height:"20",x:"5",y:"2",rx:"2",ry:"2"}],["path",{d:"M12.667 8 10 12h4l-2.667 4"}]];var l6=[["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 GE=[["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 IE=[["rect",{width:"14",height:"20",x:"5",y:"2",rx:"2",ry:"2"}],["path",{d:"M12 18h.01"}]];var zE=[["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 NE=[["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 FE=[["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 HE=[["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 DE=[["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 BE=[["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 TE=[["path",{d:"M22 17v1c0 .5-.5 1-1 1H3c-.5 0-1-.5-1-1v-1"}]];var PE=[["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 SE=[["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 s6=[["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 AE=[["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 qE=[["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 EE=[["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 CE=[["path",{d:"m6 16 6-12 6 12"}],["path",{d:"M8 12h8"}],["path",{d:"m16 20 2 2 4-4"}]];var xE=[["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 wE=[["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 UE=[["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 ME=[["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 RE=[["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 jE=[["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 LE=[["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 r6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M17 12h-2l-2 5-2-10-2 5H7"}]];var a6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m16 8-8 8"}],["path",{d:"M16 16H8V8"}]];var t6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m8 8 8 8"}],["path",{d:"M16 8v8H8"}]];var o6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M12 8v8"}],["path",{d:"m8 12 4 4 4-4"}]];var e6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m12 8-4 4 4 4"}],["path",{d:"M16 12H8"}]];var Z9=[["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 J9=[["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 K9=[["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 Y9=[["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 X9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M8 12h8"}],["path",{d:"m12 16 4-4-4-4"}]];var W9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M8 16V8h8"}],["path",{d:"M16 16 8 8"}]];var Q9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M8 8h8v8"}],["path",{d:"m8 16 8-8"}]];var V9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m16 12-4-4-4 4"}],["path",{d:"M12 16V8"}]];var G9=[["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 I9=[["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 G5=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 8h7"}],["path",{d:"M8 12h6"}],["path",{d:"M11 16h5"}]];var z9=[["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 N9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m9 12 2 2 4-4"}]];var F9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m16 10-4 4-4-4"}]];var H9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m14 16-4-4 4-4"}]];var D9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m10 8 4 4-4 4"}]];var B9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m8 14 4-4 4 4"}]];var O9=[["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 yE=[["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 fE=[["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 T9=[["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 P9=[["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 S9=[["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 kE=[["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 A9=[["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 q9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["circle",{cx:"12",cy:"12",r:"1"}]];var E9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M7 10h10"}],["path",{d:"M7 14h10"}]];var C9=[["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 x9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M8 7v7"}],["path",{d:"M12 7v4"}],["path",{d:"M16 7v9"}]];var w9=[["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 U9=[["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 M9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M7 8h10"}],["path",{d:"M7 12h10"}],["path",{d:"M7 16h10"}]];var R9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M8 12h8"}]];var j9=[["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 L9=[["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 y9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 17V7h4a3 3 0 0 1 0 6H9"}]];var S8=[["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 bE=[["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 f9=[["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 k9=[["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 b9=[["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 h9=[["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 v9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M8 12h8"}],["path",{d:"M12 8v8"}]];var $9=[["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 hE=[["path",{d:"M7 12h2l2 5 2-10h4"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]];var g9=[["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 vE=[["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 _9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M16 8.9V7H8l4 5-4 5h8v-1.9"}]];var m9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["line",{x1:"9",x2:"15",y1:"15",y2:"9"}]];var u9=[["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 d9=[["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 $E=[["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}],["rect",{x:"8",y:"8",width:"8",height:"8",rx:"1"}]];var gE=[["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 _E=[["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 mE=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["rect",{x:"9",y:"9",width:"6",height:"6",rx:"1"}]];var c9=[["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 p9=[["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 n9=[["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 i9=[["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 uE=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}]];var dE=[["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 cE=[["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 pE=[["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 nE=[["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 iE=[["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 lE=[["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 sE=[["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 rE=[["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 aE=[["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 tE=[["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 oE=[["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 eE=[["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 ZC=[["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 JC=[["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 KC=[["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 YC=[["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 XC=[["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 WC=[["rect",{width:"20",height:"6",x:"2",y:"4",rx:"2"}],["rect",{width:"20",height:"6",x:"2",y:"14",rx:"2"}]];var QC=[["rect",{width:"6",height:"20",x:"4",y:"2",rx:"2"}],["rect",{width:"6",height:"20",x:"14",y:"2",rx:"2"}]];var VC=[["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 GC=[["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 IC=[["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 zC=[["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 NC=[["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 FC=[["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 HC=[["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 DC=[["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 BC=[["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 TC=[["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 PC=[["path",{d:"M10 21V3h8"}],["path",{d:"M6 16h9"}],["path",{d:"M10 9.5h7"}]];var SC=[["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 AC=[["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 qC=[["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 EC=[["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 CC=[["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 xC=[["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 wC=[["path",{d:"M12 15V9"}],["path",{d:"M3 15h18"}],["path",{d:"M3 9h18"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}]];var UC=[["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 MC=[["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 RC=[["path",{d:"M15 3v18"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M21 9H3"}],["path",{d:"M21 15H3"}]];var jC=[["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 LC=[["path",{d:"M12 3v18"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 9h18"}],["path",{d:"M3 15h18"}]];var yC=[["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 fC=[["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2",ry:"2"}],["line",{x1:"12",x2:"12.01",y1:"18",y2:"18"}]];var kC=[["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 bC=[["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 hC=[["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 vC=[["path",{d:"M4 4v16"}]];var $C=[["path",{d:"M4 4v16"}],["path",{d:"M9 4v16"}]];var gC=[["path",{d:"M4 4v16"}],["path",{d:"M9 4v16"}],["path",{d:"M14 4v16"}]];var _C=[["path",{d:"M4 4v16"}],["path",{d:"M9 4v16"}],["path",{d:"M14 4v16"}],["path",{d:"M19 4v16"}]];var mC=[["path",{d:"M4 4v16"}],["path",{d:"M9 4v16"}],["path",{d:"M14 4v16"}],["path",{d:"M19 4v16"}],["path",{d:"M22 6 2 18"}]];var uC=[["circle",{cx:"12",cy:"12",r:"10"}],["circle",{cx:"12",cy:"12",r:"6"}],["circle",{cx:"12",cy:"12",r:"2"}]];var dC=[["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 cC=[["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 pC=[["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 nC=[["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 iC=[["path",{d:"M12 19h8"}],["path",{d:"m4 17 6-6-6-6"}]];var l9=[["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 lC=[["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 sC=[["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 s9=[["path",{d:"M21 5H3"}],["path",{d:"M17 12H7"}],["path",{d:"M19 19H5"}]];var r9=[["path",{d:"M3 5h18"}],["path",{d:"M3 12h18"}],["path",{d:"M3 19h18"}]];var a9=[["path",{d:"M21 5H3"}],["path",{d:"M21 12H9"}],["path",{d:"M21 19H7"}]];var I5=[["path",{d:"M21 5H3"}],["path",{d:"M15 12H3"}],["path",{d:"M17 19H3"}]];var rC=[["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 t9=[["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 aC=[["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 tC=[["path",{d:"M17 5H3"}],["path",{d:"M21 12H8"}],["path",{d:"M21 19H8"}],["path",{d:"M3 12v7"}]];var oC=[["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 o9=[["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 e9=[["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 eC=[["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 Zx=[["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 Jx=[["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 Kx=[["path",{d:"M14 4v10.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0Z"}]];var Yx=[["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 Xx=[["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 Wx=[["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 Qx=[["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 Vx=[["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 Gx=[["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 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"}]];var zx=[["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 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:"M13 5v2"}],["path",{d:"M13 17v2"}],["path",{d:"M13 11v2"}]];var Fx=[["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 Hx=[["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 Dx=[["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 Bx=[["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 Tx=[["circle",{cx:"9",cy:"12",r:"3"}],["rect",{width:"20",height:"14",x:"2",y:"5",rx:"7"}]];var Px=[["circle",{cx:"15",cy:"12",r:"3"}],["rect",{width:"20",height:"14",x:"2",y:"5",rx:"7"}]];var Sx=[["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 Ax=[["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 qx=[["path",{d:"M21 4H3"}],["path",{d:"M18 8H6"}],["path",{d:"M19 12H9"}],["path",{d:"M16 16h-6"}],["path",{d:"M11 20H9"}]];var Ex=[["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 Cx=[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2"}],["path",{d:"M2 14h20"}],["path",{d:"M12 20v-6"}]];var xx=[["ellipse",{cx:"12",cy:"11",rx:"3",ry:"2"}],["ellipse",{cx:"12",cy:"12.5",rx:"10",ry:"8.5"}]];var wx=[["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 Ux=[["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 Mx=[["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 Rx=[["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 jx=[["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 Lx=[["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 ZZ=[["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 yx=[["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 fx=[["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 kx=[["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 bx=[["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 hx=[["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 JZ=[["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 vx=[["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 $x=[["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 gx=[["path",{d:"M16 17h6v-6"}],["path",{d:"m22 17-8.5-8.5-5 5L2 7"}]];var _x=[["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 mx=[["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 ux=[["path",{d:"M16 7h6v6"}],["path",{d:"m22 7-8.5 8.5-5-5L2 17"}]];var KZ=[["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 dx=[["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 cx=[["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 px=[["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 nx=[["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 ix=[["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 lx=[["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 sx=[["path",{d:"M15 4 5 9"}],["path",{d:"m15 8.5-10 5"}],["path",{d:"M18 12a9 9 0 0 1-9 9V3"}]];var rx=[["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 ax=[["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 tx=[["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 YZ=[["path",{d:"M7 21h10"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2"}]];var ox=[["path",{d:"M21 2H3v16h5v4l4-4h5l4-4V2zm-10 9V7m5 4V7"}]];var ex=[["path",{d:"m17 2-5 5-5-5"}],["rect",{width:"20",height:"15",x:"2",y:"7",rx:"2"}]];var Zw=[["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 Jw=[["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 Kw=[["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 Yw=[["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 Xw=[["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 Ww=[["path",{d:"M6 4v6a6 6 0 0 0 12 0V4"}],["line",{x1:"4",x2:"20",y1:"20",y2:"20"}]];var Qw=[["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 Vw=[["path",{d:"M3 7v6h6"}],["path",{d:"M21 17a9 9 0 0 0-9-9 9 9 0 0 0-6 2.3L3 13"}]];var Gw=[["path",{d:"M21 17a9 9 0 0 0-15-6.7L3 13"}],["path",{d:"M3 7v6h6"}],["circle",{cx:"12",cy:"17",r:"1"}]];var Iw=[["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 zw=[["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 Nw=[["rect",{width:"8",height:"6",x:"5",y:"4",rx:"1"}],["rect",{width:"8",height:"6",x:"11",y:"14",rx:"1"}]];var XZ=[["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 Fw=[["path",{d:"M15 7h2a5 5 0 0 1 0 10h-2m-6 0H7A5 5 0 0 1 7 7h2"}]];var Hw=[["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 Dw=[["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 Bw=[["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 Tw=[["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 Pw=[["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 Sw=[["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 Aw=[["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 qw=[["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 Ew=[["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 WZ=[["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 QZ=[["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 VZ=[["path",{d:"M2 21a8 8 0 0 1 13.292-6"}],["circle",{cx:"10",cy:"8",r:"5"}],["path",{d:"M22 19h-6"}]];var Cw=[["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 GZ=[["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 xw=[["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 IZ=[["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 zZ=[["circle",{cx:"12",cy:"8",r:"5"}],["path",{d:"M20 21a8 8 0 0 0-16 0"}]];var ww=[["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 Uw=[["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 Mw=[["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 Rw=[["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 NZ=[["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 jw=[["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 FZ=[["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 HZ=[["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 Lw=[["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 yw=[["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 fw=[["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 kw=[["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 bw=[["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 hw=[["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 vw=[["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 $w=[["path",{d:"M12 15v7"}],["path",{d:"M9 19h6"}],["circle",{cx:"12",cy:"9",r:"6"}]];var gw=[["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 _w=[["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 mw=[["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 uw=[["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 dw=[["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 cw=[["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 pw=[["circle",{cx:"6",cy:"12",r:"4"}],["circle",{cx:"18",cy:"12",r:"4"}],["line",{x1:"6",x2:"18",y1:"16",y2:"16"}]];var nw=[["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 iw=[["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 lw=[["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 sw=[["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 rw=[["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 aw=[["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 tw=[["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 ow=[["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 DZ=[["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 ew=[["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 BZ=[["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 ZU=[["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 JU=[["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 KU=[["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 YU=[["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 XU=[["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 WU=[["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 QU=[["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 VU=[["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 GU=[["circle",{cx:"12",cy:"10",r:"8"}],["circle",{cx:"12",cy:"10",r:"3"}],["path",{d:"M7 22h10"}],["path",{d:"M12 22v-4"}]];var IU=[["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 zU=[["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 NU=[["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 FU=[["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 HU=[["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 DU=[["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 BU=[["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 TU=[["path",{d:"M12 20h.01"}],["path",{d:"M8.5 16.429a5 5 0 0 1 7 0"}]];var PU=[["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 SU=[["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 AU=[["path",{d:"M12 20h.01"}]];var qU=[["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 EU=[["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 CU=[["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 xU=[["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 wU=[["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 UU=[["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 MU=[["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 RU=[["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 jU=[["path",{d:"M18 6 6 18"}],["path",{d:"m6 6 12 12"}]];var LU=[["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 yU=[["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 fU=[["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 kU=[["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 bU=[["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 hU=[["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 ak=({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. 13 + `)]))])),d5(Q([R("transform","translate(64, 64)")]),Q([X5(Q([H("backfill-ellipse1"),R("cx","0"),R("cy","-28"),R("rx","50"),R("ry","20"),R("fill","url(#backfill-board1)"),R("style","transform-origin: 0 -28px;")])),X5(Q([H("backfill-ellipse2"),R("cx","0"),R("cy","0"),R("rx","60"),R("ry","20"),R("fill","url(#backfill-board2)"),R("style","transform-origin: 0 0;")])),X5(Q([H("backfill-ellipse3"),R("cx","0"),R("cy","28"),R("rx","40"),R("ry","20"),R("fill","#32CD32"),R("style","transform-origin: 0 28px;")]))]))]))}var pj={};BL(pj,{icons:()=>cj,createIcons:()=>Jb,createElement:()=>AK,ZoomOut:()=>mU,ZoomIn:()=>_U,ZapOff:()=>gU,Zap:()=>$U,Youtube:()=>vU,XSquare:()=>i9,XOctagon:()=>U6,XCircle:()=>L7,X:()=>bU,Wrench:()=>kU,WrapText:()=>e9,Worm:()=>hU,Workflow:()=>fU,WineOff:()=>LU,Wine:()=>yU,WindArrowDown:()=>RU,Wind:()=>jU,WifiZero:()=>wU,WifiSync:()=>UU,WifiPen:()=>xU,WifiOff:()=>CU,WifiLow:()=>EU,WifiHigh:()=>qU,WifiCog:()=>AU,Wifi:()=>MU,WholeWord:()=>SU,WheatOff:()=>TU,Wheat:()=>PU,Weight:()=>OU,WebhookOff:()=>DU,Webhook:()=>BU,Webcam:()=>HU,Waypoints:()=>NU,WavesLadder:()=>zU,Waves:()=>FU,Watch:()=>IU,WashingMachine:()=>GU,Warehouse:()=>VU,WandSparkles:()=>BZ,Wand2:()=>BZ,Wand:()=>QU,Wallpaper:()=>WU,WalletMinimal:()=>DZ,WalletCards:()=>YU,Wallet2:()=>DZ,Wallet:()=>XU,Vote:()=>KU,VolumeX:()=>ZU,VolumeOff:()=>ew,Volume2:()=>ow,Volume1:()=>tw,Volume:()=>JU,Volleyball:()=>aw,Voicemail:()=>rw,View:()=>sw,Videotape:()=>lw,VideoOff:()=>nw,Video:()=>iw,VibrateOff:()=>cw,Vibrate:()=>pw,Verified:()=>b4,VenusAndMars:()=>uw,Venus:()=>dw,VenetianMask:()=>mw,Vegan:()=>_w,VectorSquare:()=>$w,Vault:()=>gw,Variable:()=>hw,UtilityPole:()=>vw,UtensilsCrossed:()=>FZ,Utensils:()=>HZ,UsersRound:()=>NZ,Users2:()=>NZ,Users:()=>bw,UserX2:()=>IZ,UserX:()=>fw,UserStar:()=>yw,UserSquare2:()=>p9,UserSquare:()=>n9,UserSearch:()=>Lw,UserRoundX:()=>IZ,UserRoundSearch:()=>jw,UserRoundPlus:()=>GZ,UserRoundPen:()=>Rw,UserRoundMinus:()=>VZ,UserRoundCog:()=>QZ,UserRoundCheck:()=>WZ,UserRound:()=>zZ,UserPlus2:()=>GZ,UserPlus:()=>Mw,UserPen:()=>Uw,UserMinus2:()=>VZ,UserMinus:()=>ww,UserLock:()=>xw,UserCog2:()=>QZ,UserCog:()=>Cw,UserCircle2:()=>R7,UserCircle:()=>j7,UserCheck2:()=>WZ,UserCheck:()=>qw,User2:()=>zZ,User:()=>kw,Usb:()=>Ew,UploadCloud:()=>b7,Upload:()=>Sw,Unplug:()=>Aw,UnlockKeyhole:()=>T6,Unlock:()=>P6,Unlink2:()=>Tw,Unlink:()=>Pw,University:()=>XZ,Ungroup:()=>Ow,UnfoldVertical:()=>Bw,UnfoldHorizontal:()=>Dw,UndoDot:()=>Hw,Undo2:()=>Nw,Undo:()=>Fw,Underline:()=>zw,UmbrellaOff:()=>Gw,Umbrella:()=>Iw,TypeOutline:()=>Qw,Type:()=>Vw,Twitter:()=>Ww,Twitch:()=>Yw,TvMinimalPlay:()=>Kw,TvMinimal:()=>YZ,Tv2:()=>YZ,Tv:()=>Xw,Turtle:()=>Jw,Turntable:()=>Zw,TurkishLira:()=>ex,TruckElectric:()=>tx,Truck:()=>ox,Trophy:()=>ax,TriangleRight:()=>rx,TriangleDashed:()=>lx,TriangleAlert:()=>KZ,Triangle:()=>sx,TrendingUpDown:()=>nx,TrendingUp:()=>ix,TrendingDown:()=>cx,Trello:()=>px,Trees:()=>dx,TreePine:()=>ux,TreePalm:()=>JZ,TreeDeciduous:()=>mx,Trash2:()=>$x,Trash:()=>_x,Transgender:()=>gx,TramFront:()=>ZZ,TrainTrack:()=>vx,TrainFrontTunnel:()=>hx,TrainFront:()=>bx,Train:()=>ZZ,TrafficCone:()=>kx,Tractor:()=>fx,ToyBrick:()=>yx,TowerControl:()=>Lx,TouchpadOff:()=>Mx,Touchpad:()=>Rx,Torus:()=>jx,Tornado:()=>Ux,ToolCase:()=>wx,Toilet:()=>xx,ToggleRight:()=>Cx,ToggleLeft:()=>Ex,TimerReset:()=>Ax,TimerOff:()=>Sx,Timer:()=>qx,TicketsPlane:()=>Tx,Tickets:()=>Px,TicketX:()=>Bx,TicketSlash:()=>Dx,TicketPlus:()=>Hx,TicketPercent:()=>Fx,TicketMinus:()=>Nx,TicketCheck:()=>zx,Ticket:()=>Ox,ThumbsUp:()=>Ix,ThumbsDown:()=>Gx,ThermometerSun:()=>Qx,ThermometerSnowflake:()=>Wx,Thermometer:()=>Vx,Theater:()=>Xx,TextWrap:()=>e9,TextSelection:()=>o9,TextSelect:()=>o9,TextSearch:()=>Yx,TextQuote:()=>Kx,TextInitial:()=>t9,TextCursorInput:()=>Zx,TextCursor:()=>Jx,TextAlignStart:()=>N5,TextAlignJustify:()=>r9,TextAlignEnd:()=>a9,TextAlignCenter:()=>s9,Text:()=>N5,TestTubes:()=>oC,TestTubeDiagonal:()=>l9,TestTube2:()=>l9,TestTube:()=>eC,TerminalSquare:()=>c9,Terminal:()=>tC,TentTree:()=>rC,Tent:()=>aC,Telescope:()=>sC,Target:()=>iC,Tangent:()=>lC,Tally5:()=>nC,Tally4:()=>pC,Tally3:()=>cC,Tally2:()=>dC,Tally1:()=>uC,Tags:()=>mC,Tag:()=>_C,Tablets:()=>$C,TabletSmartphone:()=>vC,Tablet:()=>gC,TableRowsSplit:()=>bC,TableProperties:()=>kC,TableOfContents:()=>fC,TableConfig:()=>Q5,TableColumnsSplit:()=>yC,TableCellsSplit:()=>LC,TableCellsMerge:()=>jC,Table2:()=>RC,Table:()=>hC,Syringe:()=>MC,Swords:()=>UC,Sword:()=>wC,SwitchCamera:()=>xC,SwissFranc:()=>CC,SwatchBook:()=>EC,Superscript:()=>qC,Sunset:()=>AC,Sunrise:()=>SC,SunSnow:()=>TC,SunMoon:()=>OC,SunMedium:()=>BC,SunDim:()=>DC,Sun:()=>PC,Subtitles:()=>m4,Subscript:()=>HC,Strikethrough:()=>FC,StretchVertical:()=>NC,StretchHorizontal:()=>zC,Store:()=>IC,StopCircle:()=>M7,StickyNote:()=>GC,Sticker:()=>VC,Stethoscope:()=>QC,StepForward:()=>WC,StepBack:()=>XC,Stars:()=>s6,StarOff:()=>KC,StarHalf:()=>JC,Star:()=>YC,Stamp:()=>ZC,Squirrel:()=>eE,SquircleDashed:()=>tE,Squircle:()=>oE,SquaresUnite:()=>aE,SquaresSubtract:()=>sE,SquaresIntersect:()=>rE,SquaresExclude:()=>lE,SquareX:()=>i9,SquareUserRound:()=>p9,SquareUser:()=>n9,SquareTerminal:()=>c9,SquareStop:()=>nE,SquareStar:()=>pE,SquareStack:()=>cE,SquareSquare:()=>dE,SquareSplitVertical:()=>d9,SquareSplitHorizontal:()=>u9,SquareSlash:()=>m9,SquareSigma:()=>_9,SquareScissors:()=>$9,SquareRoundCorner:()=>uE,SquareRadical:()=>mE,SquarePower:()=>g9,SquarePlus:()=>v9,SquarePlay:()=>h9,SquarePilcrow:()=>b9,SquarePi:()=>k9,SquarePercent:()=>f9,SquarePen:()=>E8,SquarePause:()=>_E,SquareParkingOff:()=>L9,SquareParking:()=>y9,SquareMousePointer:()=>j9,SquareMinus:()=>R9,SquareMenu:()=>M9,SquareM:()=>U9,SquareLibrary:()=>w9,SquareKanban:()=>x9,SquareGanttChart:()=>z5,SquareFunction:()=>C9,SquareEqual:()=>E9,SquareDot:()=>q9,SquareDivide:()=>A9,SquareDashedTopSolid:()=>$E,SquareDashedMousePointer:()=>P9,SquareDashedKanban:()=>T9,SquareDashedBottomCode:()=>vE,SquareDashedBottom:()=>gE,SquareDashed:()=>S9,SquareCode:()=>O9,SquareChevronUp:()=>B9,SquareChevronRight:()=>D9,SquareChevronLeft:()=>H9,SquareChevronDown:()=>F9,SquareCheckBig:()=>z9,SquareCheck:()=>N9,SquareChartGantt:()=>z5,SquareBottomDashedScissors:()=>I9,SquareAsterisk:()=>G9,SquareArrowUpRight:()=>Q9,SquareArrowUpLeft:()=>W9,SquareArrowUp:()=>V9,SquareArrowRight:()=>X9,SquareArrowOutUpRight:()=>Y9,SquareArrowOutUpLeft:()=>K9,SquareArrowOutDownRight:()=>J9,SquareArrowOutDownLeft:()=>Z9,SquareArrowLeft:()=>e6,SquareArrowDownRight:()=>t6,SquareArrowDownLeft:()=>a6,SquareArrowDown:()=>o6,SquareActivity:()=>r6,Square:()=>iE,Sprout:()=>hE,SprayCan:()=>bE,Spotlight:()=>kE,Spool:()=>fE,SplitSquareVertical:()=>d9,SplitSquareHorizontal:()=>u9,Split:()=>yE,SplinePointer:()=>jE,Spline:()=>LE,SpellCheck2:()=>ME,SpellCheck:()=>RE,Speech:()=>UE,Speaker:()=>wE,Sparkles:()=>s6,Sparkle:()=>xE,Spade:()=>CE,Space:()=>EE,Soup:()=>qE,SortDesc:()=>R4,SortAsc:()=>y4,Sofa:()=>AE,SoapDispenserDroplet:()=>PE,Snowflake:()=>SE,Snail:()=>TE,SmilePlus:()=>BE,Smile:()=>OE,SmartphoneNfc:()=>HE,SmartphoneCharging:()=>FE,Smartphone:()=>DE,SlidersVertical:()=>l6,SlidersHorizontal:()=>NE,Sliders:()=>l6,Slice:()=>zE,SlashSquare:()=>m9,Slash:()=>IE,Slack:()=>GE,Skull:()=>VE,SkipForward:()=>QE,SkipBack:()=>WE,Siren:()=>XE,SignpostBig:()=>KE,Signpost:()=>YE,Signature:()=>JE,SignalZero:()=>eq,SignalMedium:()=>oq,SignalLow:()=>tq,SignalHigh:()=>aq,Signal:()=>ZE,SigmaSquare:()=>_9,Sigma:()=>rq,SidebarOpen:()=>y6,SidebarClose:()=>j6,Sidebar:()=>f6,Shuffle:()=>sq,Shrub:()=>lq,Shrink:()=>iq,Shrimp:()=>nq,Shredder:()=>pq,ShowerHead:()=>cq,Shovel:()=>dq,ShoppingCart:()=>uq,ShoppingBasket:()=>mq,ShoppingBag:()=>_q,Shirt:()=>$q,ShipWheel:()=>vq,Ship:()=>gq,ShieldX:()=>i6,ShieldUser:()=>bq,ShieldQuestionMark:()=>n6,ShieldQuestion:()=>n6,ShieldPlus:()=>kq,ShieldOff:()=>fq,ShieldMinus:()=>yq,ShieldHalf:()=>Lq,ShieldEllipsis:()=>jq,ShieldClose:()=>i6,ShieldCheck:()=>Rq,ShieldBan:()=>Uq,ShieldAlert:()=>Mq,Shield:()=>hq,Shell:()=>xq,Sheet:()=>wq,Share2:()=>Eq,Share:()=>Cq,Shapes:()=>qq,Settings2:()=>Sq,Settings:()=>Aq,ServerOff:()=>Tq,ServerCrash:()=>Oq,ServerCog:()=>Dq,Server:()=>Pq,SeparatorVertical:()=>Bq,SeparatorHorizontal:()=>Hq,SendToBack:()=>Nq,SendHorizontal:()=>p6,SendHorizonal:()=>p6,Send:()=>Fq,Section:()=>zq,SearchX:()=>Gq,SearchSlash:()=>Vq,SearchCode:()=>Wq,SearchCheck:()=>Qq,Search:()=>Iq,ScrollText:()=>Yq,Scroll:()=>Xq,ScreenShareOff:()=>Jq,ScreenShare:()=>Kq,ScissorsSquareDashedBottom:()=>I9,ScissorsSquare:()=>$9,ScissorsLineDashed:()=>eA,Scissors:()=>Zq,School2:()=>XZ,School:()=>oA,ScatterChart:()=>e4,ScanText:()=>aA,ScanSearch:()=>rA,ScanQrCode:()=>sA,ScanLine:()=>lA,ScanHeart:()=>iA,ScanFace:()=>nA,ScanEye:()=>pA,ScanBarcode:()=>cA,Scan:()=>tA,Scaling:()=>dA,Scale3d:()=>c6,Scale3D:()=>c6,Scale:()=>uA,SaveOff:()=>_A,SaveAll:()=>$A,Save:()=>mA,SaudiRiyal:()=>gA,SatelliteDish:()=>hA,Satellite:()=>vA,Sandwich:()=>bA,Salad:()=>kA,Sailboat:()=>fA,RussianRuble:()=>yA,RulerDimensionLine:()=>jA,Ruler:()=>LA,Rss:()=>MA,Rows4:()=>RA,Rows3:()=>d6,Rows2:()=>u6,Rows:()=>u6,Router:()=>UA,RouteOff:()=>xA,Route:()=>wA,RotateCwSquare:()=>EA,RotateCw:()=>CA,RotateCcwSquare:()=>AA,RotateCcwKey:()=>SA,RotateCcw:()=>qA,Rotate3d:()=>m6,Rotate3D:()=>m6,Rose:()=>PA,RollerCoaster:()=>TA,RockingChair:()=>OA,Rocket:()=>BA,Ribbon:()=>DA,Rewind:()=>HA,ReplyAll:()=>NA,Reply:()=>FA,ReplaceAll:()=>IA,Replace:()=>zA,Repeat2:()=>VA,Repeat1:()=>QA,Repeat:()=>GA,RemoveFormatting:()=>WA,Regex:()=>XA,Refrigerator:()=>YA,RefreshCwOff:()=>JA,RefreshCw:()=>KA,RefreshCcwDot:()=>eS,RefreshCcw:()=>ZA,RedoDot:()=>tS,Redo2:()=>aS,Redo:()=>oS,Recycle:()=>rS,RectangleVertical:()=>sS,RectangleHorizontal:()=>lS,RectangleGoggles:()=>iS,RectangleEllipsis:()=>_6,RectangleCircle:()=>nS,ReceiptTurkishLira:()=>pS,ReceiptText:()=>dS,ReceiptSwissFranc:()=>uS,ReceiptRussianRuble:()=>mS,ReceiptPoundSterling:()=>_S,ReceiptJapaneseYen:()=>$S,ReceiptIndianRupee:()=>gS,ReceiptEuro:()=>vS,ReceiptCent:()=>hS,Receipt:()=>cS,Ratio:()=>bS,Rat:()=>fS,Rainbow:()=>kS,RailSymbol:()=>yS,Radius:()=>LS,RadioTower:()=>RS,RadioReceiver:()=>MS,Radio:()=>jS,Radical:()=>US,Radiation:()=>wS,Radar:()=>xS,Rabbit:()=>CS,Quote:()=>ES,QrCode:()=>AS,Pyramid:()=>qS,Puzzle:()=>SS,Proportions:()=>PS,Projector:()=>TS,PrinterCheck:()=>BS,Printer:()=>OS,Presentation:()=>DS,PowerSquare:()=>g9,PowerOff:()=>FS,PowerCircle:()=>w7,Power:()=>HS,PoundSterling:()=>NS,Popsicle:()=>zS,Popcorn:()=>IS,PointerOff:()=>VS,Pointer:()=>GS,Podcast:()=>QS,PocketKnife:()=>XS,Pocket:()=>WS,PlusSquare:()=>v9,PlusCircle:()=>x7,Plus:()=>YS,PlugZap2:()=>$6,PlugZap:()=>$6,Plug2:()=>JS,Plug:()=>KS,PlaySquare:()=>h9,PlayCircle:()=>C7,Play:()=>ZS,PlaneTakeoff:()=>oP,PlaneLanding:()=>tP,Plane:()=>eP,Pizza:()=>aP,Pipette:()=>sP,PinOff:()=>rP,Pin:()=>lP,PillBottle:()=>nP,Pill:()=>iP,PilcrowSquare:()=>b9,PilcrowRight:()=>cP,PilcrowLeft:()=>uP,Pilcrow:()=>pP,PiggyBank:()=>dP,PieChart:()=>o4,PictureInPicture2:()=>_P,PictureInPicture:()=>mP,Pickaxe:()=>$P,Piano:()=>gP,PiSquare:()=>k9,Pi:()=>vP,PhoneOutgoing:()=>bP,PhoneOff:()=>kP,PhoneMissed:()=>fP,PhoneIncoming:()=>yP,PhoneForwarded:()=>LP,PhoneCall:()=>jP,Phone:()=>hP,PhilippinePeso:()=>RP,PersonStanding:()=>MP,PercentSquare:()=>f9,PercentDiamond:()=>_7,PercentCircle:()=>E7,Percent:()=>UP,Pentagon:()=>wP,PencilRuler:()=>CP,PencilOff:()=>EP,PencilLine:()=>qP,Pencil:()=>xP,PenTool:()=>AP,PenSquare:()=>E8,PenOff:()=>SP,PenLine:()=>v6,PenBox:()=>E8,Pen:()=>g6,PcCase:()=>PP,PawPrint:()=>TP,PauseOctagon:()=>w6,PauseCircle:()=>q7,Pause:()=>OP,PartyPopper:()=>BP,ParkingSquareOff:()=>L9,ParkingSquare:()=>y9,ParkingMeter:()=>HP,ParkingCircleOff:()=>S7,ParkingCircle:()=>A7,Parentheses:()=>DP,Paperclip:()=>FP,PanelsTopLeft:()=>h6,PanelsTopBottom:()=>d6,PanelsRightBottom:()=>NP,PanelsLeftRight:()=>g7,PanelsLeftBottom:()=>IP,PanelTopOpen:()=>GP,PanelTopInactive:()=>b6,PanelTopDashed:()=>b6,PanelTopClose:()=>VP,PanelTopBottomDashed:()=>QP,PanelTop:()=>zP,PanelRightOpen:()=>WP,PanelRightInactive:()=>k6,PanelRightDashed:()=>k6,PanelRightClose:()=>YP,PanelRight:()=>XP,PanelLeftRightDashed:()=>KP,PanelLeftOpen:()=>y6,PanelLeftInactive:()=>L6,PanelLeftDashed:()=>L6,PanelLeftClose:()=>j6,PanelLeft:()=>f6,PanelBottomOpen:()=>ZP,PanelBottomInactive:()=>R6,PanelBottomDashed:()=>R6,PanelBottomClose:()=>eT,PanelBottom:()=>JP,Panda:()=>oT,Palmtree:()=>JZ,Palette:()=>tT,PaintbrushVertical:()=>M6,Paintbrush2:()=>M6,Paintbrush:()=>aT,PaintRoller:()=>rT,PaintBucket:()=>sT,PackageX:()=>iT,PackageSearch:()=>nT,PackagePlus:()=>pT,PackageOpen:()=>cT,PackageMinus:()=>dT,PackageCheck:()=>uT,Package2:()=>mT,Package:()=>lT,Outdent:()=>G5,Origami:()=>_T,Orbit:()=>$T,Option:()=>gT,Omega:()=>vT,OctagonX:()=>U6,OctagonPause:()=>w6,OctagonMinus:()=>bT,OctagonAlert:()=>x6,Octagon:()=>hT,NutOff:()=>fT,Nut:()=>kT,NotepadTextDashed:()=>LT,NotepadText:()=>yT,NotebookText:()=>RT,NotebookTabs:()=>MT,NotebookPen:()=>UT,Notebook:()=>jT,NonBinary:()=>wT,Nfc:()=>xT,Newspaper:()=>CT,Network:()=>ET,NavigationOff:()=>AT,Navigation2Off:()=>PT,Navigation2:()=>ST,Navigation:()=>qT,Music4:()=>OT,Music3:()=>BT,Music2:()=>DT,Music:()=>TT,MoveVertical:()=>FT,MoveUpRight:()=>zT,MoveUpLeft:()=>IT,MoveUp:()=>NT,MoveRight:()=>GT,MoveLeft:()=>VT,MoveHorizontal:()=>QT,MoveDownRight:()=>XT,MoveDownLeft:()=>YT,MoveDown:()=>WT,MoveDiagonal2:()=>JT,MoveDiagonal:()=>KT,Move3d:()=>C6,Move3D:()=>C6,Move:()=>HT,MousePointerSquareDashed:()=>P9,MousePointerClick:()=>o2,MousePointerBan:()=>t2,MousePointer2:()=>a2,MousePointer:()=>e2,MouseOff:()=>r2,Mouse:()=>ZT,MountainSnow:()=>l2,Mountain:()=>s2,Motorbike:()=>i2,MoreVertical:()=>u7,MoreHorizontal:()=>d7,MoonStar:()=>p2,Moon:()=>n2,MonitorX:()=>d2,MonitorUp:()=>u2,MonitorStop:()=>m2,MonitorSpeaker:()=>_2,MonitorSmartphone:()=>$2,MonitorPlay:()=>g2,MonitorPause:()=>v2,MonitorOff:()=>h2,MonitorDown:()=>b2,MonitorDot:()=>k2,MonitorCog:()=>f2,MonitorCloud:()=>y2,MonitorCheck:()=>L2,Monitor:()=>c2,MinusSquare:()=>R9,MinusCircle:()=>P7,Minus:()=>j2,Minimize2:()=>M2,Minimize:()=>R2,MilkOff:()=>U2,Milk:()=>w2,Milestone:()=>x2,Microwave:()=>C2,Microscope:()=>E2,Microchip:()=>q2,MicVocal:()=>E6,MicOff:()=>S2,Mic2:()=>E6,Mic:()=>A2,MessagesSquare:()=>P2,MessageSquareX:()=>O2,MessageSquareWarning:()=>B2,MessageSquareText:()=>D2,MessageSquareShare:()=>F2,MessageSquareReply:()=>H2,MessageSquareQuote:()=>N2,MessageSquarePlus:()=>z2,MessageSquareOff:()=>I2,MessageSquareMore:()=>G2,MessageSquareLock:()=>V2,MessageSquareHeart:()=>Q2,MessageSquareDot:()=>W2,MessageSquareDiff:()=>X2,MessageSquareDashed:()=>Y2,MessageSquareCode:()=>K2,MessageSquare:()=>T2,MessageCircleX:()=>Z2,MessageCircleWarning:()=>eO,MessageCircleReply:()=>oO,MessageCircleQuestionMark:()=>q6,MessageCircleQuestion:()=>q6,MessageCirclePlus:()=>tO,MessageCircleOff:()=>aO,MessageCircleMore:()=>rO,MessageCircleHeart:()=>sO,MessageCircleDashed:()=>lO,MessageCircleCode:()=>iO,MessageCircle:()=>J2,Merge:()=>nO,MenuSquare:()=>M9,Menu:()=>pO,MemoryStick:()=>cO,Meh:()=>dO,MegaphoneOff:()=>mO,Megaphone:()=>uO,Medal:()=>_O,Maximize2:()=>gO,Maximize:()=>$O,Martini:()=>vO,MarsStroke:()=>bO,Mars:()=>hO,MapPlus:()=>kO,MapPinned:()=>yO,MapPinXInside:()=>RO,MapPinX:()=>jO,MapPinPlusInside:()=>UO,MapPinPlus:()=>MO,MapPinPen:()=>A6,MapPinOff:()=>wO,MapPinMinusInside:()=>xO,MapPinMinus:()=>CO,MapPinHouse:()=>EO,MapPinCheckInside:()=>AO,MapPinCheck:()=>qO,MapPin:()=>LO,MapMinus:()=>SO,Map:()=>fO,Mails:()=>PO,Mailbox:()=>TO,MailX:()=>BO,MailWarning:()=>DO,MailSearch:()=>HO,MailQuestionMark:()=>S6,MailQuestion:()=>S6,MailPlus:()=>FO,MailOpen:()=>NO,MailMinus:()=>zO,MailCheck:()=>IO,Mail:()=>OO,Magnet:()=>GO,MSquare:()=>U9,Luggage:()=>VO,Lollipop:()=>QO,Logs:()=>WO,LogOut:()=>XO,LogIn:()=>YO,LockOpen:()=>P6,LockKeyholeOpen:()=>T6,LockKeyhole:()=>JO,Lock:()=>KO,LocationEdit:()=>A6,LocateOff:()=>eB,LocateFixed:()=>oB,Locate:()=>ZO,LoaderPinwheel:()=>aB,LoaderCircle:()=>O6,Loader2:()=>O6,Loader:()=>tB,ListX:()=>sB,ListVideo:()=>lB,ListTree:()=>iB,ListTodo:()=>nB,ListStart:()=>pB,ListRestart:()=>dB,ListPlus:()=>uB,ListOrdered:()=>cB,ListMusic:()=>mB,ListMinus:()=>_B,ListIndentIncrease:()=>I5,ListIndentDecrease:()=>G5,ListFilterPlus:()=>$B,ListFilter:()=>gB,ListEnd:()=>vB,ListCollapse:()=>hB,ListChevronsUpDown:()=>bB,ListChevronsDownUp:()=>kB,ListChecks:()=>fB,ListCheck:()=>yB,List:()=>rB,Linkedin:()=>LB,Link2Off:()=>MB,Link2:()=>RB,Link:()=>jB,LineSquiggle:()=>UB,LineChart:()=>s4,LightbulbOff:()=>xB,Lightbulb:()=>wB,Ligature:()=>CB,LifeBuoy:()=>qB,LibrarySquare:()=>w9,LibraryBig:()=>AB,Library:()=>EB,LetterText:()=>t9,Lectern:()=>SB,LeafyGreen:()=>PB,Leaf:()=>TB,LayoutTemplate:()=>OB,LayoutPanelTop:()=>BB,LayoutPanelLeft:()=>DB,LayoutList:()=>HB,LayoutGrid:()=>FB,LayoutDashboard:()=>NB,Layout:()=>h6,Layers3:()=>B6,Layers2:()=>zB,Layers:()=>B6,Laugh:()=>IB,LassoSelect:()=>VB,Lasso:()=>GB,LaptopMinimalCheck:()=>WB,LaptopMinimal:()=>D6,Laptop2:()=>D6,Laptop:()=>QB,Languages:()=>XB,Landmark:()=>YB,LandPlot:()=>KB,LampWallUp:()=>ZB,LampWallDown:()=>eD,LampFloor:()=>oD,LampDesk:()=>tD,LampCeiling:()=>aD,Lamp:()=>JB,KeyboardOff:()=>sD,KeyboardMusic:()=>lD,Keyboard:()=>rD,KeySquare:()=>nD,KeyRound:()=>pD,Key:()=>iD,Kayak:()=>cD,KanbanSquareDashed:()=>T9,KanbanSquare:()=>x9,Kanban:()=>dD,Joystick:()=>uD,JapaneseYen:()=>mD,IterationCw:()=>_D,IterationCcw:()=>gD,Italic:()=>vD,Instagram:()=>$D,InspectionPanel:()=>hD,Inspect:()=>j9,Info:()=>kD,Infinity:()=>bD,IndianRupee:()=>fD,IndentIncrease:()=>I5,IndentDecrease:()=>G5,Indent:()=>I5,Inbox:()=>yD,Import:()=>LD,Images:()=>jD,ImageUpscale:()=>MD,ImageUp:()=>UD,ImagePlus:()=>wD,ImagePlay:()=>xD,ImageOff:()=>CD,ImageMinus:()=>ED,ImageDown:()=>qD,Image:()=>RD,IdCardLanyard:()=>AD,IdCard:()=>SD,IceCreamCone:()=>H6,IceCreamBowl:()=>F6,IceCream2:()=>F6,IceCream:()=>H6,HouseWifi:()=>TD,HousePlus:()=>PD,HousePlug:()=>BD,HouseHeart:()=>OD,House:()=>N6,Hourglass:()=>DD,Hotel:()=>HD,Hospital:()=>FD,HopOff:()=>zD,Hop:()=>ND,Home:()=>N6,History:()=>ID,Highlighter:()=>VD,Hexagon:()=>GD,HelpingHand:()=>z6,HelpCircle:()=>W5,Heater:()=>QD,HeartPulse:()=>XD,HeartPlus:()=>YD,HeartOff:()=>KD,HeartMinus:()=>JD,HeartHandshake:()=>ZD,HeartCrack:()=>eH,Heart:()=>WD,Headset:()=>oH,Headphones:()=>tH,HeadphoneOff:()=>aH,Heading6:()=>sH,Heading5:()=>lH,Heading4:()=>iH,Heading3:()=>nH,Heading2:()=>pH,Heading1:()=>cH,Heading:()=>rH,HdmiPort:()=>dH,Haze:()=>uH,HatGlasses:()=>mH,Hash:()=>_H,HardHat:()=>$H,HardDriveUpload:()=>vH,HardDriveDownload:()=>hH,HardDrive:()=>gH,Handshake:()=>bH,Handbag:()=>kH,HandPlatter:()=>yH,HandMetal:()=>LH,HandHelping:()=>z6,HandHeart:()=>jH,HandGrab:()=>I6,HandFist:()=>RH,HandCoins:()=>MH,Hand:()=>fH,Hammer:()=>UH,Hamburger:()=>wH,Ham:()=>xH,Guitar:()=>CH,Group:()=>EH,GripVertical:()=>AH,GripHorizontal:()=>SH,Grip:()=>qH,Grid3x3:()=>V5,Grid3x2:()=>PH,Grid3X3:()=>V5,Grid2x2X:()=>V6,Grid2x2Plus:()=>Q6,Grid2x2Check:()=>W6,Grid2x2:()=>G6,Grid2X2X:()=>V6,Grid2X2Plus:()=>Q6,Grid2X2Check:()=>W6,Grid2X2:()=>G6,Grid:()=>V5,Grape:()=>TH,GraduationCap:()=>OH,Grab:()=>I6,Gpu:()=>BH,Goal:()=>DH,GlobeLock:()=>FH,Globe2:()=>m7,Globe:()=>HH,Glasses:()=>NH,GlassWater:()=>zH,Gitlab:()=>IH,Github:()=>GH,GitPullRequestDraft:()=>QH,GitPullRequestCreateArrow:()=>YH,GitPullRequestCreate:()=>WH,GitPullRequestClosed:()=>XH,GitPullRequestArrow:()=>KH,GitPullRequest:()=>VH,GitMerge:()=>JH,GitGraph:()=>ZH,GitFork:()=>eF,GitCompareArrows:()=>tF,GitCompare:()=>oF,GitCommitVertical:()=>aF,GitCommitHorizontal:()=>X6,GitCommit:()=>X6,GitBranchPlus:()=>sF,GitBranch:()=>rF,Gift:()=>lF,Ghost:()=>iF,GeorgianLari:()=>nF,Gem:()=>pF,Gavel:()=>cF,GaugeCircle:()=>T7,Gauge:()=>dF,GanttChartSquare:()=>z5,GanttChart:()=>t4,GamepadDirectional:()=>mF,Gamepad2:()=>_F,Gamepad:()=>uF,GalleryVerticalEnd:()=>gF,GalleryVertical:()=>$F,GalleryThumbnails:()=>vF,GalleryHorizontalEnd:()=>bF,GalleryHorizontal:()=>hF,FunnelX:()=>K6,FunnelPlus:()=>kF,Funnel:()=>Y6,FunctionSquare:()=>C9,Fullscreen:()=>fF,Fuel:()=>yF,Frown:()=>LF,Framer:()=>jF,Frame:()=>RF,Forward:()=>MF,FormInput:()=>_6,Forklift:()=>UF,ForkKnifeCrossed:()=>FZ,ForkKnife:()=>HZ,Footprints:()=>wF,Folders:()=>xF,FolderX:()=>EF,FolderUp:()=>qF,FolderTree:()=>AF,FolderSync:()=>SF,FolderSymlink:()=>PF,FolderSearch2:()=>OF,FolderSearch:()=>TF,FolderRoot:()=>BF,FolderPlus:()=>DF,FolderPen:()=>J6,FolderOutput:()=>HF,FolderOpenDot:()=>NF,FolderOpen:()=>FF,FolderMinus:()=>zF,FolderLock:()=>IF,FolderKey:()=>GF,FolderKanban:()=>VF,FolderInput:()=>QF,FolderHeart:()=>WF,FolderGit2:()=>KF,FolderGit:()=>XF,FolderEdit:()=>J6,FolderDown:()=>YF,FolderDot:()=>JF,FolderCog2:()=>Z6,FolderCog:()=>Z6,FolderCode:()=>ZF,FolderClosed:()=>eN,FolderClock:()=>oN,FolderCheck:()=>tN,FolderArchive:()=>aN,Folder:()=>CF,FoldVertical:()=>rN,FoldHorizontal:()=>sN,Focus:()=>lN,Flower2:()=>nN,Flower:()=>iN,FlipVertical2:()=>cN,FlipVertical:()=>pN,FlipHorizontal2:()=>uN,FlipHorizontal:()=>dN,FlaskRound:()=>mN,FlaskConicalOff:()=>$N,FlaskConical:()=>_N,FlashlightOff:()=>vN,Flashlight:()=>gN,FlameKindling:()=>bN,Flame:()=>hN,FlagTriangleRight:()=>fN,FlagTriangleLeft:()=>yN,FlagOff:()=>jN,Flag:()=>kN,FishSymbol:()=>RN,FishOff:()=>MN,Fish:()=>LN,FireExtinguisher:()=>UN,Fingerprint:()=>wN,FilterX:()=>K6,Filter:()=>Y6,Film:()=>xN,Files:()=>EN,FileX2:()=>AN,FileX:()=>qN,FileWarning:()=>SN,FileVolume2:()=>TN,FileVolume:()=>PN,FileVideoCamera:()=>e7,FileVideo2:()=>e7,FileVideo:()=>t7,FileUser:()=>ON,FileUp:()=>BN,FileType2:()=>HN,FileType:()=>DN,FileText:()=>FN,FileTerminal:()=>NN,FileSymlink:()=>zN,FileStack:()=>IN,FileSpreadsheet:()=>GN,FileSliders:()=>VN,FileSignature:()=>r7,FileSearch2:()=>WN,FileSearch:()=>QN,FileScan:()=>XN,FileQuestionMark:()=>o7,FileQuestion:()=>o7,FilePlus2:()=>YN,FilePlus:()=>KN,FilePlay:()=>t7,FilePieChart:()=>i7,FilePenLine:()=>r7,FilePen:()=>a7,FileOutput:()=>JN,FileMusic:()=>ZN,FileMinus2:()=>ez,FileMinus:()=>oz,FileLock2:()=>az,FileLock:()=>tz,FileLineChart:()=>l7,FileKey2:()=>sz,FileKey:()=>rz,FileJson2:()=>iz,FileJson:()=>lz,FileInput:()=>nz,FileImage:()=>pz,FileHeart:()=>cz,FileEdit:()=>a7,FileDown:()=>dz,FileDigit:()=>uz,FileDiff:()=>mz,FileCog2:()=>s7,FileCog:()=>s7,FileCode2:()=>$z,FileCode:()=>_z,FileClock:()=>gz,FileCheck2:()=>hz,FileCheck:()=>vz,FileChartPie:()=>i7,FileChartLine:()=>l7,FileChartColumnIncreasing:()=>p7,FileChartColumn:()=>n7,FileBox:()=>kz,FileBarChart2:()=>n7,FileBarChart:()=>p7,FileBadge2:()=>fz,FileBadge:()=>bz,FileAxis3d:()=>c7,FileAxis3D:()=>c7,FileAudio2:()=>Lz,FileAudio:()=>yz,FileArchive:()=>jz,File:()=>CN,Figma:()=>Rz,FerrisWheel:()=>Mz,Fence:()=>Uz,Feather:()=>wz,FastForward:()=>xz,Fan:()=>Cz,Factory:()=>Ez,Facebook:()=>qz,EyeOff:()=>Pz,EyeClosed:()=>Tz,Eye:()=>Az,ExternalLink:()=>Sz,Expand:()=>Oz,EvCharger:()=>Bz,Euro:()=>Dz,EthernetPort:()=>Hz,Eraser:()=>Fz,EqualSquare:()=>E9,EqualNot:()=>zz,EqualApproximately:()=>Iz,Equal:()=>Nz,EllipsisVertical:()=>u7,Ellipsis:()=>d7,EggOff:()=>Vz,EggFried:()=>Qz,Egg:()=>Gz,Edit3:()=>v6,Edit2:()=>g6,Edit:()=>E8,Eclipse:()=>Wz,EarthLock:()=>Yz,Earth:()=>m7,EarOff:()=>Kz,Ear:()=>Xz,Dumbbell:()=>Jz,Drumstick:()=>Zz,Drum:()=>oI,Droplets:()=>eI,DropletOff:()=>aI,Droplet:()=>tI,Drone:()=>rI,Drill:()=>sI,Dribbble:()=>lI,Drama:()=>iI,DraftingCompass:()=>nI,DownloadCloud:()=>k7,Download:()=>pI,DotSquare:()=>q9,Dot:()=>cI,DoorOpen:()=>dI,DoorClosedLocked:()=>mI,DoorClosed:()=>uI,Donut:()=>_I,DollarSign:()=>$I,Dog:()=>gI,Dock:()=>vI,DnaOff:()=>bI,Dna:()=>hI,DivideSquare:()=>A9,DivideCircle:()=>O7,Divide:()=>kI,DiscAlbum:()=>yI,Disc3:()=>LI,Disc2:()=>jI,Disc:()=>fI,Diff:()=>RI,Dices:()=>UI,Dice6:()=>MI,Dice5:()=>wI,Dice4:()=>xI,Dice3:()=>CI,Dice2:()=>EI,Dice1:()=>qI,DiamondPlus:()=>SI,DiamondPercent:()=>_7,DiamondMinus:()=>PI,Diamond:()=>AI,Diameter:()=>TI,Dessert:()=>BI,Delete:()=>OI,DecimalsArrowRight:()=>DI,DecimalsArrowLeft:()=>FI,DatabaseZap:()=>zI,DatabaseBackup:()=>NI,Database:()=>HI,Dam:()=>II,Cylinder:()=>GI,Currency:()=>VI,CurlyBraces:()=>_4,CupSoda:()=>QI,Cuboid:()=>WI,Crown:()=>XI,Crosshair:()=>YI,Cross:()=>KI,Crop:()=>JI,Croissant:()=>ZI,CreditCard:()=>e3,CreativeCommons:()=>o3,Cpu:()=>t3,CornerUpRight:()=>a3,CornerUpLeft:()=>r3,CornerRightUp:()=>s3,CornerRightDown:()=>l3,CornerLeftUp:()=>i3,CornerLeftDown:()=>n3,CornerDownRight:()=>c3,CornerDownLeft:()=>p3,Copyright:()=>d3,Copyleft:()=>u3,CopyX:()=>_3,CopySlash:()=>$3,CopyPlus:()=>g3,CopyMinus:()=>v3,CopyCheck:()=>h3,Copy:()=>m3,CookingPot:()=>b3,Cookie:()=>k3,Contrast:()=>f3,Container:()=>L3,ContactRound:()=>$7,Contact2:()=>$7,Contact:()=>y3,Construction:()=>j3,Cone:()=>R3,ConciergeBell:()=>M3,Computer:()=>U3,Component:()=>w3,Compass:()=>C3,Command:()=>x3,Combine:()=>E3,ColumnsSettings:()=>Q5,Columns4:()=>q3,Columns3Cog:()=>Q5,Columns3:()=>g7,Columns2:()=>v7,Columns:()=>v7,Coins:()=>A3,Cog:()=>S3,Coffee:()=>P3,Codesandbox:()=>T3,Codepen:()=>O3,CodeXml:()=>h7,CodeSquare:()=>O9,Code2:()=>h7,Code:()=>B3,Club:()=>D3,Clover:()=>H3,Cloudy:()=>F3,CloudUpload:()=>b7,CloudSunRain:()=>I3,CloudSun:()=>z3,CloudSnow:()=>G3,CloudRainWind:()=>Q3,CloudRain:()=>V3,CloudOff:()=>X3,CloudMoonRain:()=>Y3,CloudMoon:()=>W3,CloudLightning:()=>K3,CloudHail:()=>J3,CloudFog:()=>Z3,CloudDrizzle:()=>eG,CloudDownload:()=>k7,CloudCog:()=>oG,CloudCheck:()=>tG,CloudAlert:()=>aG,Cloud:()=>N3,ClosedCaption:()=>rG,ClockPlus:()=>lG,ClockFading:()=>iG,ClockArrowUp:()=>nG,ClockArrowDown:()=>pG,ClockAlert:()=>cG,Clock9:()=>dG,Clock8:()=>uG,Clock7:()=>mG,Clock6:()=>_G,Clock5:()=>$G,Clock4:()=>gG,Clock3:()=>vG,Clock2:()=>hG,Clock12:()=>bG,Clock11:()=>kG,Clock10:()=>fG,Clock1:()=>yG,Clock:()=>sG,ClipboardX:()=>RG,ClipboardType:()=>MG,ClipboardSignature:()=>y7,ClipboardPlus:()=>jG,ClipboardPenLine:()=>y7,ClipboardPen:()=>f7,ClipboardPaste:()=>UG,ClipboardMinus:()=>wG,ClipboardList:()=>xG,ClipboardEdit:()=>f7,ClipboardCopy:()=>CG,ClipboardClock:()=>EG,ClipboardCheck:()=>qG,Clipboard:()=>LG,Clapperboard:()=>AG,Citrus:()=>SG,CircuitBoard:()=>PG,CircleX:()=>L7,CircleUserRound:()=>R7,CircleUser:()=>j7,CircleStop:()=>M7,CircleStar:()=>OG,CircleSmall:()=>BG,CircleSlashed:()=>U7,CircleSlash2:()=>U7,CircleSlash:()=>DG,CircleQuestionMark:()=>W5,CirclePower:()=>w7,CirclePoundSterling:()=>HG,CirclePlus:()=>x7,CirclePlay:()=>C7,CirclePercent:()=>E7,CirclePause:()=>q7,CircleParkingOff:()=>S7,CircleParking:()=>A7,CircleOff:()=>FG,CircleMinus:()=>P7,CircleHelp:()=>W5,CircleGauge:()=>T7,CircleFadingPlus:()=>NG,CircleFadingArrowUp:()=>zG,CircleEqual:()=>IG,CircleEllipsis:()=>GG,CircleDotDashed:()=>QG,CircleDot:()=>VG,CircleDollarSign:()=>WG,CircleDivide:()=>O7,CircleDashed:()=>XG,CircleChevronUp:()=>B7,CircleChevronRight:()=>D7,CircleChevronLeft:()=>H7,CircleChevronDown:()=>N7,CircleCheckBig:()=>z7,CircleCheck:()=>F7,CircleArrowUp:()=>I7,CircleArrowRight:()=>G7,CircleArrowOutUpRight:()=>V7,CircleArrowOutUpLeft:()=>Q7,CircleArrowOutDownRight:()=>W7,CircleArrowOutDownLeft:()=>X7,CircleArrowLeft:()=>Y7,CircleArrowDown:()=>K7,CircleAlert:()=>J7,Circle:()=>TG,CigaretteOff:()=>KG,Cigarette:()=>YG,Church:()=>JG,Chromium:()=>Z7,Chrome:()=>Z7,ChevronsUpDown:()=>ZG,ChevronsUp:()=>eV,ChevronsRightLeft:()=>tV,ChevronsRight:()=>oV,ChevronsLeftRightEllipsis:()=>sV,ChevronsLeftRight:()=>rV,ChevronsLeft:()=>aV,ChevronsDownUp:()=>iV,ChevronsDown:()=>lV,ChevronUpSquare:()=>B9,ChevronUpCircle:()=>B7,ChevronUp:()=>pV,ChevronRightSquare:()=>D9,ChevronRightCircle:()=>D7,ChevronRight:()=>cV,ChevronLeftSquare:()=>H9,ChevronLeftCircle:()=>H7,ChevronLeft:()=>nV,ChevronLast:()=>dV,ChevronFirst:()=>uV,ChevronDownSquare:()=>F9,ChevronDownCircle:()=>N7,ChevronDown:()=>mV,Cherry:()=>_V,ChefHat:()=>$V,CheckSquare2:()=>N9,CheckSquare:()=>z9,CheckLine:()=>gV,CheckCircle2:()=>F7,CheckCircle:()=>z7,CheckCheck:()=>hV,Check:()=>vV,ChartSpline:()=>bV,ChartScatter:()=>e4,ChartPie:()=>o4,ChartNoAxesGantt:()=>t4,ChartNoAxesCombined:()=>kV,ChartNoAxesColumnIncreasing:()=>r4,ChartNoAxesColumnDecreasing:()=>fV,ChartNoAxesColumn:()=>a4,ChartNetwork:()=>yV,ChartLine:()=>s4,ChartGantt:()=>LV,ChartColumnStacked:()=>jV,ChartColumnIncreasing:()=>i4,ChartColumnDecreasing:()=>RV,ChartColumnBig:()=>n4,ChartColumn:()=>l4,ChartCandlestick:()=>p4,ChartBarStacked:()=>MV,ChartBarIncreasing:()=>UV,ChartBarDecreasing:()=>wV,ChartBarBig:()=>d4,ChartBar:()=>c4,ChartArea:()=>u4,Cctv:()=>xV,Cat:()=>CV,Castle:()=>EV,Cast:()=>AV,CassetteTape:()=>qV,CaseUpper:()=>SV,CaseSensitive:()=>PV,CaseLower:()=>TV,Carrot:()=>BV,CardSim:()=>OV,Caravan:()=>DV,CarTaxiFront:()=>FV,CarFront:()=>NV,Car:()=>HV,CaptionsOff:()=>zV,Captions:()=>m4,Cannabis:()=>IV,CandyOff:()=>VV,CandyCane:()=>QV,Candy:()=>GV,CandlestickChart:()=>p4,CameraOff:()=>WV,Camera:()=>XV,CalendarX2:()=>JV,CalendarX:()=>KV,CalendarSync:()=>ZV,CalendarSearch:()=>eQ,CalendarRange:()=>oQ,CalendarPlus2:()=>aQ,CalendarPlus:()=>tQ,CalendarOff:()=>rQ,CalendarMinus2:()=>lQ,CalendarMinus:()=>sQ,CalendarHeart:()=>iQ,CalendarFold:()=>nQ,CalendarDays:()=>pQ,CalendarCog:()=>cQ,CalendarClock:()=>dQ,CalendarCheck2:()=>mQ,CalendarCheck:()=>uQ,CalendarArrowUp:()=>_Q,CalendarArrowDown:()=>$Q,Calendar1:()=>gQ,Calendar:()=>YV,Calculator:()=>vQ,CakeSlice:()=>bQ,Cake:()=>hQ,CableCar:()=>fQ,Cable:()=>kQ,BusFront:()=>LQ,Bus:()=>yQ,Building2:()=>RQ,Building:()=>jQ,BugPlay:()=>UQ,BugOff:()=>wQ,Bug:()=>MQ,Bubbles:()=>xQ,BrushCleaning:()=>EQ,Brush:()=>CQ,BringToFront:()=>qQ,BriefcaseMedical:()=>SQ,BriefcaseConveyorBelt:()=>PQ,BriefcaseBusiness:()=>TQ,Briefcase:()=>AQ,BrickWallShield:()=>BQ,BrickWallFire:()=>DQ,BrickWall:()=>OQ,BrainCog:()=>FQ,BrainCircuit:()=>NQ,Brain:()=>HQ,Brackets:()=>zQ,Braces:()=>_4,Boxes:()=>IQ,BoxSelect:()=>S9,Box:()=>GQ,BowArrow:()=>VQ,BottleWine:()=>QQ,BotOff:()=>XQ,BotMessageSquare:()=>KQ,Bot:()=>WQ,BoomBox:()=>YQ,BookmarkX:()=>ZQ,BookmarkPlus:()=>eW,BookmarkMinus:()=>oW,BookmarkCheck:()=>tW,Bookmark:()=>JQ,BookX:()=>rW,BookUser:()=>sW,BookUp2:()=>iW,BookUp:()=>lW,BookType:()=>nW,BookText:()=>pW,BookTemplate:()=>$4,BookPlus:()=>cW,BookOpenText:()=>uW,BookOpenCheck:()=>mW,BookOpen:()=>dW,BookMinus:()=>_W,BookMarked:()=>$W,BookLock:()=>gW,BookKey:()=>vW,BookImage:()=>hW,BookHeart:()=>bW,BookHeadphones:()=>fW,BookDown:()=>kW,BookDashed:()=>$4,BookCopy:()=>yW,BookCheck:()=>LW,BookAudio:()=>jW,BookAlert:()=>RW,BookA:()=>MW,Book:()=>aW,Bone:()=>UW,Bomb:()=>wW,Bolt:()=>xW,Bold:()=>EW,BluetoothSearching:()=>CW,BluetoothOff:()=>AW,BluetoothConnected:()=>SW,Bluetooth:()=>qW,Blocks:()=>PW,Blinds:()=>OW,Blend:()=>BW,Bitcoin:()=>TW,Birdhouse:()=>DW,Bird:()=>HW,Biohazard:()=>FW,Binoculars:()=>NW,Binary:()=>zW,Bike:()=>IW,BicepsFlexed:()=>GW,BetweenVerticalStart:()=>VW,BetweenVerticalEnd:()=>QW,BetweenHorizontalStart:()=>g4,BetweenHorizontalEnd:()=>v4,BetweenHorizonalStart:()=>g4,BetweenHorizonalEnd:()=>v4,BellRing:()=>XW,BellPlus:()=>YW,BellOff:()=>KW,BellMinus:()=>JW,BellElectric:()=>eX,BellDot:()=>ZW,Bell:()=>WW,BeerOff:()=>tX,Beer:()=>oX,Beef:()=>rX,BedSingle:()=>sX,BedDouble:()=>iX,Bed:()=>aX,BeanOff:()=>nX,Bean:()=>lX,Beaker:()=>pX,BatteryWarning:()=>dX,BatteryPlus:()=>mX,BatteryMedium:()=>uX,BatteryLow:()=>_X,BatteryFull:()=>$X,BatteryCharging:()=>gX,Battery:()=>cX,Bath:()=>vX,Baseline:()=>hX,Barrel:()=>bX,Barcode:()=>kX,BarChartHorizontalBig:()=>d4,BarChartHorizontal:()=>c4,BarChartBig:()=>n4,BarChart4:()=>i4,BarChart3:()=>l4,BarChart2:()=>a4,BarChart:()=>r4,BanknoteX:()=>LX,BanknoteArrowUp:()=>yX,BanknoteArrowDown:()=>jX,Banknote:()=>fX,Bandage:()=>RX,Banana:()=>MX,Ban:()=>UX,BaggageClaim:()=>wX,BadgeX:()=>CX,BadgeTurkishLira:()=>EX,BadgeSwissFranc:()=>qX,BadgeRussianRuble:()=>AX,BadgeQuestionMark:()=>h4,BadgePoundSterling:()=>SX,BadgePlus:()=>PX,BadgePercent:()=>TX,BadgeMinus:()=>OX,BadgeJapaneseYen:()=>BX,BadgeInfo:()=>DX,BadgeIndianRupee:()=>HX,BadgeHelp:()=>h4,BadgeEuro:()=>FX,BadgeDollarSign:()=>NX,BadgeCheck:()=>b4,BadgeCent:()=>zX,BadgeAlert:()=>IX,Badge:()=>xX,Backpack:()=>GX,Baby:()=>VX,Axis3d:()=>k4,Axis3D:()=>k4,Axe:()=>QX,Award:()=>WX,AudioWaveform:()=>XX,AudioLines:()=>YX,Atom:()=>KX,AtSign:()=>JX,AsteriskSquare:()=>G9,Asterisk:()=>ZX,ArrowsUpFromLine:()=>eY,ArrowUpZa:()=>f4,ArrowUpZA:()=>f4,ArrowUpWideNarrow:()=>tY,ArrowUpToLine:()=>aY,ArrowUpSquare:()=>V9,ArrowUpRightSquare:()=>Q9,ArrowUpRightFromSquare:()=>Y9,ArrowUpRightFromCircle:()=>V7,ArrowUpRight:()=>rY,ArrowUpNarrowWide:()=>y4,ArrowUpLeftSquare:()=>W9,ArrowUpLeftFromSquare:()=>K9,ArrowUpLeftFromCircle:()=>Q7,ArrowUpLeft:()=>sY,ArrowUpFromLine:()=>lY,ArrowUpFromDot:()=>iY,ArrowUpDown:()=>nY,ArrowUpCircle:()=>I7,ArrowUpAz:()=>L4,ArrowUpAZ:()=>L4,ArrowUp10:()=>pY,ArrowUp01:()=>cY,ArrowUp:()=>oY,ArrowRightToLine:()=>uY,ArrowRightSquare:()=>X9,ArrowRightLeft:()=>mY,ArrowRightFromLine:()=>_Y,ArrowRightCircle:()=>G7,ArrowRight:()=>dY,ArrowLeftToLine:()=>gY,ArrowLeftSquare:()=>e6,ArrowLeftRight:()=>hY,ArrowLeftFromLine:()=>vY,ArrowLeftCircle:()=>Y7,ArrowLeft:()=>$Y,ArrowDownZa:()=>j4,ArrowDownZA:()=>j4,ArrowDownWideNarrow:()=>R4,ArrowDownUp:()=>kY,ArrowDownToLine:()=>fY,ArrowDownToDot:()=>yY,ArrowDownSquare:()=>o6,ArrowDownRightSquare:()=>t6,ArrowDownRightFromSquare:()=>J9,ArrowDownRightFromCircle:()=>W7,ArrowDownRight:()=>LY,ArrowDownNarrowWide:()=>jY,ArrowDownLeftSquare:()=>a6,ArrowDownLeftFromSquare:()=>Z9,ArrowDownLeftFromCircle:()=>X7,ArrowDownLeft:()=>RY,ArrowDownFromLine:()=>MY,ArrowDownCircle:()=>K7,ArrowDownAz:()=>M4,ArrowDownAZ:()=>M4,ArrowDown10:()=>UY,ArrowDown01:()=>wY,ArrowDown:()=>bY,ArrowBigUpDash:()=>CY,ArrowBigUp:()=>xY,ArrowBigRightDash:()=>qY,ArrowBigRight:()=>EY,ArrowBigLeftDash:()=>SY,ArrowBigLeft:()=>AY,ArrowBigDownDash:()=>TY,ArrowBigDown:()=>PY,Armchair:()=>OY,AreaChart:()=>u4,ArchiveX:()=>DY,ArchiveRestore:()=>HY,Archive:()=>BY,Apple:()=>FY,AppWindowMac:()=>zY,AppWindow:()=>NY,Aperture:()=>IY,Anvil:()=>GY,Antenna:()=>VY,Annoyed:()=>QY,Angry:()=>WY,Anchor:()=>XY,Amphora:()=>YY,Ampersands:()=>KY,Ampersand:()=>JY,Ambulance:()=>ZY,AlignVerticalSpaceBetween:()=>eK,AlignVerticalSpaceAround:()=>oK,AlignVerticalJustifyStart:()=>tK,AlignVerticalJustifyEnd:()=>aK,AlignVerticalJustifyCenter:()=>rK,AlignVerticalDistributeStart:()=>sK,AlignVerticalDistributeEnd:()=>lK,AlignVerticalDistributeCenter:()=>iK,AlignStartVertical:()=>nK,AlignStartHorizontal:()=>pK,AlignRight:()=>a9,AlignLeft:()=>N5,AlignJustify:()=>r9,AlignHorizontalSpaceBetween:()=>cK,AlignHorizontalSpaceAround:()=>dK,AlignHorizontalJustifyStart:()=>uK,AlignHorizontalJustifyEnd:()=>mK,AlignHorizontalJustifyCenter:()=>_K,AlignHorizontalDistributeStart:()=>$K,AlignHorizontalDistributeEnd:()=>gK,AlignHorizontalDistributeCenter:()=>vK,AlignEndVertical:()=>hK,AlignEndHorizontal:()=>bK,AlignCenterVertical:()=>kK,AlignCenterHorizontal:()=>fK,AlignCenter:()=>s9,AlertTriangle:()=>KZ,AlertOctagon:()=>x6,AlertCircle:()=>J7,Album:()=>yK,AlarmSmoke:()=>LK,AlarmPlus:()=>U4,AlarmMinus:()=>w4,AlarmClockPlus:()=>U4,AlarmClockOff:()=>RK,AlarmClockMinus:()=>w4,AlarmClockCheck:()=>x4,AlarmClock:()=>jK,AlarmCheck:()=>x4,Airplay:()=>MK,AirVent:()=>UK,ActivitySquare:()=>r6,Activity:()=>wK,Accessibility:()=>xK,ALargeSmall:()=>CK,AArrowUp:()=>EK,AArrowDown:()=>qK});var SK={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 Zb=([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=Zb(W);X.appendChild(Y)});return X},AK=(Z,J={})=>{let X={...SK,...J};return Zb(["svg",X,Z])};var D$=(Z)=>Array.from(Z.attributes).reduce((J,K)=>{return J[K.name]=K.value,J},{}),B$=(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""},O$=(Z)=>{return Z.flatMap(B$).map((K)=>K.trim()).filter(Boolean).filter((K,X,W)=>W.indexOf(K)===X).join(" ")},T$=(Z)=>Z.replace(/(\w)(\w*)(_|-|\s*)/g,(J,K,X)=>K.toUpperCase()+X.toLowerCase()),dj=(Z,{nameAttr:J,icons:K,attrs:X})=>{let W=Z.getAttribute(J);if(W==null)return;let Y=T$(W),V=K[Y];if(!V)return console.warn(`${Z.outerHTML} icon name was not found in the provided icons object.`);let G=D$(Z),I={...SK,"data-lucide":W,...X,...G},z=O$(["lucide",`lucide-${W}`,G,X]);if(z)Object.assign(I,{class:z});let N=AK(V,I);return Z.parentNode?.replaceChild(N,Z)};var cj={};BL(cj,{ZoomOut:()=>mU,ZoomIn:()=>_U,ZapOff:()=>gU,Zap:()=>$U,Youtube:()=>vU,XSquare:()=>i9,XOctagon:()=>U6,XCircle:()=>L7,X:()=>bU,Wrench:()=>kU,WrapText:()=>e9,Worm:()=>hU,Workflow:()=>fU,WineOff:()=>LU,Wine:()=>yU,WindArrowDown:()=>RU,Wind:()=>jU,WifiZero:()=>wU,WifiSync:()=>UU,WifiPen:()=>xU,WifiOff:()=>CU,WifiLow:()=>EU,WifiHigh:()=>qU,WifiCog:()=>AU,Wifi:()=>MU,WholeWord:()=>SU,WheatOff:()=>TU,Wheat:()=>PU,Weight:()=>OU,WebhookOff:()=>DU,Webhook:()=>BU,Webcam:()=>HU,Waypoints:()=>NU,WavesLadder:()=>zU,Waves:()=>FU,Watch:()=>IU,WashingMachine:()=>GU,Warehouse:()=>VU,WandSparkles:()=>BZ,Wand2:()=>BZ,Wand:()=>QU,Wallpaper:()=>WU,WalletMinimal:()=>DZ,WalletCards:()=>YU,Wallet2:()=>DZ,Wallet:()=>XU,Vote:()=>KU,VolumeX:()=>ZU,VolumeOff:()=>ew,Volume2:()=>ow,Volume1:()=>tw,Volume:()=>JU,Volleyball:()=>aw,Voicemail:()=>rw,View:()=>sw,Videotape:()=>lw,VideoOff:()=>nw,Video:()=>iw,VibrateOff:()=>cw,Vibrate:()=>pw,Verified:()=>b4,VenusAndMars:()=>uw,Venus:()=>dw,VenetianMask:()=>mw,Vegan:()=>_w,VectorSquare:()=>$w,Vault:()=>gw,Variable:()=>hw,UtilityPole:()=>vw,UtensilsCrossed:()=>FZ,Utensils:()=>HZ,UsersRound:()=>NZ,Users2:()=>NZ,Users:()=>bw,UserX2:()=>IZ,UserX:()=>fw,UserStar:()=>yw,UserSquare2:()=>p9,UserSquare:()=>n9,UserSearch:()=>Lw,UserRoundX:()=>IZ,UserRoundSearch:()=>jw,UserRoundPlus:()=>GZ,UserRoundPen:()=>Rw,UserRoundMinus:()=>VZ,UserRoundCog:()=>QZ,UserRoundCheck:()=>WZ,UserRound:()=>zZ,UserPlus2:()=>GZ,UserPlus:()=>Mw,UserPen:()=>Uw,UserMinus2:()=>VZ,UserMinus:()=>ww,UserLock:()=>xw,UserCog2:()=>QZ,UserCog:()=>Cw,UserCircle2:()=>R7,UserCircle:()=>j7,UserCheck2:()=>WZ,UserCheck:()=>qw,User2:()=>zZ,User:()=>kw,Usb:()=>Ew,UploadCloud:()=>b7,Upload:()=>Sw,Unplug:()=>Aw,UnlockKeyhole:()=>T6,Unlock:()=>P6,Unlink2:()=>Tw,Unlink:()=>Pw,University:()=>XZ,Ungroup:()=>Ow,UnfoldVertical:()=>Bw,UnfoldHorizontal:()=>Dw,UndoDot:()=>Hw,Undo2:()=>Nw,Undo:()=>Fw,Underline:()=>zw,UmbrellaOff:()=>Gw,Umbrella:()=>Iw,TypeOutline:()=>Qw,Type:()=>Vw,Twitter:()=>Ww,Twitch:()=>Yw,TvMinimalPlay:()=>Kw,TvMinimal:()=>YZ,Tv2:()=>YZ,Tv:()=>Xw,Turtle:()=>Jw,Turntable:()=>Zw,TurkishLira:()=>ex,TruckElectric:()=>tx,Truck:()=>ox,Trophy:()=>ax,TriangleRight:()=>rx,TriangleDashed:()=>lx,TriangleAlert:()=>KZ,Triangle:()=>sx,TrendingUpDown:()=>nx,TrendingUp:()=>ix,TrendingDown:()=>cx,Trello:()=>px,Trees:()=>dx,TreePine:()=>ux,TreePalm:()=>JZ,TreeDeciduous:()=>mx,Trash2:()=>$x,Trash:()=>_x,Transgender:()=>gx,TramFront:()=>ZZ,TrainTrack:()=>vx,TrainFrontTunnel:()=>hx,TrainFront:()=>bx,Train:()=>ZZ,TrafficCone:()=>kx,Tractor:()=>fx,ToyBrick:()=>yx,TowerControl:()=>Lx,TouchpadOff:()=>Mx,Touchpad:()=>Rx,Torus:()=>jx,Tornado:()=>Ux,ToolCase:()=>wx,Toilet:()=>xx,ToggleRight:()=>Cx,ToggleLeft:()=>Ex,TimerReset:()=>Ax,TimerOff:()=>Sx,Timer:()=>qx,TicketsPlane:()=>Tx,Tickets:()=>Px,TicketX:()=>Bx,TicketSlash:()=>Dx,TicketPlus:()=>Hx,TicketPercent:()=>Fx,TicketMinus:()=>Nx,TicketCheck:()=>zx,Ticket:()=>Ox,ThumbsUp:()=>Ix,ThumbsDown:()=>Gx,ThermometerSun:()=>Qx,ThermometerSnowflake:()=>Wx,Thermometer:()=>Vx,Theater:()=>Xx,TextWrap:()=>e9,TextSelection:()=>o9,TextSelect:()=>o9,TextSearch:()=>Yx,TextQuote:()=>Kx,TextInitial:()=>t9,TextCursorInput:()=>Zx,TextCursor:()=>Jx,TextAlignStart:()=>N5,TextAlignJustify:()=>r9,TextAlignEnd:()=>a9,TextAlignCenter:()=>s9,Text:()=>N5,TestTubes:()=>oC,TestTubeDiagonal:()=>l9,TestTube2:()=>l9,TestTube:()=>eC,TerminalSquare:()=>c9,Terminal:()=>tC,TentTree:()=>rC,Tent:()=>aC,Telescope:()=>sC,Target:()=>iC,Tangent:()=>lC,Tally5:()=>nC,Tally4:()=>pC,Tally3:()=>cC,Tally2:()=>dC,Tally1:()=>uC,Tags:()=>mC,Tag:()=>_C,Tablets:()=>$C,TabletSmartphone:()=>vC,Tablet:()=>gC,TableRowsSplit:()=>bC,TableProperties:()=>kC,TableOfContents:()=>fC,TableConfig:()=>Q5,TableColumnsSplit:()=>yC,TableCellsSplit:()=>LC,TableCellsMerge:()=>jC,Table2:()=>RC,Table:()=>hC,Syringe:()=>MC,Swords:()=>UC,Sword:()=>wC,SwitchCamera:()=>xC,SwissFranc:()=>CC,SwatchBook:()=>EC,Superscript:()=>qC,Sunset:()=>AC,Sunrise:()=>SC,SunSnow:()=>TC,SunMoon:()=>OC,SunMedium:()=>BC,SunDim:()=>DC,Sun:()=>PC,Subtitles:()=>m4,Subscript:()=>HC,Strikethrough:()=>FC,StretchVertical:()=>NC,StretchHorizontal:()=>zC,Store:()=>IC,StopCircle:()=>M7,StickyNote:()=>GC,Sticker:()=>VC,Stethoscope:()=>QC,StepForward:()=>WC,StepBack:()=>XC,Stars:()=>s6,StarOff:()=>KC,StarHalf:()=>JC,Star:()=>YC,Stamp:()=>ZC,Squirrel:()=>eE,SquircleDashed:()=>tE,Squircle:()=>oE,SquaresUnite:()=>aE,SquaresSubtract:()=>sE,SquaresIntersect:()=>rE,SquaresExclude:()=>lE,SquareX:()=>i9,SquareUserRound:()=>p9,SquareUser:()=>n9,SquareTerminal:()=>c9,SquareStop:()=>nE,SquareStar:()=>pE,SquareStack:()=>cE,SquareSquare:()=>dE,SquareSplitVertical:()=>d9,SquareSplitHorizontal:()=>u9,SquareSlash:()=>m9,SquareSigma:()=>_9,SquareScissors:()=>$9,SquareRoundCorner:()=>uE,SquareRadical:()=>mE,SquarePower:()=>g9,SquarePlus:()=>v9,SquarePlay:()=>h9,SquarePilcrow:()=>b9,SquarePi:()=>k9,SquarePercent:()=>f9,SquarePen:()=>E8,SquarePause:()=>_E,SquareParkingOff:()=>L9,SquareParking:()=>y9,SquareMousePointer:()=>j9,SquareMinus:()=>R9,SquareMenu:()=>M9,SquareM:()=>U9,SquareLibrary:()=>w9,SquareKanban:()=>x9,SquareGanttChart:()=>z5,SquareFunction:()=>C9,SquareEqual:()=>E9,SquareDot:()=>q9,SquareDivide:()=>A9,SquareDashedTopSolid:()=>$E,SquareDashedMousePointer:()=>P9,SquareDashedKanban:()=>T9,SquareDashedBottomCode:()=>vE,SquareDashedBottom:()=>gE,SquareDashed:()=>S9,SquareCode:()=>O9,SquareChevronUp:()=>B9,SquareChevronRight:()=>D9,SquareChevronLeft:()=>H9,SquareChevronDown:()=>F9,SquareCheckBig:()=>z9,SquareCheck:()=>N9,SquareChartGantt:()=>z5,SquareBottomDashedScissors:()=>I9,SquareAsterisk:()=>G9,SquareArrowUpRight:()=>Q9,SquareArrowUpLeft:()=>W9,SquareArrowUp:()=>V9,SquareArrowRight:()=>X9,SquareArrowOutUpRight:()=>Y9,SquareArrowOutUpLeft:()=>K9,SquareArrowOutDownRight:()=>J9,SquareArrowOutDownLeft:()=>Z9,SquareArrowLeft:()=>e6,SquareArrowDownRight:()=>t6,SquareArrowDownLeft:()=>a6,SquareArrowDown:()=>o6,SquareActivity:()=>r6,Square:()=>iE,Sprout:()=>hE,SprayCan:()=>bE,Spotlight:()=>kE,Spool:()=>fE,SplitSquareVertical:()=>d9,SplitSquareHorizontal:()=>u9,Split:()=>yE,SplinePointer:()=>jE,Spline:()=>LE,SpellCheck2:()=>ME,SpellCheck:()=>RE,Speech:()=>UE,Speaker:()=>wE,Sparkles:()=>s6,Sparkle:()=>xE,Spade:()=>CE,Space:()=>EE,Soup:()=>qE,SortDesc:()=>R4,SortAsc:()=>y4,Sofa:()=>AE,SoapDispenserDroplet:()=>PE,Snowflake:()=>SE,Snail:()=>TE,SmilePlus:()=>BE,Smile:()=>OE,SmartphoneNfc:()=>HE,SmartphoneCharging:()=>FE,Smartphone:()=>DE,SlidersVertical:()=>l6,SlidersHorizontal:()=>NE,Sliders:()=>l6,Slice:()=>zE,SlashSquare:()=>m9,Slash:()=>IE,Slack:()=>GE,Skull:()=>VE,SkipForward:()=>QE,SkipBack:()=>WE,Siren:()=>XE,SignpostBig:()=>KE,Signpost:()=>YE,Signature:()=>JE,SignalZero:()=>eq,SignalMedium:()=>oq,SignalLow:()=>tq,SignalHigh:()=>aq,Signal:()=>ZE,SigmaSquare:()=>_9,Sigma:()=>rq,SidebarOpen:()=>y6,SidebarClose:()=>j6,Sidebar:()=>f6,Shuffle:()=>sq,Shrub:()=>lq,Shrink:()=>iq,Shrimp:()=>nq,Shredder:()=>pq,ShowerHead:()=>cq,Shovel:()=>dq,ShoppingCart:()=>uq,ShoppingBasket:()=>mq,ShoppingBag:()=>_q,Shirt:()=>$q,ShipWheel:()=>vq,Ship:()=>gq,ShieldX:()=>i6,ShieldUser:()=>bq,ShieldQuestionMark:()=>n6,ShieldQuestion:()=>n6,ShieldPlus:()=>kq,ShieldOff:()=>fq,ShieldMinus:()=>yq,ShieldHalf:()=>Lq,ShieldEllipsis:()=>jq,ShieldClose:()=>i6,ShieldCheck:()=>Rq,ShieldBan:()=>Uq,ShieldAlert:()=>Mq,Shield:()=>hq,Shell:()=>xq,Sheet:()=>wq,Share2:()=>Eq,Share:()=>Cq,Shapes:()=>qq,Settings2:()=>Sq,Settings:()=>Aq,ServerOff:()=>Tq,ServerCrash:()=>Oq,ServerCog:()=>Dq,Server:()=>Pq,SeparatorVertical:()=>Bq,SeparatorHorizontal:()=>Hq,SendToBack:()=>Nq,SendHorizontal:()=>p6,SendHorizonal:()=>p6,Send:()=>Fq,Section:()=>zq,SearchX:()=>Gq,SearchSlash:()=>Vq,SearchCode:()=>Wq,SearchCheck:()=>Qq,Search:()=>Iq,ScrollText:()=>Yq,Scroll:()=>Xq,ScreenShareOff:()=>Jq,ScreenShare:()=>Kq,ScissorsSquareDashedBottom:()=>I9,ScissorsSquare:()=>$9,ScissorsLineDashed:()=>eA,Scissors:()=>Zq,School2:()=>XZ,School:()=>oA,ScatterChart:()=>e4,ScanText:()=>aA,ScanSearch:()=>rA,ScanQrCode:()=>sA,ScanLine:()=>lA,ScanHeart:()=>iA,ScanFace:()=>nA,ScanEye:()=>pA,ScanBarcode:()=>cA,Scan:()=>tA,Scaling:()=>dA,Scale3d:()=>c6,Scale3D:()=>c6,Scale:()=>uA,SaveOff:()=>_A,SaveAll:()=>$A,Save:()=>mA,SaudiRiyal:()=>gA,SatelliteDish:()=>hA,Satellite:()=>vA,Sandwich:()=>bA,Salad:()=>kA,Sailboat:()=>fA,RussianRuble:()=>yA,RulerDimensionLine:()=>jA,Ruler:()=>LA,Rss:()=>MA,Rows4:()=>RA,Rows3:()=>d6,Rows2:()=>u6,Rows:()=>u6,Router:()=>UA,RouteOff:()=>xA,Route:()=>wA,RotateCwSquare:()=>EA,RotateCw:()=>CA,RotateCcwSquare:()=>AA,RotateCcwKey:()=>SA,RotateCcw:()=>qA,Rotate3d:()=>m6,Rotate3D:()=>m6,Rose:()=>PA,RollerCoaster:()=>TA,RockingChair:()=>OA,Rocket:()=>BA,Ribbon:()=>DA,Rewind:()=>HA,ReplyAll:()=>NA,Reply:()=>FA,ReplaceAll:()=>IA,Replace:()=>zA,Repeat2:()=>VA,Repeat1:()=>QA,Repeat:()=>GA,RemoveFormatting:()=>WA,Regex:()=>XA,Refrigerator:()=>YA,RefreshCwOff:()=>JA,RefreshCw:()=>KA,RefreshCcwDot:()=>eS,RefreshCcw:()=>ZA,RedoDot:()=>tS,Redo2:()=>aS,Redo:()=>oS,Recycle:()=>rS,RectangleVertical:()=>sS,RectangleHorizontal:()=>lS,RectangleGoggles:()=>iS,RectangleEllipsis:()=>_6,RectangleCircle:()=>nS,ReceiptTurkishLira:()=>pS,ReceiptText:()=>dS,ReceiptSwissFranc:()=>uS,ReceiptRussianRuble:()=>mS,ReceiptPoundSterling:()=>_S,ReceiptJapaneseYen:()=>$S,ReceiptIndianRupee:()=>gS,ReceiptEuro:()=>vS,ReceiptCent:()=>hS,Receipt:()=>cS,Ratio:()=>bS,Rat:()=>fS,Rainbow:()=>kS,RailSymbol:()=>yS,Radius:()=>LS,RadioTower:()=>RS,RadioReceiver:()=>MS,Radio:()=>jS,Radical:()=>US,Radiation:()=>wS,Radar:()=>xS,Rabbit:()=>CS,Quote:()=>ES,QrCode:()=>AS,Pyramid:()=>qS,Puzzle:()=>SS,Proportions:()=>PS,Projector:()=>TS,PrinterCheck:()=>BS,Printer:()=>OS,Presentation:()=>DS,PowerSquare:()=>g9,PowerOff:()=>FS,PowerCircle:()=>w7,Power:()=>HS,PoundSterling:()=>NS,Popsicle:()=>zS,Popcorn:()=>IS,PointerOff:()=>VS,Pointer:()=>GS,Podcast:()=>QS,PocketKnife:()=>XS,Pocket:()=>WS,PlusSquare:()=>v9,PlusCircle:()=>x7,Plus:()=>YS,PlugZap2:()=>$6,PlugZap:()=>$6,Plug2:()=>JS,Plug:()=>KS,PlaySquare:()=>h9,PlayCircle:()=>C7,Play:()=>ZS,PlaneTakeoff:()=>oP,PlaneLanding:()=>tP,Plane:()=>eP,Pizza:()=>aP,Pipette:()=>sP,PinOff:()=>rP,Pin:()=>lP,PillBottle:()=>nP,Pill:()=>iP,PilcrowSquare:()=>b9,PilcrowRight:()=>cP,PilcrowLeft:()=>uP,Pilcrow:()=>pP,PiggyBank:()=>dP,PieChart:()=>o4,PictureInPicture2:()=>_P,PictureInPicture:()=>mP,Pickaxe:()=>$P,Piano:()=>gP,PiSquare:()=>k9,Pi:()=>vP,PhoneOutgoing:()=>bP,PhoneOff:()=>kP,PhoneMissed:()=>fP,PhoneIncoming:()=>yP,PhoneForwarded:()=>LP,PhoneCall:()=>jP,Phone:()=>hP,PhilippinePeso:()=>RP,PersonStanding:()=>MP,PercentSquare:()=>f9,PercentDiamond:()=>_7,PercentCircle:()=>E7,Percent:()=>UP,Pentagon:()=>wP,PencilRuler:()=>CP,PencilOff:()=>EP,PencilLine:()=>qP,Pencil:()=>xP,PenTool:()=>AP,PenSquare:()=>E8,PenOff:()=>SP,PenLine:()=>v6,PenBox:()=>E8,Pen:()=>g6,PcCase:()=>PP,PawPrint:()=>TP,PauseOctagon:()=>w6,PauseCircle:()=>q7,Pause:()=>OP,PartyPopper:()=>BP,ParkingSquareOff:()=>L9,ParkingSquare:()=>y9,ParkingMeter:()=>HP,ParkingCircleOff:()=>S7,ParkingCircle:()=>A7,Parentheses:()=>DP,Paperclip:()=>FP,PanelsTopLeft:()=>h6,PanelsTopBottom:()=>d6,PanelsRightBottom:()=>NP,PanelsLeftRight:()=>g7,PanelsLeftBottom:()=>IP,PanelTopOpen:()=>GP,PanelTopInactive:()=>b6,PanelTopDashed:()=>b6,PanelTopClose:()=>VP,PanelTopBottomDashed:()=>QP,PanelTop:()=>zP,PanelRightOpen:()=>WP,PanelRightInactive:()=>k6,PanelRightDashed:()=>k6,PanelRightClose:()=>YP,PanelRight:()=>XP,PanelLeftRightDashed:()=>KP,PanelLeftOpen:()=>y6,PanelLeftInactive:()=>L6,PanelLeftDashed:()=>L6,PanelLeftClose:()=>j6,PanelLeft:()=>f6,PanelBottomOpen:()=>ZP,PanelBottomInactive:()=>R6,PanelBottomDashed:()=>R6,PanelBottomClose:()=>eT,PanelBottom:()=>JP,Panda:()=>oT,Palmtree:()=>JZ,Palette:()=>tT,PaintbrushVertical:()=>M6,Paintbrush2:()=>M6,Paintbrush:()=>aT,PaintRoller:()=>rT,PaintBucket:()=>sT,PackageX:()=>iT,PackageSearch:()=>nT,PackagePlus:()=>pT,PackageOpen:()=>cT,PackageMinus:()=>dT,PackageCheck:()=>uT,Package2:()=>mT,Package:()=>lT,Outdent:()=>G5,Origami:()=>_T,Orbit:()=>$T,Option:()=>gT,Omega:()=>vT,OctagonX:()=>U6,OctagonPause:()=>w6,OctagonMinus:()=>bT,OctagonAlert:()=>x6,Octagon:()=>hT,NutOff:()=>fT,Nut:()=>kT,NotepadTextDashed:()=>LT,NotepadText:()=>yT,NotebookText:()=>RT,NotebookTabs:()=>MT,NotebookPen:()=>UT,Notebook:()=>jT,NonBinary:()=>wT,Nfc:()=>xT,Newspaper:()=>CT,Network:()=>ET,NavigationOff:()=>AT,Navigation2Off:()=>PT,Navigation2:()=>ST,Navigation:()=>qT,Music4:()=>OT,Music3:()=>BT,Music2:()=>DT,Music:()=>TT,MoveVertical:()=>FT,MoveUpRight:()=>zT,MoveUpLeft:()=>IT,MoveUp:()=>NT,MoveRight:()=>GT,MoveLeft:()=>VT,MoveHorizontal:()=>QT,MoveDownRight:()=>XT,MoveDownLeft:()=>YT,MoveDown:()=>WT,MoveDiagonal2:()=>JT,MoveDiagonal:()=>KT,Move3d:()=>C6,Move3D:()=>C6,Move:()=>HT,MousePointerSquareDashed:()=>P9,MousePointerClick:()=>o2,MousePointerBan:()=>t2,MousePointer2:()=>a2,MousePointer:()=>e2,MouseOff:()=>r2,Mouse:()=>ZT,MountainSnow:()=>l2,Mountain:()=>s2,Motorbike:()=>i2,MoreVertical:()=>u7,MoreHorizontal:()=>d7,MoonStar:()=>p2,Moon:()=>n2,MonitorX:()=>d2,MonitorUp:()=>u2,MonitorStop:()=>m2,MonitorSpeaker:()=>_2,MonitorSmartphone:()=>$2,MonitorPlay:()=>g2,MonitorPause:()=>v2,MonitorOff:()=>h2,MonitorDown:()=>b2,MonitorDot:()=>k2,MonitorCog:()=>f2,MonitorCloud:()=>y2,MonitorCheck:()=>L2,Monitor:()=>c2,MinusSquare:()=>R9,MinusCircle:()=>P7,Minus:()=>j2,Minimize2:()=>M2,Minimize:()=>R2,MilkOff:()=>U2,Milk:()=>w2,Milestone:()=>x2,Microwave:()=>C2,Microscope:()=>E2,Microchip:()=>q2,MicVocal:()=>E6,MicOff:()=>S2,Mic2:()=>E6,Mic:()=>A2,MessagesSquare:()=>P2,MessageSquareX:()=>O2,MessageSquareWarning:()=>B2,MessageSquareText:()=>D2,MessageSquareShare:()=>F2,MessageSquareReply:()=>H2,MessageSquareQuote:()=>N2,MessageSquarePlus:()=>z2,MessageSquareOff:()=>I2,MessageSquareMore:()=>G2,MessageSquareLock:()=>V2,MessageSquareHeart:()=>Q2,MessageSquareDot:()=>W2,MessageSquareDiff:()=>X2,MessageSquareDashed:()=>Y2,MessageSquareCode:()=>K2,MessageSquare:()=>T2,MessageCircleX:()=>Z2,MessageCircleWarning:()=>eO,MessageCircleReply:()=>oO,MessageCircleQuestionMark:()=>q6,MessageCircleQuestion:()=>q6,MessageCirclePlus:()=>tO,MessageCircleOff:()=>aO,MessageCircleMore:()=>rO,MessageCircleHeart:()=>sO,MessageCircleDashed:()=>lO,MessageCircleCode:()=>iO,MessageCircle:()=>J2,Merge:()=>nO,MenuSquare:()=>M9,Menu:()=>pO,MemoryStick:()=>cO,Meh:()=>dO,MegaphoneOff:()=>mO,Megaphone:()=>uO,Medal:()=>_O,Maximize2:()=>gO,Maximize:()=>$O,Martini:()=>vO,MarsStroke:()=>bO,Mars:()=>hO,MapPlus:()=>kO,MapPinned:()=>yO,MapPinXInside:()=>RO,MapPinX:()=>jO,MapPinPlusInside:()=>UO,MapPinPlus:()=>MO,MapPinPen:()=>A6,MapPinOff:()=>wO,MapPinMinusInside:()=>xO,MapPinMinus:()=>CO,MapPinHouse:()=>EO,MapPinCheckInside:()=>AO,MapPinCheck:()=>qO,MapPin:()=>LO,MapMinus:()=>SO,Map:()=>fO,Mails:()=>PO,Mailbox:()=>TO,MailX:()=>BO,MailWarning:()=>DO,MailSearch:()=>HO,MailQuestionMark:()=>S6,MailQuestion:()=>S6,MailPlus:()=>FO,MailOpen:()=>NO,MailMinus:()=>zO,MailCheck:()=>IO,Mail:()=>OO,Magnet:()=>GO,MSquare:()=>U9,Luggage:()=>VO,Lollipop:()=>QO,Logs:()=>WO,LogOut:()=>XO,LogIn:()=>YO,LockOpen:()=>P6,LockKeyholeOpen:()=>T6,LockKeyhole:()=>JO,Lock:()=>KO,LocationEdit:()=>A6,LocateOff:()=>eB,LocateFixed:()=>oB,Locate:()=>ZO,LoaderPinwheel:()=>aB,LoaderCircle:()=>O6,Loader2:()=>O6,Loader:()=>tB,ListX:()=>sB,ListVideo:()=>lB,ListTree:()=>iB,ListTodo:()=>nB,ListStart:()=>pB,ListRestart:()=>dB,ListPlus:()=>uB,ListOrdered:()=>cB,ListMusic:()=>mB,ListMinus:()=>_B,ListIndentIncrease:()=>I5,ListIndentDecrease:()=>G5,ListFilterPlus:()=>$B,ListFilter:()=>gB,ListEnd:()=>vB,ListCollapse:()=>hB,ListChevronsUpDown:()=>bB,ListChevronsDownUp:()=>kB,ListChecks:()=>fB,ListCheck:()=>yB,List:()=>rB,Linkedin:()=>LB,Link2Off:()=>MB,Link2:()=>RB,Link:()=>jB,LineSquiggle:()=>UB,LineChart:()=>s4,LightbulbOff:()=>xB,Lightbulb:()=>wB,Ligature:()=>CB,LifeBuoy:()=>qB,LibrarySquare:()=>w9,LibraryBig:()=>AB,Library:()=>EB,LetterText:()=>t9,Lectern:()=>SB,LeafyGreen:()=>PB,Leaf:()=>TB,LayoutTemplate:()=>OB,LayoutPanelTop:()=>BB,LayoutPanelLeft:()=>DB,LayoutList:()=>HB,LayoutGrid:()=>FB,LayoutDashboard:()=>NB,Layout:()=>h6,Layers3:()=>B6,Layers2:()=>zB,Layers:()=>B6,Laugh:()=>IB,LassoSelect:()=>VB,Lasso:()=>GB,LaptopMinimalCheck:()=>WB,LaptopMinimal:()=>D6,Laptop2:()=>D6,Laptop:()=>QB,Languages:()=>XB,Landmark:()=>YB,LandPlot:()=>KB,LampWallUp:()=>ZB,LampWallDown:()=>eD,LampFloor:()=>oD,LampDesk:()=>tD,LampCeiling:()=>aD,Lamp:()=>JB,KeyboardOff:()=>sD,KeyboardMusic:()=>lD,Keyboard:()=>rD,KeySquare:()=>nD,KeyRound:()=>pD,Key:()=>iD,Kayak:()=>cD,KanbanSquareDashed:()=>T9,KanbanSquare:()=>x9,Kanban:()=>dD,Joystick:()=>uD,JapaneseYen:()=>mD,IterationCw:()=>_D,IterationCcw:()=>gD,Italic:()=>vD,Instagram:()=>$D,InspectionPanel:()=>hD,Inspect:()=>j9,Info:()=>kD,Infinity:()=>bD,IndianRupee:()=>fD,IndentIncrease:()=>I5,IndentDecrease:()=>G5,Indent:()=>I5,Inbox:()=>yD,Import:()=>LD,Images:()=>jD,ImageUpscale:()=>MD,ImageUp:()=>UD,ImagePlus:()=>wD,ImagePlay:()=>xD,ImageOff:()=>CD,ImageMinus:()=>ED,ImageDown:()=>qD,Image:()=>RD,IdCardLanyard:()=>AD,IdCard:()=>SD,IceCreamCone:()=>H6,IceCreamBowl:()=>F6,IceCream2:()=>F6,IceCream:()=>H6,HouseWifi:()=>TD,HousePlus:()=>PD,HousePlug:()=>BD,HouseHeart:()=>OD,House:()=>N6,Hourglass:()=>DD,Hotel:()=>HD,Hospital:()=>FD,HopOff:()=>zD,Hop:()=>ND,Home:()=>N6,History:()=>ID,Highlighter:()=>VD,Hexagon:()=>GD,HelpingHand:()=>z6,HelpCircle:()=>W5,Heater:()=>QD,HeartPulse:()=>XD,HeartPlus:()=>YD,HeartOff:()=>KD,HeartMinus:()=>JD,HeartHandshake:()=>ZD,HeartCrack:()=>eH,Heart:()=>WD,Headset:()=>oH,Headphones:()=>tH,HeadphoneOff:()=>aH,Heading6:()=>sH,Heading5:()=>lH,Heading4:()=>iH,Heading3:()=>nH,Heading2:()=>pH,Heading1:()=>cH,Heading:()=>rH,HdmiPort:()=>dH,Haze:()=>uH,HatGlasses:()=>mH,Hash:()=>_H,HardHat:()=>$H,HardDriveUpload:()=>vH,HardDriveDownload:()=>hH,HardDrive:()=>gH,Handshake:()=>bH,Handbag:()=>kH,HandPlatter:()=>yH,HandMetal:()=>LH,HandHelping:()=>z6,HandHeart:()=>jH,HandGrab:()=>I6,HandFist:()=>RH,HandCoins:()=>MH,Hand:()=>fH,Hammer:()=>UH,Hamburger:()=>wH,Ham:()=>xH,Guitar:()=>CH,Group:()=>EH,GripVertical:()=>AH,GripHorizontal:()=>SH,Grip:()=>qH,Grid3x3:()=>V5,Grid3x2:()=>PH,Grid3X3:()=>V5,Grid2x2X:()=>V6,Grid2x2Plus:()=>Q6,Grid2x2Check:()=>W6,Grid2x2:()=>G6,Grid2X2X:()=>V6,Grid2X2Plus:()=>Q6,Grid2X2Check:()=>W6,Grid2X2:()=>G6,Grid:()=>V5,Grape:()=>TH,GraduationCap:()=>OH,Grab:()=>I6,Gpu:()=>BH,Goal:()=>DH,GlobeLock:()=>FH,Globe2:()=>m7,Globe:()=>HH,Glasses:()=>NH,GlassWater:()=>zH,Gitlab:()=>IH,Github:()=>GH,GitPullRequestDraft:()=>QH,GitPullRequestCreateArrow:()=>YH,GitPullRequestCreate:()=>WH,GitPullRequestClosed:()=>XH,GitPullRequestArrow:()=>KH,GitPullRequest:()=>VH,GitMerge:()=>JH,GitGraph:()=>ZH,GitFork:()=>eF,GitCompareArrows:()=>tF,GitCompare:()=>oF,GitCommitVertical:()=>aF,GitCommitHorizontal:()=>X6,GitCommit:()=>X6,GitBranchPlus:()=>sF,GitBranch:()=>rF,Gift:()=>lF,Ghost:()=>iF,GeorgianLari:()=>nF,Gem:()=>pF,Gavel:()=>cF,GaugeCircle:()=>T7,Gauge:()=>dF,GanttChartSquare:()=>z5,GanttChart:()=>t4,GamepadDirectional:()=>mF,Gamepad2:()=>_F,Gamepad:()=>uF,GalleryVerticalEnd:()=>gF,GalleryVertical:()=>$F,GalleryThumbnails:()=>vF,GalleryHorizontalEnd:()=>bF,GalleryHorizontal:()=>hF,FunnelX:()=>K6,FunnelPlus:()=>kF,Funnel:()=>Y6,FunctionSquare:()=>C9,Fullscreen:()=>fF,Fuel:()=>yF,Frown:()=>LF,Framer:()=>jF,Frame:()=>RF,Forward:()=>MF,FormInput:()=>_6,Forklift:()=>UF,ForkKnifeCrossed:()=>FZ,ForkKnife:()=>HZ,Footprints:()=>wF,Folders:()=>xF,FolderX:()=>EF,FolderUp:()=>qF,FolderTree:()=>AF,FolderSync:()=>SF,FolderSymlink:()=>PF,FolderSearch2:()=>OF,FolderSearch:()=>TF,FolderRoot:()=>BF,FolderPlus:()=>DF,FolderPen:()=>J6,FolderOutput:()=>HF,FolderOpenDot:()=>NF,FolderOpen:()=>FF,FolderMinus:()=>zF,FolderLock:()=>IF,FolderKey:()=>GF,FolderKanban:()=>VF,FolderInput:()=>QF,FolderHeart:()=>WF,FolderGit2:()=>KF,FolderGit:()=>XF,FolderEdit:()=>J6,FolderDown:()=>YF,FolderDot:()=>JF,FolderCog2:()=>Z6,FolderCog:()=>Z6,FolderCode:()=>ZF,FolderClosed:()=>eN,FolderClock:()=>oN,FolderCheck:()=>tN,FolderArchive:()=>aN,Folder:()=>CF,FoldVertical:()=>rN,FoldHorizontal:()=>sN,Focus:()=>lN,Flower2:()=>nN,Flower:()=>iN,FlipVertical2:()=>cN,FlipVertical:()=>pN,FlipHorizontal2:()=>uN,FlipHorizontal:()=>dN,FlaskRound:()=>mN,FlaskConicalOff:()=>$N,FlaskConical:()=>_N,FlashlightOff:()=>vN,Flashlight:()=>gN,FlameKindling:()=>bN,Flame:()=>hN,FlagTriangleRight:()=>fN,FlagTriangleLeft:()=>yN,FlagOff:()=>jN,Flag:()=>kN,FishSymbol:()=>RN,FishOff:()=>MN,Fish:()=>LN,FireExtinguisher:()=>UN,Fingerprint:()=>wN,FilterX:()=>K6,Filter:()=>Y6,Film:()=>xN,Files:()=>EN,FileX2:()=>AN,FileX:()=>qN,FileWarning:()=>SN,FileVolume2:()=>TN,FileVolume:()=>PN,FileVideoCamera:()=>e7,FileVideo2:()=>e7,FileVideo:()=>t7,FileUser:()=>ON,FileUp:()=>BN,FileType2:()=>HN,FileType:()=>DN,FileText:()=>FN,FileTerminal:()=>NN,FileSymlink:()=>zN,FileStack:()=>IN,FileSpreadsheet:()=>GN,FileSliders:()=>VN,FileSignature:()=>r7,FileSearch2:()=>WN,FileSearch:()=>QN,FileScan:()=>XN,FileQuestionMark:()=>o7,FileQuestion:()=>o7,FilePlus2:()=>YN,FilePlus:()=>KN,FilePlay:()=>t7,FilePieChart:()=>i7,FilePenLine:()=>r7,FilePen:()=>a7,FileOutput:()=>JN,FileMusic:()=>ZN,FileMinus2:()=>ez,FileMinus:()=>oz,FileLock2:()=>az,FileLock:()=>tz,FileLineChart:()=>l7,FileKey2:()=>sz,FileKey:()=>rz,FileJson2:()=>iz,FileJson:()=>lz,FileInput:()=>nz,FileImage:()=>pz,FileHeart:()=>cz,FileEdit:()=>a7,FileDown:()=>dz,FileDigit:()=>uz,FileDiff:()=>mz,FileCog2:()=>s7,FileCog:()=>s7,FileCode2:()=>$z,FileCode:()=>_z,FileClock:()=>gz,FileCheck2:()=>hz,FileCheck:()=>vz,FileChartPie:()=>i7,FileChartLine:()=>l7,FileChartColumnIncreasing:()=>p7,FileChartColumn:()=>n7,FileBox:()=>kz,FileBarChart2:()=>n7,FileBarChart:()=>p7,FileBadge2:()=>fz,FileBadge:()=>bz,FileAxis3d:()=>c7,FileAxis3D:()=>c7,FileAudio2:()=>Lz,FileAudio:()=>yz,FileArchive:()=>jz,File:()=>CN,Figma:()=>Rz,FerrisWheel:()=>Mz,Fence:()=>Uz,Feather:()=>wz,FastForward:()=>xz,Fan:()=>Cz,Factory:()=>Ez,Facebook:()=>qz,EyeOff:()=>Pz,EyeClosed:()=>Tz,Eye:()=>Az,ExternalLink:()=>Sz,Expand:()=>Oz,EvCharger:()=>Bz,Euro:()=>Dz,EthernetPort:()=>Hz,Eraser:()=>Fz,EqualSquare:()=>E9,EqualNot:()=>zz,EqualApproximately:()=>Iz,Equal:()=>Nz,EllipsisVertical:()=>u7,Ellipsis:()=>d7,EggOff:()=>Vz,EggFried:()=>Qz,Egg:()=>Gz,Edit3:()=>v6,Edit2:()=>g6,Edit:()=>E8,Eclipse:()=>Wz,EarthLock:()=>Yz,Earth:()=>m7,EarOff:()=>Kz,Ear:()=>Xz,Dumbbell:()=>Jz,Drumstick:()=>Zz,Drum:()=>oI,Droplets:()=>eI,DropletOff:()=>aI,Droplet:()=>tI,Drone:()=>rI,Drill:()=>sI,Dribbble:()=>lI,Drama:()=>iI,DraftingCompass:()=>nI,DownloadCloud:()=>k7,Download:()=>pI,DotSquare:()=>q9,Dot:()=>cI,DoorOpen:()=>dI,DoorClosedLocked:()=>mI,DoorClosed:()=>uI,Donut:()=>_I,DollarSign:()=>$I,Dog:()=>gI,Dock:()=>vI,DnaOff:()=>bI,Dna:()=>hI,DivideSquare:()=>A9,DivideCircle:()=>O7,Divide:()=>kI,DiscAlbum:()=>yI,Disc3:()=>LI,Disc2:()=>jI,Disc:()=>fI,Diff:()=>RI,Dices:()=>UI,Dice6:()=>MI,Dice5:()=>wI,Dice4:()=>xI,Dice3:()=>CI,Dice2:()=>EI,Dice1:()=>qI,DiamondPlus:()=>SI,DiamondPercent:()=>_7,DiamondMinus:()=>PI,Diamond:()=>AI,Diameter:()=>TI,Dessert:()=>BI,Delete:()=>OI,DecimalsArrowRight:()=>DI,DecimalsArrowLeft:()=>FI,DatabaseZap:()=>zI,DatabaseBackup:()=>NI,Database:()=>HI,Dam:()=>II,Cylinder:()=>GI,Currency:()=>VI,CurlyBraces:()=>_4,CupSoda:()=>QI,Cuboid:()=>WI,Crown:()=>XI,Crosshair:()=>YI,Cross:()=>KI,Crop:()=>JI,Croissant:()=>ZI,CreditCard:()=>e3,CreativeCommons:()=>o3,Cpu:()=>t3,CornerUpRight:()=>a3,CornerUpLeft:()=>r3,CornerRightUp:()=>s3,CornerRightDown:()=>l3,CornerLeftUp:()=>i3,CornerLeftDown:()=>n3,CornerDownRight:()=>c3,CornerDownLeft:()=>p3,Copyright:()=>d3,Copyleft:()=>u3,CopyX:()=>_3,CopySlash:()=>$3,CopyPlus:()=>g3,CopyMinus:()=>v3,CopyCheck:()=>h3,Copy:()=>m3,CookingPot:()=>b3,Cookie:()=>k3,Contrast:()=>f3,Container:()=>L3,ContactRound:()=>$7,Contact2:()=>$7,Contact:()=>y3,Construction:()=>j3,Cone:()=>R3,ConciergeBell:()=>M3,Computer:()=>U3,Component:()=>w3,Compass:()=>C3,Command:()=>x3,Combine:()=>E3,ColumnsSettings:()=>Q5,Columns4:()=>q3,Columns3Cog:()=>Q5,Columns3:()=>g7,Columns2:()=>v7,Columns:()=>v7,Coins:()=>A3,Cog:()=>S3,Coffee:()=>P3,Codesandbox:()=>T3,Codepen:()=>O3,CodeXml:()=>h7,CodeSquare:()=>O9,Code2:()=>h7,Code:()=>B3,Club:()=>D3,Clover:()=>H3,Cloudy:()=>F3,CloudUpload:()=>b7,CloudSunRain:()=>I3,CloudSun:()=>z3,CloudSnow:()=>G3,CloudRainWind:()=>Q3,CloudRain:()=>V3,CloudOff:()=>X3,CloudMoonRain:()=>Y3,CloudMoon:()=>W3,CloudLightning:()=>K3,CloudHail:()=>J3,CloudFog:()=>Z3,CloudDrizzle:()=>eG,CloudDownload:()=>k7,CloudCog:()=>oG,CloudCheck:()=>tG,CloudAlert:()=>aG,Cloud:()=>N3,ClosedCaption:()=>rG,ClockPlus:()=>lG,ClockFading:()=>iG,ClockArrowUp:()=>nG,ClockArrowDown:()=>pG,ClockAlert:()=>cG,Clock9:()=>dG,Clock8:()=>uG,Clock7:()=>mG,Clock6:()=>_G,Clock5:()=>$G,Clock4:()=>gG,Clock3:()=>vG,Clock2:()=>hG,Clock12:()=>bG,Clock11:()=>kG,Clock10:()=>fG,Clock1:()=>yG,Clock:()=>sG,ClipboardX:()=>RG,ClipboardType:()=>MG,ClipboardSignature:()=>y7,ClipboardPlus:()=>jG,ClipboardPenLine:()=>y7,ClipboardPen:()=>f7,ClipboardPaste:()=>UG,ClipboardMinus:()=>wG,ClipboardList:()=>xG,ClipboardEdit:()=>f7,ClipboardCopy:()=>CG,ClipboardClock:()=>EG,ClipboardCheck:()=>qG,Clipboard:()=>LG,Clapperboard:()=>AG,Citrus:()=>SG,CircuitBoard:()=>PG,CircleX:()=>L7,CircleUserRound:()=>R7,CircleUser:()=>j7,CircleStop:()=>M7,CircleStar:()=>OG,CircleSmall:()=>BG,CircleSlashed:()=>U7,CircleSlash2:()=>U7,CircleSlash:()=>DG,CircleQuestionMark:()=>W5,CirclePower:()=>w7,CirclePoundSterling:()=>HG,CirclePlus:()=>x7,CirclePlay:()=>C7,CirclePercent:()=>E7,CirclePause:()=>q7,CircleParkingOff:()=>S7,CircleParking:()=>A7,CircleOff:()=>FG,CircleMinus:()=>P7,CircleHelp:()=>W5,CircleGauge:()=>T7,CircleFadingPlus:()=>NG,CircleFadingArrowUp:()=>zG,CircleEqual:()=>IG,CircleEllipsis:()=>GG,CircleDotDashed:()=>QG,CircleDot:()=>VG,CircleDollarSign:()=>WG,CircleDivide:()=>O7,CircleDashed:()=>XG,CircleChevronUp:()=>B7,CircleChevronRight:()=>D7,CircleChevronLeft:()=>H7,CircleChevronDown:()=>N7,CircleCheckBig:()=>z7,CircleCheck:()=>F7,CircleArrowUp:()=>I7,CircleArrowRight:()=>G7,CircleArrowOutUpRight:()=>V7,CircleArrowOutUpLeft:()=>Q7,CircleArrowOutDownRight:()=>W7,CircleArrowOutDownLeft:()=>X7,CircleArrowLeft:()=>Y7,CircleArrowDown:()=>K7,CircleAlert:()=>J7,Circle:()=>TG,CigaretteOff:()=>KG,Cigarette:()=>YG,Church:()=>JG,Chromium:()=>Z7,Chrome:()=>Z7,ChevronsUpDown:()=>ZG,ChevronsUp:()=>eV,ChevronsRightLeft:()=>tV,ChevronsRight:()=>oV,ChevronsLeftRightEllipsis:()=>sV,ChevronsLeftRight:()=>rV,ChevronsLeft:()=>aV,ChevronsDownUp:()=>iV,ChevronsDown:()=>lV,ChevronUpSquare:()=>B9,ChevronUpCircle:()=>B7,ChevronUp:()=>pV,ChevronRightSquare:()=>D9,ChevronRightCircle:()=>D7,ChevronRight:()=>cV,ChevronLeftSquare:()=>H9,ChevronLeftCircle:()=>H7,ChevronLeft:()=>nV,ChevronLast:()=>dV,ChevronFirst:()=>uV,ChevronDownSquare:()=>F9,ChevronDownCircle:()=>N7,ChevronDown:()=>mV,Cherry:()=>_V,ChefHat:()=>$V,CheckSquare2:()=>N9,CheckSquare:()=>z9,CheckLine:()=>gV,CheckCircle2:()=>F7,CheckCircle:()=>z7,CheckCheck:()=>hV,Check:()=>vV,ChartSpline:()=>bV,ChartScatter:()=>e4,ChartPie:()=>o4,ChartNoAxesGantt:()=>t4,ChartNoAxesCombined:()=>kV,ChartNoAxesColumnIncreasing:()=>r4,ChartNoAxesColumnDecreasing:()=>fV,ChartNoAxesColumn:()=>a4,ChartNetwork:()=>yV,ChartLine:()=>s4,ChartGantt:()=>LV,ChartColumnStacked:()=>jV,ChartColumnIncreasing:()=>i4,ChartColumnDecreasing:()=>RV,ChartColumnBig:()=>n4,ChartColumn:()=>l4,ChartCandlestick:()=>p4,ChartBarStacked:()=>MV,ChartBarIncreasing:()=>UV,ChartBarDecreasing:()=>wV,ChartBarBig:()=>d4,ChartBar:()=>c4,ChartArea:()=>u4,Cctv:()=>xV,Cat:()=>CV,Castle:()=>EV,Cast:()=>AV,CassetteTape:()=>qV,CaseUpper:()=>SV,CaseSensitive:()=>PV,CaseLower:()=>TV,Carrot:()=>BV,CardSim:()=>OV,Caravan:()=>DV,CarTaxiFront:()=>FV,CarFront:()=>NV,Car:()=>HV,CaptionsOff:()=>zV,Captions:()=>m4,Cannabis:()=>IV,CandyOff:()=>VV,CandyCane:()=>QV,Candy:()=>GV,CandlestickChart:()=>p4,CameraOff:()=>WV,Camera:()=>XV,CalendarX2:()=>JV,CalendarX:()=>KV,CalendarSync:()=>ZV,CalendarSearch:()=>eQ,CalendarRange:()=>oQ,CalendarPlus2:()=>aQ,CalendarPlus:()=>tQ,CalendarOff:()=>rQ,CalendarMinus2:()=>lQ,CalendarMinus:()=>sQ,CalendarHeart:()=>iQ,CalendarFold:()=>nQ,CalendarDays:()=>pQ,CalendarCog:()=>cQ,CalendarClock:()=>dQ,CalendarCheck2:()=>mQ,CalendarCheck:()=>uQ,CalendarArrowUp:()=>_Q,CalendarArrowDown:()=>$Q,Calendar1:()=>gQ,Calendar:()=>YV,Calculator:()=>vQ,CakeSlice:()=>bQ,Cake:()=>hQ,CableCar:()=>fQ,Cable:()=>kQ,BusFront:()=>LQ,Bus:()=>yQ,Building2:()=>RQ,Building:()=>jQ,BugPlay:()=>UQ,BugOff:()=>wQ,Bug:()=>MQ,Bubbles:()=>xQ,BrushCleaning:()=>EQ,Brush:()=>CQ,BringToFront:()=>qQ,BriefcaseMedical:()=>SQ,BriefcaseConveyorBelt:()=>PQ,BriefcaseBusiness:()=>TQ,Briefcase:()=>AQ,BrickWallShield:()=>BQ,BrickWallFire:()=>DQ,BrickWall:()=>OQ,BrainCog:()=>FQ,BrainCircuit:()=>NQ,Brain:()=>HQ,Brackets:()=>zQ,Braces:()=>_4,Boxes:()=>IQ,BoxSelect:()=>S9,Box:()=>GQ,BowArrow:()=>VQ,BottleWine:()=>QQ,BotOff:()=>XQ,BotMessageSquare:()=>KQ,Bot:()=>WQ,BoomBox:()=>YQ,BookmarkX:()=>ZQ,BookmarkPlus:()=>eW,BookmarkMinus:()=>oW,BookmarkCheck:()=>tW,Bookmark:()=>JQ,BookX:()=>rW,BookUser:()=>sW,BookUp2:()=>iW,BookUp:()=>lW,BookType:()=>nW,BookText:()=>pW,BookTemplate:()=>$4,BookPlus:()=>cW,BookOpenText:()=>uW,BookOpenCheck:()=>mW,BookOpen:()=>dW,BookMinus:()=>_W,BookMarked:()=>$W,BookLock:()=>gW,BookKey:()=>vW,BookImage:()=>hW,BookHeart:()=>bW,BookHeadphones:()=>fW,BookDown:()=>kW,BookDashed:()=>$4,BookCopy:()=>yW,BookCheck:()=>LW,BookAudio:()=>jW,BookAlert:()=>RW,BookA:()=>MW,Book:()=>aW,Bone:()=>UW,Bomb:()=>wW,Bolt:()=>xW,Bold:()=>EW,BluetoothSearching:()=>CW,BluetoothOff:()=>AW,BluetoothConnected:()=>SW,Bluetooth:()=>qW,Blocks:()=>PW,Blinds:()=>OW,Blend:()=>BW,Bitcoin:()=>TW,Birdhouse:()=>DW,Bird:()=>HW,Biohazard:()=>FW,Binoculars:()=>NW,Binary:()=>zW,Bike:()=>IW,BicepsFlexed:()=>GW,BetweenVerticalStart:()=>VW,BetweenVerticalEnd:()=>QW,BetweenHorizontalStart:()=>g4,BetweenHorizontalEnd:()=>v4,BetweenHorizonalStart:()=>g4,BetweenHorizonalEnd:()=>v4,BellRing:()=>XW,BellPlus:()=>YW,BellOff:()=>KW,BellMinus:()=>JW,BellElectric:()=>eX,BellDot:()=>ZW,Bell:()=>WW,BeerOff:()=>tX,Beer:()=>oX,Beef:()=>rX,BedSingle:()=>sX,BedDouble:()=>iX,Bed:()=>aX,BeanOff:()=>nX,Bean:()=>lX,Beaker:()=>pX,BatteryWarning:()=>dX,BatteryPlus:()=>mX,BatteryMedium:()=>uX,BatteryLow:()=>_X,BatteryFull:()=>$X,BatteryCharging:()=>gX,Battery:()=>cX,Bath:()=>vX,Baseline:()=>hX,Barrel:()=>bX,Barcode:()=>kX,BarChartHorizontalBig:()=>d4,BarChartHorizontal:()=>c4,BarChartBig:()=>n4,BarChart4:()=>i4,BarChart3:()=>l4,BarChart2:()=>a4,BarChart:()=>r4,BanknoteX:()=>LX,BanknoteArrowUp:()=>yX,BanknoteArrowDown:()=>jX,Banknote:()=>fX,Bandage:()=>RX,Banana:()=>MX,Ban:()=>UX,BaggageClaim:()=>wX,BadgeX:()=>CX,BadgeTurkishLira:()=>EX,BadgeSwissFranc:()=>qX,BadgeRussianRuble:()=>AX,BadgeQuestionMark:()=>h4,BadgePoundSterling:()=>SX,BadgePlus:()=>PX,BadgePercent:()=>TX,BadgeMinus:()=>OX,BadgeJapaneseYen:()=>BX,BadgeInfo:()=>DX,BadgeIndianRupee:()=>HX,BadgeHelp:()=>h4,BadgeEuro:()=>FX,BadgeDollarSign:()=>NX,BadgeCheck:()=>b4,BadgeCent:()=>zX,BadgeAlert:()=>IX,Badge:()=>xX,Backpack:()=>GX,Baby:()=>VX,Axis3d:()=>k4,Axis3D:()=>k4,Axe:()=>QX,Award:()=>WX,AudioWaveform:()=>XX,AudioLines:()=>YX,Atom:()=>KX,AtSign:()=>JX,AsteriskSquare:()=>G9,Asterisk:()=>ZX,ArrowsUpFromLine:()=>eY,ArrowUpZa:()=>f4,ArrowUpZA:()=>f4,ArrowUpWideNarrow:()=>tY,ArrowUpToLine:()=>aY,ArrowUpSquare:()=>V9,ArrowUpRightSquare:()=>Q9,ArrowUpRightFromSquare:()=>Y9,ArrowUpRightFromCircle:()=>V7,ArrowUpRight:()=>rY,ArrowUpNarrowWide:()=>y4,ArrowUpLeftSquare:()=>W9,ArrowUpLeftFromSquare:()=>K9,ArrowUpLeftFromCircle:()=>Q7,ArrowUpLeft:()=>sY,ArrowUpFromLine:()=>lY,ArrowUpFromDot:()=>iY,ArrowUpDown:()=>nY,ArrowUpCircle:()=>I7,ArrowUpAz:()=>L4,ArrowUpAZ:()=>L4,ArrowUp10:()=>pY,ArrowUp01:()=>cY,ArrowUp:()=>oY,ArrowRightToLine:()=>uY,ArrowRightSquare:()=>X9,ArrowRightLeft:()=>mY,ArrowRightFromLine:()=>_Y,ArrowRightCircle:()=>G7,ArrowRight:()=>dY,ArrowLeftToLine:()=>gY,ArrowLeftSquare:()=>e6,ArrowLeftRight:()=>hY,ArrowLeftFromLine:()=>vY,ArrowLeftCircle:()=>Y7,ArrowLeft:()=>$Y,ArrowDownZa:()=>j4,ArrowDownZA:()=>j4,ArrowDownWideNarrow:()=>R4,ArrowDownUp:()=>kY,ArrowDownToLine:()=>fY,ArrowDownToDot:()=>yY,ArrowDownSquare:()=>o6,ArrowDownRightSquare:()=>t6,ArrowDownRightFromSquare:()=>J9,ArrowDownRightFromCircle:()=>W7,ArrowDownRight:()=>LY,ArrowDownNarrowWide:()=>jY,ArrowDownLeftSquare:()=>a6,ArrowDownLeftFromSquare:()=>Z9,ArrowDownLeftFromCircle:()=>X7,ArrowDownLeft:()=>RY,ArrowDownFromLine:()=>MY,ArrowDownCircle:()=>K7,ArrowDownAz:()=>M4,ArrowDownAZ:()=>M4,ArrowDown10:()=>UY,ArrowDown01:()=>wY,ArrowDown:()=>bY,ArrowBigUpDash:()=>CY,ArrowBigUp:()=>xY,ArrowBigRightDash:()=>qY,ArrowBigRight:()=>EY,ArrowBigLeftDash:()=>SY,ArrowBigLeft:()=>AY,ArrowBigDownDash:()=>TY,ArrowBigDown:()=>PY,Armchair:()=>OY,AreaChart:()=>u4,ArchiveX:()=>DY,ArchiveRestore:()=>HY,Archive:()=>BY,Apple:()=>FY,AppWindowMac:()=>zY,AppWindow:()=>NY,Aperture:()=>IY,Anvil:()=>GY,Antenna:()=>VY,Annoyed:()=>QY,Angry:()=>WY,Anchor:()=>XY,Amphora:()=>YY,Ampersands:()=>KY,Ampersand:()=>JY,Ambulance:()=>ZY,AlignVerticalSpaceBetween:()=>eK,AlignVerticalSpaceAround:()=>oK,AlignVerticalJustifyStart:()=>tK,AlignVerticalJustifyEnd:()=>aK,AlignVerticalJustifyCenter:()=>rK,AlignVerticalDistributeStart:()=>sK,AlignVerticalDistributeEnd:()=>lK,AlignVerticalDistributeCenter:()=>iK,AlignStartVertical:()=>nK,AlignStartHorizontal:()=>pK,AlignRight:()=>a9,AlignLeft:()=>N5,AlignJustify:()=>r9,AlignHorizontalSpaceBetween:()=>cK,AlignHorizontalSpaceAround:()=>dK,AlignHorizontalJustifyStart:()=>uK,AlignHorizontalJustifyEnd:()=>mK,AlignHorizontalJustifyCenter:()=>_K,AlignHorizontalDistributeStart:()=>$K,AlignHorizontalDistributeEnd:()=>gK,AlignHorizontalDistributeCenter:()=>vK,AlignEndVertical:()=>hK,AlignEndHorizontal:()=>bK,AlignCenterVertical:()=>kK,AlignCenterHorizontal:()=>fK,AlignCenter:()=>s9,AlertTriangle:()=>KZ,AlertOctagon:()=>x6,AlertCircle:()=>J7,Album:()=>yK,AlarmSmoke:()=>LK,AlarmPlus:()=>U4,AlarmMinus:()=>w4,AlarmClockPlus:()=>U4,AlarmClockOff:()=>RK,AlarmClockMinus:()=>w4,AlarmClockCheck:()=>x4,AlarmClock:()=>jK,AlarmCheck:()=>x4,Airplay:()=>MK,AirVent:()=>UK,ActivitySquare:()=>r6,Activity:()=>wK,Accessibility:()=>xK,ALargeSmall:()=>CK,AArrowUp:()=>EK,AArrowDown:()=>qK});var qK=[["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 CK=[["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 xK=[["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 wK=[["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 UK=[["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 MK=[["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 x4=[["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 w4=[["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 RK=[["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 U4=[["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 jK=[["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 LK=[["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 yK=[["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 fK=[["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 kK=[["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 bK=[["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 hK=[["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 vK=[["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 gK=[["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 $K=[["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 _K=[["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 mK=[["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 uK=[["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 dK=[["rect",{width:"6",height:"10",x:"9",y:"7",rx:"2"}],["path",{d:"M4 22V2"}],["path",{d:"M20 22V2"}]];var cK=[["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 pK=[["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 nK=[["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 iK=[["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 lK=[["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 sK=[["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 rK=[["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 aK=[["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 tK=[["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 oK=[["rect",{width:"10",height:"6",x:"7",y:"9",rx:"2"}],["path",{d:"M22 20H2"}],["path",{d:"M22 4H2"}]];var eK=[["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 ZY=[["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 JY=[["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 YY=[["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 XY=[["path",{d:"M12 22V8"}],["path",{d:"M5 12H2a10 10 0 0 0 20 0h-3"}],["circle",{cx:"12",cy:"5",r:"3"}]];var WY=[["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 QY=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M8 15h8"}],["path",{d:"M8 9h2"}],["path",{d:"M14 9h2"}]];var VY=[["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 GY=[["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 IY=[["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 zY=[["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 NY=[["rect",{x:"2",y:"4",width:"20",height:"16",rx:"2"}],["path",{d:"M10 4v4"}],["path",{d:"M2 8h20"}],["path",{d:"M6 4v4"}]];var FY=[["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 HY=[["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 DY=[["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 BY=[["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 OY=[["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 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-1V9a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1z"}],["path",{d:"M9 4h6"}]];var PY=[["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 SY=[["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 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-1h6a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1z"}]];var qY=[["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 CY=[["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 xY=[["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 wY=[["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 UY=[["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 M4=[["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 MY=[["path",{d:"M19 3H5"}],["path",{d:"M12 21V7"}],["path",{d:"m6 15 6 6 6-6"}]];var RY=[["path",{d:"M17 7 7 17"}],["path",{d:"M17 17H7V7"}]];var jY=[["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 LY=[["path",{d:"m7 7 10 10"}],["path",{d:"M17 7v10H7"}]];var yY=[["path",{d:"M12 2v14"}],["path",{d:"m19 9-7 7-7-7"}],["circle",{cx:"12",cy:"21",r:"1"}]];var fY=[["path",{d:"M12 17V3"}],["path",{d:"m6 11 6 6 6-6"}],["path",{d:"M19 21H5"}]];var kY=[["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 R4=[["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 j4=[["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 bY=[["path",{d:"M12 5v14"}],["path",{d:"m19 12-7 7-7-7"}]];var hY=[["path",{d:"M8 3 4 7l4 4"}],["path",{d:"M4 7h16"}],["path",{d:"m16 21 4-4-4-4"}],["path",{d:"M20 17H4"}]];var vY=[["path",{d:"m9 6-6 6 6 6"}],["path",{d:"M3 12h14"}],["path",{d:"M21 19V5"}]];var gY=[["path",{d:"M3 19V5"}],["path",{d:"m13 6-6 6 6 6"}],["path",{d:"M7 12h14"}]];var $Y=[["path",{d:"m12 19-7-7 7-7"}],["path",{d:"M19 12H5"}]];var _Y=[["path",{d:"M3 5v14"}],["path",{d:"M21 12H7"}],["path",{d:"m15 18 6-6-6-6"}]];var mY=[["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 uY=[["path",{d:"M17 12H3"}],["path",{d:"m11 18 6-6-6-6"}],["path",{d:"M21 5v14"}]];var dY=[["path",{d:"M5 12h14"}],["path",{d:"m12 5 7 7-7 7"}]];var cY=[["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 pY=[["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 L4=[["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 nY=[["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 iY=[["path",{d:"m5 9 7-7 7 7"}],["path",{d:"M12 16V2"}],["circle",{cx:"12",cy:"21",r:"1"}]];var lY=[["path",{d:"m18 9-6-6-6 6"}],["path",{d:"M12 3v14"}],["path",{d:"M5 21h14"}]];var sY=[["path",{d:"M7 17V7h10"}],["path",{d:"M17 17 7 7"}]];var y4=[["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 rY=[["path",{d:"M7 7h10v10"}],["path",{d:"M7 17 17 7"}]];var aY=[["path",{d:"M5 3h14"}],["path",{d:"m18 13-6-6-6 6"}],["path",{d:"M12 7v14"}]];var tY=[["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 f4=[["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 oY=[["path",{d:"m5 12 7-7 7 7"}],["path",{d:"M12 19V5"}]];var eY=[["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 ZX=[["path",{d:"M12 6v12"}],["path",{d:"M17.196 9 6.804 15"}],["path",{d:"m6.804 9 10.392 6"}]];var JX=[["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 YX=[["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 XX=[["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 WX=[["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 QX=[["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 k4=[["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 VX=[["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 GX=[["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 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"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16"}]];var zX=[["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 b4=[["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 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:"M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8"}],["path",{d:"M12 18V6"}]];var FX=[["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 HX=[["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 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:"16",y2:"12"}],["line",{x1:"12",x2:"12.01",y1:"8",y2:"8"}]];var BX=[["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 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"}],["line",{x1:"8",x2:"16",y1:"12",y2:"12"}]];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:"m15 9-6 6"}],["path",{d:"M9 9h.01"}],["path",{d:"M15 15h.01"}]];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"}],["line",{x1:"12",x2:"12",y1:"8",y2:"16"}],["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:"M8 12h4"}],["path",{d:"M10 16V9.5a2.5 2.5 0 0 1 5 0"}],["path",{d:"M8 16h7"}]];var h4=[["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 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:"M9 16h5"}],["path",{d:"M9 12h5a2 2 0 1 0 0-4h-3v9"}]];var qX=[["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 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"}],["line",{x1:"15",x2:"9",y1:"9",y2:"15"}],["line",{x1:"9",x2:"15",y1:"9",y2:"15"}]];var xX=[["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 wX=[["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 UX=[["path",{d:"M4.929 4.929 19.07 19.071"}],["circle",{cx:"12",cy:"12",r:"10"}]];var MX=[["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 RX=[["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 jX=[["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 LX=[["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 yX=[["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 fX=[["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 kX=[["path",{d:"M3 5v14"}],["path",{d:"M8 5v14"}],["path",{d:"M12 5v14"}],["path",{d:"M17 5v14"}],["path",{d:"M21 5v14"}]];var bX=[["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 hX=[["path",{d:"M4 20h16"}],["path",{d:"m6 16 6-12 6 12"}],["path",{d:"M8 12h8"}]];var vX=[["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 gX=[["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 $X=[["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 _X=[["path",{d:"M22 14v-4"}],["path",{d:"M6 14v-4"}],["rect",{x:"2",y:"6",width:"16",height:"12",rx:"2"}]];var mX=[["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 uX=[["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 dX=[["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 cX=[["path",{d:"M 22 14 L 22 10"}],["rect",{x:"2",y:"6",width:"16",height:"12",rx:"2"}]];var pX=[["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 nX=[["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 iX=[["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 lX=[["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 sX=[["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 rX=[["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 aX=[["path",{d:"M2 4v16"}],["path",{d:"M2 8h18a2 2 0 0 1 2 2v10"}],["path",{d:"M2 17h20"}],["path",{d:"M6 8v9"}]];var tX=[["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 oX=[["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 eX=[["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 ZW=[["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 JW=[["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 YW=[["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 XW=[["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 WW=[["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 v4=[["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 g4=[["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 QW=[["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 VW=[["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 GW=[["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 IW=[["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 zW=[["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 NW=[["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 FW=[["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 HW=[["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 DW=[["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 BW=[["circle",{cx:"9",cy:"9",r:"7"}],["circle",{cx:"15",cy:"15",r:"7"}]];var OW=[["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 TW=[["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 PW=[["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 SW=[["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 AW=[["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 qW=[["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 CW=[["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 xW=[["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 wW=[["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 UW=[["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 MW=[["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 RW=[["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 jW=[["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 LW=[["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 yW=[["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 $4=[["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 fW=[["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 kW=[["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 bW=[["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 hW=[["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 vW=[["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 gW=[["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 $W=[["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 _W=[["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 mW=[["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 uW=[["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 dW=[["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 cW=[["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 pW=[["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 nW=[["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 iW=[["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 lW=[["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 sW=[["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 rW=[["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 aW=[["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 tW=[["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 oW=[["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 eW=[["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 ZQ=[["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 JQ=[["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 YQ=[["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 XQ=[["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 WQ=[["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 QQ=[["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 VQ=[["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 GQ=[["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 IQ=[["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 _4=[["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 zQ=[["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 NQ=[["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 FQ=[["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 HQ=[["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 DQ=[["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 BQ=[["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 OQ=[["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 TQ=[["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 PQ=[["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 SQ=[["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 AQ=[["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 qQ=[["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 CQ=[["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 xQ=[["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 wQ=[["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 UQ=[["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 MQ=[["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 RQ=[["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 jQ=[["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 LQ=[["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 yQ=[["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 fQ=[["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 kQ=[["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 bQ=[["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 hQ=[["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 vQ=[["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 gQ=[["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 $Q=[["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 _Q=[["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 mQ=[["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 uQ=[["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 dQ=[["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 cQ=[["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 pQ=[["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 nQ=[["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 iQ=[["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 lQ=[["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 sQ=[["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 rQ=[["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 aQ=[["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 tQ=[["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 oQ=[["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 eQ=[["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 ZV=[["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 JV=[["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 YV=[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2"}],["path",{d:"M3 10h18"}]];var XV=[["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 WV=[["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 QV=[["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 VV=[["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 GV=[["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 IV=[["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 zV=[["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 m4=[["rect",{width:"18",height:"14",x:"3",y:"5",rx:"2",ry:"2"}],["path",{d:"M7 15h4M15 15h2M7 11h2M13 11h4"}]];var NV=[["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 FV=[["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 HV=[["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 DV=[["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 BV=[["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 OV=[["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 TV=[["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 PV=[["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 SV=[["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 AV=[["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 qV=[["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 CV=[["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 xV=[["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 u4=[["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 d4=[["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 wV=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M7 11h8"}],["path",{d:"M7 16h3"}],["path",{d:"M7 6h12"}]];var UV=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M7 11h8"}],["path",{d:"M7 16h12"}],["path",{d:"M7 6h3"}]];var MV=[["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 c4=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M7 16h8"}],["path",{d:"M7 11h12"}],["path",{d:"M7 6h3"}]];var p4=[["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 n4=[["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 RV=[["path",{d:"M13 17V9"}],["path",{d:"M18 17v-3"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M8 17V5"}]];var i4=[["path",{d:"M13 17V9"}],["path",{d:"M18 17V5"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M8 17v-3"}]];var jV=[["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 l4=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M18 17V9"}],["path",{d:"M13 17V5"}],["path",{d:"M8 17v-3"}]];var LV=[["path",{d:"M10 6h8"}],["path",{d:"M12 16h6"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M8 11h7"}]];var s4=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"m19 9-5 5-4-4-3 3"}]];var yV=[["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 fV=[["path",{d:"M5 21V3"}],["path",{d:"M12 21V9"}],["path",{d:"M19 21v-6"}]];var r4=[["path",{d:"M5 21v-6"}],["path",{d:"M12 21V9"}],["path",{d:"M19 21V3"}]];var a4=[["path",{d:"M5 21v-6"}],["path",{d:"M12 21V3"}],["path",{d:"M19 21V9"}]];var t4=[["path",{d:"M6 5h12"}],["path",{d:"M4 12h10"}],["path",{d:"M12 19h8"}]];var kV=[["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 o4=[["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 e4=[["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 bV=[["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 hV=[["path",{d:"M18 6 7 17l-5-5"}],["path",{d:"m22 10-7.5 7.5L13 16"}]];var vV=[["path",{d:"M20 6 9 17l-5-5"}]];var gV=[["path",{d:"M20 4L9 15"}],["path",{d:"M21 19L3 19"}],["path",{d:"M9 15L4 10"}]];var $V=[["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 _V=[["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 mV=[["path",{d:"m6 9 6 6 6-6"}]];var uV=[["path",{d:"m17 18-6-6 6-6"}],["path",{d:"M7 6v12"}]];var dV=[["path",{d:"m7 18 6-6-6-6"}],["path",{d:"M17 6v12"}]];var cV=[["path",{d:"m9 18 6-6-6-6"}]];var pV=[["path",{d:"m18 15-6-6-6 6"}]];var nV=[["path",{d:"m15 18-6-6 6-6"}]];var iV=[["path",{d:"m7 20 5-5 5 5"}],["path",{d:"m7 4 5 5 5-5"}]];var lV=[["path",{d:"m7 6 5 5 5-5"}],["path",{d:"m7 13 5 5 5-5"}]];var sV=[["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 rV=[["path",{d:"m9 7-5 5 5 5"}],["path",{d:"m15 7 5 5-5 5"}]];var aV=[["path",{d:"m11 17-5-5 5-5"}],["path",{d:"m18 17-5-5 5-5"}]];var tV=[["path",{d:"m20 17-5-5 5-5"}],["path",{d:"m4 17 5-5-5-5"}]];var oV=[["path",{d:"m6 17 5-5-5-5"}],["path",{d:"m13 17 5-5-5-5"}]];var eV=[["path",{d:"m17 11-5-5-5 5"}],["path",{d:"m17 18-5-5-5 5"}]];var ZG=[["path",{d:"m7 15 5 5 5-5"}],["path",{d:"m7 9 5-5 5 5"}]];var JG=[["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 Z7=[["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 YG=[["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 J7=[["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 K7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 8v8"}],["path",{d:"m8 12 4 4 4-4"}]];var Y7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m12 8-4 4 4 4"}],["path",{d:"M16 12H8"}]];var X7=[["path",{d:"M2 12a10 10 0 1 1 10 10"}],["path",{d:"m2 22 10-10"}],["path",{d:"M8 22H2v-6"}]];var W7=[["path",{d:"M12 22a10 10 0 1 1 10-10"}],["path",{d:"M22 22 12 12"}],["path",{d:"M22 16v6h-6"}]];var Q7=[["path",{d:"M2 8V2h6"}],["path",{d:"m2 2 10 10"}],["path",{d:"M12 2A10 10 0 1 1 2 12"}]];var V7=[["path",{d:"M22 12A10 10 0 1 1 12 2"}],["path",{d:"M22 2 12 12"}],["path",{d:"M16 2h6v6"}]];var G7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m12 16 4-4-4-4"}],["path",{d:"M8 12h8"}]];var I7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m16 12-4-4-4 4"}],["path",{d:"M12 16V8"}]];var z7=[["path",{d:"M21.801 10A10 10 0 1 1 17 3.335"}],["path",{d:"m9 11 3 3L22 4"}]];var N7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m16 10-4 4-4-4"}]];var F7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m9 12 2 2 4-4"}]];var H7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m14 16-4-4 4-4"}]];var D7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m10 8 4 4-4 4"}]];var B7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m8 14 4-4 4 4"}]];var XG=[["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 O7=[["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 WG=[["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 QG=[["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 VG=[["circle",{cx:"12",cy:"12",r:"10"}],["circle",{cx:"12",cy:"12",r:"1"}]];var GG=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M17 12h.01"}],["path",{d:"M12 12h.01"}],["path",{d:"M7 12h.01"}]];var IG=[["path",{d:"M7 10h10"}],["path",{d:"M7 14h10"}],["circle",{cx:"12",cy:"12",r:"10"}]];var zG=[["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 NG=[["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 T7=[["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 P7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M8 12h8"}]];var FG=[["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 S7=[["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 A7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M9 17V7h4a3 3 0 0 1 0 6H9"}]];var q7=[["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 E7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m15 9-6 6"}],["path",{d:"M9 9h.01"}],["path",{d:"M15 15h.01"}]];var C7=[["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 x7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M8 12h8"}],["path",{d:"M12 8v8"}]];var HG=[["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 w7=[["path",{d:"M12 7v4"}],["path",{d:"M7.998 9.003a5 5 0 1 0 8-.005"}],["circle",{cx:"12",cy:"12",r:"10"}]];var W5=[["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 U7=[["path",{d:"M22 2 2 22"}],["circle",{cx:"12",cy:"12",r:"10"}]];var DG=[["circle",{cx:"12",cy:"12",r:"10"}],["line",{x1:"9",x2:"15",y1:"15",y2:"9"}]];var BG=[["circle",{cx:"12",cy:"12",r:"6"}]];var OG=[["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 M7=[["circle",{cx:"12",cy:"12",r:"10"}],["rect",{x:"9",y:"9",width:"6",height:"6",rx:"1"}]];var R7=[["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 j7=[["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 L7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m15 9-6 6"}],["path",{d:"m9 9 6 6"}]];var TG=[["circle",{cx:"12",cy:"12",r:"10"}]];var PG=[["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 SG=[["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 AG=[["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 qG=[["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 CG=[["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 xG=[["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 wG=[["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 UG=[["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 y7=[["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 f7=[["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 MG=[["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 RG=[["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 jG=[["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 LG=[["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 yG=[["path",{d:"M12 6v6l2-4"}],["circle",{cx:"12",cy:"12",r:"10"}]];var fG=[["path",{d:"M12 6v6l-4-2"}],["circle",{cx:"12",cy:"12",r:"10"}]];var kG=[["path",{d:"M12 6v6l-2-4"}],["circle",{cx:"12",cy:"12",r:"10"}]];var bG=[["path",{d:"M12 6v6"}],["circle",{cx:"12",cy:"12",r:"10"}]];var hG=[["path",{d:"M12 6v6l4-2"}],["circle",{cx:"12",cy:"12",r:"10"}]];var vG=[["path",{d:"M12 6v6h4"}],["circle",{cx:"12",cy:"12",r:"10"}]];var gG=[["path",{d:"M12 6v6l4 2"}],["circle",{cx:"12",cy:"12",r:"10"}]];var $G=[["path",{d:"M12 6v6l2 4"}],["circle",{cx:"12",cy:"12",r:"10"}]];var _G=[["path",{d:"M12 6v10"}],["circle",{cx:"12",cy:"12",r:"10"}]];var mG=[["path",{d:"M12 6v6l-2 4"}],["circle",{cx:"12",cy:"12",r:"10"}]];var uG=[["path",{d:"M12 6v6l-4 2"}],["circle",{cx:"12",cy:"12",r:"10"}]];var dG=[["path",{d:"M12 6v6H8"}],["circle",{cx:"12",cy:"12",r:"10"}]];var cG=[["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 pG=[["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 nG=[["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 iG=[["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 lG=[["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 sG=[["path",{d:"M12 6v6l4 2"}],["circle",{cx:"12",cy:"12",r:"10"}]];var rG=[["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 aG=[["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 tG=[["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 oG=[["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 k7=[["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 eG=[["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 Z3=[["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 J3=[["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 Y3=[["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 X3=[["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 W3=[["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 Q3=[["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 V3=[["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 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:"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 I3=[["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 z3=[["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 b7=[["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 N3=[["path",{d:"M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z"}]];var F3=[["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 H3=[["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 D3=[["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 h7=[["path",{d:"m18 16 4-4-4-4"}],["path",{d:"m6 8-4 4 4 4"}],["path",{d:"m14.5 4-5 16"}]];var B3=[["path",{d:"m16 18 6-6-6-6"}],["path",{d:"m8 6-6 6 6 6"}]];var O3=[["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 T3=[["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 P3=[["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 S3=[["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 A3=[["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 v7=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M12 3v18"}]];var Q5=[["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 g7=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 3v18"}],["path",{d:"M15 3v18"}]];var q3=[["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 C3=[["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 x3=[["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 w3=[["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 U3=[["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 M3=[["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 R3=[["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 j3=[["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 $7=[["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 L3=[["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 y3=[["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 f3=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 18a6 6 0 0 0 0-12v12z"}]];var k3=[["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 b3=[["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 h3=[["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 v3=[["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 g3=[["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 $3=[["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 _3=[["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 m3=[["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 u3=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M9.17 14.83a4 4 0 1 0 0-5.66"}]];var d3=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M14.83 14.83a4 4 0 1 1 0-5.66"}]];var c3=[["path",{d:"m15 10 5 5-5 5"}],["path",{d:"M4 4v7a4 4 0 0 0 4 4h12"}]];var p3=[["path",{d:"M20 4v7a4 4 0 0 1-4 4H4"}],["path",{d:"m9 10-5 5 5 5"}]];var n3=[["path",{d:"m14 15-5 5-5-5"}],["path",{d:"M20 4h-7a4 4 0 0 0-4 4v12"}]];var i3=[["path",{d:"M14 9 9 4 4 9"}],["path",{d:"M20 20h-7a4 4 0 0 1-4-4V4"}]];var l3=[["path",{d:"m10 15 5 5 5-5"}],["path",{d:"M4 4h7a4 4 0 0 1 4 4v12"}]];var s3=[["path",{d:"m10 9 5-5 5 5"}],["path",{d:"M4 20h7a4 4 0 0 0 4-4V4"}]];var r3=[["path",{d:"M20 20v-7a4 4 0 0 0-4-4H4"}],["path",{d:"M9 14 4 9l5-5"}]];var a3=[["path",{d:"m15 14 5-5-5-5"}],["path",{d:"M4 20v-7a4 4 0 0 1 4-4h12"}]];var t3=[["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 o3=[["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 e3=[["rect",{width:"20",height:"14",x:"2",y:"5",rx:"2"}],["line",{x1:"2",x2:"22",y1:"10",y2:"10"}]];var ZI=[["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 JI=[["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 YI=[["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 XI=[["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 WI=[["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 QI=[["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 VI=[["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 GI=[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3"}],["path",{d:"M3 5v14a9 3 0 0 0 18 0V5"}]];var II=[["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 zI=[["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 NI=[["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 FI=[["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 HI=[["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 DI=[["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 BI=[["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 OI=[["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 TI=[["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 PI=[["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 _7=[["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 SI=[["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 AI=[["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 qI=[["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 CI=[["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 xI=[["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 wI=[["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 UI=[["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 MI=[["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 RI=[["path",{d:"M12 3v14"}],["path",{d:"M5 10h14"}],["path",{d:"M5 21h14"}]];var jI=[["circle",{cx:"12",cy:"12",r:"10"}],["circle",{cx:"12",cy:"12",r:"4"}],["path",{d:"M12 12h.01"}]];var LI=[["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 yI=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["circle",{cx:"12",cy:"12",r:"5"}],["path",{d:"M12 12h.01"}]];var fI=[["circle",{cx:"12",cy:"12",r:"10"}],["circle",{cx:"12",cy:"12",r:"2"}]];var kI=[["circle",{cx:"12",cy:"6",r:"1"}],["line",{x1:"5",x2:"19",y1:"12",y2:"12"}],["circle",{cx:"12",cy:"18",r:"1"}]];var bI=[["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 hI=[["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 vI=[["path",{d:"M2 8h20"}],["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2"}],["path",{d:"M6 16h12"}]];var gI=[["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 $I=[["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 _I=[["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 mI=[["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 uI=[["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 dI=[["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 cI=[["circle",{cx:"12.1",cy:"12.1",r:"1"}]];var pI=[["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 nI=[["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 iI=[["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 lI=[["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 sI=[["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 rI=[["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 aI=[["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 tI=[["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 oI=[["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 eI=[["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 Zz=[["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 Jz=[["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 Yz=[["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 Xz=[["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 m7=[["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 Wz=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 2a7 7 0 1 0 10 10"}]];var Qz=[["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 Vz=[["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 Gz=[["path",{d:"M12 2C8 2 4 8 4 14a8 8 0 0 0 16 0c0-6-4-12-8-12"}]];var u7=[["circle",{cx:"12",cy:"12",r:"1"}],["circle",{cx:"12",cy:"5",r:"1"}],["circle",{cx:"12",cy:"19",r:"1"}]];var d7=[["circle",{cx:"12",cy:"12",r:"1"}],["circle",{cx:"19",cy:"12",r:"1"}],["circle",{cx:"5",cy:"12",r:"1"}]];var Iz=[["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 zz=[["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 Nz=[["line",{x1:"5",x2:"19",y1:"9",y2:"9"}],["line",{x1:"5",x2:"19",y1:"15",y2:"15"}]];var Fz=[["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 Hz=[["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 Dz=[["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 Bz=[["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 Oz=[["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 Tz=[["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 Pz=[["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 Sz=[["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 Az=[["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 qz=[["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 Cz=[["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 xz=[["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 wz=[["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 Uz=[["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 Mz=[["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 Rz=[["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 jz=[["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 Lz=[["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 yz=[["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 fz=[["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 c7=[["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 kz=[["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 bz=[["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 p7=[["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 n7=[["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 i7=[["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 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:"m16 13-3.5 3.5-2-2L8 17"}]];var hz=[["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 vz=[["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 gz=[["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 $z=[["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 _z=[["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 s7=[["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 mz=[["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 uz=[["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 dz=[["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 cz=[["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 pz=[["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 nz=[["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 iz=[["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 lz=[["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 sz=[["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 rz=[["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 az=[["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 tz=[["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 oz=[["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 ez=[["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 ZN=[["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 JN=[["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 r7=[["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 a7=[["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 t7=[["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 YN=[["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 o7=[["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 XN=[["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 WN=[["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 QN=[["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 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"}],["path",{d:"M8 12h8"}],["path",{d:"M10 11v2"}],["path",{d:"M8 17h8"}],["path",{d:"M14 16v2"}]];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 13h2"}],["path",{d:"M14 13h2"}],["path",{d:"M8 17h2"}],["path",{d:"M14 17h2"}]];var IN=[["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 zN=[["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 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:"m8 16 2-2-2-2"}],["path",{d:"M12 18h4"}]];var FN=[["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 HN=[["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 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:"M9 13v-1h6v1"}],["path",{d:"M12 12v6"}],["path",{d:"M11 18h2"}]];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:"M12 12v6"}],["path",{d:"m15 15-3-3-3 3"}]];var ON=[["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 e7=[["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 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:"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 PN=[["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 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:"M12 9v4"}],["path",{d:"M12 17h.01"}]];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"}],["path",{d:"m8 12.5-5 5"}],["path",{d:"m3 12.5 5 5"}]];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:"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 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"}]];var xN=[["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 wN=[["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 UN=[["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 MN=[["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 RN=[["path",{d:"M2 16s9-15 20-4C11 23 2 8 2 8"}]];var jN=[["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 LN=[["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 yN=[["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 fN=[["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 kN=[["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 bN=[["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 hN=[["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 vN=[["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 gN=[["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 $N=[["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 _N=[["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 mN=[["path",{d:"M10 2v6.292a7 7 0 1 0 4 0V2"}],["path",{d:"M5 15h14"}],["path",{d:"M8.5 2h7"}]];var uN=[["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 dN=[["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 cN=[["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 pN=[["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 nN=[["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 iN=[["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 lN=[["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 sN=[["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 rN=[["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 aN=[["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 tN=[["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 oN=[["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 eN=[["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 ZF=[["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 Z6=[["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 JF=[["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 YF=[["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 XF=[["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 WF=[["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 QF=[["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 VF=[["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 GF=[["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 IF=[["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 zF=[["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 NF=[["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 FF=[["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 HF=[["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 J6=[["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 DF=[["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 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:"2"}],["path",{d:"M12 15v5"}]];var OF=[["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 TF=[["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 PF=[["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 SF=[["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 AF=[["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 qF=[["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 CF=[["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 xF=[["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 wF=[["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 UF=[["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 MF=[["path",{d:"m15 17 5-5-5-5"}],["path",{d:"M4 18v-2a4 4 0 0 1 4-4h12"}]];var RF=[["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 jF=[["path",{d:"M5 16V9h14V2H5l14 14h-7m-7 0 7 7v-7m-7 0h7"}]];var LF=[["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 yF=[["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 fF=[["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 kF=[["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 K6=[["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 Y6=[["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 bF=[["path",{d:"M2 7v10"}],["path",{d:"M6 5v14"}],["rect",{width:"12",height:"18",x:"10",y:"3",rx:"2"}]];var hF=[["path",{d:"M2 3v18"}],["rect",{width:"12",height:"18",x:"6",y:"3",rx:"2"}],["path",{d:"M22 3v18"}]];var vF=[["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 gF=[["path",{d:"M7 2h10"}],["path",{d:"M5 6h14"}],["rect",{width:"18",height:"12",x:"3",y:"10",rx:"2"}]];var $F=[["path",{d:"M3 2h18"}],["rect",{width:"18",height:"12",x:"3",y:"6",rx:"2"}],["path",{d:"M3 22h18"}]];var _F=[["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 mF=[["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 uF=[["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 dF=[["path",{d:"m12 14 4-4"}],["path",{d:"M3.34 19a10 10 0 1 1 17.32 0"}]];var cF=[["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 pF=[["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 nF=[["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 iF=[["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 lF=[["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 sF=[["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 rF=[["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 X6=[["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 aF=[["path",{d:"M12 3v6"}],["circle",{cx:"12",cy:"12",r:"3"}],["path",{d:"M12 15v6"}]];var tF=[["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 oF=[["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 eF=[["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 ZH=[["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 JH=[["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 YH=[["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 XH=[["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 WH=[["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 QH=[["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 VH=[["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 GH=[["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 IH=[["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 zH=[["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 NH=[["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 FH=[["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 HH=[["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 DH=[["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 BH=[["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 OH=[["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 TH=[["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 W6=[["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 Q6=[["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 V6=[["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 G6=[["path",{d:"M12 3v18"}],["path",{d:"M3 12h18"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]];var PH=[["path",{d:"M15 3v18"}],["path",{d:"M3 12h18"}],["path",{d:"M9 3v18"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]];var V5=[["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 SH=[["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 AH=[["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 qH=[["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 CH=[["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 xH=[["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 wH=[["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 UH=[["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 MH=[["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 RH=[["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 jH=[["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 I6=[["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 z6=[["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 LH=[["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 yH=[["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 fH=[["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 kH=[["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 bH=[["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 hH=[["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 vH=[["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 gH=[["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 $H=[["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 _H=[["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 mH=[["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 uH=[["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 dH=[["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 cH=[["path",{d:"M4 12h8"}],["path",{d:"M4 18V6"}],["path",{d:"M12 18V6"}],["path",{d:"m17 12 3-2v8"}]];var pH=[["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 nH=[["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 iH=[["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 lH=[["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 sH=[["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 rH=[["path",{d:"M6 12h12"}],["path",{d:"M6 20V4"}],["path",{d:"M18 20V4"}]];var aH=[["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 tH=[["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 oH=[["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 eH=[["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 ZD=[["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 JD=[["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 YD=[["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 XD=[["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 WD=[["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 QD=[["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 VD=[["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 GD=[["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 ID=[["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 zD=[["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 ND=[["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 FD=[["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 HD=[["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 DD=[["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 BD=[["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 OD=[["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 TD=[["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 PD=[["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 N6=[["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 F6=[["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 H6=[["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 SD=[["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 AD=[["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 qD=[["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 CD=[["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 xD=[["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 wD=[["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 UD=[["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 MD=[["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 RD=[["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 jD=[["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 LD=[["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 yD=[["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 fD=[["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 kD=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 16v-4"}],["path",{d:"M12 8h.01"}]];var bD=[["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 hD=[["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 vD=[["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 gD=[["path",{d:"m16 14 4 4-4 4"}],["path",{d:"M20 10a8 8 0 1 0-8 8h8"}]];var $D=[["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 _D=[["path",{d:"M4 10a8 8 0 1 1 8 8H4"}],["path",{d:"m8 22-4-4 4-4"}]];var mD=[["path",{d:"M12 9.5V21m0-11.5L6 3m6 6.5L18 3"}],["path",{d:"M6 15h12"}],["path",{d:"M6 11h12"}]];var uD=[["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 dD=[["path",{d:"M5 3v14"}],["path",{d:"M12 3v8"}],["path",{d:"M19 3v18"}]];var cD=[["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 pD=[["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 nD=[["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 iD=[["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 lD=[["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 sD=[["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 rD=[["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 aD=[["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 tD=[["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 oD=[["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 eD=[["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 ZB=[["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 JB=[["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 YB=[["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 XB=[["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 WB=[["path",{d:"M2 20h20"}],["path",{d:"m9 10 2 2 4-4"}],["rect",{x:"3",y:"4",width:"18",height:"12",rx:"2"}]];var D6=[["rect",{width:"18",height:"12",x:"3",y:"4",rx:"2",ry:"2"}],["line",{x1:"2",x2:"22",y1:"20",y2:"20"}]];var QB=[["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 VB=[["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 GB=[["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 IB=[["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 zB=[["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 B6=[["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 NB=[["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 FB=[["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 HB=[["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 DB=[["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 BB=[["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 OB=[["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 TB=[["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 PB=[["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 SB=[["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 AB=[["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 qB=[["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 CB=[["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 xB=[["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 wB=[["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 UB=[["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 MB=[["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 RB=[["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 jB=[["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 LB=[["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 yB=[["path",{d:"M16 5H3"}],["path",{d:"M16 12H3"}],["path",{d:"M11 19H3"}],["path",{d:"m15 18 2 2 4-4"}]];var fB=[["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 kB=[["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 bB=[["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 hB=[["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 vB=[["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 gB=[["path",{d:"M2 5h20"}],["path",{d:"M6 12h12"}],["path",{d:"M9 19h6"}]];var $B=[["path",{d:"M12 5H2"}],["path",{d:"M6 12h12"}],["path",{d:"M9 19h6"}],["path",{d:"M16 5h6"}],["path",{d:"M19 8V2"}]];var G5=[["path",{d:"M21 5H11"}],["path",{d:"M21 12H11"}],["path",{d:"M21 19H11"}],["path",{d:"m7 8-4 4 4 4"}]];var I5=[["path",{d:"M21 5H11"}],["path",{d:"M21 12H11"}],["path",{d:"M21 19H11"}],["path",{d:"m3 8 4 4-4 4"}]];var _B=[["path",{d:"M16 5H3"}],["path",{d:"M11 12H3"}],["path",{d:"M16 19H3"}],["path",{d:"M21 12h-6"}]];var mB=[["path",{d:"M16 5H3"}],["path",{d:"M11 12H3"}],["path",{d:"M11 19H3"}],["path",{d:"M21 16V5"}],["circle",{cx:"18",cy:"16",r:"3"}]];var uB=[["path",{d:"M16 5H3"}],["path",{d:"M11 12H3"}],["path",{d:"M16 19H3"}],["path",{d:"M18 9v6"}],["path",{d:"M21 12h-6"}]];var dB=[["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 cB=[["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 pB=[["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 nB=[["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 iB=[["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 lB=[["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 sB=[["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 rB=[["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 O6=[["path",{d:"M21 12a9 9 0 1 1-6.219-8.56"}]];var aB=[["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 tB=[["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 oB=[["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 eB=[["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 ZO=[["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 T6=[["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 JO=[["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 P6=[["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 YO=[["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 XO=[["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 WO=[["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 QO=[["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 VO=[["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 GO=[["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 IO=[["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 zO=[["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 NO=[["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 FO=[["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 S6=[["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 HO=[["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 DO=[["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 BO=[["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 OO=[["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 TO=[["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 PO=[["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 SO=[["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 AO=[["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 qO=[["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 CO=[["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 xO=[["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 wO=[["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 A6=[["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 UO=[["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 MO=[["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 RO=[["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 jO=[["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 LO=[["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 yO=[["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 fO=[["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 kO=[["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 bO=[["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 hO=[["path",{d:"M16 3h5v5"}],["path",{d:"m21 3-6.75 6.75"}],["circle",{cx:"10",cy:"14",r:"6"}]];var vO=[["path",{d:"M8 22h8"}],["path",{d:"M12 11v11"}],["path",{d:"m19 3-7 8-7-8Z"}]];var gO=[["path",{d:"M15 3h6v6"}],["path",{d:"m21 3-7 7"}],["path",{d:"m3 21 7-7"}],["path",{d:"M9 21H3v-6"}]];var $O=[["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 _O=[["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 mO=[["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 uO=[["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 dO=[["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 cO=[["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 pO=[["path",{d:"M4 5h16"}],["path",{d:"M4 12h16"}],["path",{d:"M4 19h16"}]];var nO=[["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 iO=[["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 lO=[["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 sO=[["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 aO=[["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 tO=[["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 q6=[["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 oO=[["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 eO=[["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 Z2=[["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 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"}]];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 Y2=[["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 X2=[["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 W2=[["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 Q2=[["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 V2=[["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 G2=[["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 I2=[["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 z2=[["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 N2=[["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 F2=[["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 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 8-3 3 3 3"}],["path",{d:"M17 14v-1a2 2 0 0 0-2-2H7"}]];var D2=[["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 B2=[["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 O2=[["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 T2=[["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 P2=[["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 S2=[["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 E6=[["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 A2=[["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 q2=[["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 C2=[["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 x2=[["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 w2=[["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 U2=[["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 M2=[["path",{d:"m14 10 7-7"}],["path",{d:"M20 10h-6V4"}],["path",{d:"m3 21 7-7"}],["path",{d:"M4 14h6v6"}]];var R2=[["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 j2=[["path",{d:"M5 12h14"}]];var L2=[["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 y2=[["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 f2=[["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 k2=[["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 b2=[["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 h2=[["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 v2=[["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 g2=[["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 $2=[["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 _2=[["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 m2=[["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 u2=[["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 d2=[["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 c2=[["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 p2=[["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 n2=[["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 i2=[["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 l2=[["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 s2=[["path",{d:"m8 3 4 8 5-5 5 15H2L8 3z"}]];var r2=[["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 a2=[["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 t2=[["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 o2=[["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 e2=[["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 ZT=[["rect",{x:"5",y:"2",width:"14",height:"20",rx:"7"}],["path",{d:"M12 6v4"}]];var C6=[["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 JT=[["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 YT=[["path",{d:"M11 19H5V13"}],["path",{d:"M19 5L5 19"}]];var XT=[["path",{d:"M19 13V19H13"}],["path",{d:"M5 5L19 19"}]];var WT=[["path",{d:"M8 18L12 22L16 18"}],["path",{d:"M12 2V22"}]];var QT=[["path",{d:"m18 8 4 4-4 4"}],["path",{d:"M2 12h20"}],["path",{d:"m6 8-4 4 4 4"}]];var VT=[["path",{d:"M6 8L2 12L6 16"}],["path",{d:"M2 12H22"}]];var GT=[["path",{d:"M18 8L22 12L18 16"}],["path",{d:"M2 12H22"}]];var IT=[["path",{d:"M5 11V5H11"}],["path",{d:"M5 5L19 19"}]];var zT=[["path",{d:"M13 5H19V11"}],["path",{d:"M19 5L5 19"}]];var NT=[["path",{d:"M8 6L12 2L16 6"}],["path",{d:"M12 2V22"}]];var FT=[["path",{d:"M12 2v20"}],["path",{d:"m8 18 4 4 4-4"}],["path",{d:"m8 6 4-4 4 4"}]];var HT=[["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 DT=[["circle",{cx:"8",cy:"18",r:"4"}],["path",{d:"M12 18V2l7 4"}]];var BT=[["circle",{cx:"12",cy:"18",r:"4"}],["path",{d:"M16 18V2"}]];var OT=[["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 TT=[["path",{d:"M9 18V5l12-2v13"}],["circle",{cx:"6",cy:"18",r:"3"}],["circle",{cx:"18",cy:"16",r:"3"}]];var PT=[["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 ST=[["polygon",{points:"12 2 19 21 12 17 5 21 12 2"}]];var AT=[["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 qT=[["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 CT=[["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 xT=[["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 wT=[["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 UT=[["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 MT=[["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 RT=[["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 jT=[["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 LT=[["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 yT=[["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 fT=[["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 kT=[["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 x6=[["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 bT=[["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 w6=[["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 U6=[["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 hT=[["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 vT=[["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 gT=[["path",{d:"M3 3h6l6 18h6"}],["path",{d:"M14 3h7"}]];var $T=[["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 _T=[["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 mT=[["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 uT=[["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 dT=[["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 cT=[["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 pT=[["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 nT=[["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 iT=[["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 lT=[["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 sT=[["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 rT=[["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 M6=[["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 aT=[["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 tT=[["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 oT=[["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 eT=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 15h18"}],["path",{d:"m15 8-3 3-3-3"}]];var R6=[["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 ZP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 15h18"}],["path",{d:"m9 10 3-3 3 3"}]];var JP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 15h18"}]];var j6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 3v18"}],["path",{d:"m16 15-3-3 3-3"}]];var L6=[["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 y6=[["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 f6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 3v18"}]];var YP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M15 3v18"}],["path",{d:"m8 9 3 3-3 3"}]];var XP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M15 3v18"}]];var WP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M15 3v18"}],["path",{d:"m10 15-3-3 3-3"}]];var k6=[["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 QP=[["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 VP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 9h18"}],["path",{d:"m9 16 3-3 3 3"}]];var b6=[["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 GP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 9h18"}],["path",{d:"m15 14-3 3-3-3"}]];var IP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 3v18"}],["path",{d:"M9 15h12"}]];var zP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 9h18"}]];var NP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 15h12"}],["path",{d:"M15 3v18"}]];var h6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 9h18"}],["path",{d:"M9 21V9"}]];var FP=[["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 HP=[["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 DP=[["path",{d:"M8 21s-4-3-4-9 4-9 4-9"}],["path",{d:"M16 3s4 3 4 9-4 9-4 9"}]];var BP=[["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 OP=[["rect",{x:"14",y:"3",width:"5",height:"18",rx:"1"}],["rect",{x:"5",y:"3",width:"5",height:"18",rx:"1"}]];var TP=[["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 PP=[["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 v6=[["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 SP=[["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 AP=[["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 g6=[["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 qP=[["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 CP=[["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 xP=[["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 wP=[["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 UP=[["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 MP=[["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 RP=[["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 jP=[["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 LP=[["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 yP=[["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 fP=[["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 kP=[["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 bP=[["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 hP=[["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 vP=[["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 gP=[["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 $P=[["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 _P=[["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 mP=[["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 uP=[["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 dP=[["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 cP=[["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 pP=[["path",{d:"M13 4v16"}],["path",{d:"M17 4v16"}],["path",{d:"M19 4H9.5a4.5 4.5 0 0 0 0 9H13"}]];var nP=[["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 iP=[["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 lP=[["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 sP=[["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 rP=[["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 aP=[["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 tP=[["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 oP=[["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 eP=[["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 ZS=[["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 JS=[["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 $6=[["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 YS=[["path",{d:"M5 12h14"}],["path",{d:"M12 5v14"}]];var XS=[["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 WS=[["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 QS=[["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 VS=[["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 GS=[["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 IS=[["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 zS=[["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 NS=[["path",{d:"M18 7c0-5.333-8-5.333-8 0"}],["path",{d:"M10 7v14"}],["path",{d:"M6 21h12"}],["path",{d:"M6 13h10"}]];var FS=[["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 HS=[["path",{d:"M12 2v10"}],["path",{d:"M18.4 6.6a9 9 0 1 1-12.77.04"}]];var DS=[["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 BS=[["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 OS=[["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 TS=[["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 PS=[["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 SS=[["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 AS=[["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 qS=[["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 CS=[["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 xS=[["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 wS=[["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 US=[["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 MS=[["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 RS=[["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 jS=[["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 LS=[["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 yS=[["path",{d:"M5 15h14"}],["path",{d:"M5 9h14"}],["path",{d:"m14 20-5-5 6-6-5-5"}]];var fS=[["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 kS=[["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 bS=[["rect",{width:"12",height:"20",x:"6",y:"2",rx:"2"}],["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2"}]];var hS=[["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 vS=[["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 gS=[["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 $S=[["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 _S=[["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 mS=[["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 uS=[["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 dS=[["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 cS=[["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 pS=[["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 nS=[["path",{d:"M14 4v16H3a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1z"}],["circle",{cx:"14",cy:"12",r:"8"}]];var _6=[["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 iS=[["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 lS=[["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2"}]];var sS=[["rect",{width:"12",height:"20",x:"6",y:"2",rx:"2"}]];var rS=[["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 aS=[["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 tS=[["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 oS=[["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 eS=[["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 ZA=[["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 JA=[["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 YA=[["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 XA=[["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 WA=[["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 QA=[["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 VA=[["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 GA=[["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 IA=[["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 zA=[["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 NA=[["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 FA=[["path",{d:"M20 18v-2a4 4 0 0 0-4-4H4"}],["path",{d:"m9 17-5-5 5-5"}]];var HA=[["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 DA=[["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 BA=[["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 OA=[["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 TA=[["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 PA=[["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 m6=[["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 SA=[["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 AA=[["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 qA=[["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 CA=[["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 xA=[["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 wA=[["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 UA=[["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 u6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 12h18"}]];var d6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M21 9H3"}],["path",{d:"M21 15H3"}]];var MA=[["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 RA=[["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 jA=[["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 LA=[["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 yA=[["path",{d:"M6 11h8a4 4 0 0 0 0-8H9v18"}],["path",{d:"M6 15h8"}]];var fA=[["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 kA=[["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 bA=[["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 hA=[["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 vA=[["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 gA=[["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 $A=[["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 _A=[["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 mA=[["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 c6=[["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 uA=[["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 dA=[["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 cA=[["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 pA=[["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 nA=[["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 iA=[["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 lA=[["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 sA=[["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 rA=[["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 aA=[["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 tA=[["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 oA=[["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 eA=[["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 Zq=[["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 Jq=[["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 Yq=[["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 Xq=[["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 Wq=[["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 Qq=[["path",{d:"m8 11 2 2 4-4"}],["circle",{cx:"11",cy:"11",r:"8"}],["path",{d:"m21 21-4.3-4.3"}]];var Vq=[["path",{d:"m13.5 8.5-5 5"}],["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"}],["path",{d:"m8.5 8.5 5 5"}],["circle",{cx:"11",cy:"11",r:"8"}],["path",{d:"m21 21-4.3-4.3"}]];var Iq=[["path",{d:"m21 21-4.34-4.34"}],["circle",{cx:"11",cy:"11",r:"8"}]];var zq=[["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 p6=[["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 Nq=[["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 Fq=[["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 Hq=[["path",{d:"m16 16-4 4-4-4"}],["path",{d:"M3 12h18"}],["path",{d:"m8 8 4-4 4 4"}]];var Dq=[["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 Bq=[["path",{d:"M12 3v18"}],["path",{d:"m16 16 4-4-4-4"}],["path",{d:"m8 8-4 4 4 4"}]];var Oq=[["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 Tq=[["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 Pq=[["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 Sq=[["path",{d:"M14 17H5"}],["path",{d:"M19 7h-9"}],["circle",{cx:"17",cy:"17",r:"3"}],["circle",{cx:"7",cy:"7",r:"3"}]];var Aq=[["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 qq=[["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 Cq=[["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 xq=[["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 wq=[["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 Uq=[["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 Mq=[["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 Rq=[["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 jq=[["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 Lq=[["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 yq=[["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 fq=[["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 kq=[["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 n6=[["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 bq=[["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 i6=[["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 hq=[["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 vq=[["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 gq=[["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 $q=[["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 _q=[["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 mq=[["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 uq=[["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 dq=[["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 cq=[["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 pq=[["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 nq=[["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 iq=[["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 lq=[["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 sq=[["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 rq=[["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 aq=[["path",{d:"M2 20h.01"}],["path",{d:"M7 20v-4"}],["path",{d:"M12 20v-8"}],["path",{d:"M17 20V8"}]];var tq=[["path",{d:"M2 20h.01"}],["path",{d:"M7 20v-4"}]];var oq=[["path",{d:"M2 20h.01"}],["path",{d:"M7 20v-4"}],["path",{d:"M12 20v-8"}]];var eq=[["path",{d:"M2 20h.01"}]];var ZE=[["path",{d:"M2 20h.01"}],["path",{d:"M7 20v-4"}],["path",{d:"M12 20v-8"}],["path",{d:"M17 20V8"}],["path",{d:"M22 4v16"}]];var JE=[["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 YE=[["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 XE=[["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 WE=[["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 QE=[["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 VE=[["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 GE=[["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 IE=[["path",{d:"M22 2 2 22"}]];var zE=[["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 NE=[["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 FE=[["rect",{width:"14",height:"20",x:"5",y:"2",rx:"2",ry:"2"}],["path",{d:"M12.667 8 10 12h4l-2.667 4"}]];var l6=[["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 HE=[["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 DE=[["rect",{width:"14",height:"20",x:"5",y:"2",rx:"2",ry:"2"}],["path",{d:"M12 18h.01"}]];var BE=[["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 OE=[["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 TE=[["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 PE=[["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 SE=[["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 AE=[["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 qE=[["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 CE=[["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 xE=[["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 s6=[["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 wE=[["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 UE=[["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 ME=[["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 RE=[["path",{d:"m6 16 6-12 6 12"}],["path",{d:"M8 12h8"}],["path",{d:"m16 20 2 2 4-4"}]];var jE=[["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 LE=[["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 yE=[["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 fE=[["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 kE=[["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 bE=[["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 hE=[["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 r6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M17 12h-2l-2 5-2-10-2 5H7"}]];var a6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m16 8-8 8"}],["path",{d:"M16 16H8V8"}]];var t6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m8 8 8 8"}],["path",{d:"M16 8v8H8"}]];var o6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M12 8v8"}],["path",{d:"m8 12 4 4 4-4"}]];var e6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m12 8-4 4 4 4"}],["path",{d:"M16 12H8"}]];var Z9=[["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 J9=[["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 K9=[["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 Y9=[["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 X9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M8 12h8"}],["path",{d:"m12 16 4-4-4-4"}]];var W9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M8 16V8h8"}],["path",{d:"M16 16 8 8"}]];var Q9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M8 8h8v8"}],["path",{d:"m8 16 8-8"}]];var V9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m16 12-4-4-4 4"}],["path",{d:"M12 16V8"}]];var G9=[["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 I9=[["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 z5=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 8h7"}],["path",{d:"M8 12h6"}],["path",{d:"M11 16h5"}]];var z9=[["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 N9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m9 12 2 2 4-4"}]];var F9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m16 10-4 4-4-4"}]];var H9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m14 16-4-4 4-4"}]];var D9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m10 8 4 4-4 4"}]];var B9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m8 14 4-4 4 4"}]];var O9=[["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 vE=[["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 gE=[["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 T9=[["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 P9=[["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 S9=[["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 $E=[["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 A9=[["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 q9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["circle",{cx:"12",cy:"12",r:"1"}]];var E9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M7 10h10"}],["path",{d:"M7 14h10"}]];var C9=[["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 x9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M8 7v7"}],["path",{d:"M12 7v4"}],["path",{d:"M16 7v9"}]];var w9=[["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 U9=[["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 M9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M7 8h10"}],["path",{d:"M7 12h10"}],["path",{d:"M7 16h10"}]];var R9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M8 12h8"}]];var j9=[["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 L9=[["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 y9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 17V7h4a3 3 0 0 1 0 6H9"}]];var E8=[["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 _E=[["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 f9=[["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 k9=[["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 b9=[["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 h9=[["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 v9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M8 12h8"}],["path",{d:"M12 8v8"}]];var g9=[["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 mE=[["path",{d:"M7 12h2l2 5 2-10h4"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]];var $9=[["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 uE=[["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 _9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M16 8.9V7H8l4 5-4 5h8v-1.9"}]];var m9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["line",{x1:"9",x2:"15",y1:"15",y2:"9"}]];var u9=[["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 d9=[["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 dE=[["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}],["rect",{x:"8",y:"8",width:"8",height:"8",rx:"1"}]];var cE=[["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 pE=[["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 nE=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["rect",{x:"9",y:"9",width:"6",height:"6",rx:"1"}]];var c9=[["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 p9=[["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 n9=[["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 i9=[["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 iE=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}]];var lE=[["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 sE=[["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 rE=[["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 aE=[["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 tE=[["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 oE=[["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 eE=[["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 ZC=[["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 JC=[["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 YC=[["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 XC=[["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 WC=[["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 QC=[["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 VC=[["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 GC=[["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 IC=[["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 zC=[["rect",{width:"20",height:"6",x:"2",y:"4",rx:"2"}],["rect",{width:"20",height:"6",x:"2",y:"14",rx:"2"}]];var NC=[["rect",{width:"6",height:"20",x:"4",y:"2",rx:"2"}],["rect",{width:"6",height:"20",x:"14",y:"2",rx:"2"}]];var FC=[["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 HC=[["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 DC=[["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 BC=[["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 OC=[["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 TC=[["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 PC=[["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 SC=[["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 AC=[["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 qC=[["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 CC=[["path",{d:"M10 21V3h8"}],["path",{d:"M6 16h9"}],["path",{d:"M10 9.5h7"}]];var xC=[["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 wC=[["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 UC=[["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 MC=[["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 RC=[["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 jC=[["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 LC=[["path",{d:"M12 15V9"}],["path",{d:"M3 15h18"}],["path",{d:"M3 9h18"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}]];var yC=[["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 fC=[["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 kC=[["path",{d:"M15 3v18"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M21 9H3"}],["path",{d:"M21 15H3"}]];var bC=[["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 hC=[["path",{d:"M12 3v18"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 9h18"}],["path",{d:"M3 15h18"}]];var vC=[["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 gC=[["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2",ry:"2"}],["line",{x1:"12",x2:"12.01",y1:"18",y2:"18"}]];var $C=[["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 _C=[["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 mC=[["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 uC=[["path",{d:"M4 4v16"}]];var dC=[["path",{d:"M4 4v16"}],["path",{d:"M9 4v16"}]];var cC=[["path",{d:"M4 4v16"}],["path",{d:"M9 4v16"}],["path",{d:"M14 4v16"}]];var pC=[["path",{d:"M4 4v16"}],["path",{d:"M9 4v16"}],["path",{d:"M14 4v16"}],["path",{d:"M19 4v16"}]];var nC=[["path",{d:"M4 4v16"}],["path",{d:"M9 4v16"}],["path",{d:"M14 4v16"}],["path",{d:"M19 4v16"}],["path",{d:"M22 6 2 18"}]];var iC=[["circle",{cx:"12",cy:"12",r:"10"}],["circle",{cx:"12",cy:"12",r:"6"}],["circle",{cx:"12",cy:"12",r:"2"}]];var lC=[["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 sC=[["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 rC=[["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 aC=[["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 tC=[["path",{d:"M12 19h8"}],["path",{d:"m4 17 6-6-6-6"}]];var l9=[["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 oC=[["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 eC=[["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 s9=[["path",{d:"M21 5H3"}],["path",{d:"M17 12H7"}],["path",{d:"M19 19H5"}]];var r9=[["path",{d:"M3 5h18"}],["path",{d:"M3 12h18"}],["path",{d:"M3 19h18"}]];var a9=[["path",{d:"M21 5H3"}],["path",{d:"M21 12H9"}],["path",{d:"M21 19H7"}]];var N5=[["path",{d:"M21 5H3"}],["path",{d:"M15 12H3"}],["path",{d:"M17 19H3"}]];var Zx=[["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 t9=[["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 Jx=[["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 Yx=[["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 o9=[["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 e9=[["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 Xx=[["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 Wx=[["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 Qx=[["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 Vx=[["path",{d:"M14 4v10.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0Z"}]];var Gx=[["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 Ix=[["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 zx=[["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 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 12h6"}]];var Fx=[["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 Hx=[["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 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.5 14.5 5-5"}]];var Bx=[["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 Ox=[["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 Tx=[["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 Px=[["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 Sx=[["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 Ax=[["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 qx=[["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 Cx=[["circle",{cx:"15",cy:"12",r:"3"}],["rect",{width:"20",height:"14",x:"2",y:"5",rx:"7"}]];var xx=[["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 wx=[["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 Ux=[["path",{d:"M21 4H3"}],["path",{d:"M18 8H6"}],["path",{d:"M19 12H9"}],["path",{d:"M16 16h-6"}],["path",{d:"M11 20H9"}]];var Mx=[["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 Rx=[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2"}],["path",{d:"M2 14h20"}],["path",{d:"M12 20v-6"}]];var jx=[["ellipse",{cx:"12",cy:"11",rx:"3",ry:"2"}],["ellipse",{cx:"12",cy:"12.5",rx:"10",ry:"8.5"}]];var Lx=[["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 yx=[["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 fx=[["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 kx=[["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 bx=[["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 hx=[["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 ZZ=[["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 vx=[["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 gx=[["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 $x=[["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 _x=[["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 mx=[["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 JZ=[["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 ux=[["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 dx=[["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 cx=[["path",{d:"M16 17h6v-6"}],["path",{d:"m22 17-8.5-8.5-5 5L2 7"}]];var px=[["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 nx=[["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 ix=[["path",{d:"M16 7h6v6"}],["path",{d:"m22 7-8.5 8.5-5-5L2 17"}]];var KZ=[["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 lx=[["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 sx=[["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 rx=[["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 ax=[["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 tx=[["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 ox=[["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 ex=[["path",{d:"M15 4 5 9"}],["path",{d:"m15 8.5-10 5"}],["path",{d:"M18 12a9 9 0 0 1-9 9V3"}]];var Zw=[["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 Jw=[["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 YZ=[["path",{d:"M7 21h10"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2"}]];var Yw=[["path",{d:"M21 2H3v16h5v4l4-4h5l4-4V2zm-10 9V7m5 4V7"}]];var Xw=[["path",{d:"m17 2-5 5-5-5"}],["rect",{width:"20",height:"15",x:"2",y:"7",rx:"2"}]];var Ww=[["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 Qw=[["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 Vw=[["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 Gw=[["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 Iw=[["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 zw=[["path",{d:"M6 4v6a6 6 0 0 0 12 0V4"}],["line",{x1:"4",x2:"20",y1:"20",y2:"20"}]];var Nw=[["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 Fw=[["path",{d:"M3 7v6h6"}],["path",{d:"M21 17a9 9 0 0 0-9-9 9 9 0 0 0-6 2.3L3 13"}]];var Hw=[["path",{d:"M21 17a9 9 0 0 0-15-6.7L3 13"}],["path",{d:"M3 7v6h6"}],["circle",{cx:"12",cy:"17",r:"1"}]];var Dw=[["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 Bw=[["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 Ow=[["rect",{width:"8",height:"6",x:"5",y:"4",rx:"1"}],["rect",{width:"8",height:"6",x:"11",y:"14",rx:"1"}]];var XZ=[["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 Tw=[["path",{d:"M15 7h2a5 5 0 0 1 0 10h-2m-6 0H7A5 5 0 0 1 7 7h2"}]];var Pw=[["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 Sw=[["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 Aw=[["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 qw=[["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 Cw=[["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 xw=[["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 ww=[["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 Uw=[["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 Mw=[["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 WZ=[["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 QZ=[["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 VZ=[["path",{d:"M2 21a8 8 0 0 1 13.292-6"}],["circle",{cx:"10",cy:"8",r:"5"}],["path",{d:"M22 19h-6"}]];var Rw=[["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 GZ=[["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 jw=[["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 IZ=[["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 zZ=[["circle",{cx:"12",cy:"8",r:"5"}],["path",{d:"M20 21a8 8 0 0 0-16 0"}]];var Lw=[["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 yw=[["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 fw=[["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 kw=[["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 NZ=[["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 bw=[["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 FZ=[["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 HZ=[["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 hw=[["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 vw=[["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 gw=[["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 $w=[["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 _w=[["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 mw=[["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 uw=[["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 dw=[["path",{d:"M12 15v7"}],["path",{d:"M9 19h6"}],["circle",{cx:"12",cy:"9",r:"6"}]];var cw=[["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 pw=[["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 nw=[["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 iw=[["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 lw=[["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 sw=[["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 rw=[["circle",{cx:"6",cy:"12",r:"4"}],["circle",{cx:"18",cy:"12",r:"4"}],["line",{x1:"6",x2:"18",y1:"16",y2:"16"}]];var aw=[["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 tw=[["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 ow=[["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 ew=[["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 ZU=[["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 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"}]];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 YU=[["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 DZ=[["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 XU=[["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 BZ=[["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 WU=[["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 QU=[["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 VU=[["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 GU=[["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 IU=[["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 zU=[["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 NU=[["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 FU=[["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 HU=[["circle",{cx:"12",cy:"10",r:"8"}],["circle",{cx:"12",cy:"10",r:"3"}],["path",{d:"M7 22h10"}],["path",{d:"M12 22v-4"}]];var DU=[["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 BU=[["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 OU=[["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 TU=[["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 PU=[["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 SU=[["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 AU=[["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 qU=[["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 CU=[["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 xU=[["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 wU=[["path",{d:"M12 20h.01"}]];var UU=[["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 MU=[["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 RU=[["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 jU=[["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 LU=[["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 yU=[["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 fU=[["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 kU=[["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 bU=[["path",{d:"M18 6 6 18"}],["path",{d:"m6 6 12 12"}]];var hU=[["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 vU=[["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 gU=[["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 $U=[["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 _U=[["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 mU=[["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 Jb=({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 14 If you want to use all the icons you can import it like: 15 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)=>vj(V,{nameAttr:J,icons:Z,attrs:K})),W)Array.from(X.querySelectorAll("template")).forEach((G)=>ak({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)=>vj(G,{nameAttr:"icon-name",icons:Z,attrs:K}))}};var vU="http://www.w3.org/2000/svg";function Bg(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(M(G,I),Y);let V=g1(vU,X,Y,Q([]));J=A(V,J)}return J}function tk(Z,J){let K=Z.split("-").map((F)=>F.charAt(0).toUpperCase()+F.slice(1)).join(""),X=gj[K];if(!X)return console.warn(`Icon "${Z}" (${K}) not found in lucide package`),g1(vU,"svg",J,Q([]));let W=Bg(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=[M("xmlns",vU),M("viewBox","0 0 24 24"),M("fill","none"),M("stroke","currentColor"),M("stroke-width","2"),M("stroke-linecap","round"),M("stroke-linejoin","round")];if(!Y)I.push(M("width","24"));if(!V)I.push(M("height","24"));let N=Q(I);G=J;while(G&&G.head!==void 0)N=A(G.head,N),G=G.tail;return g1(vU,"svg",N,W)}class ok extends O{}class $U extends O{}class sZ extends O{}class ek extends O{}function rZ(Z,J,K){let X;if(J instanceof ok)X=["12","12"];else if(J instanceof $U)X=["16","16"];else if(J instanceof sZ)X=["20","20"];else if(J instanceof ek)X=["24","24"];else X=["32","32"];let W=X,Y,V;return Y=W[0],V=W[1],tk(Z,A(M("width",Y),A(M("height",V),K)))}function gU(Z){return E4(Q([M("viewBox","0 0 128 128"),M("xmlns","http://www.w3.org/2000/svg"),H(Z)]),Q([HK(Q([]),Q([C4(Q([H8("board1"),M("x1","0%"),M("y1","0%"),M("x2","100%"),M("y2","100%")]),Q([P8(Q([M("offset","0%"),M("stop-color","#FF6347"),M("stop-opacity","1")])),P8(Q([M("offset","100%"),M("stop-color","#FF4500"),M("stop-opacity","1")]))])),C4(Q([H8("board2"),M("x1","0%"),M("y1","0%"),M("x2","100%"),M("y2","100%")]),Q([P8(Q([M("offset","0%"),M("stop-color","#00CED1"),M("stop-opacity","1")])),P8(Q([M("offset","100%"),M("stop-color","#4682B4"),M("stop-opacity","1")]))]))])),m5(Q([M("transform","translate(64, 64)")]),Q([K5(Q([M("cx","0"),M("cy","-28"),M("rx","50"),M("ry","20"),M("fill","url(#board1)")])),K5(Q([M("cx","0"),M("cy","0"),M("rx","60"),M("ry","20"),M("fill","url(#board2)")])),K5(Q([M("cx","0"),M("cy","28"),M("rx","40"),M("ry","20"),M("fill","#32CD32")]))]))]))}function Og(Z,J,K,X,W,Y,V){if(Z instanceof y){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([x("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([x("Settings")]))]));else N=z;return _0(N,Q([p(Q([H("px-3 py-1 text-zinc-400")]),Q([x(G)])),v8(Q([w5("POST"),x5("/logout")]),Q([q0(Q([M0("submit"),H("px-3 py-1 text-zinc-400 hover:text-zinc-300 transition-colors cursor-pointer")]),Q([x("Logout")]))]))]))}else return Q([v8(Q([w5("POST"),x5("/admin/oauth/authorize"),H("flex gap-2 items-center")]),Q([iZ(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([M0("submit"),H("bg-zinc-800 hover:bg-zinc-700 text-zinc-300 px-3 py-1 rounded transition-colors")]),Q([x("Login")]))]))])}function Tg(Z,J,K,X,W,Y,V){return j(Q([H("sm:hidden mt-4 pb-4 border-b border-zinc-800 flex flex-col gap-3")]),(()=>{if(Z instanceof y){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([x("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([x("Settings")]))]));else z=I;return _0(z,Q([v8(Q([w5("POST"),x5("/logout")]),Q([q0(Q([M0("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([x("Logout")]))]))]))}else return Q([v8(Q([w5("POST"),x5("/admin/oauth/authorize"),H("flex flex-col gap-3")]),Q([iZ(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([M0("submit"),H("bg-zinc-800 hover:bg-zinc-700 text-zinc-300 px-4 py-2 rounded transition-colors w-full text-sm")]),Q([x("Login")]))]))])})())}function Kb(Z,J,K,X,W,Y,V,G,I,z){return j(Q([H("mb-8")]),Q([j(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([j(Q([H("overflow-visible")]),Q([(()=>{if(J)return sk("w-10 h-10");else return gU("w-10 h-10")})()])),_1(Q([H("text-xs font-medium uppercase tracking-wider text-zinc-500")]),Q([x("quickslice")]))])),j(Q([H("flex items-center gap-2")]),Q([(()=>{if(Z instanceof y){let N=Z[0][0];return p(Q([H("sm:hidden text-xs text-zinc-400 px-2 truncate max-w-[150px]")]),Q([x("@"+N)]))}else return z0()})(),j(Q([H("hidden sm:flex gap-4 text-xs items-center")]),Og(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 rZ("x",new sZ,Q([]));else return rZ("menu",new sZ,Q([]))})()]))]))])),(()=>{if(K)return Tg(Z,W,Y,V,G,I,z);else return z0()})()]))}function _j(Z,J){let K=document.getElementById(Z);if(!K){J(new $("File input not found"));return}let X=K.files?.[0];if(!X){console.log("[readFileAsBase64] No file selected"),J(new $("No file selected"));return}let W=new FileReader;W.onload=(Y)=>{try{let V=Y.target.result.split(",")[1];J(new C(V))}catch(V){J(new $(`Failed to encode file: ${V.message}`))}},W.onerror=()=>{J(new $("Failed to read file"))},W.readAsDataURL(X)}function mj(Z){let J=document.getElementById(Z);if(J)J.value=""}function Yb(){let Z=Ik(),J=e0(Z,"TriggerBackfill",`mutation TriggerBackfill { 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)=>dj(V,{nameAttr:J,icons:Z,attrs:K})),W)Array.from(X.querySelectorAll("template")).forEach((G)=>Jb({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)=>dj(G,{nameAttr:"icon-name",icons:Z,attrs:K}))}};var uU="http://www.w3.org/2000/svg";function P$(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(R(G,I),Y);let V=$1(uU,X,Y,Q([]));J=A(V,J)}return J}function Kb(Z,J){let K=Z.split("-").map((F)=>F.charAt(0).toUpperCase()+F.slice(1)).join(""),X=pj[K];if(!X)return console.warn(`Icon "${Z}" (${K}) not found in lucide package`),$1(uU,"svg",J,Q([]));let W=P$(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=[R("xmlns",uU),R("viewBox","0 0 24 24"),R("fill","none"),R("stroke","currentColor"),R("stroke-width","2"),R("stroke-linecap","round"),R("stroke-linejoin","round")];if(!Y)I.push(R("width","24"));if(!V)I.push(R("height","24"));let N=Q(I);G=J;while(G&&G.head!==void 0)N=A(G.head,N),G=G.tail;return $1(uU,"svg",N,W)}class Yb extends O{}class dU extends O{}class aZ extends O{}class Xb extends O{}function tZ(Z,J,K){let X;if(J instanceof Yb)X=["12","12"];else if(J instanceof dU)X=["16","16"];else if(J instanceof aZ)X=["20","20"];else if(J instanceof Xb)X=["24","24"];else X=["32","32"];let W=X,Y,V;return Y=W[0],V=W[1],Kb(Z,A(R("width",Y),A(R("height",V),K)))}function cU(Z){return E4(Q([R("viewBox","0 0 128 128"),R("xmlns","http://www.w3.org/2000/svg"),H(Z)]),Q([PK(Q([]),Q([C4(Q([B8("board1"),R("x1","0%"),R("y1","0%"),R("x2","100%"),R("y2","100%")]),Q([q8(Q([R("offset","0%"),R("stop-color","#FF6347"),R("stop-opacity","1")])),q8(Q([R("offset","100%"),R("stop-color","#FF4500"),R("stop-opacity","1")]))])),C4(Q([B8("board2"),R("x1","0%"),R("y1","0%"),R("x2","100%"),R("y2","100%")]),Q([q8(Q([R("offset","0%"),R("stop-color","#00CED1"),R("stop-opacity","1")])),q8(Q([R("offset","100%"),R("stop-color","#4682B4"),R("stop-opacity","1")]))]))])),d5(Q([R("transform","translate(64, 64)")]),Q([X5(Q([R("cx","0"),R("cy","-28"),R("rx","50"),R("ry","20"),R("fill","url(#board1)")])),X5(Q([R("cx","0"),R("cy","0"),R("rx","60"),R("ry","20"),R("fill","url(#board2)")])),X5(Q([R("cx","0"),R("cy","28"),R("rx","40"),R("ry","20"),R("fill","#32CD32")]))]))]))}function S$(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([x("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([x("Settings")]))]));else N=z;return _0(N,Q([p(Q([H("px-3 py-1 text-zinc-400")]),Q([x(G)])),g8(Q([M5("POST"),U5("/logout")]),Q([E0(Q([M0("submit"),H("px-3 py-1 text-zinc-400 hover:text-zinc-300 transition-colors cursor-pointer")]),Q([x("Logout")]))]))]))}else return Q([g8(Q([M5("POST"),U5("/admin/oauth/authorize"),H("flex gap-2 items-center")]),Q([sZ(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),E0(Q([M0("submit"),H("bg-zinc-800 hover:bg-zinc-700 text-zinc-300 px-3 py-1 rounded transition-colors")]),Q([x("Login")]))]))])}function A$(Z,J,K,X,W,Y,V){return j(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([x("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([x("Settings")]))]));else z=I;return _0(z,Q([g8(Q([M5("POST"),U5("/logout")]),Q([E0(Q([M0("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([x("Logout")]))]))]))}else return Q([g8(Q([M5("POST"),U5("/admin/oauth/authorize"),H("flex flex-col gap-3")]),Q([sZ(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),E0(Q([M0("submit"),H("bg-zinc-800 hover:bg-zinc-700 text-zinc-300 px-4 py-2 rounded transition-colors w-full text-sm")]),Q([x("Login")]))]))])})())}function Vb(Z,J,K,X,W,Y,V,G,I,z){return j(Q([H("mb-8")]),Q([j(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([j(Q([H("overflow-visible")]),Q([(()=>{if(J)return ek("w-10 h-10");else return cU("w-10 h-10")})()])),_1(Q([H("text-xs font-medium uppercase tracking-wider text-zinc-500")]),Q([x("quickslice")]))])),j(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([x("@"+N)]))}else return G0()})(),j(Q([H("hidden sm:flex gap-4 text-xs items-center")]),S$(Z,W,Y,V,G,I,z)),E0(Q([H("sm:hidden p-2 text-zinc-400 hover:text-zinc-300 transition-colors"),k0(X)]),Q([(()=>{if(K)return tZ("x",new aZ,Q([]));else return tZ("menu",new aZ,Q([]))})()]))]))])),(()=>{if(K)return A$(Z,W,Y,V,G,I,z);else return G0()})()]))}function nj(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 ij(Z){let J=document.getElementById(Z);if(J)J.value=""}function Gb(){let Z=Dk(),J=e0(Z,"TriggerBackfill",`mutation TriggerBackfill { 17 17 triggerBackfill 18 18 }`,"generated/queries/trigger_backfill"),K=e0(J,"IsBackfilling",`query IsBackfilling { 19 19 isBackfilling ··· 142 142 json 143 143 createdAt 144 144 } 145 - }`,"generated/queries/get_lexicons")}class Xb extends O{constructor(Z){super();this.backfill_actor=Z}}function qg(){return h("backfillActor",G1,(Z)=>{return s(new Xb(Z))})}function Wb(Z){return T0(Z,qg())}class Qb 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 Vb extends O{constructor(Z){super();this.create_o_auth_client=Z}}function Cg(){return h("clientId",u,(Z)=>{return h("clientSecret",U1(u),(J)=>{return h("clientName",u,(K)=>{return h("clientType",u,(X)=>{return h("redirectUris",U0(u),(W)=>{return h("scope",U1(u),(Y)=>{return h("createdAt",p0,(V)=>{return s(new Qb(Z,J,K,X,W,Y,V))})})})})})})})}function xg(){return h("createOAuthClient",Cg(),(Z)=>{return s(new Vb(Z))})}function Gb(Z){return T0(Z,xg())}class Ib extends O{constructor(Z){super();this.delete_o_auth_client=Z}}function Ug(){return h("deleteOAuthClient",G1,(Z)=>{return s(new Ib(Z))})}function zb(Z){return T0(Z,Ug())}class aZ extends O{}class tZ extends O{}class oZ extends O{}class u5 extends O{}class eZ extends O{}class Nb 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 Fb extends O{constructor(Z){super();this.activity_buckets=Z}}function z5(Z){if(Z instanceof aZ)return"ONE_HOUR";else if(Z instanceof tZ)return"THREE_HOURS";else if(Z instanceof oZ)return"SIX_HOURS";else if(Z instanceof u5)return"ONE_DAY";else return"SEVEN_DAYS"}function Rg(){return h("timestamp",u,(Z)=>{return h("total",p0,(J)=>{return h("creates",p0,(K)=>{return h("updates",p0,(X)=>{return h("deletes",p0,(W)=>{return s(new Nb(Z,J,K,X,W))})})})})})}function jg(){return h("activityBuckets",U0(Rg()),(Z)=>{return s(new Fb(Z))})}function d5(Z){return T0(Z,jg())}class Hb extends O{constructor(Z,J,K){super();this.did=Z,this.handle=J,this.is_admin=K}}class Db extends O{constructor(Z){super();this.current_session=Z}}function Lg(){return h("did",u,(Z)=>{return h("handle",u,(J)=>{return h("isAdmin",G1,(K)=>{return s(new Hb(Z,J,K))})})})}function yg(){return h("currentSession",U1(Lg()),(Z)=>{return s(new Db(Z))})}function dj(Z){return T0(Z,yg())}class Bb extends O{constructor(Z,J,K){super();this.id=Z,this.json=J,this.created_at=K}}class Ob extends O{constructor(Z){super();this.lexicons=Z}}function kg(){return h("id",u,(Z)=>{return h("json",u,(J)=>{return h("createdAt",u,(K)=>{return s(new Bb(Z,J,K))})})})}function bg(){return h("lexicons",U0(kg()),(Z)=>{return s(new Ob(Z))})}function ZJ(Z){return T0(Z,bg())}class Pb 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 Sb extends O{constructor(Z){super();this.oauth_clients=Z}}function hg(){return h("clientId",u,(Z)=>{return h("clientSecret",U1(u),(J)=>{return h("clientName",u,(K)=>{return h("clientType",u,(X)=>{return h("redirectUris",U0(u),(W)=>{return h("scope",U1(u),(Y)=>{return h("createdAt",p0,(V)=>{return s(new Pb(Z,J,K,X,W,Y,V))})})})})})})})}function vg(){return h("oauthClients",U0(hg()),(Z)=>{return s(new Sb(Z))})}function d8(Z){return T0(Z,vg())}class qb 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 Eb extends O{constructor(Z){super();this.recent_activity=Z}}function $g(){return h("id",p0,(Z)=>{return h("timestamp",u,(J)=>{return h("operation",u,(K)=>{return h("collection",u,(X)=>{return h("did",u,(W)=>{return h("status",u,(Y)=>{return h("errorMessage",U1(u),(V)=>{return h("eventJson",U1(u),(G)=>{return s(new qb(Z,J,K,X,W,Y,V,G))})})})})})})})})}function gg(){return h("recentActivity",U0($g()),(Z)=>{return s(new Eb(Z))})}function OZ(Z){return T0(Z,gg())}class xb 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 wb extends O{constructor(Z){super();this.settings=Z}}function _g(){return h("id",u,(Z)=>{return h("domainAuthority",u,(J)=>{return h("adminDids",U0(u),(K)=>{return h("relayUrl",u,(X)=>{return h("plcDirectoryUrl",u,(W)=>{return h("jetstreamUrl",u,(Y)=>{return h("oauthSupportedScopes",u,(V)=>{return s(new xb(Z,J,K,X,W,Y,V))})})})})})})})}function mg(){return h("settings",_g(),(Z)=>{return s(new wb(Z))})}function O1(Z){return T0(Z,mg())}class Ub extends O{constructor(Z,J,K){super();this.record_count=Z,this.actor_count=J,this.lexicon_count=K}}class Mb extends O{constructor(Z){super();this.statistics=Z}}function ug(){return h("recordCount",p0,(Z)=>{return h("actorCount",p0,(J)=>{return h("lexiconCount",p0,(K)=>{return s(new Ub(Z,J,K))})})})}function dg(){return h("statistics",ug(),(Z)=>{return s(new Mb(Z))})}function N5(Z){return T0(Z,dg())}class Rb extends O{constructor(Z){super();this.reset_all=Z}}function cg(){return h("resetAll",G1,(Z)=>{return s(new Rb(Z))})}function jb(Z){return T0(Z,cg())}class Lb extends O{constructor(Z){super();this.trigger_backfill=Z}}function ng(){return h("triggerBackfill",G1,(Z)=>{return s(new Lb(Z))})}function yb(Z){return T0(Z,ng())}class fb 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 kb extends O{constructor(Z){super();this.update_o_auth_client=Z}}function lg(){return h("clientId",u,(Z)=>{return h("clientSecret",U1(u),(J)=>{return h("clientName",u,(K)=>{return h("clientType",u,(X)=>{return h("redirectUris",U0(u),(W)=>{return h("scope",U1(u),(Y)=>{return h("createdAt",p0,(V)=>{return s(new fb(Z,J,K,X,W,Y,V))})})})})})})})}function sg(){return h("updateOAuthClient",lg(),(Z)=>{return s(new kb(Z))})}function bb(Z){return T0(Z,sg())}class hb 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 vb extends O{constructor(Z){super();this.update_settings=Z}}function ag(){return h("id",u,(Z)=>{return h("domainAuthority",u,(J)=>{return h("adminDids",U0(u),(K)=>{return h("relayUrl",u,(X)=>{return h("plcDirectoryUrl",u,(W)=>{return h("jetstreamUrl",u,(Y)=>{return h("oauthSupportedScopes",u,(V)=>{return s(new hb(Z,J,K,X,W,Y,V))})})})})})})})}function tg(){return h("updateSettings",ag(),(Z)=>{return s(new vb(Z))})}function JJ(Z){return T0(Z,tg())}class $b extends O{constructor(Z){super();this.upload_lexicons=Z}}function eg(){return h("uploadLexicons",G1,(Z)=>{return s(new $b(Z))})}function gb(Z){return T0(Z,eg())}function nj(Z){globalThis.location.href=Z}class A8 extends O{}class q8 extends O{}class e1 extends O{}class ij extends O{}function c5(Z,J){let K;if(Z instanceof A8)K=["bg-green-900/30","border-green-800","text-green-300","✓"];else if(Z instanceof q8)K=["bg-red-900/30","border-red-800","text-red-300","✗"];else if(Z instanceof e1)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],j(Q([H("mb-6 p-4 rounded border "+W+" "+Y)]),Q([j(Q([H("flex items-center gap-3")]),Q([p(Q([H("text-lg "+V)]),Q([x(G)])),p(Q([H("text-sm "+V)]),Q([x(J)]))]))]))}function lj(Z,J,K,X){let W;if(Z instanceof A8)W=["bg-green-900/30","border-green-800","text-green-300","✓"];else if(Z instanceof q8)W=["bg-red-900/30","border-red-800","text-red-300","✗"];else if(Z instanceof e1)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],j(Q([H("mb-6 p-4 rounded border "+V+" "+G)]),Q([j(Q([H("flex items-center gap-3")]),Q([p(Q([H("text-lg "+I)]),Q([x(z)])),p(Q([H("text-sm "+I)]),Q([x(J+" "),m1(Q([v1(X),H("underline hover:no-underline")]),Q([x(K)]))]))]))]))}var _b="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 Z8(Z,J,K){return q0(Q([M0("button"),H(_b),RZ(Z),f0(J)]),Q([l0(K)]))}function mU(Z,J){return q0(Q([M0("submit"),H(_b),RZ(Z)]),Q([l0(J)]))}class dU extends O{constructor(Z){super();this[0]=Z}}class mb extends O{}class F5 extends O{constructor(Z,J,K){super();this.did_input=Z,this.is_submitting=J,this.alert=K}}function ub(){return new F5("",!1,new v)}function rj(Z,J,K){return new F5(Z.did_input,Z.is_submitting,new y([J,K]))}function cU(Z){return new F5(Z.did_input,Z.is_submitting,new v)}function pU(Z,J){return new F5(Z.did_input,J,Z.alert)}function db(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 j(Q([H("space-y-6")]),Q([j(Q([]),Q([_1(Q([H("text-xl font-bold text-zinc-100 mb-2")]),Q([l0("Backfill Actor")])),x0(Q([H("text-zinc-400 text-sm")]),Q([l0("Sync all collections for a specific actor via CAR file repository sync.")]))])),(()=>{let X=Z.alert;if(X instanceof y){let W=X[0][0],Y=X[0][1],V;if(W==="success")V=new A8;else if(W==="error")V=new q8;else V=new e1;return c5(V,Y)}else return z0()})(),j(Q([H("bg-zinc-900/50 border border-zinc-800 rounded-lg p-6 max-w-xl")]),Q([j(Q([H("mb-4")]),Q([s0(Q([H(K)]),Q([l0("Actor DID")])),N1(Q([M0("text"),H(J),q1("did:plc:... or did:web:..."),o0(Z.did_input),K1((X)=>{return new dU(X)})])),x0(Q([H("text-xs text-zinc-500 mt-1")]),Q([l0("Enter the DID of the actor whose records you want to sync.")]))])),j(Q([H("flex items-center gap-4")]),Q([Z8(Z.is_submitting||Z.did_input==="",new mb,(()=>{if(Z.is_submitting)return"Syncing...";else return"Sync Actor"})())]))]))]))}function Y_(Z,J){let K=(X)=>{let W="px-3 py-1 text-xs rounded transition-colors cursor-pointer";if(S0(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 j(Q([H("flex gap-2 mb-4")]),Q([q0(Q([H(K(new aZ)),f0(J(new aZ))]),Q([x("1hr")])),q0(Q([H(K(new tZ)),f0(J(new tZ))]),Q([x("3hr")])),q0(Q([H(K(new oZ)),f0(J(new oZ))]),Q([x("6hr")])),q0(Q([H(K(new u5)),f0(J(new u5))]),Q([x("1 day")])),q0(Q([H(K(new eZ)),f0(J(new eZ))]),Q([x("7 day")]))]))}function X_(Z){let K=H0(Z,(W)=>{return W.creates+W.updates+W.deletes}),X=hL(K,CJ);return X4(X,1)}function W_(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 m5(Q([]),Q([lZ(Q([M("x",c0(V)),M("y",c0(z)),M("width",c0(K)),M("height",c0(I)),M("style","fill: #3f3f46 !important; stroke: none; display: inline")]))]))}else{let I=FJ(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 m5(Q([H("group")]),Q([(()=>{if(Z.deletes>0)return lZ(Q([M("x",c0(V)),M("y",c0(D)),M("width",c0(K)),M("height",c0(z)),M("style","fill: #ef4444 !important; stroke: none; display: inline; cursor: pointer; transition: opacity 0.2s"),H("group-hover:opacity-80")]));else return z0()})(),(()=>{if(Z.updates>0)return lZ(Q([M("x",c0(V)),M("y",c0(B)),M("width",c0(K)),M("height",c0(N)),M("style","fill: #60a5fa !important; stroke: none; display: inline; cursor: pointer; transition: opacity 0.2s"),H("group-hover:opacity-80")]));else return z0()})(),(()=>{if(Z.creates>0)return lZ(Q([M("x",c0(V)),M("y",c0(T)),M("width",c0(K)),M("height",c0(F)),M("style","fill: #22c55e !important; stroke: none; display: inline; cursor: pointer; transition: opacity 0.2s"),H("group-hover:opacity-80")]));else return z0()})()]))}}function Q_(Z,J){let K=X_(Z),X;if(J instanceof eZ)X=[160,12];else X=[30,4];let W=X,Y,V;Y=W[0],V=W[1];let G=z8(Z),I=N0(G)*Y+N0(G-1)*V,z=120;return j(Q([H("w-full")]),Q([E4(Q([M("viewBox","0 0 "+c0(I)+" "+c0(z)),M("width","100%"),M("height",c0(z)),M("style","min-height: 120px"),M("preserveAspectRatio","none")]),TJ(Z,(N,F)=>{return W_(N,F,Y,V,z,K)}))]))}function V_(Z,J){let K=b(Q([["range",d(z5(J))]])),X=a(Z,"GetActivityBuckets",K,d5),W;if(W=X[1],W instanceof j1)return j(Q([H("py-8 text-center text-zinc-600 text-xs")]),Q([x("Loading activity data...")]));else if(W instanceof L1){let Y=W[0];return j(Q([H("py-8 text-center text-red-400 text-xs")]),Q([x("Error: "+Y)]))}else{let V=W[0].activity_buckets;if(V instanceof U)return j(Q([H("py-8 text-center text-zinc-600 text-xs")]),Q([x("No activity data available")]));else return Q_(V,J)}}function cb(Z,J,K){return j(Q([H("bg-zinc-800/50 rounded p-4 font-mono mb-8")]),Q([Y_(J,K),V_(Z,J)]))}function aj(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 tj(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 nU(Z){if(typeof Z==="string")try{let J=JSON.parse(Z);return nU(J)}catch(J){return Z}else if(Array.isArray(Z))return Z.map(nU);else if(Z!==null&&typeof Z==="object"){let J={};for(let[K,X]of Object.entries(Z))J[K]=nU(X);return J}return Z}function oj(Z){try{let J=JSON.parse(Z),K=nU(J);return JSON.stringify(K,null,2)}catch(J){return Z}}function N_(Z){return j(Q([]),H0(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 j(Q([H("border-l-2 border-zinc-700/50 hover:border-zinc-600 transition-colors"),M("data-entry-id",F)]),Q([j(Q([H("flex items-start gap-2 py-1 text-xs font-mono hover:bg-zinc-900/30 cursor-pointer group"),M("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"),M("data-caret","")]),Q([x("›")])),p(Q([H("text-zinc-600 shrink-0 w-16"),M("data-timestamp",J.timestamp)]),Q([x(aj(J.timestamp))])),p(Q([H(W+" shrink-0 w-4")]),Q([x(G)])),p(Q([H(N+" shrink-0 w-12")]),Q([x(J.operation)])),p(Q([H("text-purple-400 shrink-0")]),Q([x(J.collection)])),p(Q([H("text-zinc-500 truncate")]),Q([x(J.did)]))])),j(Q([H("px-6 py-2 text-xs bg-zinc-900/50 border-t border-zinc-800 hidden space-y-1"),M("data-details","")]),Q([j(Q([H("flex gap-2")]),Q([p(Q([H("text-zinc-600 w-20")]),Q([x("Timestamp:")])),p(Q([H("text-zinc-400")]),Q([x(tj(J.timestamp))]))])),j(Q([H("flex gap-2")]),Q([p(Q([H("text-zinc-600 w-20")]),Q([x("DID:")])),p(Q([H("text-zinc-400 font-mono break-all")]),Q([x(J.did)]))])),j(Q([H("flex gap-2")]),Q([p(Q([H("text-zinc-600 w-20")]),Q([x("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([x(J.status)]))])),(()=>{let D=J.error_message;if(D instanceof y){let B=D[0];return j(Q([H("flex gap-2")]),Q([p(Q([H("text-zinc-600 w-20")]),Q([x("Error:")])),p(Q([H("text-red-400")]),Q([x(B)]))]))}else return z0()})(),(()=>{let D=J.event_json;if(D instanceof y){let B=D[0],T=oj(B);return j(Q([H("mt-2")]),Q([j(Q([H("text-zinc-600 mb-1")]),Q([x("Event JSON:")])),dJ(Q([H("text-zinc-400 bg-black/40 p-2 rounded text-[10px] whitespace-pre-wrap block"),M("data-json",B)]),Q([x(T)]))]))}else return z0()})()]))]))}))}function pb(Z,J){let K=b(Q([["hours",W1(J)]])),X=a(Z,"GetRecentActivity",K,OZ),W;return W=X[1],j(Q([H("font-mono mb-8")]),Q([R0("style",Q([]),Q([x(`[data-entry-id].expanded [data-caret] { transform: rotate(90deg); } 146 - [data-entry-id].expanded [data-details] { display: block !important; }`)])),j(Q([H("bg-zinc-800/50 rounded p-4")]),Q([j(Q([H("flex items-center justify-between mb-3")]),Q([j(Q([H("text-sm text-zinc-500")]),Q([x("Jetstream Activity")])),(()=>{if(W instanceof y1){let Y=W[0];return p(Q([H("text-xs text-zinc-600")]),Q([x(X1(z8(Y.recent_activity))+" events ("+X1(J)+"h)")]))}else return p(Q([H("text-xs text-zinc-600")]),Q([x("("+X1(J)+"h)")]))})()])),j(Q([H("max-h-80 overflow-y-auto")]),Q([(()=>{if(W instanceof j1)return j(Q([H("py-8 text-center text-zinc-600 text-xs")]),Q([x("Loading activity...")]));else if(W instanceof L1){let Y=W[0];return j(Q([H("py-8 text-center text-red-400 text-xs")]),Q([x("Error: "+Y)]))}else{let V=W[0].recent_activity;if(V instanceof U)return j(Q([H("py-8 text-center text-zinc-600 text-xs")]),Q([x("No activity in the last "+X1(J)+" hours")]));else return N_(V)}})()]))]))]))}function KJ(Z){return new Intl.NumberFormat("en-US").format(Z)}function ej(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([j(Q([H("text-sm text-zinc-500 mb-1")]),Q([l0(Z)])),j(Q([H("text-2xl font-semibold text-zinc-200")]),Q([l0(J)]))]));else return j(Q([H("bg-zinc-800/50 rounded p-4")]),Q([j(Q([H("text-sm text-zinc-500 mb-1")]),Q([l0(Z)])),j(Q([H("text-2xl font-semibold text-zinc-200")]),Q([l0(J)]))]))}function ZL(Z){return j(Q([H("bg-zinc-800/50 rounded p-4 animate-pulse")]),Q([j(Q([H("text-sm text-zinc-500 mb-1")]),Q([l0(Z)])),j(Q([H("h-8 bg-zinc-700 rounded w-24")]),Q([]))]))}function nb(Z){let J=a(Z,"GetStatistics",b(Q([])),N5),K;if(K=J[1],K instanceof j1)return j(Q([H("mb-8 grid grid-cols-1 sm:grid-cols-3 gap-4")]),Q([ZL("Total Records"),ZL("Total Actors"),ZL("Total Lexicons")]));else if(K instanceof L1){let X=K[0];return j(Q([H("mb-8")]),Q([j(Q([H("bg-red-800/50 rounded p-4 text-red-200")]),Q([l0("Error loading statistics: "+X)]))]))}else{let W=K[0].statistics;return j(Q([H("mb-8 grid grid-cols-1 sm:grid-cols-3 gap-4")]),Q([ej("Total Records",KJ(W.record_count),!1,""),ej("Total Actors",KJ(W.actor_count),!1,""),ej("Total Lexicons",KJ(W.lexicon_count),!0,"/lexicons")]))}}class iU extends O{constructor(Z){super();this[0]=Z}}class lU extends O{}class JL extends O{}function B_(Z,J){let K;if(Z==="")K=lj(new ij,"No domain authority configured.","Settings","/settings");else K=z0();let X=K,W;if(J===0)W=lj(new e1,"No lexicons loaded.","Settings","/settings");else W=z0();let Y=W;return j(Q([]),Q([X,Y]))}function ib(Z,J,K,X,W){let Y=a(Z,"GetStatistics",b(Q([])),N5),V;V=Y[1];let G=a(Z,"GetSettings",b(Q([])),O1),I;I=G[1];let z;if(V instanceof y1&&I instanceof y1){let F=V[0],D=I[0];z=B_(D.settings.domain_authority,F.statistics.lexicon_count)}else z=z0();let N=z;return j(Q([]),Q([N,(()=>{if(W)return j(Q([H("mb-8 flex gap-3 flex-wrap items-start")]),(()=>{if(X)return Q([Z8(!1,new JL,"Open GraphiQL"),j(Q([H("flex items-center gap-3")]),Q([Z8($5(K),new lU,(()=>{if(K instanceof m8)return"Backfilling...";else if(K instanceof B8)return"Backfilling...";else return"Trigger Backfill"})()),(()=>{if(K instanceof v5)return x0(Q([H("text-sm text-green-600")]),Q([l0("Backfill complete!")]));else return z0()})()]))]);else return Q([Z8(!1,new JL,"Open GraphiQL")])})());else return z0()})(),nb(Z),cb(Z,J,(F)=>{return new iU(F)}),pb(Z,24)]))}function lb(Z){if(navigator.clipboard&&navigator.clipboard.writeText)navigator.clipboard.writeText(Z).catch((J)=>{console.error("Failed to copy to clipboard:",J)})}function KL(Z){try{let J=JSON.parse(Z);return JSON.stringify(J,null,2)}catch(J){return Z}}function T_(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(W instanceof U)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([x('"')])),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 U)N="";else N=W.head;let F=N,D=p(Q([H("text-zinc-400")]),Q([x(F)]));Z=z,J=Y,K=!1,X=A(D,G)}else if(I==="}"&&!Y){let z=W.tail,N;if(W instanceof U)N="";else N=W.head;let F=N,D=p(Q([H("text-zinc-400")]),Q([x(F)]));Z=z,J=Y,K=!1,X=A(D,G)}else if(I==="["&&!Y){let z=W.tail,N;if(W instanceof U)N="";else N=W.head;let F=N,D=p(Q([H("text-zinc-400")]),Q([x(F)]));Z=z,J=Y,K=!1,X=A(D,G)}else if(I==="]"&&!Y){let z=W.tail,N;if(W instanceof U)N="";else N=W.head;let F=N,D=p(Q([H("text-zinc-400")]),Q([x(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([x(":")]));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([x(",")]));Z=z,J=Y,K=!1,X=A(N,G)}else if(I===" "&&!Y){let z=W.tail,N=x((()=>{if(W instanceof U)return"";else{let F=W.head;if(F===" ")return" ";else if(F===` 145 + }`,"generated/queries/get_lexicons")}class Ib extends O{constructor(Z){super();this.backfill_actor=Z}}function x$(){return g("backfillActor",G1,(Z)=>{return s(new Ib(Z))})}function zb(Z){return A0(Z,x$())}class Nb 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 Fb extends O{constructor(Z){super();this.create_o_auth_client=Z}}function U$(){return g("clientId",u,(Z)=>{return g("clientSecret",U1(u),(J)=>{return g("clientName",u,(K)=>{return g("clientType",u,(X)=>{return g("redirectUris",U0(u),(W)=>{return g("scope",U1(u),(Y)=>{return g("createdAt",p0,(V)=>{return s(new Nb(Z,J,K,X,W,Y,V))})})})})})})})}function M$(){return g("createOAuthClient",U$(),(Z)=>{return s(new Fb(Z))})}function Hb(Z){return A0(Z,M$())}class Db extends O{constructor(Z){super();this.delete_o_auth_client=Z}}function j$(){return g("deleteOAuthClient",G1,(Z)=>{return s(new Db(Z))})}function Bb(Z){return A0(Z,j$())}class oZ extends O{}class eZ extends O{}class ZJ extends O{}class c5 extends O{}class JJ extends O{}class Ob 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 Tb extends O{constructor(Z){super();this.activity_buckets=Z}}function F5(Z){if(Z instanceof oZ)return"ONE_HOUR";else if(Z instanceof eZ)return"THREE_HOURS";else if(Z instanceof ZJ)return"SIX_HOURS";else if(Z instanceof c5)return"ONE_DAY";else return"SEVEN_DAYS"}function y$(){return g("timestamp",u,(Z)=>{return g("total",p0,(J)=>{return g("creates",p0,(K)=>{return g("updates",p0,(X)=>{return g("deletes",p0,(W)=>{return s(new Ob(Z,J,K,X,W))})})})})})}function f$(){return g("activityBuckets",U0(y$()),(Z)=>{return s(new Tb(Z))})}function p5(Z){return A0(Z,f$())}class Pb extends O{constructor(Z,J,K){super();this.did=Z,this.handle=J,this.is_admin=K}}class Sb extends O{constructor(Z){super();this.current_session=Z}}function k$(){return g("did",u,(Z)=>{return g("handle",u,(J)=>{return g("isAdmin",G1,(K)=>{return s(new Pb(Z,J,K))})})})}function b$(){return g("currentSession",U1(k$()),(Z)=>{return s(new Sb(Z))})}function sj(Z){return A0(Z,b$())}class Ab extends O{constructor(Z,J,K){super();this.id=Z,this.json=J,this.created_at=K}}class qb extends O{constructor(Z){super();this.lexicons=Z}}function v$(){return g("id",u,(Z)=>{return g("json",u,(J)=>{return g("createdAt",u,(K)=>{return s(new Ab(Z,J,K))})})})}function g$(){return g("lexicons",U0(v$()),(Z)=>{return s(new qb(Z))})}function KJ(Z){return A0(Z,g$())}class Cb 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 xb extends O{constructor(Z){super();this.oauth_clients=Z}}function $$(){return g("clientId",u,(Z)=>{return g("clientSecret",U1(u),(J)=>{return g("clientName",u,(K)=>{return g("clientType",u,(X)=>{return g("redirectUris",U0(u),(W)=>{return g("scope",U1(u),(Y)=>{return g("createdAt",p0,(V)=>{return s(new Cb(Z,J,K,X,W,Y,V))})})})})})})})}function _$(){return g("oauthClients",U0($$()),(Z)=>{return s(new xb(Z))})}function p8(Z){return A0(Z,_$())}class Ub 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 Mb extends O{constructor(Z){super();this.recent_activity=Z}}function m$(){return g("id",p0,(Z)=>{return g("timestamp",u,(J)=>{return g("operation",u,(K)=>{return g("collection",u,(X)=>{return g("did",u,(W)=>{return g("status",u,(Y)=>{return g("errorMessage",U1(u),(V)=>{return g("eventJson",U1(u),(G)=>{return s(new Ub(Z,J,K,X,W,Y,V,G))})})})})})})})})}function u$(){return g("recentActivity",U0(m$()),(Z)=>{return s(new Mb(Z))})}function OZ(Z){return A0(Z,u$())}class jb 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 Lb extends O{constructor(Z){super();this.settings=Z}}function d$(){return g("id",u,(Z)=>{return g("domainAuthority",u,(J)=>{return g("adminDids",U0(u),(K)=>{return g("relayUrl",u,(X)=>{return g("plcDirectoryUrl",u,(W)=>{return g("jetstreamUrl",u,(Y)=>{return g("oauthSupportedScopes",u,(V)=>{return s(new jb(Z,J,K,X,W,Y,V))})})})})})})})}function c$(){return g("settings",d$(),(Z)=>{return s(new Lb(Z))})}function T1(Z){return A0(Z,c$())}class yb extends O{constructor(Z,J,K){super();this.record_count=Z,this.actor_count=J,this.lexicon_count=K}}class fb extends O{constructor(Z){super();this.statistics=Z}}function p$(){return g("recordCount",p0,(Z)=>{return g("actorCount",p0,(J)=>{return g("lexiconCount",p0,(K)=>{return s(new yb(Z,J,K))})})})}function n$(){return g("statistics",p$(),(Z)=>{return s(new fb(Z))})}function H5(Z){return A0(Z,n$())}class kb extends O{constructor(Z){super();this.reset_all=Z}}function i$(){return g("resetAll",G1,(Z)=>{return s(new kb(Z))})}function bb(Z){return A0(Z,i$())}class hb extends O{constructor(Z){super();this.trigger_backfill=Z}}function s$(){return g("triggerBackfill",G1,(Z)=>{return s(new hb(Z))})}function vb(Z){return A0(Z,s$())}class gb 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 $b extends O{constructor(Z){super();this.update_o_auth_client=Z}}function a$(){return g("clientId",u,(Z)=>{return g("clientSecret",U1(u),(J)=>{return g("clientName",u,(K)=>{return g("clientType",u,(X)=>{return g("redirectUris",U0(u),(W)=>{return g("scope",U1(u),(Y)=>{return g("createdAt",p0,(V)=>{return s(new gb(Z,J,K,X,W,Y,V))})})})})})})})}function t$(){return g("updateOAuthClient",a$(),(Z)=>{return s(new $b(Z))})}function _b(Z){return A0(Z,t$())}class mb 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 ub extends O{constructor(Z){super();this.update_settings=Z}}function e$(){return g("id",u,(Z)=>{return g("domainAuthority",u,(J)=>{return g("adminDids",U0(u),(K)=>{return g("relayUrl",u,(X)=>{return g("plcDirectoryUrl",u,(W)=>{return g("jetstreamUrl",u,(Y)=>{return g("oauthSupportedScopes",u,(V)=>{return s(new mb(Z,J,K,X,W,Y,V))})})})})})})})}function Z_(){return g("updateSettings",e$(),(Z)=>{return s(new ub(Z))})}function YJ(Z){return A0(Z,Z_())}class db extends O{constructor(Z){super();this.upload_lexicons=Z}}function K_(){return g("uploadLexicons",G1,(Z)=>{return s(new db(Z))})}function cb(Z){return A0(Z,K_())}function tj(Z){globalThis.location.href=Z}var pb="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 J8(Z,J,K){return E0(Q([M0("button"),H(pb),LZ(Z),k0(J)]),Q([s0(K)]))}function nU(Z,J){return E0(Q([M0("submit"),H(pb),LZ(Z)]),Q([s0(J)]))}class lU extends O{constructor(Z){super();this[0]=Z}}class nb extends O{}class D5 extends O{constructor(Z,J,K){super();this.did_input=Z,this.is_submitting=J,this.alert=K}}function ib(){return new D5("",!1,new h)}function oj(Z,J,K){return new D5(Z.did_input,Z.is_submitting,new L([J,K]))}function sU(Z){return new D5(Z.did_input,Z.is_submitting,new h)}function rU(Z,J){return new D5(Z.did_input,J,Z.alert)}function lb(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 j(Q([H("space-y-6")]),Q([j(Q([]),Q([_1(Q([H("text-xl font-bold text-zinc-100 mb-2")]),Q([s0("Backfill Actor")])),x0(Q([H("text-zinc-400 text-sm")]),Q([s0("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 A8;else if(W==="error")V=new e1;else V=new Z8;return c8(V,Y)}else return G0()})(),j(Q([H("bg-zinc-900/50 border border-zinc-800 rounded-lg p-6 max-w-xl")]),Q([j(Q([H("mb-4")]),Q([r0(Q([H(K)]),Q([s0("Actor DID")])),N1(Q([M0("text"),H(J),q1("did:plc:... or did:web:..."),o0(Z.did_input),K1((X)=>{return new lU(X)})])),x0(Q([H("text-xs text-zinc-500 mt-1")]),Q([s0("Enter the DID of the actor whose records you want to sync.")]))])),j(Q([H("flex items-center gap-4")]),Q([J8(Z.is_submitting||Z.did_input==="",new nb,(()=>{if(Z.is_submitting)return"Syncing...";else return"Sync Actor"})())]))]))]))}function Q_(Z,J){let K=(X)=>{let W="px-3 py-1 text-xs rounded transition-colors cursor-pointer";if(O0(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 j(Q([H("flex gap-2 mb-4")]),Q([E0(Q([H(K(new oZ)),k0(J(new oZ))]),Q([x("1hr")])),E0(Q([H(K(new eZ)),k0(J(new eZ))]),Q([x("3hr")])),E0(Q([H(K(new ZJ)),k0(J(new ZJ))]),Q([x("6hr")])),E0(Q([H(K(new c5)),k0(J(new c5))]),Q([x("1 day")])),E0(Q([H(K(new JJ)),k0(J(new JJ))]),Q([x("7 day")]))]))}function V_(Z){let K=H0(Z,(W)=>{return W.creates+W.updates+W.deletes}),X=_L(K,MJ);return F8(X,1)}function G_(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 d5(Q([]),Q([rZ(Q([R("x",c0(V)),R("y",c0(z)),R("width",c0(K)),R("height",c0(I)),R("style","fill: #3f3f46 !important; stroke: none; display: inline")]))]))}else{let I=DJ(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 d5(Q([H("group")]),Q([(()=>{if(Z.deletes>0)return rZ(Q([R("x",c0(V)),R("y",c0(D)),R("width",c0(K)),R("height",c0(z)),R("style","fill: #ef4444 !important; stroke: none; display: inline; cursor: pointer; transition: opacity 0.2s"),H("group-hover:opacity-80")]));else return G0()})(),(()=>{if(Z.updates>0)return rZ(Q([R("x",c0(V)),R("y",c0(B)),R("width",c0(K)),R("height",c0(N)),R("style","fill: #60a5fa !important; stroke: none; display: inline; cursor: pointer; transition: opacity 0.2s"),H("group-hover:opacity-80")]));else return G0()})(),(()=>{if(Z.creates>0)return rZ(Q([R("x",c0(V)),R("y",c0(T)),R("width",c0(K)),R("height",c0(F)),R("style","fill: #22c55e !important; stroke: none; display: inline; cursor: pointer; transition: opacity 0.2s"),H("group-hover:opacity-80")]));else return G0()})()]))}}function I_(Z,J){let K=V_(Z),X;if(J instanceof JJ)X=[160,12];else X=[30,4];let W=X,Y,V;Y=W[0],V=W[1];let G=N8(Z),I=N0(G)*Y+N0(G-1)*V,z=120;return j(Q([H("w-full")]),Q([E4(Q([R("viewBox","0 0 "+c0(I)+" "+c0(z)),R("width","100%"),R("height",c0(z)),R("style","min-height: 120px"),R("preserveAspectRatio","none")]),SJ(Z,(N,F)=>{return G_(N,F,Y,V,z,K)}))]))}function z_(Z,J){let K=b(Q([["range",d(F5(J))]])),X=a(Z,"GetActivityBuckets",K,p5),W;if(W=X[1],W instanceof j1)return j(Q([H("py-8 text-center text-zinc-600 text-xs")]),Q([x("Loading activity data...")]));else if(W instanceof L1){let Y=W[0];return j(Q([H("py-8 text-center text-red-400 text-xs")]),Q([x("Error: "+Y)]))}else{let V=W[0].activity_buckets;if(V instanceof U)return j(Q([H("py-8 text-center text-zinc-600 text-xs")]),Q([x("No activity data available")]));else return I_(V,J)}}function sb(Z,J,K){return j(Q([H("bg-zinc-800/50 rounded p-4 font-mono mb-8")]),Q([Q_(J,K),z_(Z,J)]))}function ej(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 ZL(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 aU(Z){if(typeof Z==="string")try{let J=JSON.parse(Z);return aU(J)}catch(J){return Z}else if(Array.isArray(Z))return Z.map(aU);else if(Z!==null&&typeof Z==="object"){let J={};for(let[K,X]of Object.entries(Z))J[K]=aU(X);return J}return Z}function JL(Z){try{let J=JSON.parse(Z),K=aU(J);return JSON.stringify(K,null,2)}catch(J){return Z}}function D_(Z){return j(Q([]),H0(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 j(Q([H("border-l-2 border-zinc-700/50 hover:border-zinc-600 transition-colors"),R("data-entry-id",F)]),Q([j(Q([H("flex items-start gap-2 py-1 text-xs font-mono hover:bg-zinc-900/30 cursor-pointer group"),R("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"),R("data-caret","")]),Q([x("›")])),p(Q([H("text-zinc-600 shrink-0 w-16"),R("data-timestamp",J.timestamp)]),Q([x(ej(J.timestamp))])),p(Q([H(W+" shrink-0 w-4")]),Q([x(G)])),p(Q([H(N+" shrink-0 w-12")]),Q([x(J.operation)])),p(Q([H("text-purple-400 shrink-0")]),Q([x(J.collection)])),p(Q([H("text-zinc-500 truncate")]),Q([x(J.did)]))])),j(Q([H("px-6 py-2 text-xs bg-zinc-900/50 border-t border-zinc-800 hidden space-y-1"),R("data-details","")]),Q([j(Q([H("flex gap-2")]),Q([p(Q([H("text-zinc-600 w-20")]),Q([x("Timestamp:")])),p(Q([H("text-zinc-400")]),Q([x(ZL(J.timestamp))]))])),j(Q([H("flex gap-2")]),Q([p(Q([H("text-zinc-600 w-20")]),Q([x("DID:")])),p(Q([H("text-zinc-400 font-mono break-all")]),Q([x(J.did)]))])),j(Q([H("flex gap-2")]),Q([p(Q([H("text-zinc-600 w-20")]),Q([x("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([x(J.status)]))])),(()=>{let D=J.error_message;if(D instanceof L){let B=D[0];return j(Q([H("flex gap-2")]),Q([p(Q([H("text-zinc-600 w-20")]),Q([x("Error:")])),p(Q([H("text-red-400")]),Q([x(B)]))]))}else return G0()})(),(()=>{let D=J.event_json;if(D instanceof L){let B=D[0],T=JL(B);return j(Q([H("mt-2")]),Q([j(Q([H("text-zinc-600 mb-1")]),Q([x("Event JSON:")])),iJ(Q([H("text-zinc-400 bg-black/40 p-2 rounded text-[10px] whitespace-pre-wrap block"),R("data-json",B)]),Q([x(T)]))]))}else return G0()})()]))]))}))}function rb(Z,J){let K=b(Q([["hours",W1(J)]])),X=a(Z,"GetRecentActivity",K,OZ),W;return W=X[1],j(Q([H("font-mono mb-8")]),Q([R0("style",Q([]),Q([x(`[data-entry-id].expanded [data-caret] { transform: rotate(90deg); } 146 + [data-entry-id].expanded [data-details] { display: block !important; }`)])),j(Q([H("bg-zinc-800/50 rounded p-4")]),Q([j(Q([H("flex items-center justify-between mb-3")]),Q([j(Q([H("text-sm text-zinc-500")]),Q([x("Jetstream Activity")])),(()=>{if(W instanceof y1){let Y=W[0];return p(Q([H("text-xs text-zinc-600")]),Q([x(X1(N8(Y.recent_activity))+" events ("+X1(J)+"h)")]))}else return p(Q([H("text-xs text-zinc-600")]),Q([x("("+X1(J)+"h)")]))})()])),j(Q([H("max-h-80 overflow-y-auto")]),Q([(()=>{if(W instanceof j1)return j(Q([H("py-8 text-center text-zinc-600 text-xs")]),Q([x("Loading activity...")]));else if(W instanceof L1){let Y=W[0];return j(Q([H("py-8 text-center text-red-400 text-xs")]),Q([x("Error: "+Y)]))}else{let V=W[0].recent_activity;if(V instanceof U)return j(Q([H("py-8 text-center text-zinc-600 text-xs")]),Q([x("No activity in the last "+X1(J)+" hours")]));else return D_(V)}})()]))]))]))}function XJ(Z){return new Intl.NumberFormat("en-US").format(Z)}function KL(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([j(Q([H("text-sm text-zinc-500 mb-1")]),Q([s0(Z)])),j(Q([H("text-2xl font-semibold text-zinc-200")]),Q([s0(J)]))]));else return j(Q([H("bg-zinc-800/50 rounded p-4")]),Q([j(Q([H("text-sm text-zinc-500 mb-1")]),Q([s0(Z)])),j(Q([H("text-2xl font-semibold text-zinc-200")]),Q([s0(J)]))]))}function YL(Z){return j(Q([H("bg-zinc-800/50 rounded p-4 animate-pulse")]),Q([j(Q([H("text-sm text-zinc-500 mb-1")]),Q([s0(Z)])),j(Q([H("h-8 bg-zinc-700 rounded w-24")]),Q([]))]))}function ab(Z){let J=a(Z,"GetStatistics",b(Q([])),H5),K;if(K=J[1],K instanceof j1)return j(Q([H("mb-8 grid grid-cols-1 sm:grid-cols-3 gap-4")]),Q([YL("Total Records"),YL("Total Actors"),YL("Total Lexicons")]));else if(K instanceof L1){let X=K[0];return j(Q([H("mb-8")]),Q([j(Q([H("bg-red-800/50 rounded p-4 text-red-200")]),Q([s0("Error loading statistics: "+X)]))]))}else{let W=K[0].statistics;return j(Q([H("mb-8 grid grid-cols-1 sm:grid-cols-3 gap-4")]),Q([KL("Total Records",XJ(W.record_count),!1,""),KL("Total Actors",XJ(W.actor_count),!1,""),KL("Total Lexicons",XJ(W.lexicon_count),!0,"/lexicons")]))}}class tU extends O{constructor(Z){super();this[0]=Z}}class oU extends O{}class XL extends O{}function P_(Z,J){let K;if(Z==="")K=mj(new _j,"No domain authority configured.","Settings","/settings");else K=G0();let X=K,W;if(J===0)W=mj(new Z8,"No lexicons loaded.","Settings","/settings");else W=G0();let Y=W;return j(Q([]),Q([X,Y]))}function tb(Z,J,K,X,W){let Y=a(Z,"GetStatistics",b(Q([])),H5),V;V=Y[1];let G=a(Z,"GetSettings",b(Q([])),T1),I;I=G[1];let z;if(V instanceof y1&&I instanceof y1){let F=V[0],D=I[0];z=P_(D.settings.domain_authority,F.statistics.lexicon_count)}else z=G0();let N=z;return j(Q([]),Q([N,(()=>{if(W)return j(Q([H("mb-8 flex gap-3 flex-wrap items-start")]),(()=>{if(X)return Q([J8(!1,new XL,"Open GraphiQL"),j(Q([H("flex items-center gap-3")]),Q([J8(_5(K),new oU,(()=>{if(K instanceof u8)return"Backfilling...";else if(K instanceof T8)return"Backfilling...";else return"Trigger Backfill"})()),(()=>{if(K instanceof $5)return x0(Q([H("text-sm text-green-600")]),Q([s0("Backfill complete!")]));else return G0()})()]))]);else return Q([J8(!1,new XL,"Open GraphiQL")])})());else return G0()})(),ab(Z),sb(Z,J,(F)=>{return new tU(F)}),rb(Z,24)]))}function ob(Z){if(navigator.clipboard&&navigator.clipboard.writeText)navigator.clipboard.writeText(Z).catch((J)=>{console.error("Failed to copy to clipboard:",J)})}function WL(Z){try{let J=JSON.parse(Z);return JSON.stringify(J,null,2)}catch(J){return Z}}function A_(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(W instanceof U)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([x('"')])),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 U)N="";else N=W.head;let F=N,D=p(Q([H("text-zinc-400")]),Q([x(F)]));Z=z,J=Y,K=!1,X=A(D,G)}else if(I==="}"&&!Y){let z=W.tail,N;if(W instanceof U)N="";else N=W.head;let F=N,D=p(Q([H("text-zinc-400")]),Q([x(F)]));Z=z,J=Y,K=!1,X=A(D,G)}else if(I==="["&&!Y){let z=W.tail,N;if(W instanceof U)N="";else N=W.head;let F=N,D=p(Q([H("text-zinc-400")]),Q([x(F)]));Z=z,J=Y,K=!1,X=A(D,G)}else if(I==="]"&&!Y){let z=W.tail,N;if(W instanceof U)N="";else N=W.head;let F=N,D=p(Q([H("text-zinc-400")]),Q([x(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([x(":")]));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([x(",")]));Z=z,J=Y,K=!1,X=A(N,G)}else if(I===" "&&!Y){let z=W.tail,N=x((()=>{if(W instanceof U)return"";else{let F=W.head;if(F===" ")return" ";else if(F===` 147 147 `)return` 148 148 `;else return""}})());Z=z,J=Y,K=V,X=A(N,G)}else if(I===` 149 149 `&&!Y){let z=W.tail,N=x((()=>{if(W instanceof U)return"";else{let F=W.head;if(F===" ")return" ";else if(F===` 150 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([x(z)]));Z=N,J=Y,K=V,X=A(B,G)}else{let z=W.tail;if(z instanceof U){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([x(N)]));Z=F,J=Y,K=V,X=A(T,G)}else{let N=z.tail;if(N instanceof U){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([x(F)]));Z=D,J=Y,K=V,X=A(P,G)}else{let F=N.tail;if(F instanceof U){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([x(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 U)P="";else{let k=W.tail;if(k instanceof U)P="";else{let w=k.tail;if(w instanceof U)P="";else{let f=w.tail;if(f instanceof U)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 c=f.tail;if(c instanceof U)P="";else if(k.head==="a")if(w.head==="l")if(f.head==="s")if(c.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=K8(S),E=p(Q([H("text-red-400")]),Q([x(S)]));Z=t5(W,q),J=Y,K=!1,X=A(E,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 R=p(Q([H(q)]),Q([x(P)]));Z=S,J=Y,K=V,X=A(R,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 E=p(Q([H(S)]),Q([x(T)]));Z=P,J=Y,K=V,X=A(E,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([x(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([x(z)]));Z=N,J=Y,K=V,X=A(B,G)}else{let z=W.tail;if(z instanceof U){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([x(N)]));Z=F,J=Y,K=V,X=A(T,G)}else{let N=z.tail;if(N instanceof U){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([x(F)]));Z=D,J=Y,K=V,X=A(P,G)}else{let F=N.tail;if(F instanceof U){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([x(D)]));Z=B,J=Y,K=V,X=A(S,G)}else{let D=F.tail;if(D instanceof U){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([x(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 U)q="";else{let f=W.tail;if(f instanceof U)q="";else{let g=f.tail;if(g instanceof U)q="";else{let c=g.tail;if(c instanceof U)q="";else{let n=W.head;if(n==="t")if(f.head==="r")if(g.head==="u")if(c.head==="e")q="true";else q="";else q="";else q="";else if(n==="f"){let r=c.tail;if(r instanceof U)q="";else if(f.head==="a")if(g.head==="l")if(c.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(c.head==="l")q="null";else q="";else q="";else q="";else q=""}}}}let E=q,R=K8(E),k=p(Q([H("text-red-400")]),Q([x(E)]));Z=t5(W,R),J=Y,K=!1,X=A(k,G)}else{let q=I,E=z,R;if(q==="0")R="text-red-400";else if(q==="1")R="text-red-400";else if(q==="2")R="text-red-400";else if(q==="3")R="text-red-400";else if(q==="4")R="text-red-400";else if(q==="5")R="text-red-400";else if(q==="6")R="text-red-400";else if(q==="7")R="text-red-400";else if(q==="8")R="text-red-400";else if(q==="9")R="text-red-400";else if(q===".")R="text-red-400";else if(q==="-")R="text-red-400";else R="text-zinc-200";let w=p(Q([H(R)]),Q([x(q)]));Z=E,J=Y,K=V,X=A(w,G)}else{let S=I,q=z,E;if(S==="0")E="text-red-400";else if(S==="1")E="text-red-400";else if(S==="2")E="text-red-400";else if(S==="3")E="text-red-400";else if(S==="4")E="text-red-400";else if(S==="5")E="text-red-400";else if(S==="6")E="text-red-400";else if(S==="7")E="text-red-400";else if(S==="8")E="text-red-400";else if(S==="9")E="text-red-400";else if(S===".")E="text-red-400";else if(S==="-")E="text-red-400";else E="text-zinc-200";let k=p(Q([H(E)]),Q([x(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 R=p(Q([H(q)]),Q([x(P)]));Z=S,J=Y,K=V,X=A(R,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 E=p(Q([H(S)]),Q([x(T)]));Z=P,J=Y,K=V,X=A(E,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([x(z)]));Z=N,J=Y,K=V,X=A(B,G)}else{let z=W.tail;if(z instanceof U){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([x(N)]));Z=F,J=Y,K=V,X=A(T,G)}else{let N=z.tail;if(N instanceof U){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([x(F)]));Z=D,J=Y,K=V,X=A(P,G)}else{let F=N.tail;if(F instanceof U){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([x(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 U)P="";else{let k=W.tail;if(k instanceof U)P="";else{let w=k.tail;if(w instanceof U)P="";else{let f=w.tail;if(f instanceof U)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 c=f.tail;if(c instanceof U)P="";else if(k.head==="a")if(w.head==="l")if(f.head==="s")if(c.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=K8(S),E=p(Q([H("text-red-400")]),Q([x(S)]));Z=t5(W,q),J=Y,K=!1,X=A(E,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 R=p(Q([H(q)]),Q([x(P)]));Z=S,J=Y,K=V,X=A(R,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 E=p(Q([H(S)]),Q([x(T)]));Z=P,J=Y,K=V,X=A(E,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([x(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([x(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([x(z)]));Z=N,J=Y,K=V,X=A(B,G)}}}}function P_(Z,J,K){return T_(Z,J,!1,K)}function sb(Z){let K=EZ(Z),X=P_(K,!1,Q([])),W=F0(X);return Jf(W)}class rb extends O{constructor(Z){super();this[0]=Z}}function ab(Z){let J=Z[0];return z1((K)=>{return lb(J)})}function A_(){return j(Q([H("py-8 text-center text-zinc-600 text-sm")]),Q([x("Loading lexicons...")]))}function q_(Z){return j(Q([H("py-8 text-center text-red-400 text-sm")]),Q([x("Error: "+Z)]))}function E_(){return j(Q([H("bg-zinc-800/50 rounded p-8 text-center border border-zinc-700")]),Q([x0(Q([H("text-zinc-400 mb-2")]),Q([x("No lexicons found.")])),x0(Q([H("text-sm text-zinc-500")]),Q([x("Upload lexicons from the Settings page to get started.")]))]))}function C_(Z){return j(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"),M0("button"),f0(new rb(Z.json))]),Q([rZ("copy",new $U,Q([]))])),Xf(Q([H("group")]),Q([Wf(Q([H("cursor-pointer text-base font-mono text-zinc-300 hover:text-zinc-200 select-none list-none pr-10")]),Q([x(Z.id)])),dJ(Q([H("mt-3 bg-zinc-900 rounded p-3 overflow-x-auto text-xs font-mono")]),Q([h8(Q([]),Q([sb(KL(Z.json))]))]))]))]))}function x_(Z){if(Z instanceof U)return E_();else return j(Q([H("space-y-4")]),Q([x0(Q([H("text-sm text-zinc-500 mb-4")]),Q([x(wJ(z8(Z))+" lexicons")])),j(Q([H("space-y-3")]),H0(Z,C_))]))}function tb(Z){let J=a(Z,"GetLexicons",b(Q([])),ZJ),K;return K=J[1],j(Q([H("space-y-6")]),Q([j(Q([H("mb-2")]),Q([m1(Q([v1("/"),H("text-zinc-400 hover:text-zinc-300 transition-colors text-sm")]),Q([x("← Back")]))])),_1(Q([H("text-2xl font-semibold text-zinc-300 mb-6")]),Q([x("Lexicons")])),(()=>{if(K instanceof j1)return A_();else if(K instanceof L1){let X=K[0];return q_(X)}else{let X=K[0];return x_(X.lexicons)}})()]))}function ob(Z,J,K,X,W,Y){return j(Q([H("max-w-md mx-auto mt-12")]),Q([j(Q([H("bg-zinc-800/50 rounded p-8 border border-zinc-700")]),Q([j(Q([H("flex justify-center mb-6")]),Q([gU("w-16 h-16")])),_1(Q([H("text-2xl font-semibold text-zinc-300 mb-2 text-center")]),Q([x("Welcome to Quickslice")])),x0(Q([H("text-zinc-400 mb-6 text-center")]),Q([x("Set up an administrator account to get started.")])),v8(Q([x5("/admin/oauth/authorize"),w5("POST"),H("space-y-4")]),Q([j(Q([]),Q([s0(Q([H("block text-sm text-zinc-400 mb-2")]),Q([x("AT Protocol Handle")])),iZ(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)])),j(Q([H("pt-2")]),Q([mU(Z.query==="","Continue")]))]))]))]))}class sU extends O{constructor(Z){super();this[0]=Z}}class rU extends O{}class aU extends O{}class tU extends O{constructor(Z){super();this[0]=Z}}class oU extends O{}class eU extends O{constructor(Z){super();this[0]=Z}}class ZM extends O{constructor(Z){super();this[0]=Z}}class JM extends O{constructor(Z){super();this[0]=Z}}class KM extends O{constructor(Z){super();this[0]=Z}}class YM extends O{}class XJ extends O{}class XM extends O{constructor(Z){super();this[0]=Z}}class WM extends O{constructor(Z){super();this[0]=Z}}class QM extends O{constructor(Z){super();this[0]=Z}}class VM extends O{constructor(Z){super();this[0]=Z}}class GM extends O{}class IM extends O{constructor(Z){super();this[0]=Z}}class zM extends O{}class NM extends O{constructor(Z){super();this[0]=Z}}class FM extends O{constructor(Z){super();this[0]=Z}}class HM extends O{constructor(Z){super();this[0]=Z}}class DM extends O{}class BM extends O{constructor(Z){super();this[0]=Z}}class OM extends O{constructor(Z){super();this[0]=Z}}class TM extends O{}class PM extends O{}class SM extends O{constructor(Z){super();this[0]=Z}}class AM extends O{}class YJ extends O{constructor(Z){super();this[0]=Z}}class qM extends O{}class eb extends O{}class Y0 extends O{constructor(Z,J,K,X,W,Y,V,G,I,z,N,F,D,B,T,P,S,q,E,R,k,w,f,g){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=E,this.delete_confirm_client_id=R,this.oauth_alert=k,this.new_admin_did=w,this.remove_confirm_did=f,this.admin_alert=g}}function p5(Z,J,K){return new Y0(Z.domain_authority_input,Z.reset_confirmation,Z.selected_file,new y([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)}function Zh(Z){return new Y0(Z.domain_authority_input,Z.reset_confirmation,Z.selected_file,new v,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)}function E8(Z,J,K){return new Y0(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 y([J,K]),Z.new_admin_did,Z.remove_confirm_did,Z.admin_alert)}function n5(Z,J,K){return new Y0(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 y([J,K]))}function WJ(Z,J,K){return new Y0(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 y([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)}function Jh(){return new Y0("","",new v,new v,"","","","",new v,!1,"","PUBLIC","","atproto transition:generic",new v,"","","",E5(),new v,new v,"",new v,new v)}function M_(Z){return bk(Z)}function R_(Z,J,K){return j(Q([H("bg-zinc-800/50 rounded p-6")]),Q([B4(Q([H("text-xl font-semibold text-zinc-300 mb-4")]),Q([x("Basic Settings")])),(()=>{let X=J.alert;if(X instanceof y){let W=X[0][0],Y=X[0][1],V;if(W==="success")V=new A8;else if(W==="error")V=new q8;else V=new e1;return c5(V,Y)}else return z0()})(),v8(Q([H("space-y-6"),ck((X)=>{return new YM})]),Q([j(Q([H("space-y-2")]),Q([s0(Q([H("block text-sm text-zinc-400 mb-2")]),Q([x("Domain Authority")])),N1(Q([M0("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"),q1("e.g. com.example"),o0(J.domain_authority_input),t8(!0),K1((X)=>{return new sU(X)})])),x0(Q([H("text-xs text-zinc-500")]),Q([x('Determines which collections are considered "primary" vs "external" when backfilling records.')]))])),j(Q([H("space-y-2")]),Q([s0(Q([H("block text-sm text-zinc-400 mb-2")]),Q([x("Relay URL")])),N1(Q([M0("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"),q1(Z.relay_url),o0(J.relay_url_input),t8(!0),K1((X)=>{return new eU(X)})])),x0(Q([H("text-xs text-zinc-500")]),Q([x("AT Protocol relay URL for backfill operations.")]))])),j(Q([H("space-y-2")]),Q([s0(Q([H("block text-sm text-zinc-400 mb-2")]),Q([x("PLC Directory URL")])),N1(Q([M0("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"),q1(Z.plc_directory_url),o0(J.plc_directory_url_input),t8(!0),K1((X)=>{return new ZM(X)})])),x0(Q([H("text-xs text-zinc-500")]),Q([x("PLC directory URL for DID resolution.")]))])),j(Q([H("space-y-2")]),Q([s0(Q([H("block text-sm text-zinc-400 mb-2")]),Q([x("Jetstream URL")])),N1(Q([M0("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"),q1(Z.jetstream_url),o0(J.jetstream_url_input),t8(!0),K1((X)=>{return new JM(X)})])),x0(Q([H("text-xs text-zinc-500")]),Q([x("Jetstream WebSocket endpoint for real-time indexing.")]))])),j(Q([H("space-y-2")]),Q([s0(Q([H("block text-sm text-zinc-400 mb-2")]),Q([x("OAuth Supported Scopes")])),N1(Q([M0("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"),q1(Z.oauth_supported_scopes),o0(J.oauth_supported_scopes_input),t8(!0),K1((X)=>{return new KM(X)})])),x0(Q([H("text-xs text-zinc-500")]),Q([x("Space-separated OAuth scopes supported by this server.")]))])),j(Q([H("flex gap-3 pt-4")]),Q([mU(K,(()=>{if(K)return"Saving...";else return"Save"})())]))]))]))}function j_(Z){return j(Q([H("bg-zinc-800/50 rounded p-6")]),Q([B4(Q([H("text-xl font-semibold text-zinc-300 mb-4")]),Q([x("Lexicons")])),(()=>{let J=Z.lexicons_alert;if(J instanceof y){let K=J[0][0],X=J[0][1],W;if(K==="success")W=new A8;else if(K==="error")W=new q8;else W=new e1;return c5(W,X)}else return z0()})(),j(Q([H("space-y-4")]),Q([j(Q([H("mb-4")]),Q([s0(Q([H("block text-sm text-zinc-400 mb-2")]),Q([x("Upload Lexicons (ZIP)")])),N1(Q([M0("file"),$y(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"),K1((J)=>{return new rU})]))])),x0(Q([H("text-sm text-zinc-500 mb-4")]),Q([x("Upload a ZIP file containing lexicon JSON files.")])),j(Q([H("flex gap-3")]),Q([Z8(!1,new aU,"Upload")]))]))]))}function L_(Z){return j(Q([H("bg-zinc-800/50 rounded p-6")]),Q([B4(Q([H("text-xl font-semibold text-zinc-300 mb-4")]),Q([x("Danger Zone")])),x0(Q([H("text-sm text-zinc-400 mb-4")]),Q([x("This will clear all indexed data:")])),cJ(Q([H("text-sm text-zinc-400 mb-4 ml-4 list-disc")]),Q([j5(Q([]),Q([x("Domain authority configuration")])),j5(Q([]),Q([x("All lexicon definitions")])),j5(Q([]),Q([x("All indexed records")])),j5(Q([]),Q([x("All actors")]))])),x0(Q([H("text-sm text-zinc-400 mb-4")]),Q([x("Records can be re-indexed via backfill.")])),j(Q([H("space-y-4")]),Q([j(Q([H("mb-4")]),Q([s0(Q([H("block text-sm text-zinc-400 mb-2")]),Q([x("Type RESET to confirm")])),N1(Q([M0("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"),q1("RESET"),o0(Z.reset_confirmation),K1((J)=>{return new tU(J)})]))])),j(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"),RZ(Z.reset_confirmation!=="RESET"),f0(new oU)]),Q([x("Reset Everything")]))]))]))]))}function y_(Z){return j(Q([H("bg-zinc-900 rounded p-4 mb-4 border border-zinc-700")]),Q([O4(Q([H("text-lg font-semibold text-zinc-300 mb-3")]),Q([x("Register New Client")])),j(Q([H("space-y-3")]),Q([j(Q([]),Q([s0(Q([H("block text-sm text-zinc-400 mb-1")]),Q([x("Client Name")])),N1(Q([M0("text"),H("font-mono px-3 py-2 text-sm text-zinc-300 bg-zinc-800 border border-zinc-700 rounded w-full"),q1("My Application"),o0(Z.new_client_name),K1((J)=>{return new XM(J)})]))])),j(Q([]),Q([s0(Q([H("block text-sm text-zinc-400 mb-1")]),Q([x("Client Type")])),Yf(Q([H("font-mono px-3 py-2 text-sm text-zinc-300 bg-zinc-800 border border-zinc-700 rounded w-full"),dk((J)=>{return new WM(J)})]),Q([dR(Q([o0("PUBLIC"),xR(Z.new_client_type==="PUBLIC")]),"Public"),dR(Q([o0("CONFIDENTIAL"),xR(Z.new_client_type==="CONFIDENTIAL")]),"Confidential")])),x0(Q([H("text-xs text-zinc-500 mt-1")]),Q([x((()=>{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"})())]))])),j(Q([]),Q([s0(Q([H("block text-sm text-zinc-400 mb-1")]),Q([x("Redirect URIs (one per line)")])),cR(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"),q1("http://localhost:3000/callback"),o0(Z.new_client_redirect_uris),K1((J)=>{return new QM(J)})]),"")])),j(Q([]),Q([s0(Q([H("block text-sm text-zinc-400 mb-1")]),Q([x("Scope")])),N1(Q([M0("text"),H("font-mono px-3 py-2 text-sm text-zinc-300 bg-zinc-800 border border-zinc-700 rounded w-full"),q1("atproto transition:generic"),o0(Z.new_client_scope),K1((J)=>{return new VM(J)})])),x0(Q([H("text-xs text-zinc-500 mt-1")]),Q([x("Space-separated OAuth scopes")]))])),j(Q([H("flex gap-2")]),Q([Z8(!1,new GM,"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 XJ)]),Q([x("Cancel")]))]))]))]))}function f_(Z,J){return j(Q([H("bg-zinc-900 rounded p-4 border border-amber-700")]),Q([O4(Q([H("text-lg font-semibold text-zinc-300 mb-3")]),Q([x("Edit Client")])),j(Q([H("space-y-3")]),Q([j(Q([]),Q([s0(Q([H("block text-sm text-zinc-400 mb-1")]),Q([x("Client ID")])),h8(Q([H("text-sm text-zinc-500 font-mono")]),Q([x(Z.client_id)]))])),j(Q([]),Q([s0(Q([H("block text-sm text-zinc-400 mb-1")]),Q([x("Client Name")])),N1(Q([M0("text"),H("font-mono px-3 py-2 text-sm text-zinc-300 bg-zinc-800 border border-zinc-700 rounded w-full"),o0(J.edit_client_name),K1((K)=>{return new NM(K)})]))])),j(Q([]),Q([s0(Q([H("block text-sm text-zinc-400 mb-1")]),Q([x("Redirect URIs (one per line)")])),cR(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"),K1((K)=>{return new FM(K)})]),J.edit_client_redirect_uris)])),j(Q([]),Q([s0(Q([H("block text-sm text-zinc-400 mb-1")]),Q([x("Scope")])),N1(Q([M0("text"),H("font-mono px-3 py-2 text-sm text-zinc-300 bg-zinc-800 border border-zinc-700 rounded w-full"),o0(J.edit_client_scope),K1((K)=>{return new HM(K)})]))])),j(Q([H("flex gap-2")]),Q([Z8(!1,new DM,"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 zM)]),Q([x("Cancel")]))]))]))]))}function k_(Z,J){let K=S0(J.editing_client_id,new y(Z.client_id)),X=Q4(J.visible_secrets,Z.client_id);if(K)return f_(Z,J);else return j(Q([H("bg-zinc-900 rounded p-4 border border-zinc-700")]),Q([j(Q([H("flex justify-between items-start mb-2")]),Q([j(Q([]),Q([p(Q([H("text-zinc-300 font-medium")]),Q([x(Z.client_name)]))])),j(Q([H("flex gap-2")]),Q([q0(Q([H("text-sm text-zinc-400 hover:text-zinc-300 cursor-pointer"),f0(new IM(Z.client_id))]),Q([x("Edit")])),q0(Q([H("text-sm text-red-400 hover:text-red-300 cursor-pointer"),f0(new OM(Z.client_id))]),Q([x("Delete")]))]))])),j(Q([H("mb-2")]),Q([p(Q([H("text-xs text-zinc-500")]),Q([x("Client ID: ")])),h8(Q([H("text-xs text-zinc-400 font-mono")]),Q([x(Z.client_id)]))])),j(Q([H("mb-2")]),Q([p(Q([H("text-xs text-zinc-500")]),Q([x("Type: ")])),p(Q([H("text-xs text-zinc-400")]),Q([x((()=>{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 y){let Y=W[0];return j(Q([H("mb-2")]),Q([p(Q([H("text-xs text-zinc-500")]),Q([x("Secret: ")])),(()=>{if(X)return h8(Q([H("text-xs text-zinc-400 font-mono")]),Q([x(Y)]));else return h8(Q([H("text-xs text-zinc-400 font-mono")]),Q([x("••••••••••••••••")]))})(),q0(Q([H("ml-2 text-xs text-zinc-500 hover:text-zinc-400 cursor-pointer"),f0(new BM(Z.client_id))]),Q([x((()=>{if(X)return"Hide";else return"Show"})())]))]))}else return z0()})(),(()=>{let W=Z.redirect_uris;if(W instanceof U)return z0();else{let Y=W;return j(Q([]),Q([p(Q([H("text-xs text-zinc-500")]),Q([x("Redirect URIs:")])),cJ(Q([H("text-xs text-zinc-400 font-mono ml-4")]),H0(Y,(V)=>{return j5(Q([]),Q([x(V)]))}))]))}})(),(()=>{let W=Z.scope;if(W instanceof y){let Y=W[0];return j(Q([H("mt-2")]),Q([p(Q([H("text-xs text-zinc-500")]),Q([x("Scope: ")])),h8(Q([H("text-xs text-zinc-400 font-mono")]),Q([x(Y)]))]))}else return z0()})()]))}function b_(Z){return j(Q([H("fixed inset-0 bg-black/50 flex items-center justify-center z-50")]),Q([j(Q([H("bg-zinc-800 rounded p-6 max-w-md")]),Q([O4(Q([H("text-lg font-semibold text-zinc-300 mb-3")]),Q([x("Delete Client?")])),x0(Q([H("text-sm text-zinc-400 mb-4")]),Q([x("Are you sure you want to delete client "),h8(Q([H("text-zinc-300")]),Q([x(Z)])),x("? This action cannot be undone.")])),j(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 TM)]),Q([x("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 PM)]),Q([x("Delete")]))]))]))]))}function h_(Z,J){let K=b(Q([])),X=a(Z,"GetOAuthClients",K,d8),W;return W=X[1],j(Q([H("bg-zinc-800/50 rounded p-6")]),Q([B4(Q([H("text-xl font-semibold text-zinc-300 mb-4")]),Q([x("OAuth Clients")])),(()=>{let Y=J.oauth_alert;if(Y instanceof y){let V=Y[0][0],G=Y[0][1],I;if(V==="success")I=new A8;else if(V==="error")I=new q8;else I=new e1;return c5(I,G)}else return z0()})(),(()=>{if(J.show_new_client_form)return y_(J);else return j(Q([H("mb-4")]),Q([Z8(!1,new XJ,"Register New Client")]))})(),(()=>{if(W instanceof j1)return j(Q([H("py-4 text-center text-zinc-600 text-sm")]),Q([x("Loading clients...")]));else if(W instanceof L1){let Y=W[0];return j(Q([H("py-4 text-center text-red-400 text-sm")]),Q([x("Error: "+Y)]))}else{let Y=W[0];return j(Q([H("space-y-3")]),H0(Y.oauth_clients,(V)=>{return k_(V,J)}))}})(),(()=>{let Y=J.delete_confirm_client_id;if(Y instanceof y){let V=Y[0];return b_(V)}else return z0()})()]))}function v_(Z,J){return j(Q([H("bg-zinc-800/50 rounded p-6")]),Q([B4(Q([H("text-xl font-semibold text-zinc-300 mb-4")]),Q([x("Admin Management")])),(()=>{let K=J.admin_alert;if(K instanceof y){let X=K[0][0],W=K[0][1],Y;if(X==="success")Y=new A8;else if(X==="error")Y=new q8;else Y=new e1;return c5(Y,W)}else return z0()})(),j(Q([H("mb-6")]),Q([O4(Q([H("text-sm font-medium text-zinc-400 mb-2")]),Q([x("Current Admins")])),cJ(Q([H("space-y-2")]),H0(Z.admin_dids,(K)=>{return j5(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([x(K)])),(()=>{let X=J.remove_confirm_did;if(X instanceof y)if(X[0]===K)return j(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 qM)]),Q([x("Cancel")])),q0(Q([H("text-xs px-2 py-1 text-red-400 hover:bg-red-900/30 rounded cursor-pointer"),f0(new eb)]),Q([x("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 YJ(K))]),Q([x("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 YJ(K))]),Q([x("Remove")]))})()]))}))])),j(Q([H("border-t border-zinc-800 pt-4")]),Q([O4(Q([H("text-sm font-medium text-zinc-400 mb-2")]),Q([x("Add Admin")])),j(Q([H("flex gap-2")]),Q([N1(Q([M0("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"),q1("did:plc:... or did:web:..."),o0(J.new_admin_did),K1((K)=>{return new SM(K)})])),Z8(J.new_admin_did==="",new AM,"Add Admin")])),x0(Q([H("text-xs text-zinc-500 mt-2")]),Q([x("Enter the DID of the user you want to make an admin.")]))]))]))}function Kh(Z,J,K){if(K){let X=b(Q([])),W=a(Z,"GetSettings",X,O1),Y;Y=W[1];let V=M_(Z);return j(Q([H("max-w-2xl space-y-6")]),Q([_1(Q([H("text-2xl font-semibold text-zinc-300 mb-8")]),Q([x("Settings")])),(()=>{if(Y instanceof j1)return j(Q([H("py-8 text-center text-zinc-600 text-sm")]),Q([x("Loading settings...")]));else if(Y instanceof L1){let G=Y[0];return j(Q([H("py-8 text-center text-red-400 text-sm")]),Q([x("Error: "+G)]))}else{let G=Y[0];return j(Q([H("space-y-6")]),Q([R_(G.settings,J,V),j_(J),h_(Z,J),v_(G.settings,J),L_(J)]))}})()]))}else return j(Q([H("max-w-2xl space-y-6")]),Q([_1(Q([H("text-2xl font-semibold text-zinc-300 mb-8")]),Q([x("Settings")])),j(Q([H("bg-zinc-800/50 rounded p-8 text-center border border-zinc-700")]),Q([x0(Q([H("text-zinc-400 mb-4")]),Q([x("Access Denied")])),x0(Q([H("text-sm text-zinc-500")]),Q([x("You must be an administrator to access the settings page.")]))]))]))}function Yh(){return window.location.origin}function QJ(Z,J){window.setTimeout(()=>J(),Z)}var g_="src/quickslice_client.gleam";class l5 extends O{}class D5 extends O{}class zJ extends O{}class WL extends O{}class GJ extends O{}class i5 extends O{}class C8 extends O{}class Xh 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){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}}class d0 extends O{constructor(Z,J,K){super();this[0]=Z,this[1]=J,this[2]=K}}class EM extends O{constructor(Z,J){super();this[0]=Z,this[1]=J}}class CM extends O{constructor(Z,J){super();this[0]=Z,this[1]=J}}class xM extends O{constructor(Z,J){super();this[0]=Z,this[1]=J}}class wM extends O{constructor(Z,J){super();this[0]=Z,this[1]=J}}class QL extends O{constructor(Z){super();this[0]=Z}}class VL extends O{constructor(Z){super();this[0]=Z}}class GL extends O{constructor(Z){super();this[0]=Z}}class UM extends O{constructor(Z){super();this[0]=Z}}class IL extends O{constructor(Z){super();this[0]=Z}}class YL extends O{constructor(Z){super();this[0]=Z}}class VJ extends O{}class zL extends O{}class IJ extends O{constructor(Z){super();this[0]=Z}}class MM extends O{constructor(Z){super();this[0]=Z}}class RM extends O{constructor(Z){super();this[0]=Z}}class jM extends O{}class LM extends O{}class XL extends O{constructor(Z){super();this[0]=Z}}class Wh extends O{}function H5(Z){let J=l1(Z,y0);if(J instanceof C){let K=J[0],X=h("errors",U0(h("message",u,(Y)=>{return s(Y)})),(Y)=>{return s(Y)}),W=I0(K,X);if(W instanceof C){let Y=W[0];if(Y instanceof U)return new v;else{let V=Y.head;return new y(V)}}else return new v}else return new v}function __(Z,J){if(J instanceof d0){let K=J[2];if(K instanceof C){let X=J[0],W=J[1],Y=K[0],V=vk(Z.cache,X,W,Y,0),G=u0(V,Z.registry,(m,L,_)=>{return new d0(m,L,_)},()=>{return 0}),I,z;I=G[0],z=G[1];let N;if(X==="IsBackfilling"){let m=dZ(Y);if(m instanceof C){let L=m[0],_=Z.backfill_status;if(L.is_backfilling&&_ instanceof IK)N=new B8;else N=mk(Z.backfill_status,L.is_backfilling)}else N=Z.backfill_status}else N=Z.backfill_status;let F=N,D,B=$5(Z.backfill_status),T=$5(F);if(B)if(T&&X==="IsBackfilling")D=Q([z1((m)=>{return QJ(1e4,()=>{return m(new VJ)})})]);else D=Q([]);else if(T&&X==="IsBackfilling")D=Q([z1((m)=>{return QJ(1e4,()=>{return m(new VJ)})})]);else D=Q([]);let P=D,S,q=Z.backfill_status;if(q instanceof m8&&F instanceof v5)S=!0;else if(q instanceof B8&&F instanceof v5)S=!0;else S=!1;let E=S,R;if(X==="GetCurrentSession"){let m=dj(Y);if(m instanceof C){let _=m[0].current_session;if(_ instanceof y){let t=_[0];R=new Xh(t.did,t.handle,t.is_admin)}else R=new C8}else R=new C8}else R=Z.auth_state;let k=R,w;if(X==="UpdateSettings")w=p5(Z.settings_page_model,"success","Settings updated successfully");else if(X==="UploadLexicons"){mj("lexicon-file-input");let m=H5(Y);if(m instanceof y){let L=m[0];w=WJ(Z.settings_page_model,"error",L)}else w=WJ(Z.settings_page_model,"success","Lexicons uploaded successfully")}else if(X==="ResetAll"){let m,L=Z.settings_page_model;m=new Y0("",L.reset_confirmation,L.selected_file,L.alert,L.relay_url_input,L.plc_directory_url_input,L.jetstream_url_input,L.oauth_supported_scopes_input,L.lexicons_alert,L.show_new_client_form,L.new_client_name,L.new_client_type,L.new_client_redirect_uris,L.new_client_scope,L.editing_client_id,L.edit_client_name,L.edit_client_redirect_uris,L.edit_client_scope,L.visible_secrets,L.delete_confirm_client_id,L.oauth_alert,L.new_admin_did,L.remove_confirm_did,L.admin_alert),w=p5(m,"success","All data has been reset")}else if(X==="GetSettings"){let m=O1(Y);if(m instanceof C){let L=m[0],_=Z.settings_page_model;w=new Y0(L.settings.domain_authority,_.reset_confirmation,_.selected_file,_.alert,L.settings.relay_url,L.settings.plc_directory_url,L.settings.jetstream_url,L.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)}else w=Z.settings_page_model}else if(X==="CreateOAuthClient"){let m=H5(Y);if(m instanceof y){let L=m[0];w=E8(Z.settings_page_model,"error",L)}else{let L;if(X==="CreateOAuthClient")L="OAuth client created successfully";else if(X==="UpdateOAuthClient")L="OAuth client updated successfully";else if(X==="DeleteOAuthClient")L="OAuth client deleted successfully";else L="Operation completed";let _=L;w=E8(Z.settings_page_model,"success",_)}}else if(X==="UpdateOAuthClient"){let m=H5(Y);if(m instanceof y){let L=m[0];w=E8(Z.settings_page_model,"error",L)}else{let L;if(X==="CreateOAuthClient")L="OAuth client created successfully";else if(X==="UpdateOAuthClient")L="OAuth client updated successfully";else if(X==="DeleteOAuthClient")L="OAuth client deleted successfully";else L="Operation completed";let _=L;w=E8(Z.settings_page_model,"success",_)}}else if(X==="DeleteOAuthClient"){let m=H5(Y);if(m instanceof y){let L=m[0];w=E8(Z.settings_page_model,"error",L)}else{let L;if(X==="CreateOAuthClient")L="OAuth client created successfully";else if(X==="UpdateOAuthClient")L="OAuth client updated successfully";else if(X==="DeleteOAuthClient")L="OAuth client deleted successfully";else L="Operation completed";let _=L;w=E8(Z.settings_page_model,"success",_)}}else if(X==="AddAdmin"){let m=H5(Y);if(m instanceof y){let L=m[0];w=n5(Z.settings_page_model,"error",L)}else{let L;if(X==="AddAdmin")L="Admin added successfully";else if(X==="RemoveAdmin")L="Admin removed successfully";else L="Operation completed";let _=L;w=n5(Z.settings_page_model,"success",_)}}else if(X==="RemoveAdmin"){let m=H5(Y);if(m instanceof y){let L=m[0];w=n5(Z.settings_page_model,"error",L)}else{let L;if(X==="AddAdmin")L="Admin added successfully";else if(X==="RemoveAdmin")L="Admin removed successfully";else L="Operation completed";let _=L;w=n5(Z.settings_page_model,"success",_)}}else w=Z.settings_page_model;let f=w,g;if(X==="BackfillActor"){let m=Z.backfill_page_model,L=pU(m,!1),_=rj(L,"success","Backfill started for "+Z.backfill_page_model.did_input);g=((t)=>{return new F5("",t.is_submitting,t.alert)})(_)}else g=Z.backfill_page_model;let c=g,n;if(X==="ResetAll"){let m=m0(I,"GetStatistics",b(Q([]))),L=m0(m,"GetActivityBuckets",b(Q([["range",d(z5(Z.time_range))]]))),_=m0(L,"GetRecentActivity",b(Q([["hours",W1(24)]]))),t=a(_,"GetSettings",b(Q([])),O1),o;o=t[0];let K0=u0(o,Z.registry,(L0,H1,T1)=>{return new d0(L0,H1,T1)},()=>{return 0}),w0,C0;w0=K0[0],C0=K0[1],n=[w0,C0]}else if(X==="UploadLexicons")n=[m0(I,"GetStatistics",b(Q([]))),Q([])];else if(X==="CreateOAuthClient"){let m=m0(I,"GetOAuthClients",b(Q([]))),L=a(m,"GetOAuthClients",b(Q([])),d8),_;_=L[0];let t=u0(_,Z.registry,(w0,C0,L0)=>{return new d0(w0,C0,L0)},()=>{return 0}),o,K0;o=t[0],K0=t[1],n=[o,K0]}else if(X==="UpdateOAuthClient"){let m=m0(I,"GetOAuthClients",b(Q([]))),L=a(m,"GetOAuthClients",b(Q([])),d8),_;_=L[0];let t=u0(_,Z.registry,(w0,C0,L0)=>{return new d0(w0,C0,L0)},()=>{return 0}),o,K0;o=t[0],K0=t[1],n=[o,K0]}else if(X==="DeleteOAuthClient"){let m=m0(I,"GetOAuthClients",b(Q([]))),L=a(m,"GetOAuthClients",b(Q([])),d8),_;_=L[0];let t=u0(_,Z.registry,(w0,C0,L0)=>{return new d0(w0,C0,L0)},()=>{return 0}),o,K0;o=t[0],K0=t[1],n=[o,K0]}else n=[I,Q([])];let r=n,Q0,E0;Q0=r[0],E0=r[1];let k0;if(E){let m=m0(Q0,"GetStatistics",b(Q([]))),L=m0(m,"GetActivityBuckets",b(Q([["range",d(z5(Z.time_range))]]))),_=m0(L,"GetRecentActivity",b(Q([["hours",W1(24)]]))),t=a(_,"GetStatistics",b(Q([])),N5),o;o=t[0];let K0=a(o,"GetActivityBuckets",b(Q([["range",d(z5(Z.time_range))]])),d5),w0;w0=K0[0];let C0=a(w0,"GetRecentActivity",b(Q([["hours",W1(24)]])),OZ),L0;L0=C0[0];let H1=u0(L0,Z.registry,(w1,Q8,x8)=>{return new d0(w1,Q8,x8)},()=>{return 0}),T1,P1;T1=H1[0],P1=H1[1],k0=[T1,P1]}else k0=[Q0,Q([])];let G0=k0,P0,V0;P0=G0[0],V0=G0[1];let J0;if(X==="GetCurrentSession"){let m=Z.route;if(k instanceof C8)if(m instanceof D5)J0=Q([b5("/",new v,new v)]);else J0=Q([]);else if(!k.is_admin&&m instanceof D5)J0=Q([b5("/",new v,new v)]);else J0=Q([])}else if(X==="GetSettings"){let m=O1(Y);if(m instanceof C){let L=m[0],_=LL(L.settings.admin_dids),t=Z.route;if(_)if(t instanceof i5)J0=Q([]);else J0=Q([b5("/onboarding",new v,new v)]);else if(t instanceof i5)J0=Q([b5("/",new v,new v)]);else J0=Q([])}else J0=Q([])}else J0=Q([]);let Z0=J0;return[new l(P0,Z.registry,Z.route,Z.time_range,f,c,F,k,Z.mobile_menu_open,Z.login_autocomplete),Q1((()=>{let m=Q([z,E0,V0,Z0,P]);return fL(m)})())]}else{let X=J[0],W=K[0],Y;if(X==="UpdateSettings")Y=p5(Z.settings_page_model,"error","Error: "+W);else if(X==="ResetAll")Y=p5(Z.settings_page_model,"error","Error: "+W);else if(X==="TriggerBackfill")Y=p5(Z.settings_page_model,"error","Error: "+W);else if(X==="UploadLexicons")Y=WJ(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=pU(z,!1);G=rj(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),i()]}}else if(J instanceof EM){let K=J[0],X=J[1],W=fj(Z.cache,K,X),Y=p5(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),i()]}else if(J instanceof CM){let K=J[0],X=J[1],W=Lj(Z.cache,K),Y,G=a(W,"GetSettings",b(Q([])),O1)[1];if(G instanceof y1)Y=G[0].settings.domain_authority;else Y=Z.settings_page_model.domain_authority_input;let I=Y,z,N=A5(X,"Response body: ");if(N instanceof C){let P=N[0][1],S=H5(P);if(S instanceof y)z=S[0];else z=X}else z=X;let F=z,D,B=Z.settings_page_model;D=new Y0(I,B.reset_confirmation,B.selected_file,new y(["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);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),i()]}else if(J instanceof xM){let K=J[0],X=J[1],W=fj(Z.cache,K,X),Y=n5(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),i()]}else if(J instanceof wM){let K=J[0],X=J[1],W=Lj(Z.cache,K),Y,V=A5(X,"Response body: ");if(V instanceof C){let z=V[0][1],N=H5(z);if(N instanceof y)Y=N[0];else Y=X}else Y=X;let G=Y,I=n5(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),i()]}else if(J instanceof QL){let K=J[0],X;if(Z.route instanceof D5)X=Zh(Z.settings_page_model);else X=Z.settings_page_model;let Y=X;if(K instanceof l5){let V=a(Z.cache,"GetStatistics",b(Q([])),N5),G;G=V[0];let I=a(G,"GetSettings",b(Q([])),O1),z;z=I[0];let N=a(z,"GetActivityBuckets",b(Q([["range",d(z5(Z.time_range))]])),d5),F;F=N[0];let D=a(F,"GetRecentActivity",b(Q([["hours",W1(24)]])),OZ),B;B=D[0];let T=u0(B,Z.registry,(q,E,R)=>{return new d0(q,E,R)},()=>{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),Q1(S)]}else if(K instanceof D5){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",b(Q([])),O1),N;N=z[0];let F=a(N,"GetOAuthClients",b(Q([])),d8),D;D=F[0];let B=u0(D,Z.registry,(S,q,E)=>{return new d0(S,q,E)},()=>{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),Q1(P)]}else return[Z,b5("/",new v,new v)]}else if(K instanceof zJ){let V=a(Z.cache,"GetLexicons",b(Q([])),ZJ),G;G=V[0];let I=u0(G,Z.registry,(F,D,B)=>{return new d0(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),Q1(N)]}else if(K instanceof GJ)if(Z.auth_state instanceof C8)return[Z,b5("/",new v,new v)];else{let G=cU(Z.backfill_page_model);return[new l(Z.cache,Z.registry,new GJ,Z.time_range,Z.settings_page_model,G,Z.backfill_status,Z.auth_state,!1,Z.login_autocomplete),i()]}else if(K instanceof i5)return[new l(Z.cache,Z.registry,new i5,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,!1,Z.login_autocomplete),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),i()]}else if(J instanceof VL){let K=J[0];if(K instanceof iU){let X=K[0],W=b(Q([["range",d(z5(X))]])),Y=a(Z.cache,"GetActivityBuckets",W,d5),V;V=Y[0];let G=u0(V,Z.registry,(N,F,D)=>{return new d0(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),Q1(z)]}else if(K instanceof lU){let X=b(Q([])),W=m0(Z.cache,"TriggerBackfill",X),Y=a(W,"TriggerBackfill",X,yb),V;V=Y[0];let G=u0(V,Z.registry,(F,D,B)=>{return new d0(F,D,B)},()=>{return 0}),I,z;I=G[0],z=G[1];let N=z1((F)=>{return QJ(1e4,()=>{return F(new VJ)})});return[new l(I,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,new m8,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),Q1(Q([Q1(z),N]))]}else return nj("/graphiql"),[Z,i()]}else if(J instanceof GL){let K=J[0];if(K instanceof sU){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(X,Y.reset_confirmation,Y.selected_file,new v,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);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),i()]}else if(K instanceof rU)return[Z,i()];else if(K instanceof aU){q5("[UploadLexicons] Button clicked, creating file effect");let X=z1((W)=>{return q5("[UploadLexicons] Effect running, calling read_file_as_base64"),_j("lexicon-file-input",(Y)=>{return q5("[UploadLexicons] Callback received result"),W(new YL(Y))})});return[Z,X]}else if(K instanceof tU){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(Y.domain_authority_input,X,Y.selected_file,new v,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);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),i()]}else if(K instanceof oU){let X=b(Q([["confirm",d(Z.settings_page_model.reset_confirmation)]])),W=m0(Z.cache,"ResetAll",X),Y=a(W,"ResetAll",X,jb),V;V=Y[0];let G=u0(V,Z.registry,(B,T,P)=>{return new d0(B,T,P)},()=>{return 0}),I,z;I=G[0],z=G[1];let N,F=Z.settings_page_model;N=new Y0(F.domain_authority_input,"",F.selected_file,new v,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);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),Q1(z)]}else if(K instanceof eU){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,new v,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);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),i()]}else if(K instanceof ZM){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,new v,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);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),i()]}else if(K instanceof JM){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,new v,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);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),i()]}else if(K instanceof KM){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,new v,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);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),i()]}else if(K instanceof YM){let X,W=Z.settings_page_model;X=new Y0(W.domain_authority_input,W.reset_confirmation,W.selected_file,new v,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);let Y=X,V=b(Q([])),G=a(Z.cache,"GetSettings",V,O1),I;if(I=G[1],I instanceof y1){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",d(B)],F);let T=D,P,S=Z.settings_page_model.relay_url_input;if(S==="")P=T;else P=A(["relayUrl",d(S)],T);let q=P,E,R=Z.settings_page_model.plc_directory_url_input;if(R==="")E=q;else E=A(["plcDirectoryUrl",d(R)],q);let k=E,w,f=Z.settings_page_model.jetstream_url_input;if(f==="")w=k;else w=A(["jetstreamUrl",d(f)],k);let g=w,c,n=Z.settings_page_model.oauth_supported_scopes_input;if(n==="")c=g;else c=A(["oauthSupportedScopes",d(n)],g);let r=c,Q0=A(["adminDids",j0(N,d)],r);if(Q0 instanceof U){let E0=b(Q0),k0=Q([["id",d("Settings:singleton")]]),G0,P0=Z.settings_page_model.domain_authority_input;if(P0==="")G0=k0;else G0=A(["domainAuthority",d(P0)],k0);let V0=G0,J0,Z0=Z.settings_page_model.relay_url_input;if(Z0==="")J0=V0;else J0=A(["relayUrl",d(Z0)],V0);let m=J0,L,_=Z.settings_page_model.plc_directory_url_input;if(_==="")L=m;else L=A(["plcDirectoryUrl",d(_)],m);let t=L,o,K0=Z.settings_page_model.jetstream_url_input;if(K0==="")o=t;else o=A(["jetstreamUrl",d(K0)],t);let w0=o,C0,L0=Z.settings_page_model.oauth_supported_scopes_input;if(L0==="")C0=w0;else C0=A(["oauthSupportedScopes",d(L0)],w0);let H1=C0,T1=A(["adminDids",j0(N,d)],H1),P1=b(T1),w1=uZ(Z.cache,Z.registry,"UpdateSettings",E0,"Settings:singleton",(u1)=>{return P1},JJ,(u1,d1,NJ)=>{if(d1 instanceof C)return new EM(u1,NJ);else{let yM=d1[0];return new CM(u1,yM)}}),Q8,x8;return Q8=w1[0],x8=w1[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),x8]}else if(Q0.tail instanceof U)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),i()];else{let k0=b(Q0),G0=Q([["id",d("Settings:singleton")]]),P0,V0=Z.settings_page_model.domain_authority_input;if(V0==="")P0=G0;else P0=A(["domainAuthority",d(V0)],G0);let J0=P0,Z0,m=Z.settings_page_model.relay_url_input;if(m==="")Z0=J0;else Z0=A(["relayUrl",d(m)],J0);let L=Z0,_,t=Z.settings_page_model.plc_directory_url_input;if(t==="")_=L;else _=A(["plcDirectoryUrl",d(t)],L);let o=_,K0,w0=Z.settings_page_model.jetstream_url_input;if(w0==="")K0=o;else K0=A(["jetstreamUrl",d(w0)],o);let C0=K0,L0,H1=Z.settings_page_model.oauth_supported_scopes_input;if(H1==="")L0=C0;else L0=A(["oauthSupportedScopes",d(H1)],C0);let T1=L0,P1=A(["adminDids",j0(N,d)],T1),w1=b(P1),Q8=uZ(Z.cache,Z.registry,"UpdateSettings",k0,"Settings:singleton",(d1)=>{return w1},JJ,(d1,NJ,yM)=>{if(NJ instanceof C)return new EM(d1,yM);else{let Gh=NJ[0];return new CM(d1,Gh)}}),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),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),i()]}else if(K instanceof XJ){let X,W=Z.settings_page_model;X=new Y0(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);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),i()]}else if(K instanceof XM){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(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);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),i()]}else if(K instanceof WM){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(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);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),i()]}else if(K instanceof QM){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(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);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),i()]}else if(K instanceof VM){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(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);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),i()]}else if(K instanceof GM){let X,W=K4(Z.settings_page_model.new_client_redirect_uris,` 152 - `),Y=OJ(W,(E)=>{return K8(J4(E))>0});X=H0(Y,J4);let V=X,G=b(Q([["clientName",d(Z.settings_page_model.new_client_name)],["clientType",d(Z.settings_page_model.new_client_type)],["redirectUris",j0(V,d)],["scope",d(Z.settings_page_model.new_client_scope)]])),I=m0(Z.cache,"CreateOAuthClient",G),z=a(I,"CreateOAuthClient",G,Gb),N;N=z[0];let F=m0(N,"GetOAuthClients",b(Q([]))),D=u0(F,Z.registry,(E,R,k)=>{return new d0(E,R,k)},()=>{return 0}),B,T;B=D[0],T=D[1];let P,S=Z.settings_page_model;P=new Y0(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);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),Q1(T)]}else if(K instanceof IM){let X=K[0],W=a(Z.cache,"GetOAuthClients",b(Q([])),d8),Y;Y=W[1];let V;if(Y instanceof y1){let I=Y[0],z=aM(I.oauth_clients,(N)=>{return N.client_id===X});if(z instanceof C){let N=z[0],F=Z.settings_page_model;V=new Y0(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 y(X),N.client_name,s8(N.redirect_uris,` 153 - `),(()=>{let D=N.scope;if(D instanceof y)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)}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),i()]}else if(K instanceof zM){let X,W=Z.settings_page_model;X=new Y0(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 v,"","","",W.visible_secrets,W.delete_confirm_client_id,W.oauth_alert,W.new_admin_did,W.remove_confirm_did,W.admin_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),i()]}else if(K instanceof NM){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(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);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),i()]}else if(K instanceof FM){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(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);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),i()]}else if(K instanceof HM){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(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);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),i()]}else if(K instanceof DM){let X=Z.settings_page_model.editing_client_id;if(X instanceof y){let W=X[0],Y,V=K4(Z.settings_page_model.edit_client_redirect_uris,` 154 - `),G=OJ(V,(k)=>{return K8(J4(k))>0});Y=H0(G,J4);let I=Y,z=b(Q([["clientId",d(W)],["clientName",d(Z.settings_page_model.edit_client_name)],["redirectUris",j0(I,d)],["scope",d(Z.settings_page_model.edit_client_scope)]])),N=m0(Z.cache,"UpdateOAuthClient",z),F=a(N,"UpdateOAuthClient",z,bb),D;D=F[0];let B=m0(D,"GetOAuthClients",b(Q([]))),T=u0(B,Z.registry,(k,w,f)=>{return new d0(k,w,f)},()=>{return 0}),P,S;P=T[0],S=T[1];let q,E=Z.settings_page_model;q=new Y0(E.domain_authority_input,E.reset_confirmation,E.selected_file,E.alert,E.relay_url_input,E.plc_directory_url_input,E.jetstream_url_input,E.oauth_supported_scopes_input,E.lexicons_alert,E.show_new_client_form,E.new_client_name,E.new_client_type,E.new_client_redirect_uris,E.new_client_scope,new v,"","","",E.visible_secrets,E.delete_confirm_client_id,E.oauth_alert,E.new_admin_did,E.remove_confirm_did,E.admin_alert);let R=q;return[new l(P,Z.registry,Z.route,Z.time_range,R,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),Q1(S)]}else return[Z,i()]}else if(K instanceof BM){let X=K[0],W;if(Q4(Z.settings_page_model.visible_secrets,X))W=Ty(Z.settings_page_model.visible_secrets,X);else W=xZ(Z.settings_page_model.visible_secrets,X);let V=W,G,I=Z.settings_page_model;G=new Y0(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);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),i()]}else if(K instanceof OM){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(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 y(X),Y.oauth_alert,Y.new_admin_did,Y.remove_confirm_did,Y.admin_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),i()]}else if(K instanceof TM){let X,W=Z.settings_page_model;X=new Y0(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 v,W.oauth_alert,W.new_admin_did,W.remove_confirm_did,W.admin_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),i()]}else if(K instanceof PM){let X=Z.settings_page_model.delete_confirm_client_id;if(X instanceof y){let W=X[0],Y=b(Q([["clientId",d(W)]])),V=m0(Z.cache,"DeleteOAuthClient",Y),G=a(V,"DeleteOAuthClient",Y,zb),I;I=G[0];let z=m0(I,"GetOAuthClients",b(Q([]))),N=u0(z,Z.registry,(S,q,E)=>{return new d0(S,q,E)},()=>{return 0}),F,D;F=N[0],D=N[1];let B,T=Z.settings_page_model;B=new Y0(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 v,T.oauth_alert,T.new_admin_did,T.remove_confirm_did,T.admin_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),Q1(D)]}else return[Z,i()]}else if(K instanceof SM){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(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);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),i()]}else if(K instanceof AM){let X=b(Q([])),W=a(Z.cache,"GetSettings",X,O1),Y;if(Y=W[1],Y instanceof y1){let V=Y[0],G=Z.settings_page_model.new_admin_did,I=V.settings.admin_dids,z=V.settings.domain_authority,N;if(rM(I,G))N=I;else N=_0(I,Q([G]));let D=N,B=b(Q([["domainAuthority",d(z)],["adminDids",j0(D,d)]])),T=b(Q([["id",d("Settings:singleton")],["domainAuthority",d(z)],["adminDids",j0(D,d)]])),P=uZ(Z.cache,Z.registry,"UpdateSettings",B,"Settings:singleton",(w)=>{return T},JJ,(w,f,g)=>{if(f instanceof C)return new xM(w,g);else{let c=f[0];return new wM(w,c)}}),S,q;S=P[0],q=P[2];let E,R=Z.settings_page_model;E=new Y0(R.domain_authority_input,R.reset_confirmation,R.selected_file,R.alert,R.relay_url_input,R.plc_directory_url_input,R.jetstream_url_input,R.oauth_supported_scopes_input,R.lexicons_alert,R.show_new_client_form,R.new_client_name,R.new_client_type,R.new_client_redirect_uris,R.new_client_scope,R.editing_client_id,R.edit_client_name,R.edit_client_redirect_uris,R.edit_client_scope,R.visible_secrets,R.delete_confirm_client_id,R.oauth_alert,"",R.remove_confirm_did,R.admin_alert);let k=E;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),q]}else return[Z,i()]}else if(K instanceof YJ){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(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 y(X),Y.admin_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),i()]}else if(K instanceof qM){let X,W=Z.settings_page_model;X=new Y0(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 v,W.admin_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),i()]}else{let X=Z.settings_page_model.remove_confirm_did;if(X instanceof y){let W=X[0],Y=b(Q([])),V=a(Z.cache,"GetSettings",Y,O1),G;if(G=V[1],G instanceof y1){let I=G[0],z=I.settings.admin_dids,N=I.settings.domain_authority,F=OJ(z,(k)=>{return k!==W}),D=b(Q([["domainAuthority",d(N)],["adminDids",j0(F,d)]])),B=b(Q([["id",d("Settings:singleton")],["domainAuthority",d(N)],["adminDids",j0(F,d)]])),T=uZ(Z.cache,Z.registry,"UpdateSettings",D,"Settings:singleton",(k)=>{return B},JJ,(k,w,f)=>{if(w instanceof C)return new xM(k,f);else{let g=w[0];return new wM(k,g)}}),P,S;P=T[0],S=T[2];let q,E=Z.settings_page_model;q=new Y0(E.domain_authority_input,E.reset_confirmation,E.selected_file,E.alert,E.relay_url_input,E.plc_directory_url_input,E.jetstream_url_input,E.oauth_supported_scopes_input,E.lexicons_alert,E.show_new_client_form,E.new_client_name,E.new_client_type,E.new_client_redirect_uris,E.new_client_scope,E.editing_client_id,E.edit_client_name,E.edit_client_redirect_uris,E.edit_client_scope,E.visible_secrets,E.delete_confirm_client_id,E.oauth_alert,E.new_admin_did,new v,E.admin_alert);let R=q;return[new l(P,Z.registry,Z.route,Z.time_range,R,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),S]}else return[Z,i()]}else return[Z,i()]}}else if(J instanceof UM){let K=J[0],X=ab(K);return[Z,MR(X,(W)=>{return new UM(W)})]}else if(J instanceof IL){let K=J[0];if(K instanceof dU){let X=K[0],W,Y,V=Z.backfill_page_model;Y=new F5(X,V.is_submitting,V.alert),W=cU(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),i()]}else{let X=Z.backfill_page_model.did_input,W=b(Q([["did",d(X)]])),Y,V=Z.backfill_page_model,G=pU(V,!0);Y=cU(G);let I=Y,z=m0(Z.cache,"BackfillActor",W),N=a(z,"BackfillActor",W,Wb),F;F=N[0];let D=u0(F,Z.registry,(P,S,q)=>{return new d0(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),Q1(T)]}}else if(J instanceof YL){let K=J[0];if(K instanceof C){let X=K[0];q5("[FileRead] Successfully read file, uploading...");let W=b(Q([["zipBase64",d(X)]])),Y=m0(Z.cache,"UploadLexicons",W),V=a(Y,"UploadLexicons",W,gb),G;G=V[0];let I=u0(G,Z.registry,(T,P,S)=>{return new d0(T,P,S)},()=>{return 0}),z,N;z=I[0],N=I[1];let F,D=Z.settings_page_model;F=new Y0(D.domain_authority_input,D.reset_confirmation,new v,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);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),Q1(N)]}else{let X=K[0];q5("[FileRead] Error reading file: "+X);let W=WJ(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),i()]}}else if(J instanceof VJ)if($5(Z.backfill_status)){let X=_k(Z.cache,Z.registry,(V,G,I)=>{return new d0(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),Q1(Y)]}else return[Z,i()];else if(J instanceof zL)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),i()];else if(J instanceof IJ){let K=J[0],X=T8(Z.login_autocomplete,new zK(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),MR(Y,(V)=>{if(V instanceof q4){let G=V[0];return new XL(G)}else return new IJ("")})]}else if(J instanceof MM){let K=J[0];if(K==="ArrowDown"){let X=T8(Z.login_autocomplete,new NK),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),i()]}else if(K==="ArrowUp"){let X=T8(Z.login_autocomplete,new FK),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),i()]}else if(K==="Enter"){let X=lk(Z.login_autocomplete);if(X instanceof y){let W=X[0],Y=T8(Z.login_autocomplete,new pZ(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),i()]}else return[Z,i()]}else if(K==="Escape"){let X=T8(Z.login_autocomplete,new nZ),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),i()]}else return[Z,i()]}else if(J instanceof RM){let K=J[0],X,W=aM(Z.login_autocomplete.actors,(I)=>{return I.handle===K});if(W instanceof C)X=W[0];else X=new cZ("",K,"",new v);let Y=X,V=T8(Z.login_autocomplete,new pZ(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),i()]}else if(J instanceof jM){let K=z1((X)=>{return QJ(150,()=>{return X(new Wh)})});return[Z,K]}else if(J instanceof LM){let K=T8(Z.login_autocomplete,new kj),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),i()]}else if(J instanceof XL){let K=J[0],X=T8(Z.login_autocomplete,new q4(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),i()]}else{let K=T8(Z.login_autocomplete,new nZ),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),i()]}}function m_(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],bZ(ib(Z.cache,Z.time_range,Z.backfill_status,W,Y),(V)=>{return new VL(V)})}function u_(Z){let J,K=Z.auth_state;if(K instanceof C8)J=!1;else J=K.is_admin;let X=J;return bZ(Kh(Z.cache,Z.settings_page_model,X),(W)=>{return new GL(W)})}function d_(Z){return bZ(tb(Z.cache),(J)=>{return new UM(J)})}function c_(Z){return j(Q([]),Q([_1(Q([H("text-xl font-bold text-zinc-100 mb-4")]),Q([l0("Upload")])),x0(Q([H("text-zinc-400")]),Q([l0("Upload and manage data")]))]))}function p_(Z){return bZ(db(Z.backfill_page_model),(J)=>{return new IL(J)})}function n_(Z){return ob(Z.login_autocomplete,(J)=>{return new IJ(J)},(J)=>{return new RM(J)},(J)=>{return new MM(J)},()=>{return new jM},()=>{return new LM})}function i_(Z){let J,K=Z.auth_state;if(K instanceof C8)J=new v;else{let{handle:W,is_admin:Y}=K;J=new y([W,Y])}let X=J;return j(Q([H("bg-zinc-950 text-zinc-300 font-mono min-h-screen")]),Q([j(Q([H("max-w-4xl mx-auto px-4 py-6 sm:px-6 sm:py-12")]),Q([(()=>{if(Z.route instanceof i5)return z0();else return Kb(X,$5(Z.backfill_status),Z.mobile_menu_open,new zL,Z.login_autocomplete,(Y)=>{return new IJ(Y)},(Y)=>{return new RM(Y)},(Y)=>{return new MM(Y)},()=>{return new jM},()=>{return new LM})})(),(()=>{let W=Z.route;if(W instanceof l5)return m_(Z);else if(W instanceof D5)return u_(Z);else if(W instanceof zJ)return d_(Z);else if(W instanceof WL)return c_(Z);else if(W instanceof GJ)return p_(Z);else return n_(Z)})()]))]))}function Qh(Z){let J=Z.path;if(J==="/")return new l5;else if(J==="/settings")return new D5;else if(J==="/lexicons")return new zJ;else if(J==="/upload")return new WL;else if(J==="/backfill")return new GJ;else if(J==="/onboarding")return new i5;else return new l5}function l_(Z){return new QL(Qh(Z))}function s_(Z){let J=Yh()+"/admin/graphql",K=kk(J),X=Yb(),W,Y=Bj();if(Y instanceof C){let q=Y[0];W=Qh(q)}else W=new l5;let V=W,G=a(K,"GetCurrentSession",b(Q([])),dj),I;I=G[0];let z=a(I,"IsBackfilling",b(Q([])),dZ),N;N=z[0];let F;if(V instanceof l5){let q=a(N,"GetStatistics",b(Q([])),N5),E;E=q[0];let R=a(E,"GetSettings",b(Q([])),O1),k;k=R[0];let w=a(k,"GetActivityBuckets",b(Q([["range",d("ONE_DAY")]])),d5),f;f=w[0];let g=a(f,"GetRecentActivity",b(Q([["hours",W1(24)]])),OZ),c;c=g[0];let n=u0(c,X,(E0,k0,G0)=>{return new d0(E0,k0,G0)},()=>{return 0}),r,Q0;r=n[0],Q0=n[1],F=[r,Q0]}else if(V instanceof D5){let q=a(N,"GetSettings",b(Q([])),O1),E;E=q[0];let R=a(E,"GetOAuthClients",b(Q([])),d8),k;k=R[0];let w=u0(k,X,(c,n,r)=>{return new d0(c,n,r)},()=>{return 0}),f,g;f=w[0],g=w[1],F=[f,g]}else if(V instanceof zJ){let q=a(N,"GetLexicons",b(Q([])),ZJ),E;E=q[0];let R=u0(E,X,(f,g,c)=>{return new d0(f,g,c)},()=>{return 0}),k,w;k=R[0],w=R[1],F=[k,w]}else F=[N,Q([])];let D=F,B,T;B=D[0],T=D[1];let P=Vk(l_),S=Q1(A(P,T));return[new l(B,X,V,new u5,Jh(),ub(),new IK,new C8,!1,ik()),S]}function Vh(){let Z=tf(s_,__,i_),J=of(Z,"#app",void 0);if(!(J instanceof C))throw c8("let_assert",g_,"quickslice_client",120,"main","Pattern match failed, no pattern matched the value.",{value:J,start:3346,end:3395,pattern_start:3357,pattern_end:3362});return J}Vh(); 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([x(z)]));Z=N,J=Y,K=V,X=A(B,G)}else{let z=W.tail;if(z instanceof U){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([x(N)]));Z=F,J=Y,K=V,X=A(T,G)}else{let N=z.tail;if(N instanceof U){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([x(F)]));Z=D,J=Y,K=V,X=A(P,G)}else{let F=N.tail;if(F instanceof U){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([x(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 U)P="";else{let k=W.tail;if(k instanceof U)P="";else{let w=k.tail;if(w instanceof U)P="";else{let f=w.tail;if(f instanceof U)P="";else{let $=W.head;if($==="t")if(k.head==="r")if(w.head==="u")if(f.head==="e")P="true";else P="";else P="";else P="";else if($==="f"){let c=f.tail;if(c instanceof U)P="";else if(k.head==="a")if(w.head==="l")if(f.head==="s")if(c.head==="e")P="false";else P="";else P="";else P="";else P=""}else if($==="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=Y8(S),C=p(Q([H("text-red-400")]),Q([x(S)]));Z=o5(W,q),J=Y,K=!1,X=A(C,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 M=p(Q([H(q)]),Q([x(P)]));Z=S,J=Y,K=V,X=A(M,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 C=p(Q([H(S)]),Q([x(T)]));Z=P,J=Y,K=V,X=A(C,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([x(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([x(z)]));Z=N,J=Y,K=V,X=A(B,G)}else{let z=W.tail;if(z instanceof U){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([x(N)]));Z=F,J=Y,K=V,X=A(T,G)}else{let N=z.tail;if(N instanceof U){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([x(F)]));Z=D,J=Y,K=V,X=A(P,G)}else{let F=N.tail;if(F instanceof U){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([x(D)]));Z=B,J=Y,K=V,X=A(S,G)}else{let D=F.tail;if(D instanceof U){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([x(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 U)q="";else{let f=W.tail;if(f instanceof U)q="";else{let $=f.tail;if($ instanceof U)q="";else{let c=$.tail;if(c instanceof U)q="";else{let n=W.head;if(n==="t")if(f.head==="r")if($.head==="u")if(c.head==="e")q="true";else q="";else q="";else q="";else if(n==="f"){let r=c.tail;if(r instanceof U)q="";else if(f.head==="a")if($.head==="l")if(c.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($.head==="l")if(c.head==="l")q="null";else q="";else q="";else q="";else q=""}}}}let C=q,M=Y8(C),k=p(Q([H("text-red-400")]),Q([x(C)]));Z=o5(W,M),J=Y,K=!1,X=A(k,G)}else{let q=I,C=z,M;if(q==="0")M="text-red-400";else if(q==="1")M="text-red-400";else if(q==="2")M="text-red-400";else if(q==="3")M="text-red-400";else if(q==="4")M="text-red-400";else if(q==="5")M="text-red-400";else if(q==="6")M="text-red-400";else if(q==="7")M="text-red-400";else if(q==="8")M="text-red-400";else if(q==="9")M="text-red-400";else if(q===".")M="text-red-400";else if(q==="-")M="text-red-400";else M="text-zinc-200";let w=p(Q([H(M)]),Q([x(q)]));Z=C,J=Y,K=V,X=A(w,G)}else{let S=I,q=z,C;if(S==="0")C="text-red-400";else if(S==="1")C="text-red-400";else if(S==="2")C="text-red-400";else if(S==="3")C="text-red-400";else if(S==="4")C="text-red-400";else if(S==="5")C="text-red-400";else if(S==="6")C="text-red-400";else if(S==="7")C="text-red-400";else if(S==="8")C="text-red-400";else if(S==="9")C="text-red-400";else if(S===".")C="text-red-400";else if(S==="-")C="text-red-400";else C="text-zinc-200";let k=p(Q([H(C)]),Q([x(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 M=p(Q([H(q)]),Q([x(P)]));Z=S,J=Y,K=V,X=A(M,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 C=p(Q([H(S)]),Q([x(T)]));Z=P,J=Y,K=V,X=A(C,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([x(z)]));Z=N,J=Y,K=V,X=A(B,G)}else{let z=W.tail;if(z instanceof U){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([x(N)]));Z=F,J=Y,K=V,X=A(T,G)}else{let N=z.tail;if(N instanceof U){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([x(F)]));Z=D,J=Y,K=V,X=A(P,G)}else{let F=N.tail;if(F instanceof U){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([x(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 U)P="";else{let k=W.tail;if(k instanceof U)P="";else{let w=k.tail;if(w instanceof U)P="";else{let f=w.tail;if(f instanceof U)P="";else{let $=W.head;if($==="t")if(k.head==="r")if(w.head==="u")if(f.head==="e")P="true";else P="";else P="";else P="";else if($==="f"){let c=f.tail;if(c instanceof U)P="";else if(k.head==="a")if(w.head==="l")if(f.head==="s")if(c.head==="e")P="false";else P="";else P="";else P="";else P=""}else if($==="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=Y8(S),C=p(Q([H("text-red-400")]),Q([x(S)]));Z=o5(W,q),J=Y,K=!1,X=A(C,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 M=p(Q([H(q)]),Q([x(P)]));Z=S,J=Y,K=V,X=A(M,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 C=p(Q([H(S)]),Q([x(T)]));Z=P,J=Y,K=V,X=A(C,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([x(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([x(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([x(z)]));Z=N,J=Y,K=V,X=A(B,G)}}}}function q_(Z,J,K){return A_(Z,J,!1,K)}function eb(Z){let K=xZ(Z),X=q_(K,!1,Q([])),W=F0(X);return Qf(W)}class Zh extends O{constructor(Z){super();this[0]=Z}}function Jh(Z){let J=Z[0];return z1((K)=>{return ob(J)})}function C_(){return j(Q([H("py-8 text-center text-zinc-600 text-sm")]),Q([x("Loading lexicons...")]))}function x_(Z){return j(Q([H("py-8 text-center text-red-400 text-sm")]),Q([x("Error: "+Z)]))}function w_(){return j(Q([H("bg-zinc-800/50 rounded p-8 text-center border border-zinc-700")]),Q([x0(Q([H("text-zinc-400 mb-2")]),Q([x("No lexicons found.")])),x0(Q([H("text-sm text-zinc-500")]),Q([x("Upload lexicons from the Settings page to get started.")]))]))}function U_(Z){return j(Q([H("bg-zinc-800/50 rounded p-4 relative")]),Q([E0(Q([H("absolute top-4 right-4 p-1.5 rounded hover:bg-zinc-700 text-zinc-400 hover:text-zinc-300 transition-colors"),M0("button"),k0(new Zh(Z.json))]),Q([tZ("copy",new dU,Q([]))])),If(Q([H("group")]),Q([zf(Q([H("cursor-pointer text-base font-mono text-zinc-300 hover:text-zinc-200 select-none list-none pr-10")]),Q([x(Z.id)])),iJ(Q([H("mt-3 bg-zinc-900 rounded p-3 overflow-x-auto text-xs font-mono")]),Q([v8(Q([]),Q([eb(WL(Z.json))]))]))]))]))}function M_(Z){if(Z instanceof U)return w_();else return j(Q([H("space-y-4")]),Q([x0(Q([H("text-sm text-zinc-500 mb-4")]),Q([x(jJ(N8(Z))+" lexicons")])),j(Q([H("space-y-3")]),H0(Z,U_))]))}function Kh(Z){let J=a(Z,"GetLexicons",b(Q([])),KJ),K;return K=J[1],j(Q([H("space-y-6")]),Q([j(Q([H("mb-2")]),Q([m1(Q([v1("/"),H("text-zinc-400 hover:text-zinc-300 transition-colors text-sm")]),Q([x("← Back")]))])),_1(Q([H("text-2xl font-semibold text-zinc-300 mb-6")]),Q([x("Lexicons")])),(()=>{if(K instanceof j1)return C_();else if(K instanceof L1){let X=K[0];return x_(X)}else{let X=K[0];return M_(X.lexicons)}})()]))}function Yh(Z,J,K,X,W,Y){return j(Q([H("max-w-md mx-auto mt-12")]),Q([j(Q([H("bg-zinc-800/50 rounded p-8 border border-zinc-700")]),Q([j(Q([H("flex justify-center mb-6")]),Q([cU("w-16 h-16")])),_1(Q([H("text-2xl font-semibold text-zinc-300 mb-2 text-center")]),Q([x("Welcome to Quickslice")])),x0(Q([H("text-zinc-400 mb-6 text-center")]),Q([x("Set up an administrator account to get started.")])),g8(Q([U5("/admin/oauth/authorize"),M5("POST"),H("space-y-4")]),Q([j(Q([]),Q([r0(Q([H("block text-sm text-zinc-400 mb-2")]),Q([x("AT Protocol Handle")])),sZ(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)])),j(Q([H("pt-2")]),Q([nU(Z.query==="","Continue")]))]))]))]))}class eU extends O{constructor(Z){super();this[0]=Z}}class ZM extends O{}class JM extends O{}class KM extends O{constructor(Z){super();this[0]=Z}}class YM extends O{}class XM extends O{constructor(Z){super();this[0]=Z}}class WM extends O{constructor(Z){super();this[0]=Z}}class QM extends O{constructor(Z){super();this[0]=Z}}class VM extends O{constructor(Z){super();this[0]=Z}}class GM extends O{}class QJ extends O{}class IM extends O{constructor(Z){super();this[0]=Z}}class zM extends O{constructor(Z){super();this[0]=Z}}class NM extends O{constructor(Z){super();this[0]=Z}}class FM extends O{constructor(Z){super();this[0]=Z}}class HM extends O{}class DM extends O{constructor(Z){super();this[0]=Z}}class BM extends O{}class OM extends O{constructor(Z){super();this[0]=Z}}class TM extends O{constructor(Z){super();this[0]=Z}}class PM extends O{constructor(Z){super();this[0]=Z}}class SM extends O{}class AM extends O{constructor(Z){super();this[0]=Z}}class qM extends O{constructor(Z){super();this[0]=Z}}class EM extends O{}class CM extends O{}class xM extends O{constructor(Z){super();this[0]=Z}}class wM extends O{}class WJ extends O{constructor(Z){super();this[0]=Z}}class UM extends O{}class Xh extends O{}class Y0 extends O{constructor(Z,J,K,X,W,Y,V,G,I,z,N,F,D,B,T,P,S,q,C,M,k,w,f,$){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=C,this.delete_confirm_client_id=M,this.oauth_alert=k,this.new_admin_did=w,this.remove_confirm_did=f,this.admin_alert=$}}function n5(Z,J,K){return new Y0(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)}function Wh(Z){return new Y0(Z.domain_authority_input,Z.reset_confirmation,Z.selected_file,new h,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)}function C8(Z,J,K){return new Y0(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)}function i5(Z,J,K){return new Y0(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]))}function VJ(Z,J,K){return new Y0(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)}function Qh(){return new Y0("","",new h,new h,"","","","",new h,!1,"","PUBLIC","","atproto transition:generic",new h,"","","",x5(),new h,new h,"",new h,new h)}function L_(Z){return _k(Z)}function y_(Z,J,K){return j(Q([H("bg-zinc-800/50 rounded p-6")]),Q([B4(Q([H("text-xl font-semibold text-zinc-300 mb-4")]),Q([x("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 A8;else if(W==="error")V=new e1;else V=new Z8;return c8(V,Y)}else return G0()})(),g8(Q([H("space-y-6"),sk((X)=>{return new GM})]),Q([j(Q([H("space-y-2")]),Q([r0(Q([H("block text-sm text-zinc-400 mb-2")]),Q([x("Domain Authority")])),N1(Q([M0("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"),q1("e.g. com.example"),o0(J.domain_authority_input),e8(!0),K1((X)=>{return new eU(X)})])),x0(Q([H("text-xs text-zinc-500")]),Q([x('Determines which collections are considered "primary" vs "external" when backfilling records.')]))])),j(Q([H("space-y-2")]),Q([r0(Q([H("block text-sm text-zinc-400 mb-2")]),Q([x("Relay URL")])),N1(Q([M0("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"),q1(Z.relay_url),o0(J.relay_url_input),e8(!0),K1((X)=>{return new XM(X)})])),x0(Q([H("text-xs text-zinc-500")]),Q([x("AT Protocol relay URL for backfill operations.")]))])),j(Q([H("space-y-2")]),Q([r0(Q([H("block text-sm text-zinc-400 mb-2")]),Q([x("PLC Directory URL")])),N1(Q([M0("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"),q1(Z.plc_directory_url),o0(J.plc_directory_url_input),e8(!0),K1((X)=>{return new WM(X)})])),x0(Q([H("text-xs text-zinc-500")]),Q([x("PLC directory URL for DID resolution.")]))])),j(Q([H("space-y-2")]),Q([r0(Q([H("block text-sm text-zinc-400 mb-2")]),Q([x("Jetstream URL")])),N1(Q([M0("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"),q1(Z.jetstream_url),o0(J.jetstream_url_input),e8(!0),K1((X)=>{return new QM(X)})])),x0(Q([H("text-xs text-zinc-500")]),Q([x("Jetstream WebSocket endpoint for real-time indexing.")]))])),j(Q([H("space-y-2")]),Q([r0(Q([H("block text-sm text-zinc-400 mb-2")]),Q([x("OAuth Supported Scopes")])),N1(Q([M0("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"),q1(Z.oauth_supported_scopes),o0(J.oauth_supported_scopes_input),e8(!0),K1((X)=>{return new VM(X)})])),x0(Q([H("text-xs text-zinc-500")]),Q([x("Space-separated OAuth scopes supported by this server.")]))])),j(Q([H("flex gap-3 pt-4")]),Q([nU(K,(()=>{if(K)return"Saving...";else return"Save"})())]))]))]))}function f_(Z){return j(Q([H("bg-zinc-800/50 rounded p-6")]),Q([B4(Q([H("text-xl font-semibold text-zinc-300 mb-4")]),Q([x("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 A8;else if(K==="error")W=new e1;else W=new Z8;return c8(W,X)}else return G0()})(),j(Q([H("space-y-4")]),Q([j(Q([H("mb-4")]),Q([r0(Q([H("block text-sm text-zinc-400 mb-2")]),Q([x("Upload Lexicons (ZIP)")])),N1(Q([M0("file"),dy(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"),B8("lexicon-file-input"),K1((J)=>{return new ZM})]))])),x0(Q([H("text-sm text-zinc-500 mb-4")]),Q([x("Upload a ZIP file containing lexicon JSON files.")])),j(Q([H("flex gap-3")]),Q([J8(!1,new JM,"Upload")]))]))]))}function k_(Z){return j(Q([H("bg-zinc-800/50 rounded p-6")]),Q([B4(Q([H("text-xl font-semibold text-zinc-300 mb-4")]),Q([x("Danger Zone")])),x0(Q([H("text-sm text-zinc-400 mb-4")]),Q([x("This will clear all indexed data:")])),lJ(Q([H("text-sm text-zinc-400 mb-4 ml-4 list-disc")]),Q([y5(Q([]),Q([x("Domain authority configuration")])),y5(Q([]),Q([x("All lexicon definitions")])),y5(Q([]),Q([x("All indexed records")])),y5(Q([]),Q([x("All actors")]))])),x0(Q([H("text-sm text-zinc-400 mb-4")]),Q([x("Records can be re-indexed via backfill.")])),j(Q([H("space-y-4")]),Q([j(Q([H("mb-4")]),Q([r0(Q([H("block text-sm text-zinc-400 mb-2")]),Q([x("Type RESET to confirm")])),N1(Q([M0("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"),q1("RESET"),o0(Z.reset_confirmation),K1((J)=>{return new KM(J)})]))])),j(Q([H("flex gap-3")]),Q([E0(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"),LZ(Z.reset_confirmation!=="RESET"),k0(new YM)]),Q([x("Reset Everything")]))]))]))]))}function b_(Z){return j(Q([H("bg-zinc-900 rounded p-4 mb-4 border border-zinc-700")]),Q([O4(Q([H("text-lg font-semibold text-zinc-300 mb-3")]),Q([x("Register New Client")])),j(Q([H("space-y-3")]),Q([j(Q([]),Q([r0(Q([H("block text-sm text-zinc-400 mb-1")]),Q([x("Client Name")])),N1(Q([M0("text"),H("font-mono px-3 py-2 text-sm text-zinc-300 bg-zinc-800 border border-zinc-700 rounded w-full"),q1("My Application"),o0(Z.new_client_name),K1((J)=>{return new IM(J)})]))])),j(Q([]),Q([r0(Q([H("block text-sm text-zinc-400 mb-1")]),Q([x("Client Type")])),Gf(Q([H("font-mono px-3 py-2 text-sm text-zinc-300 bg-zinc-800 border border-zinc-700 rounded w-full"),lk((J)=>{return new zM(J)})]),Q([iR(Q([o0("PUBLIC"),RR(Z.new_client_type==="PUBLIC")]),"Public"),iR(Q([o0("CONFIDENTIAL"),RR(Z.new_client_type==="CONFIDENTIAL")]),"Confidential")])),x0(Q([H("text-xs text-zinc-500 mt-1")]),Q([x((()=>{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"})())]))])),j(Q([]),Q([r0(Q([H("block text-sm text-zinc-400 mb-1")]),Q([x("Redirect URIs (one per line)")])),lR(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"),q1("http://localhost:3000/callback"),o0(Z.new_client_redirect_uris),K1((J)=>{return new NM(J)})]),"")])),j(Q([]),Q([r0(Q([H("block text-sm text-zinc-400 mb-1")]),Q([x("Scope")])),N1(Q([M0("text"),H("font-mono px-3 py-2 text-sm text-zinc-300 bg-zinc-800 border border-zinc-700 rounded w-full"),q1("atproto transition:generic"),o0(Z.new_client_scope),K1((J)=>{return new FM(J)})])),x0(Q([H("text-xs text-zinc-500 mt-1")]),Q([x("Space-separated OAuth scopes")]))])),j(Q([H("flex gap-2")]),Q([J8(!1,new HM,"Create"),E0(Q([H("font-mono px-4 py-2 text-sm text-zinc-400 hover:text-zinc-300 rounded transition-colors cursor-pointer"),k0(new QJ)]),Q([x("Cancel")]))]))]))]))}function h_(Z,J){return j(Q([H("bg-zinc-900 rounded p-4 border border-amber-700")]),Q([O4(Q([H("text-lg font-semibold text-zinc-300 mb-3")]),Q([x("Edit Client")])),j(Q([H("space-y-3")]),Q([j(Q([]),Q([r0(Q([H("block text-sm text-zinc-400 mb-1")]),Q([x("Client ID")])),v8(Q([H("text-sm text-zinc-500 font-mono")]),Q([x(Z.client_id)]))])),j(Q([]),Q([r0(Q([H("block text-sm text-zinc-400 mb-1")]),Q([x("Client Name")])),N1(Q([M0("text"),H("font-mono px-3 py-2 text-sm text-zinc-300 bg-zinc-800 border border-zinc-700 rounded w-full"),o0(J.edit_client_name),K1((K)=>{return new OM(K)})]))])),j(Q([]),Q([r0(Q([H("block text-sm text-zinc-400 mb-1")]),Q([x("Redirect URIs (one per line)")])),lR(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"),K1((K)=>{return new TM(K)})]),J.edit_client_redirect_uris)])),j(Q([]),Q([r0(Q([H("block text-sm text-zinc-400 mb-1")]),Q([x("Scope")])),N1(Q([M0("text"),H("font-mono px-3 py-2 text-sm text-zinc-300 bg-zinc-800 border border-zinc-700 rounded w-full"),o0(J.edit_client_scope),K1((K)=>{return new PM(K)})]))])),j(Q([H("flex gap-2")]),Q([J8(!1,new SM,"Save"),E0(Q([H("font-mono px-4 py-2 text-sm text-zinc-400 hover:text-zinc-300 rounded transition-colors cursor-pointer"),k0(new BM)]),Q([x("Cancel")]))]))]))]))}function v_(Z,J){let K=O0(J.editing_client_id,new L(Z.client_id)),X=Q4(J.visible_secrets,Z.client_id);if(K)return h_(Z,J);else return j(Q([H("bg-zinc-900 rounded p-4 border border-zinc-700")]),Q([j(Q([H("flex justify-between items-start mb-2")]),Q([j(Q([]),Q([p(Q([H("text-zinc-300 font-medium")]),Q([x(Z.client_name)]))])),j(Q([H("flex gap-2")]),Q([E0(Q([H("text-sm text-zinc-400 hover:text-zinc-300 cursor-pointer"),k0(new DM(Z.client_id))]),Q([x("Edit")])),E0(Q([H("text-sm text-red-400 hover:text-red-300 cursor-pointer"),k0(new qM(Z.client_id))]),Q([x("Delete")]))]))])),j(Q([H("mb-2")]),Q([p(Q([H("text-xs text-zinc-500")]),Q([x("Client ID: ")])),v8(Q([H("text-xs text-zinc-400 font-mono")]),Q([x(Z.client_id)]))])),j(Q([H("mb-2")]),Q([p(Q([H("text-xs text-zinc-500")]),Q([x("Type: ")])),p(Q([H("text-xs text-zinc-400")]),Q([x((()=>{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 j(Q([H("mb-2")]),Q([p(Q([H("text-xs text-zinc-500")]),Q([x("Secret: ")])),(()=>{if(X)return v8(Q([H("text-xs text-zinc-400 font-mono")]),Q([x(Y)]));else return v8(Q([H("text-xs text-zinc-400 font-mono")]),Q([x("••••••••••••••••")]))})(),E0(Q([H("ml-2 text-xs text-zinc-500 hover:text-zinc-400 cursor-pointer"),k0(new AM(Z.client_id))]),Q([x((()=>{if(X)return"Hide";else return"Show"})())]))]))}else return G0()})(),(()=>{let W=Z.redirect_uris;if(W instanceof U)return G0();else{let Y=W;return j(Q([]),Q([p(Q([H("text-xs text-zinc-500")]),Q([x("Redirect URIs:")])),lJ(Q([H("text-xs text-zinc-400 font-mono ml-4")]),H0(Y,(V)=>{return y5(Q([]),Q([x(V)]))}))]))}})(),(()=>{let W=Z.scope;if(W instanceof L){let Y=W[0];return j(Q([H("mt-2")]),Q([p(Q([H("text-xs text-zinc-500")]),Q([x("Scope: ")])),v8(Q([H("text-xs text-zinc-400 font-mono")]),Q([x(Y)]))]))}else return G0()})()]))}function g_(Z){return j(Q([H("fixed inset-0 bg-black/50 flex items-center justify-center z-50")]),Q([j(Q([H("bg-zinc-800 rounded p-6 max-w-md")]),Q([O4(Q([H("text-lg font-semibold text-zinc-300 mb-3")]),Q([x("Delete Client?")])),x0(Q([H("text-sm text-zinc-400 mb-4")]),Q([x("Are you sure you want to delete client "),v8(Q([H("text-zinc-300")]),Q([x(Z)])),x("? This action cannot be undone.")])),j(Q([H("flex gap-2 justify-end")]),Q([E0(Q([H("font-mono px-4 py-2 text-sm text-zinc-400 hover:text-zinc-300 rounded transition-colors cursor-pointer"),k0(new EM)]),Q([x("Cancel")])),E0(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"),k0(new CM)]),Q([x("Delete")]))]))]))]))}function $_(Z,J){let K=b(Q([])),X=a(Z,"GetOAuthClients",K,p8),W;return W=X[1],j(Q([H("bg-zinc-800/50 rounded p-6")]),Q([B4(Q([H("text-xl font-semibold text-zinc-300 mb-4")]),Q([x("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 A8;else if(V==="error")I=new e1;else I=new Z8;return c8(I,G)}else return G0()})(),(()=>{if(J.show_new_client_form)return b_(J);else return j(Q([H("mb-4")]),Q([J8(!1,new QJ,"Register New Client")]))})(),(()=>{if(W instanceof j1)return j(Q([H("py-4 text-center text-zinc-600 text-sm")]),Q([x("Loading clients...")]));else if(W instanceof L1){let Y=W[0];return j(Q([H("py-4 text-center text-red-400 text-sm")]),Q([x("Error: "+Y)]))}else{let Y=W[0];return j(Q([H("space-y-3")]),H0(Y.oauth_clients,(V)=>{return v_(V,J)}))}})(),(()=>{let Y=J.delete_confirm_client_id;if(Y instanceof L){let V=Y[0];return g_(V)}else return G0()})()]))}function __(Z,J){return j(Q([H("bg-zinc-800/50 rounded p-6")]),Q([B4(Q([H("text-xl font-semibold text-zinc-300 mb-4")]),Q([x("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 A8;else if(X==="error")Y=new e1;else Y=new Z8;return c8(Y,W)}else return G0()})(),j(Q([H("mb-6")]),Q([O4(Q([H("text-sm font-medium text-zinc-400 mb-2")]),Q([x("Current Admins")])),lJ(Q([H("space-y-2")]),H0(Z.admin_dids,(K)=>{return y5(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([x(K)])),(()=>{let X=J.remove_confirm_did;if(X instanceof L)if(X[0]===K)return j(Q([H("flex gap-2")]),Q([E0(Q([H("text-xs px-2 py-1 text-zinc-400 hover:text-zinc-300 cursor-pointer"),k0(new UM)]),Q([x("Cancel")])),E0(Q([H("text-xs px-2 py-1 text-red-400 hover:bg-red-900/30 rounded cursor-pointer"),k0(new Xh)]),Q([x("Confirm Remove")]))]));else return E0(Q([H("text-xs px-2 py-1 text-zinc-500 hover:text-red-400 transition-colors cursor-pointer"),k0(new WJ(K))]),Q([x("Remove")]));else return E0(Q([H("text-xs px-2 py-1 text-zinc-500 hover:text-red-400 transition-colors cursor-pointer"),k0(new WJ(K))]),Q([x("Remove")]))})()]))}))])),j(Q([H("border-t border-zinc-800 pt-4")]),Q([O4(Q([H("text-sm font-medium text-zinc-400 mb-2")]),Q([x("Add Admin")])),j(Q([H("flex gap-2")]),Q([N1(Q([M0("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"),q1("did:plc:... or did:web:..."),o0(J.new_admin_did),K1((K)=>{return new xM(K)})])),J8(J.new_admin_did==="",new wM,"Add Admin")])),x0(Q([H("text-xs text-zinc-500 mt-2")]),Q([x("Enter the DID of the user you want to make an admin.")]))]))]))}function Vh(Z,J,K){if(K){let X=b(Q([])),W=a(Z,"GetSettings",X,T1),Y;Y=W[1];let V=L_(Z);return j(Q([H("max-w-2xl space-y-6")]),Q([_1(Q([H("text-2xl font-semibold text-zinc-300 mb-8")]),Q([x("Settings")])),(()=>{if(Y instanceof j1)return j(Q([H("py-8 text-center text-zinc-600 text-sm")]),Q([x("Loading settings...")]));else if(Y instanceof L1){let G=Y[0];return j(Q([H("py-8 text-center text-red-400 text-sm")]),Q([x("Error: "+G)]))}else{let G=Y[0];return j(Q([H("space-y-6")]),Q([y_(G.settings,J,V),f_(J),$_(Z,J),__(G.settings,J),k_(J)]))}})()]))}else return j(Q([H("max-w-2xl space-y-6")]),Q([_1(Q([H("text-2xl font-semibold text-zinc-300 mb-8")]),Q([x("Settings")])),j(Q([H("bg-zinc-800/50 rounded p-8 text-center border border-zinc-700")]),Q([x0(Q([H("text-zinc-400 mb-4")]),Q([x("Access Denied")])),x0(Q([H("text-sm text-zinc-500")]),Q([x("You must be an administrator to access the settings page.")]))]))]))}function Gh(){return window.location.origin}function GJ(Z,J){window.setTimeout(()=>J(),Z)}var u_="src/quickslice_client.gleam";class s5 extends O{}class O5 extends O{}class FJ extends O{}class IL extends O{}class zJ extends O{}class l5 extends O{}class x8 extends O{}class Ih 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 d0 extends O{constructor(Z,J,K){super();this[0]=Z,this[1]=J,this[2]=K}}class MM extends O{constructor(Z,J){super();this[0]=Z,this[1]=J}}class RM extends O{constructor(Z,J){super();this[0]=Z,this[1]=J}}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 zL extends O{constructor(Z){super();this[0]=Z}}class NL extends O{constructor(Z){super();this[0]=Z}}class FL extends O{constructor(Z){super();this[0]=Z}}class yM extends O{constructor(Z){super();this[0]=Z}}class HL extends O{constructor(Z){super();this[0]=Z}}class QL extends O{constructor(Z){super();this[0]=Z}}class IJ extends O{}class DL extends O{}class NJ extends O{constructor(Z){super();this[0]=Z}}class fM extends O{constructor(Z){super();this[0]=Z}}class kM extends O{constructor(Z){super();this[0]=Z}}class bM extends O{}class hM extends O{}class VL extends O{constructor(Z){super();this[0]=Z}}class GL extends O{}function B5(Z){let J=l1(Z,f0);if(J instanceof E){let K=J[0],X=g("errors",U0(g("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 U)return new h;else{let V=Y.head;return new L(V)}}else return new h}else return new h}function d_(Z){let J=Z.query;if(J instanceof L){let K=J[0],X,W=UJ(K);X=F8(W,Q([]));let Y=X,V=qZ(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=qZ(Y,"error_description"),F=F8(N,I),D=NR(F);return z=F8(D,I),new L("Login failed: "+z)}}else return new h}else return J}function c_(Z,J){if(J instanceof d0){let K=J[2];if(K instanceof E){let X=J[0],W=J[1],Y=K[0],V=uk(Z.cache,X,W,Y,0),G=u0(V,Z.registry,(m,y,_)=>{return new d0(m,y,_)},()=>{return 0}),I,z;I=G[0],z=G[1];let N;if(X==="IsBackfilling"){let m=pZ(Y);if(m instanceof E){let y=m[0],_=Z.backfill_status;if(y.is_backfilling&&_ instanceof HK)N=new T8;else N=nk(Z.backfill_status,y.is_backfilling)}else N=Z.backfill_status}else N=Z.backfill_status;let F=N,D,B=_5(Z.backfill_status),T=_5(F);if(B)if(T&&X==="IsBackfilling")D=Q([z1((m)=>{return GJ(1e4,()=>{return m(new IJ)})})]);else D=Q([]);else if(T&&X==="IsBackfilling")D=Q([z1((m)=>{return GJ(1e4,()=>{return m(new IJ)})})]);else D=Q([]);let P=D,S,q=Z.backfill_status;if(q instanceof u8&&F instanceof $5)S=!0;else if(q instanceof T8&&F instanceof $5)S=!0;else S=!1;let C=S,M;if(X==="GetCurrentSession"){let m=sj(Y);if(m instanceof E){let _=m[0].current_session;if(_ instanceof L){let t=_[0];M=new Ih(t.did,t.handle,t.is_admin)}else M=new x8}else M=new x8}else M=Z.auth_state;let k=M,w;if(X==="UpdateSettings")w=n5(Z.settings_page_model,"success","Settings updated successfully");else if(X==="UploadLexicons"){ij("lexicon-file-input");let m=B5(Y);if(m instanceof L){let y=m[0];w=VJ(Z.settings_page_model,"error",y)}else w=VJ(Z.settings_page_model,"success","Lexicons uploaded successfully")}else if(X==="ResetAll"){let m,y=Z.settings_page_model;m=new Y0("",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),w=n5(m,"success","All data has been reset")}else if(X==="GetSettings"){let m=T1(Y);if(m instanceof E){let y=m[0],_=Z.settings_page_model;w=new Y0(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)}else w=Z.settings_page_model}else if(X==="CreateOAuthClient"){let m=B5(Y);if(m instanceof L){let y=m[0];w=C8(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=C8(Z.settings_page_model,"success",_)}}else if(X==="UpdateOAuthClient"){let m=B5(Y);if(m instanceof L){let y=m[0];w=C8(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=C8(Z.settings_page_model,"success",_)}}else if(X==="DeleteOAuthClient"){let m=B5(Y);if(m instanceof L){let y=m[0];w=C8(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=C8(Z.settings_page_model,"success",_)}}else if(X==="AddAdmin"){let m=B5(Y);if(m instanceof L){let y=m[0];w=i5(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=i5(Z.settings_page_model,"success",_)}}else if(X==="RemoveAdmin"){let m=B5(Y);if(m instanceof L){let y=m[0];w=i5(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=i5(Z.settings_page_model,"success",_)}}else w=Z.settings_page_model;let f=w,$;if(X==="BackfillActor"){let m=Z.backfill_page_model,y=rU(m,!1),_=oj(y,"success","Backfill started for "+Z.backfill_page_model.did_input);$=((t)=>{return new D5("",t.is_submitting,t.alert)})(_)}else $=Z.backfill_page_model;let c=$,n;if(X==="ResetAll"){let m=m0(I,"GetStatistics",b(Q([]))),y=m0(m,"GetActivityBuckets",b(Q([["range",d(F5(Z.time_range))]]))),_=m0(y,"GetRecentActivity",b(Q([["hours",W1(24)]]))),t=a(_,"GetSettings",b(Q([])),T1),o;o=t[0];let K0=u0(o,Z.registry,(y0,H1,P1)=>{return new d0(y0,H1,P1)},()=>{return 0}),w0,C0;w0=K0[0],C0=K0[1],n=[w0,C0]}else if(X==="UploadLexicons")n=[m0(I,"GetStatistics",b(Q([]))),Q([])];else if(X==="CreateOAuthClient"){let m=m0(I,"GetOAuthClients",b(Q([]))),y=a(m,"GetOAuthClients",b(Q([])),p8),_;_=y[0];let t=u0(_,Z.registry,(w0,C0,y0)=>{return new d0(w0,C0,y0)},()=>{return 0}),o,K0;o=t[0],K0=t[1],n=[o,K0]}else if(X==="UpdateOAuthClient"){let m=m0(I,"GetOAuthClients",b(Q([]))),y=a(m,"GetOAuthClients",b(Q([])),p8),_;_=y[0];let t=u0(_,Z.registry,(w0,C0,y0)=>{return new d0(w0,C0,y0)},()=>{return 0}),o,K0;o=t[0],K0=t[1],n=[o,K0]}else if(X==="DeleteOAuthClient"){let m=m0(I,"GetOAuthClients",b(Q([]))),y=a(m,"GetOAuthClients",b(Q([])),p8),_;_=y[0];let t=u0(_,Z.registry,(w0,C0,y0)=>{return new d0(w0,C0,y0)},()=>{return 0}),o,K0;o=t[0],K0=t[1],n=[o,K0]}else n=[I,Q([])];let r=n,X0,B0;X0=r[0],B0=r[1];let L0;if(C){let m=m0(X0,"GetStatistics",b(Q([]))),y=m0(m,"GetActivityBuckets",b(Q([["range",d(F5(Z.time_range))]]))),_=m0(y,"GetRecentActivity",b(Q([["hours",W1(24)]]))),t=a(_,"GetStatistics",b(Q([])),H5),o;o=t[0];let K0=a(o,"GetActivityBuckets",b(Q([["range",d(F5(Z.time_range))]])),p5),w0;w0=K0[0];let C0=a(w0,"GetRecentActivity",b(Q([["hours",W1(24)]])),OZ),y0;y0=C0[0];let H1=u0(y0,Z.registry,(w1,V8,w8)=>{return new d0(w1,V8,w8)},()=>{return 0}),P1,S1;P1=H1[0],S1=H1[1],L0=[P1,S1]}else L0=[X0,Q([])];let I0=L0,D0,W0;D0=I0[0],W0=I0[1];let J0;if(X==="GetCurrentSession"){let m=Z.route;if(k instanceof x8)if(m instanceof O5)J0=Q([v5("/",new h,new h)]);else J0=Q([]);else if(!k.is_admin&&m instanceof O5)J0=Q([v5("/",new h,new h)]);else J0=Q([])}else if(X==="GetSettings"){let m=T1(Y);if(m instanceof E){let y=m[0],_=bL(y.settings.admin_dids),t=Z.route;if(_)if(t instanceof l5)J0=Q([]);else J0=Q([v5("/onboarding",new h,new h)]);else if(t instanceof l5)J0=Q([v5("/",new h,new h)]);else J0=Q([])}else J0=Q([])}else J0=Q([]);let Z0=J0;return[new l(D0,Z.registry,Z.route,Z.time_range,f,c,F,k,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),Q1((()=>{let m=Q([z,B0,W0,Z0,P]);return vL(m)})())]}else{let X=J[0],W=K[0],Y;if(X==="UpdateSettings")Y=n5(Z.settings_page_model,"error","Error: "+W);else if(X==="ResetAll")Y=n5(Z.settings_page_model,"error","Error: "+W);else if(X==="TriggerBackfill")Y=n5(Z.settings_page_model,"error","Error: "+W);else if(X==="UploadLexicons")Y=VJ(Z.settings_page_model,"error","Error: "+W);else if(X==="CreateOAuthClient")Y=C8(Z.settings_page_model,"error","Error: "+W);else if(X==="UpdateOAuthClient")Y=C8(Z.settings_page_model,"error","Error: "+W);else if(X==="DeleteOAuthClient")Y=C8(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=rU(z,!1);G=oj(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 MM){let K=J[0],X=J[1],W=vj(Z.cache,K,X),Y=n5(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 RM){let K=J[0],X=J[1],W=bj(Z.cache,K),Y,G=a(W,"GetSettings",b(Q([])),T1)[1];if(G instanceof y1)Y=G[0].settings.domain_authority;else Y=Z.settings_page_model.domain_authority_input;let I=Y,z,N=E5(X,"Response body: ");if(N instanceof E){let P=N[0][1],S=B5(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 Y0(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);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 jM){let K=J[0],X=J[1],W=vj(Z.cache,K,X),Y=i5(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 LM){let K=J[0],X=J[1],W=bj(Z.cache,K),Y,V=E5(X,"Response body: ");if(V instanceof E){let z=V[0][1],N=B5(z);if(N instanceof L)Y=N[0];else Y=X}else Y=X;let G=Y,I=i5(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 zL){let K=J[0],X;if(Z.route instanceof O5)X=Wh(Z.settings_page_model);else X=Z.settings_page_model;let Y=X;if(K instanceof s5){let V=a(Z.cache,"GetStatistics",b(Q([])),H5),G;G=V[0];let I=a(G,"GetSettings",b(Q([])),T1),z;z=I[0];let N=a(z,"GetActivityBuckets",b(Q([["range",d(F5(Z.time_range))]])),p5),F;F=N[0];let D=a(F,"GetRecentActivity",b(Q([["hours",W1(24)]])),OZ),B;B=D[0];let T=u0(B,Z.registry,(q,C,M)=>{return new d0(q,C,M)},()=>{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),Q1(S)]}else if(K instanceof O5){let V,G=Z.auth_state;if(G instanceof x8)V=!1;else V=G.is_admin;if(V){let z=a(Z.cache,"GetSettings",b(Q([])),T1),N;N=z[0];let F=a(N,"GetOAuthClients",b(Q([])),p8),D;D=F[0];let B=u0(D,Z.registry,(S,q,C)=>{return new d0(S,q,C)},()=>{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),Q1(P)]}else return[Z,v5("/",new h,new h)]}else if(K instanceof FJ){let V=a(Z.cache,"GetLexicons",b(Q([])),KJ),G;G=V[0];let I=u0(G,Z.registry,(F,D,B)=>{return new d0(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),Q1(N)]}else if(K instanceof zJ)if(Z.auth_state instanceof x8)return[Z,v5("/",new h,new h)];else{let G=sU(Z.backfill_page_model);return[new l(Z.cache,Z.registry,new zJ,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 l5)return[new l(Z.cache,Z.registry,new l5,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 NL){let K=J[0];if(K instanceof tU){let X=K[0],W=b(Q([["range",d(F5(X))]])),Y=a(Z.cache,"GetActivityBuckets",W,p5),V;V=Y[0];let G=u0(V,Z.registry,(N,F,D)=>{return new d0(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),Q1(z)]}else if(K instanceof oU){let X=b(Q([])),W=m0(Z.cache,"TriggerBackfill",X),Y=a(W,"TriggerBackfill",X,vb),V;V=Y[0];let G=u0(V,Z.registry,(F,D,B)=>{return new d0(F,D,B)},()=>{return 0}),I,z;I=G[0],z=G[1];let N=z1((F)=>{return GJ(1e4,()=>{return F(new IJ)})});return[new l(I,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,new u8,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),Q1(Q([Q1(z),N]))]}else return tj("/graphiql"),[Z,i()]}else if(J instanceof FL){let K=J[0];if(K instanceof eU){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(X,Y.reset_confirmation,Y.selected_file,new h,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);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 ZM)return[Z,i()];else if(K instanceof JM){C5("[UploadLexicons] Button clicked, creating file effect");let X=z1((W)=>{return C5("[UploadLexicons] Effect running, calling read_file_as_base64"),nj("lexicon-file-input",(Y)=>{return C5("[UploadLexicons] Callback received result"),W(new QL(Y))})});return[Z,X]}else if(K instanceof KM){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(Y.domain_authority_input,X,Y.selected_file,new h,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);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 YM){let X=b(Q([["confirm",d(Z.settings_page_model.reset_confirmation)]])),W=m0(Z.cache,"ResetAll",X),Y=a(W,"ResetAll",X,bb),V;V=Y[0];let G=u0(V,Z.registry,(B,T,P)=>{return new d0(B,T,P)},()=>{return 0}),I,z;I=G[0],z=G[1];let N,F=Z.settings_page_model;N=new Y0(F.domain_authority_input,"",F.selected_file,new h,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);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),Q1(z)]}else if(K instanceof XM){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,new h,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);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 WM){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,new h,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);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 QM){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,new h,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);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 VM){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,new h,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);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 GM){let X,W=Z.settings_page_model;X=new Y0(W.domain_authority_input,W.reset_confirmation,W.selected_file,new h,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);let Y=X,V=b(Q([])),G=a(Z.cache,"GetSettings",V,T1),I;if(I=G[1],I instanceof y1){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",d(B)],F);let T=D,P,S=Z.settings_page_model.relay_url_input;if(S==="")P=T;else P=A(["relayUrl",d(S)],T);let q=P,C,M=Z.settings_page_model.plc_directory_url_input;if(M==="")C=q;else C=A(["plcDirectoryUrl",d(M)],q);let k=C,w,f=Z.settings_page_model.jetstream_url_input;if(f==="")w=k;else w=A(["jetstreamUrl",d(f)],k);let $=w,c,n=Z.settings_page_model.oauth_supported_scopes_input;if(n==="")c=$;else c=A(["oauthSupportedScopes",d(n)],$);let r=c,X0=A(["adminDids",j0(N,d)],r);if(X0 instanceof U){let B0=b(X0),L0=Q([["id",d("Settings:singleton")]]),I0,D0=Z.settings_page_model.domain_authority_input;if(D0==="")I0=L0;else I0=A(["domainAuthority",d(D0)],L0);let W0=I0,J0,Z0=Z.settings_page_model.relay_url_input;if(Z0==="")J0=W0;else J0=A(["relayUrl",d(Z0)],W0);let m=J0,y,_=Z.settings_page_model.plc_directory_url_input;if(_==="")y=m;else y=A(["plcDirectoryUrl",d(_)],m);let t=y,o,K0=Z.settings_page_model.jetstream_url_input;if(K0==="")o=t;else o=A(["jetstreamUrl",d(K0)],t);let w0=o,C0,y0=Z.settings_page_model.oauth_supported_scopes_input;if(y0==="")C0=w0;else C0=A(["oauthSupportedScopes",d(y0)],w0);let H1=C0,P1=A(["adminDids",j0(N,d)],H1),S1=b(P1),w1=cZ(Z.cache,Z.registry,"UpdateSettings",B0,"Settings:singleton",(u1)=>{return S1},YJ,(u1,d1,HJ)=>{if(d1 instanceof E)return new MM(u1,HJ);else{let vM=d1[0];return new RM(u1,vM)}}),V8,w8;return V8=w1[0],w8=w1[2],[new l(V8,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),w8]}else if(X0.tail instanceof U)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 L0=b(X0),I0=Q([["id",d("Settings:singleton")]]),D0,W0=Z.settings_page_model.domain_authority_input;if(W0==="")D0=I0;else D0=A(["domainAuthority",d(W0)],I0);let J0=D0,Z0,m=Z.settings_page_model.relay_url_input;if(m==="")Z0=J0;else Z0=A(["relayUrl",d(m)],J0);let y=Z0,_,t=Z.settings_page_model.plc_directory_url_input;if(t==="")_=y;else _=A(["plcDirectoryUrl",d(t)],y);let o=_,K0,w0=Z.settings_page_model.jetstream_url_input;if(w0==="")K0=o;else K0=A(["jetstreamUrl",d(w0)],o);let C0=K0,y0,H1=Z.settings_page_model.oauth_supported_scopes_input;if(H1==="")y0=C0;else y0=A(["oauthSupportedScopes",d(H1)],C0);let P1=y0,S1=A(["adminDids",j0(N,d)],P1),w1=b(S1),V8=cZ(Z.cache,Z.registry,"UpdateSettings",L0,"Settings:singleton",(d1)=>{return w1},YJ,(d1,HJ,vM)=>{if(HJ instanceof E)return new MM(d1,vM);else{let Fh=HJ[0];return new RM(d1,Fh)}}),w8,u1;return w8=V8[0],u1=V8[2],[new l(w8,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 QJ){let X,W=Z.settings_page_model;X=new Y0(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);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 IM){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(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);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 zM){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(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);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 NM){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(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);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 FM){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(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);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 HM){let X,W=Y4(Z.settings_page_model.new_client_redirect_uris,` 152 + `),Y=PJ(W,(C)=>{return Y8(K4(C))>0});X=H0(Y,K4);let V=X,G=b(Q([["clientName",d(Z.settings_page_model.new_client_name)],["clientType",d(Z.settings_page_model.new_client_type)],["redirectUris",j0(V,d)],["scope",d(Z.settings_page_model.new_client_scope)]])),I=m0(Z.cache,"CreateOAuthClient",G),z=a(I,"CreateOAuthClient",G,Hb),N;N=z[0];let F=m0(N,"GetOAuthClients",b(Q([]))),D=u0(F,Z.registry,(C,M,k)=>{return new d0(C,M,k)},()=>{return 0}),B,T;B=D[0],T=D[1];let P,S=Z.settings_page_model;P=new Y0(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);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),Q1(T)]}else if(K instanceof DM){let X=K[0],W=a(Z.cache,"GetOAuthClients",b(Q([])),p8),Y;Y=W[1];let V;if(Y instanceof y1){let I=Y[0],z=JR(I.oauth_clients,(N)=>{return N.client_id===X});if(z instanceof E){let N=z[0],F=Z.settings_page_model;V=new Y0(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,a8(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)}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 BM){let X,W=Z.settings_page_model;X=new Y0(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 h,"","","",W.visible_secrets,W.delete_confirm_client_id,W.oauth_alert,W.new_admin_did,W.remove_confirm_did,W.admin_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 OM){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(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);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 TM){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(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);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 PM){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(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);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 SM){let X=Z.settings_page_model.editing_client_id;if(X instanceof L){let W=X[0],Y,V=Y4(Z.settings_page_model.edit_client_redirect_uris,` 154 + `),G=PJ(V,(k)=>{return Y8(K4(k))>0});Y=H0(G,K4);let I=Y,z=b(Q([["clientId",d(W)],["clientName",d(Z.settings_page_model.edit_client_name)],["redirectUris",j0(I,d)],["scope",d(Z.settings_page_model.edit_client_scope)]])),N=m0(Z.cache,"UpdateOAuthClient",z),F=a(N,"UpdateOAuthClient",z,_b),D;D=F[0];let B=m0(D,"GetOAuthClients",b(Q([]))),T=u0(B,Z.registry,(k,w,f)=>{return new d0(k,w,f)},()=>{return 0}),P,S;P=T[0],S=T[1];let q,C=Z.settings_page_model;q=new Y0(C.domain_authority_input,C.reset_confirmation,C.selected_file,C.alert,C.relay_url_input,C.plc_directory_url_input,C.jetstream_url_input,C.oauth_supported_scopes_input,C.lexicons_alert,C.show_new_client_form,C.new_client_name,C.new_client_type,C.new_client_redirect_uris,C.new_client_scope,new h,"","","",C.visible_secrets,C.delete_confirm_client_id,C.oauth_alert,C.new_admin_did,C.remove_confirm_did,C.admin_alert);let M=q;return[new l(P,Z.registry,Z.route,Z.time_range,M,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete,Z.oauth_error),Q1(S)]}else return[Z,i()]}else if(K instanceof AM){let X=K[0],W;if(Q4(Z.settings_page_model.visible_secrets,X))W=Ey(Z.settings_page_model.visible_secrets,X);else W=UZ(Z.settings_page_model.visible_secrets,X);let V=W,G,I=Z.settings_page_model;G=new Y0(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);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 qM){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(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);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 EM){let X,W=Z.settings_page_model;X=new Y0(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 h,W.oauth_alert,W.new_admin_did,W.remove_confirm_did,W.admin_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 CM){let X=Z.settings_page_model.delete_confirm_client_id;if(X instanceof L){let W=X[0],Y=b(Q([["clientId",d(W)]])),V=m0(Z.cache,"DeleteOAuthClient",Y),G=a(V,"DeleteOAuthClient",Y,Bb),I;I=G[0];let z=m0(I,"GetOAuthClients",b(Q([]))),N=u0(z,Z.registry,(S,q,C)=>{return new d0(S,q,C)},()=>{return 0}),F,D;F=N[0],D=N[1];let B,T=Z.settings_page_model;B=new Y0(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 h,T.oauth_alert,T.new_admin_did,T.remove_confirm_did,T.admin_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),Q1(D)]}else return[Z,i()]}else if(K instanceof xM){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(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);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 wM){let X=b(Q([])),W=a(Z.cache,"GetSettings",X,T1),Y;if(Y=W[1],Y instanceof y1){let V=Y[0],G=Z.settings_page_model.new_admin_did,I=V.settings.admin_dids,z=V.settings.domain_authority,N;if(ZR(I,G))N=I;else N=_0(I,Q([G]));let D=N,B=b(Q([["domainAuthority",d(z)],["adminDids",j0(D,d)]])),T=b(Q([["id",d("Settings:singleton")],["domainAuthority",d(z)],["adminDids",j0(D,d)]])),P=cZ(Z.cache,Z.registry,"UpdateSettings",B,"Settings:singleton",(w)=>{return T},YJ,(w,f,$)=>{if(f instanceof E)return new jM(w,$);else{let c=f[0];return new LM(w,c)}}),S,q;S=P[0],q=P[2];let C,M=Z.settings_page_model;C=new Y0(M.domain_authority_input,M.reset_confirmation,M.selected_file,M.alert,M.relay_url_input,M.plc_directory_url_input,M.jetstream_url_input,M.oauth_supported_scopes_input,M.lexicons_alert,M.show_new_client_form,M.new_client_name,M.new_client_type,M.new_client_redirect_uris,M.new_client_scope,M.editing_client_id,M.edit_client_name,M.edit_client_redirect_uris,M.edit_client_scope,M.visible_secrets,M.delete_confirm_client_id,M.oauth_alert,"",M.remove_confirm_did,M.admin_alert);let k=C;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 WJ){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(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);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 UM){let X,W=Z.settings_page_model;X=new Y0(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 h,W.admin_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=b(Q([])),V=a(Z.cache,"GetSettings",Y,T1),G;if(G=V[1],G instanceof y1){let I=G[0],z=I.settings.admin_dids,N=I.settings.domain_authority,F=PJ(z,(k)=>{return k!==W}),D=b(Q([["domainAuthority",d(N)],["adminDids",j0(F,d)]])),B=b(Q([["id",d("Settings:singleton")],["domainAuthority",d(N)],["adminDids",j0(F,d)]])),T=cZ(Z.cache,Z.registry,"UpdateSettings",D,"Settings:singleton",(k)=>{return B},YJ,(k,w,f)=>{if(w instanceof E)return new jM(k,f);else{let $=w[0];return new LM(k,$)}}),P,S;P=T[0],S=T[2];let q,C=Z.settings_page_model;q=new Y0(C.domain_authority_input,C.reset_confirmation,C.selected_file,C.alert,C.relay_url_input,C.plc_directory_url_input,C.jetstream_url_input,C.oauth_supported_scopes_input,C.lexicons_alert,C.show_new_client_form,C.new_client_name,C.new_client_type,C.new_client_redirect_uris,C.new_client_scope,C.editing_client_id,C.edit_client_name,C.edit_client_redirect_uris,C.edit_client_scope,C.visible_secrets,C.delete_confirm_client_id,C.oauth_alert,C.new_admin_did,new h,C.admin_alert);let M=q;return[new l(P,Z.registry,Z.route,Z.time_range,M,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 yM){let K=J[0],X=Jh(K);return[Z,yR(X,(W)=>{return new yM(W)})]}else if(J instanceof HL){let K=J[0];if(K instanceof lU){let X=K[0],W,Y,V=Z.backfill_page_model;Y=new D5(X,V.is_submitting,V.alert),W=sU(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=b(Q([["did",d(X)]])),Y,V=Z.backfill_page_model,G=rU(V,!0);Y=sU(G);let I=Y,z=m0(Z.cache,"BackfillActor",W),N=a(z,"BackfillActor",W,zb),F;F=N[0];let D=u0(F,Z.registry,(P,S,q)=>{return new d0(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),Q1(T)]}}else if(J instanceof QL){let K=J[0];if(K instanceof E){let X=K[0];C5("[FileRead] Successfully read file, uploading...");let W=b(Q([["zipBase64",d(X)]])),Y=m0(Z.cache,"UploadLexicons",W),V=a(Y,"UploadLexicons",W,cb),G;G=V[0];let I=u0(G,Z.registry,(T,P,S)=>{return new d0(T,P,S)},()=>{return 0}),z,N;z=I[0],N=I[1];let F,D=Z.settings_page_model;F=new Y0(D.domain_authority_input,D.reset_confirmation,new h,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);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),Q1(N)]}else{let X=K[0];C5("[FileRead] Error reading file: "+X);let W=VJ(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 IJ)if(_5(Z.backfill_status)){let X=pk(Z.cache,Z.registry,(V,G,I)=>{return new d0(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),Q1(Y)]}else return[Z,i()];else if(J instanceof DL)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=S8(Z.login_autocomplete,new DK(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),yR(Y,(V)=>{if(V instanceof q4){let G=V[0];return new VL(G)}else return new NJ("")})]}else if(J instanceof fM){let K=J[0];if(K==="ArrowDown"){let X=S8(Z.login_autocomplete,new BK),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=S8(Z.login_autocomplete,new OK),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=ok(Z.login_autocomplete);if(X instanceof L){let W=X[0],Y=S8(Z.login_autocomplete,new iZ(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=S8(Z.login_autocomplete,new lZ),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 kM){let K=J[0],X,W=JR(Z.login_autocomplete.actors,(I)=>{return I.handle===K});if(W instanceof E)X=W[0];else X=new nZ("",K,"",new h);let Y=X,V=S8(Z.login_autocomplete,new iZ(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 bM){let K=z1((X)=>{return GJ(150,()=>{return X(new GL)})});return[Z,K]}else if(J instanceof hM){let K=S8(Z.login_autocomplete,new gj),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 VL){let K=J[0],X=S8(Z.login_autocomplete,new q4(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 GL){let K=S8(Z.login_autocomplete,new lZ),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 h),i()]}function p_(Z){let J,K=Z.auth_state;if(K instanceof x8)J=[!1,!1];else J=[K.is_admin,!0];let X=J,W,Y;return W=X[0],Y=X[1],vZ(tb(Z.cache,Z.time_range,Z.backfill_status,W,Y),(V)=>{return new NL(V)})}function n_(Z){let J,K=Z.auth_state;if(K instanceof x8)J=!1;else J=K.is_admin;let X=J;return vZ(Vh(Z.cache,Z.settings_page_model,X),(W)=>{return new FL(W)})}function i_(Z){return vZ(Kh(Z.cache),(J)=>{return new yM(J)})}function l_(Z){return j(Q([]),Q([_1(Q([H("text-xl font-bold text-zinc-100 mb-4")]),Q([s0("Upload")])),x0(Q([H("text-zinc-400")]),Q([s0("Upload and manage data")]))]))}function s_(Z){return vZ(lb(Z.backfill_page_model),(J)=>{return new HL(J)})}function r_(Z){return Yh(Z.login_autocomplete,(J)=>{return new NJ(J)},(J)=>{return new kM(J)},(J)=>{return new fM(J)},()=>{return new bM},()=>{return new hM})}function a_(Z){let J,K=Z.auth_state;if(K instanceof x8)J=new h;else{let{handle:W,is_admin:Y}=K;J=new L([W,Y])}let X=J;return j(Q([H("bg-zinc-950 text-zinc-300 font-mono min-h-screen")]),Q([j(Q([H("max-w-4xl mx-auto px-4 py-6 sm:px-6 sm:py-12")]),Q([(()=>{if(Z.route instanceof l5)return G0();else return Vb(X,_5(Z.backfill_status),Z.mobile_menu_open,new DL,Z.login_autocomplete,(Y)=>{return new NJ(Y)},(Y)=>{return new kM(Y)},(Y)=>{return new fM(Y)},()=>{return new bM},()=>{return new hM})})(),(()=>{let W=Z.oauth_error;if(W instanceof L){let Y=W[0];return c8(new e1,Y)}else return G0()})(),(()=>{let W=Z.route;if(W instanceof s5)return p_(Z);else if(W instanceof O5)return n_(Z);else if(W instanceof FJ)return i_(Z);else if(W instanceof IL)return l_(Z);else if(W instanceof zJ)return s_(Z);else return r_(Z)})()]))]))}function zh(Z){let J=Z.path;if(J==="/")return new s5;else if(J==="/settings")return new O5;else if(J==="/lexicons")return new FJ;else if(J==="/upload")return new IL;else if(J==="/backfill")return new zJ;else if(J==="/onboarding")return new l5;else return new s5}function t_(Z){return new zL(zh(Z))}function o_(Z){let J=Gh()+"/admin/graphql",K=$k(J),X=Gb(),W,Y=Sj();if(Y instanceof E){let M=Y[0];W=[zh(M),d_(M)]}else W=[new s5,new h];let V=W,G,I;G=V[0],I=V[1];let z=a(K,"GetCurrentSession",b(Q([])),sj),N;N=z[0];let F=a(N,"IsBackfilling",b(Q([])),pZ),D;D=F[0];let B;if(G instanceof s5){let M=a(D,"GetStatistics",b(Q([])),H5),k;k=M[0];let w=a(k,"GetSettings",b(Q([])),T1),f;f=w[0];let $=a(f,"GetActivityBuckets",b(Q([["range",d("ONE_DAY")]])),p5),c;c=$[0];let n=a(c,"GetRecentActivity",b(Q([["hours",W1(24)]])),OZ),r;r=n[0];let X0=u0(r,X,(I0,D0,W0)=>{return new d0(I0,D0,W0)},()=>{return 0}),B0,L0;B0=X0[0],L0=X0[1],B=[B0,L0]}else if(G instanceof O5){let M=a(D,"GetSettings",b(Q([])),T1),k;k=M[0];let w=a(k,"GetOAuthClients",b(Q([])),p8),f;f=w[0];let $=u0(f,X,(r,X0,B0)=>{return new d0(r,X0,B0)},()=>{return 0}),c,n;c=$[0],n=$[1],B=[c,n]}else if(G instanceof FJ){let M=a(D,"GetLexicons",b(Q([])),KJ),k;k=M[0];let w=u0(k,X,(c,n,r)=>{return new d0(c,n,r)},()=>{return 0}),f,$;f=w[0],$=w[1],B=[f,$]}else B=[D,Q([])];let T=B,P,S;P=T[0],S=T[1];let q=Fk(t_),C=Q1(A(q,S));return[new l(P,X,G,new c5,Qh(),ib(),new HK,new x8,!1,tk(),I),C]}function Nh(){let Z=Kk(o_,c_,a_),J=Yk(Z,"#app",void 0);if(!(J instanceof E))throw n8("let_assert",u_,"quickslice_client",122,"main","Pattern match failed, no pattern matched the value.",{value:J,start:3390,end:3439,pattern_start:3401,pattern_end:3406});return J}Nh();
+49 -15
server/src/handlers/admin_oauth_authorize.gleam
··· 1 1 /// Admin OAuth authorize handler 2 2 /// POST /admin/oauth/authorize - Initiates ATProtocol OAuth for admin login 3 + import database/repositories/config as config_repo 3 4 import database/repositories/oauth_atp_requests 4 5 import database/repositories/oauth_atp_sessions 5 6 import database/types.{OAuthAtpRequest, OAuthAtpSession} ··· 42 43 } 43 44 44 45 case login_hint == "" { 45 - True -> error_response(400, "login_hint is required") 46 + True -> 47 + error_redirect( 48 + conn, 49 + "invalid_request", 50 + "Please enter a handle to login", 51 + ) 46 52 False -> 47 53 process_authorize( 48 54 conn, ··· 75 81 } 76 82 77 83 case did_result { 78 - Error(_) -> error_response(400, "Failed to resolve handle to DID") 84 + Error(_) -> 85 + error_redirect(conn, "invalid_request", "Could not find that handle") 79 86 Ok(did) -> { 80 87 // Generate session_id 81 88 let session_id = token_generator.generate_session_id() ··· 112 119 ) 113 120 114 121 case oauth_atp_requests.insert(conn, oauth_req) { 115 - Error(_) -> error_response(500, "Failed to store OAuth request") 122 + Error(_) -> 123 + error_redirect(conn, "server_error", "Failed to start login") 116 124 Ok(_) -> { 117 125 // Create ATP session 118 126 let atp_session = ··· 134 142 ) 135 143 136 144 case oauth_atp_sessions.insert(conn, atp_session) { 137 - Error(_) -> error_response(500, "Failed to store ATP session") 145 + Error(_) -> 146 + error_redirect(conn, "server_error", "Failed to start login") 138 147 Ok(_) -> { 139 148 // Resolve DID to get PDS endpoint 140 149 case did_resolver.resolve_did_with_cache(did_cache, did, True) { 141 - Error(_) -> error_response(400, "Failed to resolve DID") 150 + Error(_) -> 151 + error_redirect( 152 + conn, 153 + "invalid_request", 154 + "Could not resolve account", 155 + ) 142 156 Ok(did_doc) -> { 143 157 case did_resolver.get_pds_endpoint(did_doc) { 144 158 None -> 145 - error_response(400, "No PDS endpoint in DID document") 159 + error_redirect( 160 + conn, 161 + "invalid_request", 162 + "Account has no PDS configured", 163 + ) 146 164 Some(pds_endpoint) -> { 147 165 // Get authorization server metadata 148 166 case fetch_auth_server_metadata(pds_endpoint) { 149 - Error(err) -> 150 - error_response( 151 - 500, 152 - "Failed to get auth server: " <> err, 167 + Error(_) -> 168 + error_redirect( 169 + conn, 170 + "server_error", 171 + "Could not connect to login server", 153 172 ) 154 173 Ok(auth_endpoint) -> { 155 174 // Build authorization URL ··· 244 263 } 245 264 } 246 265 247 - fn error_response(status: Int, message: String) -> wisp.Response { 248 - wisp.log_error("Admin OAuth error: " <> message) 249 - wisp.response(status) 250 - |> wisp.set_header("content-type", "application/json") 251 - |> wisp.set_body(wisp.Text("{\"error\": \"" <> message <> "\"}")) 266 + fn error_redirect( 267 + conn: sqlight.Connection, 268 + error: String, 269 + description: String, 270 + ) -> wisp.Response { 271 + wisp.log_error("Admin OAuth error: " <> description) 272 + 273 + let redirect_path = case config_repo.has_admins(conn) { 274 + True -> "/" 275 + False -> "/onboarding" 276 + } 277 + 278 + let redirect_url = 279 + redirect_path 280 + <> "?error=" 281 + <> uri.percent_encode(error) 282 + <> "&error_description=" 283 + <> uri.percent_encode(description) 284 + 285 + wisp.redirect(redirect_url) 252 286 }
+44 -16
server/src/handlers/admin_oauth_callback.gleam
··· 14 14 import gleam/json 15 15 import gleam/list 16 16 import gleam/option.{type Option, None, Some} 17 + import gleam/result 17 18 import gleam/string 19 + import gleam/uri 18 20 import lib/oauth/atproto/bridge 19 21 import lib/oauth/did_cache 20 22 import lib/oauth/token_generator ··· 33 35 // Parse query parameters 34 36 let query = wisp.get_query(req) 35 37 36 - let code_result = list.key_find(query, "code") 37 - let state_result = list.key_find(query, "state") 38 + // Check for OAuth error FIRST (user denied, etc.) 39 + case list.key_find(query, "error") { 40 + Ok(error) -> { 41 + let error_description = 42 + list.key_find(query, "error_description") 43 + |> result.unwrap("") 38 44 39 - case code_result, state_result { 40 - Error(_), _ -> error_response(400, "Missing 'code' parameter") 41 - _, Error(_) -> error_response(400, "Missing 'state' parameter") 42 - Ok(code), Ok(state) -> { 43 - process_callback( 44 - req, 45 - conn, 46 - did_cache, 47 - code, 48 - state, 49 - redirect_uri, 50 - client_id, 51 - signing_key, 52 - ) 45 + // Redirect to / or /onboarding based on admin existence 46 + let redirect_path = case config_repo.has_admins(conn) { 47 + True -> "/" 48 + False -> "/onboarding" 49 + } 50 + 51 + let redirect_url = 52 + redirect_path 53 + <> "?error=" 54 + <> uri.percent_encode(error) 55 + <> "&error_description=" 56 + <> uri.percent_encode(error_description) 57 + 58 + wisp.redirect(redirect_url) 59 + } 60 + Error(_) -> { 61 + // Normal flow: check for code and state 62 + let code_result = list.key_find(query, "code") 63 + let state_result = list.key_find(query, "state") 64 + 65 + case code_result, state_result { 66 + Error(_), _ -> error_response(400, "Missing 'code' parameter") 67 + _, Error(_) -> error_response(400, "Missing 'state' parameter") 68 + Ok(code), Ok(state) -> { 69 + process_callback( 70 + req, 71 + conn, 72 + did_cache, 73 + code, 74 + state, 75 + redirect_uri, 76 + client_id, 77 + signing_key, 78 + ) 79 + } 80 + } 53 81 } 54 82 } 55 83 }
+72 -18
server/src/handlers/oauth/atp_callback.gleam
··· 9 9 import gleam/json 10 10 import gleam/list 11 11 import gleam/option.{type Option, None, Some} 12 + import gleam/result 12 13 import gleam/string 13 14 import gleam/uri 14 15 import lib/oauth/atproto/bridge ··· 29 30 // Parse query parameters from request path 30 31 let query = wisp.get_query(req) 31 32 32 - // Extract required parameters 33 - let code_result = list.key_find(query, "code") 34 - let state_result = list.key_find(query, "state") 33 + // Check for OAuth error FIRST (user denied, etc.) 34 + case list.key_find(query, "error") { 35 + Ok(error) -> { 36 + handle_oauth_error(conn, query, error) 37 + } 38 + Error(_) -> { 39 + // Normal flow: check for code and state 40 + let code_result = list.key_find(query, "code") 41 + let state_result = list.key_find(query, "state") 35 42 36 - case code_result, state_result { 37 - Error(_), _ -> 38 - error_response(400, "missing_parameter", "Missing 'code' parameter") 39 - _, Error(_) -> 40 - error_response(400, "missing_parameter", "Missing 'state' parameter") 41 - Ok(code), Ok(state) -> { 42 - handle_callback( 43 - conn, 44 - did_cache, 45 - code, 46 - state, 47 - redirect_uri, 48 - client_id, 49 - signing_key, 50 - ) 43 + case code_result, state_result { 44 + Error(_), _ -> 45 + error_response(400, "missing_parameter", "Missing 'code' parameter") 46 + _, Error(_) -> 47 + error_response(400, "missing_parameter", "Missing 'state' parameter") 48 + Ok(code), Ok(state) -> { 49 + handle_callback( 50 + conn, 51 + did_cache, 52 + code, 53 + state, 54 + redirect_uri, 55 + client_id, 56 + signing_key, 57 + ) 58 + } 59 + } 51 60 } 61 + } 62 + } 63 + 64 + fn handle_oauth_error( 65 + conn: sqlight.Connection, 66 + query: List(#(String, String)), 67 + error: String, 68 + ) -> wisp.Response { 69 + let error_description = 70 + list.key_find(query, "error_description") 71 + |> result.unwrap("") 72 + let state = 73 + list.key_find(query, "state") 74 + |> result.unwrap("") 75 + 76 + // Look up client's redirect_uri via: state -> atp_session -> session_id -> auth_request 77 + case oauth_atp_sessions.get_by_state(conn, state) { 78 + Ok(Some(atp_session)) -> { 79 + case oauth_auth_requests.get(conn, atp_session.session_id) { 80 + Ok(Some(auth_request)) -> { 81 + // Build redirect URL with error params 82 + let separator = case string.contains(auth_request.redirect_uri, "?") { 83 + True -> "&" 84 + False -> "?" 85 + } 86 + 87 + let redirect_url = 88 + auth_request.redirect_uri 89 + <> separator 90 + <> "error=" 91 + <> uri.percent_encode(error) 92 + <> "&error_description=" 93 + <> uri.percent_encode(error_description) 94 + <> case auth_request.state { 95 + Some(client_state) -> 96 + "&state=" <> uri.percent_encode(client_state) 97 + None -> "" 98 + } 99 + 100 + wisp.redirect(redirect_url) 101 + } 102 + _ -> error_response(400, "missing_parameter", "OAuth session not found") 103 + } 104 + } 105 + _ -> error_response(400, "missing_parameter", "Invalid state parameter") 52 106 } 53 107 } 54 108
+86 -46
server/src/handlers/oauth/authorize.gleam
··· 54 54 http.Get | http.Post -> { 55 55 case req.query { 56 56 Some(query) -> { 57 - case 58 - handle_authorize( 59 - query, 60 - conn, 61 - did_cache, 62 - redirect_uri, 63 - client_id, 64 - signing_key, 65 - ) 66 - { 67 - Ok(response) -> build_redirect_response(response) 68 - Error(err) -> { 69 - wisp.log_error("Authorization error: " <> err) 70 - wisp.response(400) 71 - |> wisp.set_header("content-type", "application/json") 72 - |> wisp.set_body(wisp.Text("{\"error\": \"" <> err <> "\"}")) 73 - } 74 - } 57 + handle_authorize_with_error_redirect( 58 + query, 59 + conn, 60 + did_cache, 61 + redirect_uri, 62 + client_id, 63 + signing_key, 64 + ) 75 65 } 76 66 None -> { 77 - wisp.response(400) 78 - |> wisp.set_header("content-type", "application/json") 79 - |> wisp.set_body(wisp.Text( 80 - "{\"error\": \"Missing query parameters\"}", 81 - )) 67 + json_error_response("Missing query parameters") 82 68 } 83 69 } 84 70 } ··· 86 72 } 87 73 } 88 74 89 - /// Main authorization handler 90 - fn handle_authorize( 75 + fn json_error_response(message: String) -> wisp.Response { 76 + wisp.log_error("Authorization error: " <> message) 77 + wisp.response(400) 78 + |> wisp.set_header("content-type", "application/json") 79 + |> wisp.set_body(wisp.Text("{\"error\": \"" <> message <> "\"}")) 80 + } 81 + 82 + /// Handle authorization with proper error redirects after validation 83 + fn handle_authorize_with_error_redirect( 91 84 query: String, 92 85 conn: sqlight.Connection, 93 86 did_cache: Subject(did_cache.Message), 94 87 server_redirect_uri: String, 95 88 server_client_id: String, 96 89 signing_key: Option(String), 97 - ) -> Result(AuthorizeResponse, String) { 90 + ) -> wisp.Response { 98 91 // Parse query parameters 99 - use params <- result.try( 100 - uri.parse_query(query) 101 - |> result.map_error(fn(_) { "Failed to parse query string" }), 102 - ) 92 + case uri.parse_query(query) { 93 + Error(_) -> json_error_response("Failed to parse query string") 94 + Ok(params) -> { 95 + // Check for PAR request_uri 96 + case get_param(params, "request_uri") { 97 + Some(_) -> json_error_response("PAR flow not yet implemented") 98 + None -> { 99 + // Parse minimal request to get redirect_uri and state 100 + let client_redirect_uri = get_param(params, "redirect_uri") 101 + let state = get_param(params, "state") 102 + let client_id_param = get_param(params, "client_id") 103 103 104 - // Check for PAR request_uri 105 - case get_param(params, "request_uri") { 106 - Some(_request_uri) -> { 107 - // PAR flow - not implemented yet 108 - Error("PAR flow not yet implemented") 109 - } 110 - None -> { 111 - // Standard flow 112 - handle_standard_flow( 113 - params, 114 - conn, 115 - did_cache, 116 - server_redirect_uri, 117 - server_client_id, 118 - signing_key, 119 - ) 104 + // Before we have validated redirect_uri, use JSON errors 105 + case client_redirect_uri, client_id_param { 106 + None, _ -> json_error_response("redirect_uri is required") 107 + _, None -> json_error_response("client_id is required") 108 + Some(ruri), Some(cid) -> { 109 + // Get and validate client 110 + case oauth_clients.get(conn, cid) { 111 + Error(_) -> json_error_response("Failed to retrieve client") 112 + Ok(None) -> json_error_response("Client not found") 113 + Ok(Some(client)) -> { 114 + // Validate redirect_uri format 115 + case validator.validate_redirect_uri(ruri) { 116 + Error(e) -> json_error_response(error.error_description(e)) 117 + Ok(_) -> { 118 + // Validate redirect_uri matches client 119 + case 120 + validator.validate_redirect_uri_match( 121 + ruri, 122 + client.redirect_uris, 123 + client.require_redirect_exact, 124 + ) 125 + { 126 + Error(e) -> 127 + json_error_response(error.error_description(e)) 128 + Ok(_) -> { 129 + // redirect_uri is now validated - use redirects for subsequent errors 130 + case 131 + handle_standard_flow( 132 + params, 133 + conn, 134 + did_cache, 135 + server_redirect_uri, 136 + server_client_id, 137 + signing_key, 138 + ) 139 + { 140 + Ok(response) -> build_redirect_response(response) 141 + Error(err) -> { 142 + build_redirect_response(RedirectWithError( 143 + redirect_uri: ruri, 144 + error: "server_error", 145 + error_description: err, 146 + state: state, 147 + )) 148 + } 149 + } 150 + } 151 + } 152 + } 153 + } 154 + } 155 + } 156 + } 157 + } 158 + } 159 + } 120 160 } 121 161 } 122 162 }