@remoteoss/remote-flows 0.0.0 → 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,13 +1,8 @@
1
- # Remote Flows
1
+ # @remoteoss/remote-flows
2
2
 
3
3
  ## Overview
4
4
 
5
- This project provides a client SDK for interacting with the Remote API, by providing white label forms of several flows.
6
-
7
- ## Prerequisites
8
-
9
- - Node.js
10
- - npm
5
+ Welcome to the `@remoteoss/remote-flows` package, a React library that provides components for Remote's embbeded solution.
11
6
 
12
7
  ## Installation
13
8
 
@@ -15,79 +10,453 @@ This project provides a client SDK for interacting with the Remote API, by provi
15
10
  npm install @remoteoss/remote-flows
16
11
  ```
17
12
 
18
- ## Running Locally
19
-
20
- ### Development Mode
13
+ ## Getting Started
21
14
 
22
- To run the project in development:
15
+ After installation, import the main CSS file in your application:
23
16
 
24
- ```sh
25
- npm run dev
17
+ ```css
18
+ @import '@remoteoss/remote-flows/index.css';
26
19
  ```
27
20
 
28
- **Using npm link to Test with a Test App**
21
+ ### Basic Setup
22
+
23
+ #### Cost calculator rendering
24
+
25
+ ```tsx
26
+ import { CostCalculator, RemoteFlows } from '@remoteoss/remote-flows';
27
+ import './App.css';
28
+
29
+ const estimationOptions = {
30
+ title: 'Estimate for a new company',
31
+ includeBenefits: true,
32
+ includeCostBreakdowns: true,
33
+ };
34
+
35
+ function CostCalculatorForm() {
36
+ return (
37
+ <CostCalculator
38
+ estimationOptions={estimationOptions}
39
+ defaultValues={{
40
+ countryRegionSlug: 'a1aea868-0e0a-4cd7-9b73-9941d92e5bbe',
41
+ currencySlug: 'eur-acf7d6b5-654a-449f-873f-aca61a280eba',
42
+ salary: '50000',
43
+ }}
44
+ params={{
45
+ disclaimer: {
46
+ label: 'Remote Disclaimer',
47
+ },
48
+ }}
49
+ onSubmit={(payload) => console.log(payload)}
50
+ onError={(error) => console.error({ error })}
51
+ onSuccess={(response) => console.log({ response })}
52
+ />
53
+ );
54
+ }
55
+
56
+ export function BasicCostCalculator() {
57
+ const fetchToken = () => {
58
+ return fetch('/api/token')
59
+ .then((res) => res.json())
60
+ .then((data) => ({
61
+ accessToken: data.access_token,
62
+ expiresIn: data.expires_in,
63
+ }))
64
+ .catch((error) => {
65
+ console.error({ error });
66
+ throw error;
67
+ });
68
+ };
69
+
70
+ return (
71
+ <RemoteFlows auth={() => fetchToken()}>
72
+ <CostCalculatorForm />
73
+ </RemoteFlows>
74
+ );
75
+ }
76
+ ```
29
77
 
30
- To test this package with a test application using npm link, follow these steps:
78
+ #### Cost Calculator + default values + custom disclaimer label
79
+
80
+ ```tsx
81
+ import { CostCalculator, RemoteFlows } from '@remoteoss/remote-flows';
82
+ import './App.css';
83
+
84
+ const estimationOptions = {
85
+ title: 'Estimate for a new company',
86
+ includeBenefits: true,
87
+ includeCostBreakdowns: true,
88
+ };
89
+
90
+ function CostCalculatorForm() {
91
+ return (
92
+ <CostCalculator
93
+ defaultValues={{
94
+ countryRegionSlug: 'a1aea868-0e0a-4cd7-9b73-9941d92e5bbe',
95
+ currencySlug: 'eur-acf7d6b5-654a-449f-873f-aca61a280eba',
96
+ salary: '50000',
97
+ }}
98
+ params={{
99
+ disclaimer: {
100
+ label: 'Remote Disclaimer',
101
+ },
102
+ }}
103
+ estimationOptions={estimationOptions}
104
+ onSubmit={(payload) => console.log(payload)}
105
+ onError={(error) => console.error({ error })}
106
+ onSuccess={(response) => console.log({ response })}
107
+ />
108
+ );
109
+ }
110
+
111
+ export function BasicCostCalculatorWithDefaultValues() {
112
+ const fetchToken = () => {
113
+ return fetch('/api/token')
114
+ .then((res) => res.json())
115
+ .then((data) => ({
116
+ accessToken: data.access_token,
117
+ expiresIn: data.expires_in,
118
+ }))
119
+ .catch((error) => {
120
+ console.error({ error });
121
+ throw error;
122
+ });
123
+ };
124
+
125
+ return (
126
+ <RemoteFlows auth={() => fetchToken()}>
127
+ <CostCalculatorForm />
128
+ </RemoteFlows>
129
+ );
130
+ }
131
+ ```
31
132
 
32
- 1. In the root directory of the package, run:
133
+ #### Cost calculator + results component
134
+
135
+ ```tsx
136
+ import type { CostCalculatorEstimateResponse } from '@remoteoss/remote-flows';
137
+ import {
138
+ CostCalculator,
139
+ CostCalculatorResults,
140
+ RemoteFlows,
141
+ } from '@remoteoss/remote-flows';
142
+ import { useState } from 'react';
143
+ import './App.css';
144
+
145
+ function CostCalculatorForm() {
146
+ const [estimations, setEstimations] =
147
+ useState<CostCalculatorEstimateResponse | null>(null);
148
+
149
+ const estimationOptions = {
150
+ title: 'Estimate for a new company',
151
+ includeBenefits: true,
152
+ includeCostBreakdowns: true,
153
+ };
154
+
155
+ return (
156
+ <>
157
+ <CostCalculator
158
+ estimationOptions={estimationOptions}
159
+ defaultValues={{
160
+ countryRegionSlug: 'bf098ccf-7457-4556-b2a8-80c48f67cca4',
161
+ currencySlug: 'eur-acf7d6b5-654a-449f-873f-aca61a280eba',
162
+ salary: '50000',
163
+ }}
164
+ params={{
165
+ disclaimer: {
166
+ label: 'Remote Disclaimer',
167
+ },
168
+ }}
169
+ onError={(error) => console.error({ error })}
170
+ onSuccess={(response) => {
171
+ setEstimations(response);
172
+ }}
173
+ />
174
+ {estimations && (
175
+ <CostCalculatorResults employmentData={estimations.data} />
176
+ )}
177
+ </>
178
+ );
179
+ }
180
+
181
+ export function CostCalculatoWithResults() {
182
+ const fetchToken = () => {
183
+ return fetch('/api/token')
184
+ .then((res) => res.json())
185
+ .then((data) => ({
186
+ accessToken: data.access_token,
187
+ expiresIn: data.expires_in,
188
+ }))
189
+ .catch((error) => {
190
+ console.error({ error });
191
+ throw error;
192
+ });
193
+ };
194
+
195
+ return (
196
+ <RemoteFlows auth={() => fetchToken()}>
197
+ <CostCalculatorForm />
198
+ </RemoteFlows>
199
+ );
200
+ }
201
+ ```
33
202
 
34
- ```sh
35
- npm link
203
+ #### Cost calculator with export to pdf
204
+
205
+ ```tsx
206
+ import type {
207
+ CostCalculatorEstimateResponse,
208
+ CostCalculatorEstimationFormValues,
209
+ } from '@remoteoss/remote-flows';
210
+ import {
211
+ buildCostCalculatorEstimationPayload,
212
+ CostCalculator,
213
+ RemoteFlows,
214
+ useCostCalculatorEstimationPdf,
215
+ } from '@remoteoss/remote-flows';
216
+ import { useState } from 'react';
217
+ import './App.css';
218
+
219
+ function CostCalculatorForm() {
220
+ const [estimations, setEstimations] =
221
+ useState<CostCalculatorEstimateResponse | null>(null);
222
+ const [payload, setPayload] =
223
+ useState<CostCalculatorEstimationFormValues | null>(null);
224
+
225
+ const estimationOptions = {
226
+ title: 'Estimate for a new company',
227
+ includeBenefits: true,
228
+ includeCostBreakdowns: true,
229
+ };
230
+
231
+ const exportPdfMutation = useCostCalculatorEstimationPdf();
232
+
233
+ const handleExportPdf = () => {
234
+ if (payload) {
235
+ exportPdfMutation.mutate(buildCostCalculatorEstimationPayload(payload), {
236
+ onSuccess: (response) => {
237
+ if (response?.data?.data?.content !== undefined) {
238
+ const a = document.createElement('a');
239
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
240
+ a.href = response.data.data.content as any;
241
+ a.download = 'estimation.pdf';
242
+ document.body.appendChild(a);
243
+ a.click();
244
+ document.body.removeChild(a);
245
+ }
246
+ },
247
+ onError: (error) => {
248
+ console.error({ error });
249
+ },
250
+ });
251
+ }
252
+ };
253
+
254
+ return (
255
+ <>
256
+ <CostCalculator
257
+ estimationOptions={estimationOptions}
258
+ defaultValues={{
259
+ countryRegionSlug: 'bf098ccf-7457-4556-b2a8-80c48f67cca4',
260
+ currencySlug: 'eur-acf7d6b5-654a-449f-873f-aca61a280eba',
261
+ salary: '50000',
262
+ }}
263
+ params={{
264
+ disclaimer: {
265
+ label: 'Remote Disclaimer',
266
+ },
267
+ }}
268
+ onSubmit={(payload) => setPayload(payload)}
269
+ onError={(error) => console.error({ error })}
270
+ onSuccess={(response) => {
271
+ setEstimations(response);
272
+ }}
273
+ />
274
+ {estimations && <button onClick={handleExportPdf}>Export as PDF</button>}
275
+ </>
276
+ );
277
+ }
278
+
279
+ export function CostCalculatorWithExportPdf() {
280
+ const fetchToken = () => {
281
+ return fetch('/api/token')
282
+ .then((res) => res.json())
283
+ .then((data) => ({
284
+ accessToken: data.access_token,
285
+ expiresIn: data.expires_in,
286
+ }))
287
+ .catch((error) => {
288
+ console.error({ error });
289
+ throw error;
290
+ });
291
+ };
292
+
293
+ return (
294
+ <RemoteFlows auth={() => fetchToken()}>
295
+ <CostCalculatorForm />
296
+ </RemoteFlows>
297
+ );
298
+ }
36
299
  ```
37
300
 
38
- This will create a global symlink for your package.
301
+ ## Components API
39
302
 
40
- 2. In the root directory of your test application, run:
303
+ ### RemoteFlows
41
304
 
42
- ```sh
43
- npm link remote-flows
44
- ```
305
+ The `RemoteFlows` component serves as a provider for authentication and theming.
45
306
 
46
- This will create a symlink from the `node_modules` folder of your test application to the global symlink created in the previous step.
307
+ | Prop | Type | Required | Description |
308
+ | --------------- | ----------------------------------------------------------- | -------- | ------------------------------------------------------------------ |
309
+ | `auth` | `() => Promise<{ accessToken: string, expiresIn: number }>` | Yes | Function to fetch authentication token |
310
+ | `isTestingProp` | `boolean` | No | When `true`, connects to sandbox environment instead of production |
311
+ | `theme` | `ThemeOptions` | No | Custom theme configuration |
47
312
 
48
- 3. Now you can import and use the `remote-flows` package in your test application as if it were installed from npm.
313
+ ### CostCalculator
49
314
 
50
- 4. To unlink the package when you are done testing, run the following commands in your test application directory:
315
+ The `CostCalculator` component renders a form for calculating employment costs.
51
316
 
52
- ```sh
53
- npm unlink remote-flows
54
- ```
317
+ | Prop | Type | Required | Description |
318
+ | ------------------ | ---------------------------------------------------- | -------- | ----------------------------------------------------------- |
319
+ | `estimationParams` | object | No | Customization for the estimation response (see table below) |
320
+ | `defaultValues` | object | No | Predefined form values (see table below) |
321
+ | `params` | `{ disclaimer?: { label?: string } }` | No | Additional configuration parameters |
322
+ | `onSubmit` | `(payload: CostCalculatorEstimateParams) => void` | No | Callback with the payload sent to Remote server |
323
+ | `onSuccess` | `(response: CostCalculatorEstimateResponse) => void` | No | Callback with the successful estimation data |
324
+ | `onError` | `(error: Error) => void` | No | Error handling callback |
55
325
 
56
- And in the root directory of your package:
57
- npm unlink
326
+ #### estimationParams Properties
58
327
 
59
- ## Building the Project
328
+ | Property | Type | Description |
329
+ | ----------------------- | --------- | ------------------------------------------------------------ |
330
+ | `title` | `string` | Custom title for the estimation report |
331
+ | `includeBenefits` | `boolean` | When true, includes benefits information in the response |
332
+ | `includeCostBreakdowns` | `boolean` | When true, includes detailed cost breakdowns in the response |
60
333
 
61
- ```sh
62
- npm run build
63
- ```
334
+ #### defaultValues Properties
64
335
 
65
- ## Generating API Client
336
+ | Property | Type | Description |
337
+ | ------------------- | -------- | --------------------------- |
338
+ | `countryRegionSlug` | `string` | Pre-selected country/region |
339
+ | `currencySlug` | `string` | Pre-selected currency |
340
+ | `salary` | `string` | Pre-filled salary amount |
66
341
 
67
- To generate the API client from the [Remote OpenAPI](https://gateway.remote.com/v1/docs/openapi.json) specification:
342
+ ### CostCalculatorResults
68
343
 
69
- ```sh
70
- npm run openapi-ts
71
- ```
344
+ A component to display cost calculation results.
72
345
 
73
- **Note**: The contents of the client folder are auto-generated by the openapi-ts tool and should not be manually modified.
346
+ | Prop | Type | Required | Description |
347
+ | ---------------- | ------------------------------------ | -------- | ------------------------------ |
348
+ | `employmentData` | `CostCalculatorEstimateResponseData` | Yes | The estimation data to display |
74
349
 
75
- ## How to publish a new version
350
+ ## Authentication
76
351
 
77
- Run
352
+ You need to implement a server endpoint to securely handle authentication with Remote. This prevents exposing client credentials in your frontend code.
78
353
 
79
- ```sh
80
- npm run changeset:add
354
+ For a complete implementation, check our [example server implementation](https://github.com/remoteoss/remote-flows/blob/main/example/server.js).
355
+
356
+ ### API Gateway Endpoints
357
+
358
+ - **Development/Testing**: `https://gateway.partners.remote-sandbox.com`
359
+ - **Production**: `https://gateway.remote.com/`
360
+
361
+ ## Styling Options
362
+
363
+ ### Using Default Styles
364
+
365
+ Import the CSS file in your application:
366
+
367
+ ```css
368
+ @import '@remoteoss/remote-flows/index.css';
81
369
  ```
82
370
 
83
- This will initiate a new changeset, you select between patch | minor | major
371
+ ### Theme Customization
372
+
373
+ ```tsx
374
+ <RemoteFlows
375
+ theme={{
376
+ spacing: '0.25rem',
377
+ borderRadius: '0px',
378
+ colors: {
379
+ primaryBackground: '#ffffff',
380
+ primaryForeground: '#364452',
381
+ accentBackground: '#e3e9ef',
382
+ accentForeground: '#0f1419',
383
+ danger: '#d92020',
384
+ borderInput: '#cccccc',
385
+ },
386
+ }}
387
+ >
388
+ {/* Your components */}
389
+ </RemoteFlows>
390
+ ```
84
391
 
85
- Once you do that and a changeset has been created, you run
392
+ | **Token** | **Description** |
393
+ | -------------------------- | ----------------------------------------------------------------------------------------------------- |
394
+ | `colors.borderInput` | Border color for input fields. |
395
+ | `colors.primaryBackground` | Background used for the popover options |
396
+ | `colors.primaryForeground` | Color text for the input and options |
397
+ | `colors.accentBackground` | Used in the option selected and hover. |
398
+ | `colors.accentForeground` | Color text for the select options |
399
+ | `colors.danger` | Red color used for danger states. |
400
+ | `spacing` | Consistent scale for whitespace (margin, padding, gap). |
401
+ | `borderRadius` | The main border radius value (default: 0.625rem). This is the foundation for all other radius values. |
402
+ | `font.fontSizeBase` | The main font size value (default: 1rem). Controls the base text size of the component. |
86
403
 
87
- ```sh
88
- npm run changeset:version
404
+ ### CSS Overrides
405
+
406
+ #### Using CSS variables:
407
+
408
+ You can override the CSS variables defined in `:root` in the library's `styles/global.css`
409
+
410
+ #### Override CSS Classes:
411
+
412
+ Use css or your css in js solution to override any classes from the SDK
413
+
414
+ ## Advanced Usage
415
+
416
+ ### Custom Implementation
417
+
418
+ `remote-flows` provides opinionated components but your application might require more extensive customization than what theme tokens allow. For these cases, we expose several hooks that give you complete control over rendering while handling the complex business logic for you.
419
+
420
+ Here's how to create a fully custom implementation using our hooks:
421
+
422
+ ```tsx
423
+ function CustomCostCalculator() {
424
+ const {
425
+ onSubmit: submitCostCalculator,
426
+ fields, // fields is a list of field objects returned by json-schema-form. Read more at https://github.com/remoteoss/json-schema-form
427
+ validationSchema,
428
+ } = useCostCalculator();
429
+
430
+ // Build your custom form using the provided fields and validation schema
431
+
432
+ function handleSubmit(data) {
433
+ submitCostCalculator(data); // submitCostCalculator validates form fields before posting to Remote API
434
+ }
435
+
436
+ return (
437
+ <Form onSubmit={handleSubmit}>{/* Your custom form implementation */}</Form>
438
+ );
439
+ }
440
+ ```
441
+
442
+ ```tsx
443
+ function CustomCostCalculator() {
444
+ const {
445
+ onSubmit: submitCostCalculator,
446
+ fields, // fields is a list of field objects returned by json-schema-form. Read more at https://github.com/remoteoss/json-schema-form
447
+ validationSchema,
448
+ } = useCostCalculator();
449
+
450
+ // Build your custom form using the provided fields and validation schema
451
+
452
+ return (
453
+ <form onSubmit={handleSubmit((data) => submitCostCalculator(data))}>
454
+ {/* Your custom form implementation */}
455
+ </form>
456
+ );
457
+ }
89
458
  ```
90
459
 
91
- This will eliminate the changeset temporarily created and update the changelog
460
+ ## Example
92
461
 
93
- After this has been done, we have a release workflow in the CI, that will publish the package to NPM
462
+ For a complete implementation example, refer to our [example application](https://github.com/remoteoss/remote-flows/blob/main/example/src/App.tsx).
package/dist/index.css CHANGED
@@ -1,3 +1,3 @@
1
- @layer theme{:root,:host{--font-sans:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-mono:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--color-blue-500:oklch(.623 .214 259.815);--color-gray-200:oklch(.928 .006 264.531);--color-gray-400:oklch(.707 .022 261.325);--color-gray-600:oklch(.446 .03 256.802);--color-gray-800:oklch(.278 .033 256.848);--color-gray-900:oklch(.21 .034 264.665);--color-black:#000;--color-white:#fff;--spacing:.25rem;--container-xs:20rem;--text-xs:calc(var(--fontBase)*.75);--text-xs--line-height:calc(1/.75);--text-sm--line-height:calc(1.25/.875);--text-lg:1.125rem;--text-lg--line-height:calc(1.75/1.125);--text-xl--line-height:calc(1.75/1.25);--font-weight-normal:400;--font-weight-medium:500;--font-weight-semibold:600;--font-weight-bold:700;--tracking-tight:-.025em;--radius-md:calc(var(--radius) - 2px);--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4,0,.2,1);--default-font-family:var(--font-sans);--default-font-feature-settings:var(--font-sans--font-feature-settings);--default-font-variation-settings:var(--font-sans--font-variation-settings);--default-mono-font-family:var(--font-mono);--default-mono-font-feature-settings:var(--font-mono--font-feature-settings);--default-mono-font-variation-settings:var(--font-mono--font-variation-settings);--muted-foreground:var(--primary-foreground);--color-border:var(--border)}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}body{line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1;color:color-mix(in oklab,currentColor 50%,transparent)}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){appearance:button}::file-selector-button{appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}*{border-color:var(--border);outline-color:color-mix(in oklab,var(--ring)50%,transparent)}body{background-color:var(--background);color:var(--foreground)}}@layer components;@layer utilities{.pointer-events-none{pointer-events:none}.visible{visibility:visible}.sr-only{clip:rect(0,0,0,0);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.inset-0{inset:calc(var(--spacing)*0)}.inset-x-0{inset-inline:calc(var(--spacing)*0)}.top-1\/2{top:50%}.top-4{top:calc(var(--spacing)*4)}.right-4{right:calc(var(--spacing)*4)}.bottom-0{bottom:calc(var(--spacing)*0)}.left-1\/2{left:50%}.z-50{z-index:50}.-mx-1{margin-inline:calc(var(--spacing)*-1)}.mx-auto{margin-inline:auto}.my-1{margin-block:calc(var(--spacing)*1)}.mt-1{margin-top:calc(var(--spacing)*1)}.mt-4{margin-top:calc(var(--spacing)*4)}.mt-24{margin-top:calc(var(--spacing)*24)}.mt-auto{margin-top:auto}.mb-0{margin-bottom:calc(var(--spacing)*0)}.mb-1{margin-bottom:calc(var(--spacing)*1)}.mb-2{margin-bottom:calc(var(--spacing)*2)}.mb-3{margin-bottom:calc(var(--spacing)*3)}.mb-6{margin-bottom:calc(var(--spacing)*6)}.ml-2{margin-left:calc(var(--spacing)*2)}.block{display:block}.contents{display:contents}.flex{display:flex}.grid{display:grid}.hidden{display:none}.inline-flex{display:inline-flex}.table{display:table}.aspect-square{aspect-ratio:1}.size-2{width:calc(var(--spacing)*2);height:calc(var(--spacing)*2)}.size-2\.5{width:calc(var(--spacing)*2.5);height:calc(var(--spacing)*2.5)}.size-3\.5{width:calc(var(--spacing)*3.5);height:calc(var(--spacing)*3.5)}.size-4{width:calc(var(--spacing)*4);height:calc(var(--spacing)*4)}.size-9{width:calc(var(--spacing)*9);height:calc(var(--spacing)*9)}.h-2{height:calc(var(--spacing)*2)}.h-2\.5{height:calc(var(--spacing)*2.5)}.h-3{height:calc(var(--spacing)*3)}.h-4{height:calc(var(--spacing)*4)}.h-5{height:calc(var(--spacing)*5)}.h-8{height:calc(var(--spacing)*8)}.h-9{height:calc(var(--spacing)*9)}.h-10{height:calc(var(--spacing)*10)}.h-\[300px\]{height:300px}.h-\[var\(--radix-select-trigger-height\)\]{height:var(--radix-select-trigger-height)}.h-auto{height:auto}.h-full{height:100%}.h-px{height:1px}.max-h-96{max-height:calc(var(--spacing)*96)}.max-h-\[calc\(80vh-120px\)\]{max-height:calc(80vh - 120px)}.min-h-11{min-height:calc(var(--spacing)*11)}.w-2\.5{width:calc(var(--spacing)*2.5)}.w-3{width:calc(var(--spacing)*3)}.w-4{width:calc(var(--spacing)*4)}.w-5{width:calc(var(--spacing)*5)}.w-\[100px\]{width:100px}.w-fit{width:fit-content}.w-full{width:100%}.max-w-xs{max-width:var(--container-xs)}.min-w-0{min-width:calc(var(--spacing)*0)}.min-w-\[8rem\]{min-width:8rem}.min-w-\[var\(--radix-select-trigger-width\)\]{min-width:var(--radix-select-trigger-width)}.flex-1{flex:1}.shrink-0{flex-shrink:0}.-translate-x-1\/2{--tw-translate-x: -50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.-translate-y-1\/2{--tw-translate-y: -50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-y-\[calc\(-50\%_-_2px\)\]{--tw-translate-y: calc(-50% - 2px) ;translate:var(--tw-translate-x)var(--tw-translate-y)}.rotate-45{rotate:45deg}.cursor-default{cursor:default}.touch-none{touch-action:none}.scroll-my-1{scroll-margin-block:calc(var(--spacing)*1)}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.flex-col{flex-direction:column}.items-center{align-items:center}.items-start{align-items:flex-start}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.gap-0{gap:calc(var(--spacing)*0)}.gap-1{gap:calc(var(--spacing)*1)}.gap-1\.5{gap:calc(var(--spacing)*1.5)}.gap-2{gap:calc(var(--spacing)*2)}.gap-3{gap:calc(var(--spacing)*3)}.gap-4{gap:calc(var(--spacing)*4)}.gap-6{gap:calc(var(--spacing)*6)}:where(.space-y-0>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*0)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*0)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-1>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*1)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*1)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-2>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*2)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*2)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-3>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*3)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*3)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-4>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*4)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*4)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-6>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*6)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*6)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-x-3>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(calc(var(--spacing)*3)*var(--tw-space-x-reverse));margin-inline-end:calc(calc(var(--spacing)*3)*calc(1 - var(--tw-space-x-reverse)))}.overflow-hidden{overflow:hidden}.overflow-y-auto{overflow-y:auto}.rounded{border-radius:.25rem}.rounded-\[2px\]{border-radius:2px}.rounded-\[inherit\]{border-radius:inherit}.rounded-full{border-radius:3.40282e38px}.rounded-lg{border-radius:var(--radius)}.rounded-md{border-radius:calc(var(--radius) - 2px)}.rounded-sm{border-radius:calc(var(--radius) - 4px)}.rounded-xl{border-radius:calc(var(--radius) + 2px)}.rounded-t-\[10px\]{border-top-left-radius:10px;border-top-right-radius:10px}.border,.border-1{border-style:var(--tw-border-style);border-width:1px}.border-t{border-top-style:var(--tw-border-style);border-top-width:1px}.border-t-2{border-top-style:var(--tw-border-style);border-top-width:2px}.border-l{border-left-style:var(--tw-border-style);border-left-width:1px}.border-gray-200{border-color:var(--color-gray-200)}.border-input{border-color:var(--input)}.border-transparent{border-color:#0000}.border-t-transparent{border-top-color:#0000}.border-l-transparent{border-left-color:#0000}.bg-background{background-color:var(--background)}.bg-badge{background-color:var(--badge)}.bg-black\/80{background-color:color-mix(in oklab,var(--color-black)80%,transparent)}.bg-border{background-color:var(--border)}.bg-card{background-color:var(--card)}.bg-destructive{background-color:var(--destructive)}.bg-gray-900{background-color:var(--color-gray-900)}.bg-muted{background-color:var(--muted)}.bg-popover{background-color:var(--popover)}.bg-primary{background-color:var(--primary)}.bg-secondary{background-color:var(--secondary)}.bg-transparent{background-color:#0000}.fill-primary{fill:var(--primary)}.fill-radio{fill:var(--radio)}.p-0{padding:calc(var(--spacing)*0)}.p-1{padding:calc(var(--spacing)*1)}.p-4{padding:calc(var(--spacing)*4)}.p-\[1px\]{padding:1px}.px-0{padding-inline:calc(var(--spacing)*0)}.px-2{padding-inline:calc(var(--spacing)*2)}.px-3{padding-inline:calc(var(--spacing)*3)}.px-4{padding-inline:calc(var(--spacing)*4)}.px-6{padding-inline:calc(var(--spacing)*6)}.py-0\.5{padding-block:calc(var(--spacing)*.5)}.py-1{padding-block:calc(var(--spacing)*1)}.py-1\.5{padding-block:calc(var(--spacing)*1.5)}.py-2{padding-block:calc(var(--spacing)*2)}.py-6{padding-block:calc(var(--spacing)*6)}.py-7{padding-block:calc(var(--spacing)*7)}.pt-2{padding-top:calc(var(--spacing)*2)}.pb-2{padding-bottom:calc(var(--spacing)*2)}.pb-4{padding-bottom:calc(var(--spacing)*4)}.pl-2{padding-left:calc(var(--spacing)*2)}.text-center{text-align:center}.text-lg{font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}.text-sm{font-size:calc(var(--fontBase)*.875);line-height:var(--tw-leading,var(--text-sm--line-height))}.text-xl{font-size:calc(var(--fontBase)*1.25);line-height:var(--tw-leading,var(--text-xl--line-height))}.text-xs{font-size:calc(var(--fontBase)*.75);line-height:var(--tw-leading,var(--text-xs--line-height))}.leading-none{--tw-leading:1;line-height:1}.font-bold{--tw-font-weight:var(--font-weight-bold);font-weight:var(--font-weight-bold)}.font-medium{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.font-normal{--tw-font-weight:var(--font-weight-normal);font-weight:var(--font-weight-normal)}.font-semibold{--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold)}.tracking-tight{--tw-tracking:var(--tracking-tight);letter-spacing:var(--tracking-tight)}.text-balance{text-wrap:balance}.whitespace-nowrap{white-space:nowrap}.text-badge-foreground{color:var(--badge-foreground)}.text-base-color{color:var(--base)}.text-blue-500{color:var(--color-blue-500)}.text-card-foreground{color:var(--card-foreground)}.text-destructive{color:var(--destructive)}.text-foreground{color:var(--foreground)}.text-gray-400{color:var(--color-gray-400)}.text-gray-600{color:var(--color-gray-600)}.text-link-button-primary{color:var(--link-button)}.text-muted-foreground{color:var(--muted-foreground)}.text-popover-foreground{color:var(--popover-foreground)}.text-primary{color:var(--primary)}.text-primary-foreground{color:var(--primary-foreground)}.text-secondary-foreground{color:var(--secondary-foreground)}.text-white{color:var(--color-white)}.underline-offset-4{text-underline-offset:4px}.opacity-70{opacity:.7}.shadow-md{--tw-shadow:0 4px 6px -1px var(--tw-shadow-color,#0000001a),0 2px 4px -2px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-sm{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-xs{--tw-shadow:0 1px 2px 0 var(--tw-shadow-color,#0000000d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.ring-offset-background{--tw-ring-offset-color:var(--background)}.outline-hidden{outline-style:none}@media (forced-colors:active){.outline-hidden{outline-offset:2px;outline:2px solid #0000}}.outline{outline-style:var(--tw-outline-style);outline-width:1px}.filter{filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.transition-\[color\,box-shadow\]{transition-property:color,box-shadow;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-\[color\]{transition-property:color;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-opacity{transition-property:opacity;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.outline-none{--tw-outline-style:none;outline-style:none}.select-none{-webkit-user-select:none;user-select:none}.group-data-\[disabled\=true\]\:pointer-events-none:is(:where(.group)[data-disabled=true] *){pointer-events:none}.group-data-\[disabled\=true\]\:opacity-50:is(:where(.group)[data-disabled=true] *){opacity:.5}.file\:inline-flex::file-selector-button{display:inline-flex}.file\:h-7::file-selector-button{height:calc(var(--spacing)*7)}.file\:border-0::file-selector-button{border-style:var(--tw-border-style);border-width:0}.file\:bg-transparent::file-selector-button{background-color:#0000}.file\:text-sm::file-selector-button{font-size:calc(var(--fontBase)*.875);line-height:var(--tw-leading,var(--text-sm--line-height))}.file\:font-medium::file-selector-button{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.file\:text-foreground::file-selector-button{color:var(--foreground)}.placeholder\:text-muted-foreground::placeholder{color:var(--muted-foreground)}@media (hover:hover){.hover\:bg-accent:hover{background-color:var(--accent)}.hover\:bg-destructive\/90:hover{background-color:color-mix(in oklab,var(--destructive)90%,transparent)}.hover\:bg-gray-800:hover{background-color:var(--color-gray-800)}.hover\:bg-primary\/90:hover{background-color:color-mix(in oklab,var(--primary)90%,transparent)}.hover\:bg-secondary\/80:hover{background-color:color-mix(in oklab,var(--secondary)80%,transparent)}.hover\:text-accent-foreground:hover{color:var(--accent-foreground)}.hover\:underline:hover{text-decoration-line:underline}.hover\:opacity-100:hover{opacity:1}}.focus\:bg-accent:focus{background-color:var(--accent)}.focus\:text-accent-foreground:focus{color:var(--accent-foreground)}.focus\:ring-2:focus{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentColor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus\:ring-ring:focus{--tw-ring-color:var(--ring)}.focus\:ring-offset-2:focus{--tw-ring-offset-width:2px;--tw-ring-offset-shadow:var(--tw-ring-inset,)0 0 0 var(--tw-ring-offset-width)var(--tw-ring-offset-color)}.focus\:outline-none:focus{--tw-outline-style:none;outline-style:none}.focus-visible\:border-focused:focus-visible{border-color:var(--focused)}.focus-visible\:border-ring:focus-visible{border-color:var(--ring)}.focus-visible\:ring-\[3px\]:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(3px + var(--tw-ring-offset-width))var(--tw-ring-color,currentColor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus-visible\:ring-destructive\/20:focus-visible{--tw-ring-color:color-mix(in oklab,var(--destructive)20%,transparent)}.focus-visible\:ring-ring\/50:focus-visible{--tw-ring-color:color-mix(in oklab,var(--ring)50%,transparent)}.focus-visible\:outline-1:focus-visible{outline-style:var(--tw-outline-style);outline-width:1px}.focus-visible\:outline-ring:focus-visible{outline-color:var(--ring)}.disabled\:pointer-events-none:disabled{pointer-events:none}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:opacity-50:disabled{opacity:.5}.has-\[\>svg\]\:px-2\.5:has(>svg){padding-inline:calc(var(--spacing)*2.5)}.has-\[\>svg\]\:px-3:has(>svg){padding-inline:calc(var(--spacing)*3)}.has-\[\>svg\]\:px-4:has(>svg){padding-inline:calc(var(--spacing)*4)}.aria-invalid\:border-destructive[aria-invalid=true]{border-color:var(--destructive)}.aria-invalid\:ring-destructive\/20[aria-invalid=true]{--tw-ring-color:color-mix(in oklab,var(--destructive)20%,transparent)}.data-\[disabled\]\:pointer-events-none[data-disabled]{pointer-events:none}.data-\[disabled\]\:opacity-50[data-disabled]{opacity:.5}.data-\[error\=true\]\:text-destructive[data-error=true]{color:var(--destructive)}.data-\[orientation\=horizontal\]\:h-px[data-orientation=horizontal]{height:1px}.data-\[orientation\=horizontal\]\:w-full[data-orientation=horizontal]{width:100%}.data-\[orientation\=vertical\]\:h-full[data-orientation=vertical]{height:100%}.data-\[orientation\=vertical\]\:w-px[data-orientation=vertical]{width:1px}.data-\[placeholder\]\:text-muted-foreground[data-placeholder]{color:var(--muted-foreground)}.data-\[side\=bottom\]\:translate-y-1[data-side=bottom]{--tw-translate-y:calc(var(--spacing)*1);translate:var(--tw-translate-x)var(--tw-translate-y)}.data-\[side\=left\]\:-translate-x-1[data-side=left]{--tw-translate-x:calc(var(--spacing)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}.data-\[side\=right\]\:translate-x-1[data-side=right]{--tw-translate-x:calc(var(--spacing)*1);translate:var(--tw-translate-x)var(--tw-translate-y)}.data-\[side\=top\]\:-translate-y-1[data-side=top]{--tw-translate-y:calc(var(--spacing)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}:is(.\*\:data-\[slot\=select-value\]\:line-clamp-1>*)[data-slot=select-value]{-webkit-line-clamp:1;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}:is(.\*\:data-\[slot\=select-value\]\:flex>*)[data-slot=select-value]{display:flex}:is(.\*\:data-\[slot\=select-value\]\:items-center>*)[data-slot=select-value]{align-items:center}:is(.\*\:data-\[slot\=select-value\]\:gap-2>*)[data-slot=select-value]{gap:calc(var(--spacing)*2)}.data-\[state\=active\]\:bg-background[data-state=active]{background-color:var(--background)}.data-\[state\=active\]\:text-foreground[data-state=active]{color:var(--foreground)}.data-\[state\=active\]\:shadow-sm[data-state=active]{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}@media (width>=40rem){.sm\:text-left{text-align:left}}@media (width>=48rem){.md\:col-span-2{grid-column:span 2/span 2}.md\:w-\[200px\]{width:200px}.md\:w-auto{width:auto}.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.md\:flex-row{flex-direction:row}.md\:items-center{align-items:center}.md\:text-sm{font-size:calc(var(--fontBase)*.875);line-height:var(--tw-leading,var(--text-sm--line-height))}}@media (prefers-color-scheme:dark){.dark\:focus-visible\:ring-destructive\/40:focus-visible,.dark\:aria-invalid\:ring-destructive\/40[aria-invalid=true]{--tw-ring-color:color-mix(in oklab,var(--destructive)40%,transparent)}}.\[\&_svg\]\:pointer-events-none svg{pointer-events:none}.\[\&_svg\]\:shrink-0 svg{flex-shrink:0}.\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-4 svg:not([class*=size-]){width:calc(var(--spacing)*4);height:calc(var(--spacing)*4)}.\[\&_svg\:not\(\[class\*\=\'text-\'\]\)\]\:text-muted-foreground svg:not([class*=text-]){color:var(--muted-foreground)}:is(.\*\:\[span\]\:last\:flex>*):is(span):last-child{display:flex}:is(.\*\:\[span\]\:last\:items-center>*):is(span):last-child{align-items:center}:is(.\*\:\[span\]\:last\:gap-2>*):is(span):last-child{gap:calc(var(--spacing)*2)}.\[\&\>svg\]\:pointer-events-none>svg{pointer-events:none}.\[\&\>svg\]\:size-3>svg{width:calc(var(--spacing)*3);height:calc(var(--spacing)*3)}@media (hover:hover){a.\[a\&\]\:hover\:bg-accent:hover{background-color:var(--accent)}a.\[a\&\]\:hover\:bg-destructive\/90:hover{background-color:color-mix(in oklab,var(--destructive)90%,transparent)}a.\[a\&\]\:hover\:bg-primary\/90:hover{background-color:color-mix(in oklab,var(--primary)90%,transparent)}a.\[a\&\]\:hover\:bg-secondary\/90:hover{background-color:color-mix(in oklab,var(--secondary)90%,transparent)}a.\[a\&\]\:hover\:text-accent-foreground:hover{color:var(--accent-foreground)}}}:root{--background:oklch(1 0 0);--foreground:var(--primaryForeground,#4b5865);--card:var(--primaryBackground,#fff);--card-foreground:var(--primaryForeground,#4b5865);--popover:var(--primaryBackground,#fff);--popover-foreground:var(--primaryForeground,#4b5865);--primary:var(--primaryBackground,#fff);--primary-foreground:var(--primaryForeground,#364452);--badge:var(--primaryForeground,#364452);--badge-foreground:var(--primaryBackground,#fff);--radio:var(--primaryForeground,#364452);--secondary:oklch(.97 0 0);--secondary-foreground:oklch(.205 0 0);--muted:oklch(.97 0 0);--accent:var(--accentBackground,#e3e9ef);--accent-foreground:var(--accentForeground,#0f1419);--destructive:var(--danger,#d92020);--destructive-foreground:var(--danger,#d92020);--border:var(--borderInput,#9aa6b2);--input:var(--borderInput,#9aa6b2);--ring:oklch(.708 0 0);--radius:var(--borderRadius,.625rem);--focused:var(--borderRadius,#0061ff);--fontBase:var(--fontSizeBase,1rem);--link-button:var(--foreground,#4b5865)}@property --tw-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-z{syntax:"*";inherits:false;initial-value:0}@property --tw-space-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-space-x-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-leading{syntax:"*";inherits:false}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-tracking{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-outline-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}
1
+ @layer theme{:root,:host{--font-sans:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-mono:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--color-blue-500:oklch(.623 .214 259.815);--color-gray-200:oklch(.928 .006 264.531);--color-gray-400:oklch(.707 .022 261.325);--color-gray-600:oklch(.446 .03 256.802);--color-gray-800:oklch(.278 .033 256.848);--color-gray-900:oklch(.21 .034 264.665);--color-black:#000;--color-white:#fff;--spacing:.25rem;--container-xs:20rem;--text-xs:calc(var(--fontBase)*.75);--text-xs--line-height:calc(1/.75);--text-sm--line-height:calc(1.25/.875);--text-lg:1.125rem;--text-lg--line-height:calc(1.75/1.125);--text-xl--line-height:calc(1.75/1.25);--font-weight-normal:400;--font-weight-medium:500;--font-weight-semibold:600;--font-weight-bold:700;--tracking-tight:-.025em;--radius-md:calc(var(--radius) - 2px);--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4,0,.2,1);--default-font-family:var(--font-sans);--default-font-feature-settings:var(--font-sans--font-feature-settings);--default-font-variation-settings:var(--font-sans--font-variation-settings);--default-mono-font-family:var(--font-mono);--default-mono-font-feature-settings:var(--font-mono--font-feature-settings);--default-mono-font-variation-settings:var(--font-mono--font-variation-settings);--muted-foreground:var(--primary-foreground);--color-border:var(--border)}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}body{line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1;color:color-mix(in oklab,currentColor 50%,transparent)}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){appearance:button}::file-selector-button{appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}*{border-color:var(--border);outline-color:color-mix(in oklab,var(--ring)50%,transparent)}body{background-color:var(--background);color:var(--foreground)}}@layer components;@layer utilities{.pointer-events-none{pointer-events:none}.visible{visibility:visible}.sr-only{clip:rect(0,0,0,0);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.inset-0{inset:calc(var(--spacing)*0)}.inset-x-0{inset-inline:calc(var(--spacing)*0)}.top-1\/2{top:50%}.top-4{top:calc(var(--spacing)*4)}.right-4{right:calc(var(--spacing)*4)}.bottom-0{bottom:calc(var(--spacing)*0)}.left-1\/2{left:50%}.z-50{z-index:50}.-mx-1{margin-inline:calc(var(--spacing)*-1)}.mx-auto{margin-inline:auto}.my-1{margin-block:calc(var(--spacing)*1)}.mt-1{margin-top:calc(var(--spacing)*1)}.mt-4{margin-top:calc(var(--spacing)*4)}.mt-24{margin-top:calc(var(--spacing)*24)}.mt-auto{margin-top:auto}.mb-0{margin-bottom:calc(var(--spacing)*0)}.mb-1{margin-bottom:calc(var(--spacing)*1)}.mb-2{margin-bottom:calc(var(--spacing)*2)}.mb-3{margin-bottom:calc(var(--spacing)*3)}.mb-6{margin-bottom:calc(var(--spacing)*6)}.ml-2{margin-left:calc(var(--spacing)*2)}.block{display:block}.flex{display:flex}.grid{display:grid}.hidden{display:none}.inline-flex{display:inline-flex}.table{display:table}.aspect-square{aspect-ratio:1}.size-2{width:calc(var(--spacing)*2);height:calc(var(--spacing)*2)}.size-2\.5{width:calc(var(--spacing)*2.5);height:calc(var(--spacing)*2.5)}.size-3\.5{width:calc(var(--spacing)*3.5);height:calc(var(--spacing)*3.5)}.size-4{width:calc(var(--spacing)*4);height:calc(var(--spacing)*4)}.size-9{width:calc(var(--spacing)*9);height:calc(var(--spacing)*9)}.h-2{height:calc(var(--spacing)*2)}.h-2\.5{height:calc(var(--spacing)*2.5)}.h-3{height:calc(var(--spacing)*3)}.h-4{height:calc(var(--spacing)*4)}.h-5{height:calc(var(--spacing)*5)}.h-8{height:calc(var(--spacing)*8)}.h-9{height:calc(var(--spacing)*9)}.h-10{height:calc(var(--spacing)*10)}.h-\[300px\]{height:300px}.h-\[var\(--radix-select-trigger-height\)\]{height:var(--radix-select-trigger-height)}.h-auto{height:auto}.h-full{height:100%}.h-px{height:1px}.max-h-96{max-height:calc(var(--spacing)*96)}.max-h-\[calc\(80vh-120px\)\]{max-height:calc(80vh - 120px)}.min-h-11{min-height:calc(var(--spacing)*11)}.w-2\.5{width:calc(var(--spacing)*2.5)}.w-3{width:calc(var(--spacing)*3)}.w-4{width:calc(var(--spacing)*4)}.w-5{width:calc(var(--spacing)*5)}.w-\[100px\]{width:100px}.w-fit{width:fit-content}.w-full{width:100%}.max-w-xs{max-width:var(--container-xs)}.min-w-0{min-width:calc(var(--spacing)*0)}.min-w-\[8rem\]{min-width:8rem}.min-w-\[var\(--radix-select-trigger-width\)\]{min-width:var(--radix-select-trigger-width)}.flex-1{flex:1}.shrink-0{flex-shrink:0}.-translate-x-1\/2{--tw-translate-x: -50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.-translate-y-1\/2{--tw-translate-y: -50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-y-\[calc\(-50\%_-_2px\)\]{--tw-translate-y: calc(-50% - 2px) ;translate:var(--tw-translate-x)var(--tw-translate-y)}.rotate-45{rotate:45deg}.cursor-default{cursor:default}.touch-none{touch-action:none}.scroll-my-1{scroll-margin-block:calc(var(--spacing)*1)}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.flex-col{flex-direction:column}.items-center{align-items:center}.items-start{align-items:flex-start}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.gap-0{gap:calc(var(--spacing)*0)}.gap-1{gap:calc(var(--spacing)*1)}.gap-1\.5{gap:calc(var(--spacing)*1.5)}.gap-2{gap:calc(var(--spacing)*2)}.gap-3{gap:calc(var(--spacing)*3)}.gap-4{gap:calc(var(--spacing)*4)}.gap-6{gap:calc(var(--spacing)*6)}:where(.space-y-0>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*0)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*0)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-1>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*1)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*1)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-2>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*2)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*2)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-3>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*3)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*3)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-4>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*4)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*4)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-6>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*6)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*6)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-x-3>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(calc(var(--spacing)*3)*var(--tw-space-x-reverse));margin-inline-end:calc(calc(var(--spacing)*3)*calc(1 - var(--tw-space-x-reverse)))}.overflow-hidden{overflow:hidden}.overflow-y-auto{overflow-y:auto}.rounded{border-radius:.25rem}.rounded-\[2px\]{border-radius:2px}.rounded-\[inherit\]{border-radius:inherit}.rounded-full{border-radius:3.40282e38px}.rounded-lg{border-radius:var(--radius)}.rounded-md{border-radius:calc(var(--radius) - 2px)}.rounded-sm{border-radius:calc(var(--radius) - 4px)}.rounded-xl{border-radius:calc(var(--radius) + 2px)}.rounded-t-\[10px\]{border-top-left-radius:10px;border-top-right-radius:10px}.border,.border-1{border-style:var(--tw-border-style);border-width:1px}.border-t{border-top-style:var(--tw-border-style);border-top-width:1px}.border-t-2{border-top-style:var(--tw-border-style);border-top-width:2px}.border-l{border-left-style:var(--tw-border-style);border-left-width:1px}.border-gray-200{border-color:var(--color-gray-200)}.border-input{border-color:var(--input)}.border-transparent{border-color:#0000}.border-t-transparent{border-top-color:#0000}.border-l-transparent{border-left-color:#0000}.bg-background{background-color:var(--background)}.bg-badge{background-color:var(--badge)}.bg-black\/80{background-color:color-mix(in oklab,var(--color-black)80%,transparent)}.bg-border{background-color:var(--border)}.bg-card{background-color:var(--card)}.bg-destructive{background-color:var(--destructive)}.bg-gray-900{background-color:var(--color-gray-900)}.bg-muted{background-color:var(--muted)}.bg-popover{background-color:var(--popover)}.bg-primary{background-color:var(--primary)}.bg-secondary{background-color:var(--secondary)}.bg-transparent{background-color:#0000}.fill-primary{fill:var(--primary)}.fill-radio{fill:var(--radio)}.p-0{padding:calc(var(--spacing)*0)}.p-1{padding:calc(var(--spacing)*1)}.p-4{padding:calc(var(--spacing)*4)}.p-\[1px\]{padding:1px}.px-0{padding-inline:calc(var(--spacing)*0)}.px-2{padding-inline:calc(var(--spacing)*2)}.px-3{padding-inline:calc(var(--spacing)*3)}.px-4{padding-inline:calc(var(--spacing)*4)}.px-6{padding-inline:calc(var(--spacing)*6)}.py-0\.5{padding-block:calc(var(--spacing)*.5)}.py-1{padding-block:calc(var(--spacing)*1)}.py-1\.5{padding-block:calc(var(--spacing)*1.5)}.py-2{padding-block:calc(var(--spacing)*2)}.py-6{padding-block:calc(var(--spacing)*6)}.py-7{padding-block:calc(var(--spacing)*7)}.pt-2{padding-top:calc(var(--spacing)*2)}.pb-2{padding-bottom:calc(var(--spacing)*2)}.pb-4{padding-bottom:calc(var(--spacing)*4)}.pl-2{padding-left:calc(var(--spacing)*2)}.text-center{text-align:center}.text-lg{font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}.text-sm{font-size:calc(var(--fontBase)*.875);line-height:var(--tw-leading,var(--text-sm--line-height))}.text-xl{font-size:calc(var(--fontBase)*1.25);line-height:var(--tw-leading,var(--text-xl--line-height))}.text-xs{font-size:calc(var(--fontBase)*.75);line-height:var(--tw-leading,var(--text-xs--line-height))}.leading-none{--tw-leading:1;line-height:1}.font-bold{--tw-font-weight:var(--font-weight-bold);font-weight:var(--font-weight-bold)}.font-medium{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.font-normal{--tw-font-weight:var(--font-weight-normal);font-weight:var(--font-weight-normal)}.font-semibold{--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold)}.tracking-tight{--tw-tracking:var(--tracking-tight);letter-spacing:var(--tracking-tight)}.text-balance{text-wrap:balance}.whitespace-nowrap{white-space:nowrap}.text-badge-foreground{color:var(--badge-foreground)}.text-base-color{color:var(--base)}.text-blue-500{color:var(--color-blue-500)}.text-card-foreground{color:var(--card-foreground)}.text-destructive{color:var(--destructive)}.text-foreground{color:var(--foreground)}.text-gray-400{color:var(--color-gray-400)}.text-gray-600{color:var(--color-gray-600)}.text-link-button-primary{color:var(--link-button)}.text-muted-foreground{color:var(--muted-foreground)}.text-popover-foreground{color:var(--popover-foreground)}.text-primary{color:var(--primary)}.text-primary-foreground{color:var(--primary-foreground)}.text-secondary-foreground{color:var(--secondary-foreground)}.text-white{color:var(--color-white)}.underline-offset-4{text-underline-offset:4px}.opacity-70{opacity:.7}.shadow-md{--tw-shadow:0 4px 6px -1px var(--tw-shadow-color,#0000001a),0 2px 4px -2px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-sm{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-xs{--tw-shadow:0 1px 2px 0 var(--tw-shadow-color,#0000000d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.ring-offset-background{--tw-ring-offset-color:var(--background)}.outline-hidden{outline-style:none}@media (forced-colors:active){.outline-hidden{outline-offset:2px;outline:2px solid #0000}}.outline{outline-style:var(--tw-outline-style);outline-width:1px}.filter{filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.transition-\[color\,box-shadow\]{transition-property:color,box-shadow;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-\[color\]{transition-property:color;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-opacity{transition-property:opacity;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.outline-none{--tw-outline-style:none;outline-style:none}.select-none{-webkit-user-select:none;user-select:none}.group-data-\[disabled\=true\]\:pointer-events-none:is(:where(.group)[data-disabled=true] *){pointer-events:none}.group-data-\[disabled\=true\]\:opacity-50:is(:where(.group)[data-disabled=true] *){opacity:.5}.file\:inline-flex::file-selector-button{display:inline-flex}.file\:h-7::file-selector-button{height:calc(var(--spacing)*7)}.file\:border-0::file-selector-button{border-style:var(--tw-border-style);border-width:0}.file\:bg-transparent::file-selector-button{background-color:#0000}.file\:text-sm::file-selector-button{font-size:calc(var(--fontBase)*.875);line-height:var(--tw-leading,var(--text-sm--line-height))}.file\:font-medium::file-selector-button{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.file\:text-foreground::file-selector-button{color:var(--foreground)}.placeholder\:text-muted-foreground::placeholder{color:var(--muted-foreground)}@media (hover:hover){.hover\:bg-accent:hover{background-color:var(--accent)}.hover\:bg-destructive\/90:hover{background-color:color-mix(in oklab,var(--destructive)90%,transparent)}.hover\:bg-gray-800:hover{background-color:var(--color-gray-800)}.hover\:bg-primary\/90:hover{background-color:color-mix(in oklab,var(--primary)90%,transparent)}.hover\:bg-secondary\/80:hover{background-color:color-mix(in oklab,var(--secondary)80%,transparent)}.hover\:text-accent-foreground:hover{color:var(--accent-foreground)}.hover\:underline:hover{text-decoration-line:underline}.hover\:opacity-100:hover{opacity:1}}.focus\:bg-accent:focus{background-color:var(--accent)}.focus\:text-accent-foreground:focus{color:var(--accent-foreground)}.focus\:ring-2:focus{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentColor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus\:ring-ring:focus{--tw-ring-color:var(--ring)}.focus\:ring-offset-2:focus{--tw-ring-offset-width:2px;--tw-ring-offset-shadow:var(--tw-ring-inset,)0 0 0 var(--tw-ring-offset-width)var(--tw-ring-offset-color)}.focus\:outline-none:focus{--tw-outline-style:none;outline-style:none}.focus-visible\:border-focused:focus-visible{border-color:var(--focused)}.focus-visible\:border-ring:focus-visible{border-color:var(--ring)}.focus-visible\:ring-\[3px\]:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(3px + var(--tw-ring-offset-width))var(--tw-ring-color,currentColor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus-visible\:ring-destructive\/20:focus-visible{--tw-ring-color:color-mix(in oklab,var(--destructive)20%,transparent)}.focus-visible\:ring-ring\/50:focus-visible{--tw-ring-color:color-mix(in oklab,var(--ring)50%,transparent)}.focus-visible\:outline-1:focus-visible{outline-style:var(--tw-outline-style);outline-width:1px}.focus-visible\:outline-ring:focus-visible{outline-color:var(--ring)}.disabled\:pointer-events-none:disabled{pointer-events:none}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:opacity-50:disabled{opacity:.5}.has-\[\>svg\]\:px-2\.5:has(>svg){padding-inline:calc(var(--spacing)*2.5)}.has-\[\>svg\]\:px-3:has(>svg){padding-inline:calc(var(--spacing)*3)}.has-\[\>svg\]\:px-4:has(>svg){padding-inline:calc(var(--spacing)*4)}.aria-invalid\:border-destructive[aria-invalid=true]{border-color:var(--destructive)}.aria-invalid\:ring-destructive\/20[aria-invalid=true]{--tw-ring-color:color-mix(in oklab,var(--destructive)20%,transparent)}.data-\[disabled\]\:pointer-events-none[data-disabled]{pointer-events:none}.data-\[disabled\]\:opacity-50[data-disabled]{opacity:.5}.data-\[error\=true\]\:text-destructive[data-error=true]{color:var(--destructive)}.data-\[orientation\=horizontal\]\:h-px[data-orientation=horizontal]{height:1px}.data-\[orientation\=horizontal\]\:w-full[data-orientation=horizontal]{width:100%}.data-\[orientation\=vertical\]\:h-full[data-orientation=vertical]{height:100%}.data-\[orientation\=vertical\]\:w-px[data-orientation=vertical]{width:1px}.data-\[placeholder\]\:text-muted-foreground[data-placeholder]{color:var(--muted-foreground)}.data-\[side\=bottom\]\:translate-y-1[data-side=bottom]{--tw-translate-y:calc(var(--spacing)*1);translate:var(--tw-translate-x)var(--tw-translate-y)}.data-\[side\=left\]\:-translate-x-1[data-side=left]{--tw-translate-x:calc(var(--spacing)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}.data-\[side\=right\]\:translate-x-1[data-side=right]{--tw-translate-x:calc(var(--spacing)*1);translate:var(--tw-translate-x)var(--tw-translate-y)}.data-\[side\=top\]\:-translate-y-1[data-side=top]{--tw-translate-y:calc(var(--spacing)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}:is(.\*\:data-\[slot\=select-value\]\:line-clamp-1>*)[data-slot=select-value]{-webkit-line-clamp:1;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}:is(.\*\:data-\[slot\=select-value\]\:flex>*)[data-slot=select-value]{display:flex}:is(.\*\:data-\[slot\=select-value\]\:items-center>*)[data-slot=select-value]{align-items:center}:is(.\*\:data-\[slot\=select-value\]\:gap-2>*)[data-slot=select-value]{gap:calc(var(--spacing)*2)}.data-\[state\=active\]\:bg-background[data-state=active]{background-color:var(--background)}.data-\[state\=active\]\:text-foreground[data-state=active]{color:var(--foreground)}.data-\[state\=active\]\:shadow-sm[data-state=active]{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}@media (width>=40rem){.sm\:text-left{text-align:left}}@media (width>=48rem){.md\:col-span-2{grid-column:span 2/span 2}.md\:w-\[200px\]{width:200px}.md\:w-auto{width:auto}.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.md\:flex-row{flex-direction:row}.md\:items-center{align-items:center}.md\:text-sm{font-size:calc(var(--fontBase)*.875);line-height:var(--tw-leading,var(--text-sm--line-height))}}@media (prefers-color-scheme:dark){.dark\:focus-visible\:ring-destructive\/40:focus-visible,.dark\:aria-invalid\:ring-destructive\/40[aria-invalid=true]{--tw-ring-color:color-mix(in oklab,var(--destructive)40%,transparent)}}.\[\&_svg\]\:pointer-events-none svg{pointer-events:none}.\[\&_svg\]\:shrink-0 svg{flex-shrink:0}.\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-4 svg:not([class*=size-]){width:calc(var(--spacing)*4);height:calc(var(--spacing)*4)}.\[\&_svg\:not\(\[class\*\=\'text-\'\]\)\]\:text-muted-foreground svg:not([class*=text-]){color:var(--muted-foreground)}:is(.\*\:\[span\]\:last\:flex>*):is(span):last-child{display:flex}:is(.\*\:\[span\]\:last\:items-center>*):is(span):last-child{align-items:center}:is(.\*\:\[span\]\:last\:gap-2>*):is(span):last-child{gap:calc(var(--spacing)*2)}.\[\&\>svg\]\:pointer-events-none>svg{pointer-events:none}.\[\&\>svg\]\:size-3>svg{width:calc(var(--spacing)*3);height:calc(var(--spacing)*3)}@media (hover:hover){a.\[a\&\]\:hover\:bg-accent:hover{background-color:var(--accent)}a.\[a\&\]\:hover\:bg-destructive\/90:hover{background-color:color-mix(in oklab,var(--destructive)90%,transparent)}a.\[a\&\]\:hover\:bg-primary\/90:hover{background-color:color-mix(in oklab,var(--primary)90%,transparent)}a.\[a\&\]\:hover\:bg-secondary\/90:hover{background-color:color-mix(in oklab,var(--secondary)90%,transparent)}a.\[a\&\]\:hover\:text-accent-foreground:hover{color:var(--accent-foreground)}}}:root{--background:oklch(1 0 0);--foreground:var(--primaryForeground,#4b5865);--card:var(--primaryBackground,#fff);--card-foreground:var(--primaryForeground,#4b5865);--popover:var(--primaryBackground,#fff);--popover-foreground:var(--primaryForeground,#4b5865);--primary:var(--primaryBackground,#fff);--primary-foreground:var(--primaryForeground,#364452);--badge:var(--primaryForeground,#364452);--badge-foreground:var(--primaryBackground,#fff);--radio:var(--primaryForeground,#364452);--secondary:oklch(.97 0 0);--secondary-foreground:oklch(.205 0 0);--muted:oklch(.97 0 0);--accent:var(--accentBackground,#e3e9ef);--accent-foreground:var(--accentForeground,#0f1419);--destructive:var(--danger,#d92020);--destructive-foreground:var(--danger,#d92020);--border:var(--borderInput,#9aa6b2);--input:var(--borderInput,#9aa6b2);--ring:oklch(.708 0 0);--radius:var(--borderRadius,.625rem);--focused:var(--borderRadius,#0061ff);--fontBase:var(--fontSizeBase,1rem);--link-button:var(--foreground,#4b5865)}@property --tw-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-z{syntax:"*";inherits:false;initial-value:0}@property --tw-space-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-space-x-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-leading{syntax:"*";inherits:false}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-tracking{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-outline-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}
2
2
  /*! tailwindcss v4.0.9 | MIT License | https://tailwindcss.com */
3
3
  /*# sourceMappingURL=index.css.map */
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/styles/global.css"],"sourcesContent":["/*! tailwindcss v4.0.9 | MIT License | https://tailwindcss.com */\n@layer theme{:root,:host{--font-sans:ui-sans-serif,system-ui,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\",\"Noto Color Emoji\";--font-mono:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,\"Liberation Mono\",\"Courier New\",monospace;--color-blue-500:oklch(.623 .214 259.815);--color-gray-200:oklch(.928 .006 264.531);--color-gray-400:oklch(.707 .022 261.325);--color-gray-600:oklch(.446 .03 256.802);--color-gray-800:oklch(.278 .033 256.848);--color-gray-900:oklch(.21 .034 264.665);--color-black:#000;--color-white:#fff;--spacing:.25rem;--container-xs:20rem;--text-xs:calc(var(--fontBase)*.75);--text-xs--line-height:calc(1/.75);--text-sm--line-height:calc(1.25/.875);--text-lg:1.125rem;--text-lg--line-height:calc(1.75/1.125);--text-xl--line-height:calc(1.75/1.25);--font-weight-normal:400;--font-weight-medium:500;--font-weight-semibold:600;--font-weight-bold:700;--tracking-tight:-.025em;--radius-md:calc(var(--radius) - 2px);--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4,0,.2,1);--default-font-family:var(--font-sans);--default-font-feature-settings:var(--font-sans--font-feature-settings);--default-font-variation-settings:var(--font-sans--font-variation-settings);--default-mono-font-family:var(--font-mono);--default-mono-font-feature-settings:var(--font-mono--font-feature-settings);--default-mono-font-variation-settings:var(--font-mono--font-variation-settings);--muted-foreground:var(--primary-foreground);--color-border:var(--border)}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif,system-ui,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\",\"Noto Color Emoji\");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}body{line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,\"Liberation Mono\",\"Courier New\",monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1;color:color-mix(in oklab,currentColor 50%,transparent)}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){appearance:button}::file-selector-button{appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}*{border-color:var(--border);outline-color:color-mix(in oklab,var(--ring)50%,transparent)}body{background-color:var(--background);color:var(--foreground)}}@layer components;@layer utilities{.pointer-events-none{pointer-events:none}.visible{visibility:visible}.sr-only{clip:rect(0,0,0,0);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.inset-0{inset:calc(var(--spacing)*0)}.inset-x-0{inset-inline:calc(var(--spacing)*0)}.top-1\\/2{top:50%}.top-4{top:calc(var(--spacing)*4)}.right-4{right:calc(var(--spacing)*4)}.bottom-0{bottom:calc(var(--spacing)*0)}.left-1\\/2{left:50%}.z-50{z-index:50}.-mx-1{margin-inline:calc(var(--spacing)*-1)}.mx-auto{margin-inline:auto}.my-1{margin-block:calc(var(--spacing)*1)}.mt-1{margin-top:calc(var(--spacing)*1)}.mt-4{margin-top:calc(var(--spacing)*4)}.mt-24{margin-top:calc(var(--spacing)*24)}.mt-auto{margin-top:auto}.mb-0{margin-bottom:calc(var(--spacing)*0)}.mb-1{margin-bottom:calc(var(--spacing)*1)}.mb-2{margin-bottom:calc(var(--spacing)*2)}.mb-3{margin-bottom:calc(var(--spacing)*3)}.mb-6{margin-bottom:calc(var(--spacing)*6)}.ml-2{margin-left:calc(var(--spacing)*2)}.block{display:block}.contents{display:contents}.flex{display:flex}.grid{display:grid}.hidden{display:none}.inline-flex{display:inline-flex}.table{display:table}.aspect-square{aspect-ratio:1}.size-2{width:calc(var(--spacing)*2);height:calc(var(--spacing)*2)}.size-2\\.5{width:calc(var(--spacing)*2.5);height:calc(var(--spacing)*2.5)}.size-3\\.5{width:calc(var(--spacing)*3.5);height:calc(var(--spacing)*3.5)}.size-4{width:calc(var(--spacing)*4);height:calc(var(--spacing)*4)}.size-9{width:calc(var(--spacing)*9);height:calc(var(--spacing)*9)}.h-2{height:calc(var(--spacing)*2)}.h-2\\.5{height:calc(var(--spacing)*2.5)}.h-3{height:calc(var(--spacing)*3)}.h-4{height:calc(var(--spacing)*4)}.h-5{height:calc(var(--spacing)*5)}.h-8{height:calc(var(--spacing)*8)}.h-9{height:calc(var(--spacing)*9)}.h-10{height:calc(var(--spacing)*10)}.h-\\[300px\\]{height:300px}.h-\\[var\\(--radix-select-trigger-height\\)\\]{height:var(--radix-select-trigger-height)}.h-auto{height:auto}.h-full{height:100%}.h-px{height:1px}.max-h-96{max-height:calc(var(--spacing)*96)}.max-h-\\[calc\\(80vh-120px\\)\\]{max-height:calc(80vh - 120px)}.min-h-11{min-height:calc(var(--spacing)*11)}.w-2\\.5{width:calc(var(--spacing)*2.5)}.w-3{width:calc(var(--spacing)*3)}.w-4{width:calc(var(--spacing)*4)}.w-5{width:calc(var(--spacing)*5)}.w-\\[100px\\]{width:100px}.w-fit{width:fit-content}.w-full{width:100%}.max-w-xs{max-width:var(--container-xs)}.min-w-0{min-width:calc(var(--spacing)*0)}.min-w-\\[8rem\\]{min-width:8rem}.min-w-\\[var\\(--radix-select-trigger-width\\)\\]{min-width:var(--radix-select-trigger-width)}.flex-1{flex:1}.shrink-0{flex-shrink:0}.-translate-x-1\\/2{--tw-translate-x:calc(calc(1/2*100%)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}.-translate-y-1\\/2{--tw-translate-y:calc(calc(1/2*100%)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-y-\\[calc\\(-50\\%_-_2px\\)\\]{--tw-translate-y:calc(-50% - 2px);translate:var(--tw-translate-x)var(--tw-translate-y)}.rotate-45{rotate:45deg}.cursor-default{cursor:default}.touch-none{touch-action:none}.scroll-my-1{scroll-margin-block:calc(var(--spacing)*1)}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.flex-col{flex-direction:column}.items-center{align-items:center}.items-start{align-items:flex-start}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.gap-0{gap:calc(var(--spacing)*0)}.gap-1{gap:calc(var(--spacing)*1)}.gap-1\\.5{gap:calc(var(--spacing)*1.5)}.gap-2{gap:calc(var(--spacing)*2)}.gap-3{gap:calc(var(--spacing)*3)}.gap-4{gap:calc(var(--spacing)*4)}.gap-6{gap:calc(var(--spacing)*6)}:where(.space-y-0>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*0)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*0)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-1>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*1)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*1)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-2>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*2)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*2)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-3>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*3)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*3)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-4>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*4)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*4)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-6>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*6)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*6)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-x-3>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(calc(var(--spacing)*3)*var(--tw-space-x-reverse));margin-inline-end:calc(calc(var(--spacing)*3)*calc(1 - var(--tw-space-x-reverse)))}.overflow-hidden{overflow:hidden}.overflow-y-auto{overflow-y:auto}.rounded{border-radius:.25rem}.rounded-\\[2px\\]{border-radius:2px}.rounded-\\[inherit\\]{border-radius:inherit}.rounded-full{border-radius:3.40282e38px}.rounded-lg{border-radius:var(--radius)}.rounded-md{border-radius:calc(var(--radius) - 2px)}.rounded-sm{border-radius:calc(var(--radius) - 4px)}.rounded-xl{border-radius:calc(var(--radius) + 2px)}.rounded-t-\\[10px\\]{border-top-left-radius:10px;border-top-right-radius:10px}.border,.border-1{border-style:var(--tw-border-style);border-width:1px}.border-t{border-top-style:var(--tw-border-style);border-top-width:1px}.border-t-2{border-top-style:var(--tw-border-style);border-top-width:2px}.border-l{border-left-style:var(--tw-border-style);border-left-width:1px}.border-gray-200{border-color:var(--color-gray-200)}.border-input{border-color:var(--input)}.border-transparent{border-color:#0000}.border-t-transparent{border-top-color:#0000}.border-l-transparent{border-left-color:#0000}.bg-background{background-color:var(--background)}.bg-badge{background-color:var(--badge)}.bg-black\\/80{background-color:color-mix(in oklab,var(--color-black)80%,transparent)}.bg-border{background-color:var(--border)}.bg-card{background-color:var(--card)}.bg-destructive{background-color:var(--destructive)}.bg-gray-900{background-color:var(--color-gray-900)}.bg-muted{background-color:var(--muted)}.bg-popover{background-color:var(--popover)}.bg-primary{background-color:var(--primary)}.bg-secondary{background-color:var(--secondary)}.bg-transparent{background-color:#0000}.fill-primary{fill:var(--primary)}.fill-radio{fill:var(--radio)}.p-0{padding:calc(var(--spacing)*0)}.p-1{padding:calc(var(--spacing)*1)}.p-4{padding:calc(var(--spacing)*4)}.p-\\[1px\\]{padding:1px}.px-0{padding-inline:calc(var(--spacing)*0)}.px-2{padding-inline:calc(var(--spacing)*2)}.px-3{padding-inline:calc(var(--spacing)*3)}.px-4{padding-inline:calc(var(--spacing)*4)}.px-6{padding-inline:calc(var(--spacing)*6)}.py-0\\.5{padding-block:calc(var(--spacing)*.5)}.py-1{padding-block:calc(var(--spacing)*1)}.py-1\\.5{padding-block:calc(var(--spacing)*1.5)}.py-2{padding-block:calc(var(--spacing)*2)}.py-6{padding-block:calc(var(--spacing)*6)}.py-7{padding-block:calc(var(--spacing)*7)}.pt-2{padding-top:calc(var(--spacing)*2)}.pb-2{padding-bottom:calc(var(--spacing)*2)}.pb-4{padding-bottom:calc(var(--spacing)*4)}.pl-2{padding-left:calc(var(--spacing)*2)}.text-center{text-align:center}.text-lg{font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}.text-sm{font-size:calc(var(--fontBase)*.875);line-height:var(--tw-leading,var(--text-sm--line-height))}.text-xl{font-size:calc(var(--fontBase)*1.25);line-height:var(--tw-leading,var(--text-xl--line-height))}.text-xs{font-size:calc(var(--fontBase)*.75);line-height:var(--tw-leading,var(--text-xs--line-height))}.leading-none{--tw-leading:1;line-height:1}.font-bold{--tw-font-weight:var(--font-weight-bold);font-weight:var(--font-weight-bold)}.font-medium{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.font-normal{--tw-font-weight:var(--font-weight-normal);font-weight:var(--font-weight-normal)}.font-semibold{--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold)}.tracking-tight{--tw-tracking:var(--tracking-tight);letter-spacing:var(--tracking-tight)}.text-balance{text-wrap:balance}.whitespace-nowrap{white-space:nowrap}.text-badge-foreground{color:var(--badge-foreground)}.text-base-color{color:var(--base)}.text-blue-500{color:var(--color-blue-500)}.text-card-foreground{color:var(--card-foreground)}.text-destructive{color:var(--destructive)}.text-foreground{color:var(--foreground)}.text-gray-400{color:var(--color-gray-400)}.text-gray-600{color:var(--color-gray-600)}.text-link-button-primary{color:var(--link-button)}.text-muted-foreground{color:var(--muted-foreground)}.text-popover-foreground{color:var(--popover-foreground)}.text-primary{color:var(--primary)}.text-primary-foreground{color:var(--primary-foreground)}.text-secondary-foreground{color:var(--secondary-foreground)}.text-white{color:var(--color-white)}.underline-offset-4{text-underline-offset:4px}.opacity-70{opacity:.7}.shadow-md{--tw-shadow:0 4px 6px -1px var(--tw-shadow-color,#0000001a),0 2px 4px -2px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-sm{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-xs{--tw-shadow:0 1px 2px 0 var(--tw-shadow-color,#0000000d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.ring-offset-background{--tw-ring-offset-color:var(--background)}.outline-hidden{outline-style:none}@media (forced-colors:active){.outline-hidden{outline-offset:2px;outline:2px solid #0000}}.outline{outline-style:var(--tw-outline-style);outline-width:1px}.filter{filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.transition-\\[color\\,box-shadow\\]{transition-property:color,box-shadow;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-\\[color\\]{transition-property:color;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-opacity{transition-property:opacity;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.outline-none{--tw-outline-style:none;outline-style:none}.select-none{-webkit-user-select:none;user-select:none}.group-data-\\[disabled\\=true\\]\\:pointer-events-none:is(:where(.group)[data-disabled=true] *){pointer-events:none}.group-data-\\[disabled\\=true\\]\\:opacity-50:is(:where(.group)[data-disabled=true] *){opacity:.5}.file\\:inline-flex::file-selector-button{display:inline-flex}.file\\:h-7::file-selector-button{height:calc(var(--spacing)*7)}.file\\:border-0::file-selector-button{border-style:var(--tw-border-style);border-width:0}.file\\:bg-transparent::file-selector-button{background-color:#0000}.file\\:text-sm::file-selector-button{font-size:calc(var(--fontBase)*.875);line-height:var(--tw-leading,var(--text-sm--line-height))}.file\\:font-medium::file-selector-button{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.file\\:text-foreground::file-selector-button{color:var(--foreground)}.placeholder\\:text-muted-foreground::placeholder{color:var(--muted-foreground)}@media (hover:hover){.hover\\:bg-accent:hover{background-color:var(--accent)}.hover\\:bg-destructive\\/90:hover{background-color:color-mix(in oklab,var(--destructive)90%,transparent)}.hover\\:bg-gray-800:hover{background-color:var(--color-gray-800)}.hover\\:bg-primary\\/90:hover{background-color:color-mix(in oklab,var(--primary)90%,transparent)}.hover\\:bg-secondary\\/80:hover{background-color:color-mix(in oklab,var(--secondary)80%,transparent)}.hover\\:text-accent-foreground:hover{color:var(--accent-foreground)}.hover\\:underline:hover{text-decoration-line:underline}.hover\\:opacity-100:hover{opacity:1}}.focus\\:bg-accent:focus{background-color:var(--accent)}.focus\\:text-accent-foreground:focus{color:var(--accent-foreground)}.focus\\:ring-2:focus{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentColor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus\\:ring-ring:focus{--tw-ring-color:var(--ring)}.focus\\:ring-offset-2:focus{--tw-ring-offset-width:2px;--tw-ring-offset-shadow:var(--tw-ring-inset,)0 0 0 var(--tw-ring-offset-width)var(--tw-ring-offset-color)}.focus\\:outline-none:focus{--tw-outline-style:none;outline-style:none}.focus-visible\\:border-focused:focus-visible{border-color:var(--focused)}.focus-visible\\:border-ring:focus-visible{border-color:var(--ring)}.focus-visible\\:ring-\\[3px\\]:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(3px + var(--tw-ring-offset-width))var(--tw-ring-color,currentColor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus-visible\\:ring-destructive\\/20:focus-visible{--tw-ring-color:color-mix(in oklab,var(--destructive)20%,transparent)}.focus-visible\\:ring-ring\\/50:focus-visible{--tw-ring-color:color-mix(in oklab,var(--ring)50%,transparent)}.focus-visible\\:outline-1:focus-visible{outline-style:var(--tw-outline-style);outline-width:1px}.focus-visible\\:outline-ring:focus-visible{outline-color:var(--ring)}.disabled\\:pointer-events-none:disabled{pointer-events:none}.disabled\\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\\:opacity-50:disabled{opacity:.5}.has-\\[\\>svg\\]\\:px-2\\.5:has(>svg){padding-inline:calc(var(--spacing)*2.5)}.has-\\[\\>svg\\]\\:px-3:has(>svg){padding-inline:calc(var(--spacing)*3)}.has-\\[\\>svg\\]\\:px-4:has(>svg){padding-inline:calc(var(--spacing)*4)}.aria-invalid\\:border-destructive[aria-invalid=true]{border-color:var(--destructive)}.aria-invalid\\:ring-destructive\\/20[aria-invalid=true]{--tw-ring-color:color-mix(in oklab,var(--destructive)20%,transparent)}.data-\\[disabled\\]\\:pointer-events-none[data-disabled]{pointer-events:none}.data-\\[disabled\\]\\:opacity-50[data-disabled]{opacity:.5}.data-\\[error\\=true\\]\\:text-destructive[data-error=true]{color:var(--destructive)}.data-\\[orientation\\=horizontal\\]\\:h-px[data-orientation=horizontal]{height:1px}.data-\\[orientation\\=horizontal\\]\\:w-full[data-orientation=horizontal]{width:100%}.data-\\[orientation\\=vertical\\]\\:h-full[data-orientation=vertical]{height:100%}.data-\\[orientation\\=vertical\\]\\:w-px[data-orientation=vertical]{width:1px}.data-\\[placeholder\\]\\:text-muted-foreground[data-placeholder]{color:var(--muted-foreground)}.data-\\[side\\=bottom\\]\\:translate-y-1[data-side=bottom]{--tw-translate-y:calc(var(--spacing)*1);translate:var(--tw-translate-x)var(--tw-translate-y)}.data-\\[side\\=left\\]\\:-translate-x-1[data-side=left]{--tw-translate-x:calc(var(--spacing)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}.data-\\[side\\=right\\]\\:translate-x-1[data-side=right]{--tw-translate-x:calc(var(--spacing)*1);translate:var(--tw-translate-x)var(--tw-translate-y)}.data-\\[side\\=top\\]\\:-translate-y-1[data-side=top]{--tw-translate-y:calc(var(--spacing)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}:is(.\\*\\:data-\\[slot\\=select-value\\]\\:line-clamp-1>*)[data-slot=select-value]{-webkit-line-clamp:1;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}:is(.\\*\\:data-\\[slot\\=select-value\\]\\:flex>*)[data-slot=select-value]{display:flex}:is(.\\*\\:data-\\[slot\\=select-value\\]\\:items-center>*)[data-slot=select-value]{align-items:center}:is(.\\*\\:data-\\[slot\\=select-value\\]\\:gap-2>*)[data-slot=select-value]{gap:calc(var(--spacing)*2)}.data-\\[state\\=active\\]\\:bg-background[data-state=active]{background-color:var(--background)}.data-\\[state\\=active\\]\\:text-foreground[data-state=active]{color:var(--foreground)}.data-\\[state\\=active\\]\\:shadow-sm[data-state=active]{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}@media (width>=40rem){.sm\\:text-left{text-align:left}}@media (width>=48rem){.md\\:col-span-2{grid-column:span 2/span 2}.md\\:w-\\[200px\\]{width:200px}.md\\:w-auto{width:auto}.md\\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.md\\:flex-row{flex-direction:row}.md\\:items-center{align-items:center}.md\\:text-sm{font-size:calc(var(--fontBase)*.875);line-height:var(--tw-leading,var(--text-sm--line-height))}}@media (prefers-color-scheme:dark){.dark\\:focus-visible\\:ring-destructive\\/40:focus-visible,.dark\\:aria-invalid\\:ring-destructive\\/40[aria-invalid=true]{--tw-ring-color:color-mix(in oklab,var(--destructive)40%,transparent)}}.\\[\\&_svg\\]\\:pointer-events-none svg{pointer-events:none}.\\[\\&_svg\\]\\:shrink-0 svg{flex-shrink:0}.\\[\\&_svg\\:not\\(\\[class\\*\\=\\'size-\\'\\]\\)\\]\\:size-4 svg:not([class*=size-]){width:calc(var(--spacing)*4);height:calc(var(--spacing)*4)}.\\[\\&_svg\\:not\\(\\[class\\*\\=\\'text-\\'\\]\\)\\]\\:text-muted-foreground svg:not([class*=text-]){color:var(--muted-foreground)}:is(.\\*\\:\\[span\\]\\:last\\:flex>*):is(span):last-child{display:flex}:is(.\\*\\:\\[span\\]\\:last\\:items-center>*):is(span):last-child{align-items:center}:is(.\\*\\:\\[span\\]\\:last\\:gap-2>*):is(span):last-child{gap:calc(var(--spacing)*2)}.\\[\\&\\>svg\\]\\:pointer-events-none>svg{pointer-events:none}.\\[\\&\\>svg\\]\\:size-3>svg{width:calc(var(--spacing)*3);height:calc(var(--spacing)*3)}@media (hover:hover){a.\\[a\\&\\]\\:hover\\:bg-accent:hover{background-color:var(--accent)}a.\\[a\\&\\]\\:hover\\:bg-destructive\\/90:hover{background-color:color-mix(in oklab,var(--destructive)90%,transparent)}a.\\[a\\&\\]\\:hover\\:bg-primary\\/90:hover{background-color:color-mix(in oklab,var(--primary)90%,transparent)}a.\\[a\\&\\]\\:hover\\:bg-secondary\\/90:hover{background-color:color-mix(in oklab,var(--secondary)90%,transparent)}a.\\[a\\&\\]\\:hover\\:text-accent-foreground:hover{color:var(--accent-foreground)}}}:root{--background:oklch(1 0 0);--foreground:var(--primaryForeground,#4b5865);--card:var(--primaryBackground,#fff);--card-foreground:var(--primaryForeground,#4b5865);--popover:var(--primaryBackground,#fff);--popover-foreground:var(--primaryForeground,#4b5865);--primary:var(--primaryBackground,#fff);--primary-foreground:var(--primaryForeground,#364452);--badge:var(--primaryForeground,#364452);--badge-foreground:var(--primaryBackground,#fff);--radio:var(--primaryForeground,#364452);--secondary:oklch(.97 0 0);--secondary-foreground:oklch(.205 0 0);--muted:oklch(.97 0 0);--accent:var(--accentBackground,#e3e9ef);--accent-foreground:var(--accentForeground,#0f1419);--destructive:var(--danger,#d92020);--destructive-foreground:var(--danger,#d92020);--border:var(--borderInput,#9aa6b2);--input:var(--borderInput,#9aa6b2);--ring:oklch(.708 0 0);--radius:var(--borderRadius,.625rem);--focused:var(--borderRadius,#0061ff);--fontBase:var(--fontSizeBase,1rem);--link-button:var(--foreground,#4b5865)}@property --tw-translate-x{syntax:\"*\";inherits:false;initial-value:0}@property --tw-translate-y{syntax:\"*\";inherits:false;initial-value:0}@property --tw-translate-z{syntax:\"*\";inherits:false;initial-value:0}@property --tw-space-y-reverse{syntax:\"*\";inherits:false;initial-value:0}@property --tw-space-x-reverse{syntax:\"*\";inherits:false;initial-value:0}@property --tw-border-style{syntax:\"*\";inherits:false;initial-value:solid}@property --tw-leading{syntax:\"*\";inherits:false}@property --tw-font-weight{syntax:\"*\";inherits:false}@property --tw-tracking{syntax:\"*\";inherits:false}@property --tw-shadow{syntax:\"*\";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:\"*\";inherits:false}@property --tw-inset-shadow{syntax:\"*\";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:\"*\";inherits:false}@property --tw-ring-color{syntax:\"*\";inherits:false}@property --tw-ring-shadow{syntax:\"*\";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:\"*\";inherits:false}@property --tw-inset-ring-shadow{syntax:\"*\";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:\"*\";inherits:false}@property --tw-ring-offset-width{syntax:\"<length>\";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:\"*\";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:\"*\";inherits:false;initial-value:0 0 #0000}@property --tw-outline-style{syntax:\"*\";inherits:false;initial-value:solid}@property --tw-blur{syntax:\"*\";inherits:false}@property --tw-brightness{syntax:\"*\";inherits:false}@property --tw-contrast{syntax:\"*\";inherits:false}@property --tw-grayscale{syntax:\"*\";inherits:false}@property --tw-hue-rotate{syntax:\"*\";inherits:false}@property --tw-invert{syntax:\"*\";inherits:false}@property --tw-opacity{syntax:\"*\";inherits:false}@property --tw-saturate{syntax:\"*\";inherits:false}@property --tw-sepia{syntax:\"*\";inherits:false}@property --tw-drop-shadow{syntax:\"*\";inherits:false}\n"],"mappings":"AACA,aAAa,MAAM,MAAM,YAAY,aAAa,CAAC,SAAS,CAAC,UAAU,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,iBAAiB,CAAC,mBAAmB,YAAY,YAAY,CAAC,cAAc,CAAC,KAAK,CAAC,MAAM,CAAC,QAAQ,CAAC,iBAAiB,CAAC,aAAa,CAAC,UAAU,iBAAiB,MAAM,KAAK,KAAK,SAAS,iBAAiB,MAAM,KAAK,KAAK,SAAS,iBAAiB,MAAM,KAAK,KAAK,SAAS,iBAAiB,MAAM,KAAK,IAAI,SAAS,iBAAiB,MAAM,KAAK,KAAK,SAAS,iBAAiB,MAAM,IAAI,KAAK,SAAS,cAAc,KAAK,cAAc,KAAK,UAAU,OAAO,eAAe,MAAM,UAAU,KAAK,IAAI,WAAW,CAAC,KAAK,uBAAuB,KAAK,CAAC,CAAC,KAAK,uBAAuB,KAAK,IAAI,CAAC,MAAM,UAAU,SAAS,uBAAuB,KAAK,IAAI,CAAC,OAAO,uBAAuB,KAAK,IAAI,CAAC,MAAM,qBAAqB,IAAI,qBAAqB,IAAI,uBAAuB,IAAI,mBAAmB,IAAI,iBAAiB,QAAQ,YAAY,KAAK,IAAI,UAAU,EAAE,KAAK,8BAA8B,KAAK,qCAAqC,aAAa,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,sBAAsB,IAAI,aAAa,gCAAgC,IAAI,oCAAoC,kCAAkC,IAAI,sCAAsC,2BAA2B,IAAI,aAAa,qCAAqC,IAAI,oCAAoC,uCAAuC,IAAI,sCAAsC,mBAAmB,IAAI,sBAAsB,eAAe,IAAI,SAAS,CAAC,CAAC,YAAY,EAAE,OAAO,QAAQ,WAAW,WAAW,WAAW,OAAO,EAAE,MAD1iD,OACujD,EADvjD,QACikD,CAAC,CAAC,uBAAuB,WAAW,WAAW,OAAO,EAAE,MADznD,OACsoD,EADtoD,QACgpD,CAAC,CAAC,KAAK,MAAM,yBAAyB,KAAK,SAAS,EAAE,YAAY,IAAI,YAAY,IAAI,qBAAqB,CAAC,aAAa,CAAC,SAAS,CAAC,UAAU,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,iBAAiB,CAAC,oBAAoB,sBAAsB,IAAI,+BAA+B,CAAC,QAAQ,wBAAwB,IAAI,iCAAiC,CAAC,QAAQ,4BAA4B,WAAW,CAAC,KAAK,YAAY,OAAO,CAAC,GAAG,OAAO,EAAE,MAAM,QAAQ,iBAAiB,GAAG,CAAC,IAAI,OAAO,CAAC,QAAQ,wBAAwB,UAAU,OAAO,gBAAgB,UAAU,MAAM,CAAC,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,UAAU,QAAQ,YAAY,OAAO,CAAC,EAAE,MAAM,QAAwE,wBAAwB,QAAQ,gBAAgB,OAAO,CAAC,EAAE,OAAO,YAAY,MAAM,CAAC,KAAK,IAAI,KAAK,IAAI,YAAY,IAAI,0BAA0B,CAAC,YAAY,CAAC,cAAc,CAAC,KAAK,CAAC,MAAM,CAAC,QAAQ,CAAC,iBAAiB,CAAC,aAAa,CAAC,WAAW,sBAAsB,IAAI,oCAAoC,CAAC,QAAQ,wBAAwB,IAAI,sCAAsC,CAAC,QAAQ,UAAU,GAAG,CAAC,MAAM,UAAU,GAAG,CAAC,IAAI,IAAI,eAAe,SAAS,UAAU,IAAI,YAAY,EAAE,SAAS,QAAQ,CAAC,IAAI,OAAO,MAAM,CAAC,IAAI,IAAI,KAAK,CAAC,MAAM,YAAY,EAAE,aAAa,QAAQ,gBAAgB,QAAQ,CAAC,gBAAgB,QAAQ,IAAI,CAAC,SAAS,eAAe,QAAQ,CAAC,QAAQ,QAAQ,SAAS,CAAC,GAAG,GAAG,KAAK,WAAW,IAAI,CAAC,IAAI,IAAI,MAAM,OAAO,MAAM,OAAO,MAAM,OAAO,eAAe,OAAO,QAAQ,KAAK,CAAC,IAAI,MAAM,UAAU,KAAK,OAAO,IAAI,CAAC,OAAO,MAAM,OAAO,SAAS,SAAS,KAAK,QAAQ,sBAAsB,QAAQ,wBAAwB,QAAQ,eAAe,QAAQ,MAAM,QAAQ,QAAQ,EAAE,iBAAiB,MADtzG,cAC00G,CAAC,CAAC,uBAAuB,KAAK,QAAQ,sBAAsB,QAAQ,wBAAwB,QAAQ,eAAe,QAAQ,MAAM,QAAQ,QAAQ,EAAE,iBAAiB,MAD9+G,cACkgH,CAAC,CAAC,OAAO,MAAM,IAAI,CAAC,UAAU,CAAC,QAAQ,SAAS,YAAY,MAAM,CAAC,OAAO,MAAM,IAAI,CAAC,UAAU,CAAC,QAAQ,SAAS,OAAO,qBAAqB,IAAI,CAAC,uBAAuB,kBAAkB,GAAG,CAAC,cAAc,QAAQ,EAAE,MAAM,UAAU,GAAG,KAAK,CAAC,aAAa,GAAG,CAAC,YAAY,CAAC,SAAS,OAAO,QAAQ,CAAC,4BAA4B,mBAAmB,IAAI,CAAC,8BAA8B,WAAW,IAAI,WAAW,OAAO,CAAC,wBAAwB,QAAQ,WAAW,CAAC,uCADz8H,QACw/H,CAAC,CAAC,wBAAwB,cAAc,CAAC,CAAC,mCAAmC,cAAc,CAAC,CAAC,oCAAoC,cAAc,CAAC,CAAC,kCAAkC,cAAc,CAAC,CAAC,mCAAmC,cAAc,CAAC,CAAC,qCAAqC,cAAc,CAAC,CAAC,qCAAqC,cAAc,CAAC,CAAC,0CAA0C,cAAc,CAAC,CAAC,uCAAuC,cAAc,CAAC,CAAC,iBAAiB,WAAW,IAAI,CAAC,OAAO,KAAK,OAAO,CAAC,aAAa,CAAC,YAAY,CAAC,cAAc,WAAW,MAAM,CAAC,uBAAuB,WAAW,MAAM,CAAC,4BAA4B,OAAO,IAAI,CAAC,4BAA4B,OAAO,IAAI,CAAC,CAAC,OAAO,OAAO,KAAK,CAAC,sBAAsB,QAAQ,cAAc,CAAC,EAAE,aAAa,IAAI,UAAU,cAAc,UAAU,GAAG,KAAK,CAAC,IAAI,OAAO,GAAG,CAAC,YAAY,CAAC,KAAK,iBAAiB,IAAI,cAAc,MAAM,IAAI,aAAa,CAAC,CAAC,kBAAkB,iBAAiB,CAAC,oBAAoB,eAAe,IAAI,CAAC,CAAC,QAAQ,WAAW,OAAO,CAAC,CAAC,QAAQ,KAAK,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,YAAY,OAAO,aAAa,EAAE,MAAM,IAAI,OAAO,IADtkK,OACilK,KADjlK,QAC8lK,EAAE,SAAS,SAAS,SAAS,MAAM,CAAC,CAAC,SAAS,SAAS,QAAQ,CAAC,CAAC,MAAM,SAAS,KAAK,CAAC,CAAC,SAAS,SAAS,QAAQ,CAAC,CAAC,QAAQ,MAAM,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,UAAU,aAAa,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,SAAS,IAAI,GAAG,CAAC,CAAC,MAAM,IAAI,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,QAAQ,MAAM,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,SAAS,OAAO,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,UAAU,KAAK,GAAG,CAAC,CAAC,KAAK,QAAQ,EAAE,CAAC,CAAC,MAAM,cAAc,KAAK,IAAI,UAAU,CAAC,GAAG,CAAC,CAAC,QAAQ,cAAc,IAAI,CAAC,CAAC,KAAK,aAAa,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,KAAK,WAAW,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,KAAK,WAAW,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,MAAM,WAAW,KAAK,IAAI,UAAU,CAAC,GAAG,CAAC,CAAC,QAAQ,WAAW,IAAI,CAAC,CAAC,KAAK,cAAc,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,KAAK,cAAc,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,KAAK,cAAc,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,KAAK,cAAc,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,KAAK,cAAc,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,KAAK,YAAY,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,MAAM,QAAQ,KAAK,CAAC,CAAC,SAAS,QAAQ,QAAQ,CAAC,CAAC,KAAK,QAAQ,IAAI,CAAC,CAAC,KAAK,QAAQ,IAAI,CAAC,CAAC,OAAO,QAAQ,IAAI,CAAC,CAAC,YAAY,QAAQ,WAAW,CAAC,CAAC,MAAM,QAAQ,KAAK,CAAC,CAAC,cAAc,aAAa,CAAC,CAAC,CAAC,OAAO,MAAM,KAAK,IAAI,UAAU,CAAC,GAAG,OAAO,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,UAAU,MAAM,KAAK,IAAI,UAAU,CAAC,KAAK,OAAO,KAAK,IAAI,UAAU,CAAC,IAAI,CAAC,CAAC,UAAU,MAAM,KAAK,IAAI,UAAU,CAAC,KAAK,OAAO,KAAK,IAAI,UAAU,CAAC,IAAI,CAAC,CAAC,OAAO,MAAM,KAAK,IAAI,UAAU,CAAC,GAAG,OAAO,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,OAAO,MAAM,KAAK,IAAI,UAAU,CAAC,GAAG,OAAO,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,IAAI,OAAO,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,OAAO,OAAO,KAAK,IAAI,UAAU,CAAC,IAAI,CAAC,CAAC,IAAI,OAAO,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,IAAI,OAAO,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,IAAI,OAAO,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,IAAI,OAAO,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,IAAI,OAAO,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,KAAK,OAAO,KAAK,IAAI,UAAU,CAAC,GAAG,CAAC,CAAC,YAAY,OAAO,KAAK,CAAC,CAAC,2CAA2C,OAAO,IAAI,8BAA8B,CAAC,CAAC,OAAO,OAAO,IAAI,CAAC,CAAC,OAAO,OAAO,IAAI,CAAC,CAAC,KAAK,OAAO,GAAG,CAAC,CAAC,SAAS,WAAW,KAAK,IAAI,UAAU,CAAC,GAAG,CAAC,CAAC,6BAA6B,WAAW,KAAK,KAAK,EAAE,MAAM,CAAC,CAAC,SAAS,WAAW,KAAK,IAAI,UAAU,CAAC,GAAG,CAAC,CAAC,OAAO,MAAM,KAAK,IAAI,UAAU,CAAC,IAAI,CAAC,CAAC,IAAI,MAAM,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,IAAI,MAAM,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,IAAI,MAAM,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,YAAY,MAAM,KAAK,CAAC,CAAC,MAAM,MAAM,WAAW,CAAC,CAAC,OAAO,MAAM,IAAI,CAAC,CAAC,SAAS,UAAU,IAAI,eAAe,CAAC,CAAC,QAAQ,UAAU,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,eAAe,UAAU,IAAI,CAAC,CAAC,8CAA8C,UAAU,IAAI,6BAA6B,CAAC,CAAC,OAAO,KAAK,CAAC,CAAC,CAAC,SAAS,YAAY,CAAC,CAAC,CAAC,kBAAkB,kBAAiB,MAAwB,UAAU,IAAI,iBAAiB,IAAI,iBAAiB,CAAC,CAAC,kBAAkB,kBAAiB,MAAwB,UAAU,IAAI,iBAAiB,IAAI,iBAAiB,CAAC,CAAC,oCAAoC,kBAAiB,KAAK,KAAK,EAAE,MAAK,UAAU,IAAI,iBAAiB,IAAI,iBAAiB,CAAC,CAAC,UAAU,OAAO,KAAK,CAAC,CAAC,eAAe,OAAO,OAAO,CAAC,CAAC,WAAW,aAAa,IAAI,CAAC,CAAC,YAAY,oBAAoB,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,YAAY,sBAAsB,OAAO,CAAC,CAAC,OAAO,CAAC,CAAC,KAAK,CAAC,CAAC,YAAY,sBAAsB,OAAO,CAAC,CAAC,OAAO,CAAC,CAAC,KAAK,CAAC,CAAC,SAAS,eAAe,MAAM,CAAC,CAAC,aAAa,YAAY,MAAM,CAAC,CAAC,YAAY,YAAY,UAAU,CAAC,CAAC,gBAAgB,gBAAgB,aAAa,CAAC,CAAC,eAAe,gBAAgB,MAAM,CAAC,CAAC,MAAM,IAAI,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,MAAM,IAAI,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,SAAS,IAAI,KAAK,IAAI,UAAU,CAAC,IAAI,CAAC,CAAC,MAAM,IAAI,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,MAAM,IAAI,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,MAAM,IAAI,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,MAAM,IAAI,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,OAAO,CAAC,SAAS,CAAC,KAAK,cAAc,qBAAqB,EAAE,mBAAmB,KAAK,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,IAAI,uBAAuB,iBAAiB,KAAK,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,KAAK,EAAE,EAAE,IAAI,uBAAuB,CAAC,OAAO,CAAC,SAAS,CAAC,KAAK,cAAc,qBAAqB,EAAE,mBAAmB,KAAK,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,IAAI,uBAAuB,iBAAiB,KAAK,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,KAAK,EAAE,EAAE,IAAI,uBAAuB,CAAC,OAAO,CAAC,SAAS,CAAC,KAAK,cAAc,qBAAqB,EAAE,mBAAmB,KAAK,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,IAAI,uBAAuB,iBAAiB,KAAK,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,KAAK,EAAE,EAAE,IAAI,uBAAuB,CAAC,OAAO,CAAC,SAAS,CAAC,KAAK,cAAc,qBAAqB,EAAE,mBAAmB,KAAK,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,IAAI,uBAAuB,iBAAiB,KAAK,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,KAAK,EAAE,EAAE,IAAI,uBAAuB,CAAC,OAAO,CAAC,SAAS,CAAC,KAAK,cAAc,qBAAqB,EAAE,mBAAmB,KAAK,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,IAAI,uBAAuB,iBAAiB,KAAK,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,KAAK,EAAE,EAAE,IAAI,uBAAuB,CAAC,OAAO,CAAC,SAAS,CAAC,KAAK,cAAc,qBAAqB,EAAE,mBAAmB,KAAK,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,IAAI,uBAAuB,iBAAiB,KAAK,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,KAAK,EAAE,EAAE,IAAI,uBAAuB,CAAC,OAAO,CAAC,SAAS,CAAC,KAAK,cAAc,qBAAqB,EAAE,oBAAoB,KAAK,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,IAAI,uBAAuB,kBAAkB,KAAK,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,KAAK,EAAE,EAAE,IAAI,uBAAuB,CAAC,CAAC,gBAAgB,SAAS,MAAM,CAAC,CAAC,gBAAgB,WAAW,IAAI,CAAC,CAAC,QAD7kU,cACmmU,MAAM,CAAC,CAAC,gBAD3mU,cACyoU,GAAG,CAAC,CAAC,oBAAoB,cAAc,OAAO,CAAC,CAAC,aADzrU,cACotU,YAAY,CAAC,CAAC,WAAW,cAAc,IAAI,SAAS,CAAC,CAAC,WAAW,cAAc,KAAK,IAAI,UAAU,EAAE,IAAI,CAAC,CAAC,WAAW,cAAc,KAAK,IAAI,UAAU,EAAE,IAAI,CAAC,CAAC,WAAW,cAAc,KAAK,IAAI,UAAU,EAAE,IAAI,CAAC,CAAC,mBAAmB,uBAAuB,KAAK,wBAAwB,IAAI,CAAC,CAAC,OAAO,CAAC,SAAS,aAAa,IAAI,mBAAmB,aAAa,GAAG,CAAC,CAAC,SAAS,iBAAiB,IAAI,mBAAmB,iBAAiB,GAAG,CAAC,CAAC,WAAW,iBAAiB,IAAI,mBAAmB,iBAAiB,GAAG,CAAC,CAAC,SAAS,kBAAkB,IAAI,mBAAmB,kBAAkB,GAAG,CAAC,CAAC,gBAAgB,aAAa,IAAI,iBAAiB,CAAC,CAAC,aAAa,aAAa,IAAI,QAAQ,CAAC,CAAC,mBAAmB,aAAa,KAAK,CAAC,CAAC,qBAAqB,iBAAiB,KAAK,CAAC,CAAC,qBAAqB,kBAAkB,KAAK,CAAC,CAAC,cAAc,iBAAiB,IAAI,aAAa,CAAC,CAAC,SAAS,iBAAiB,IAAI,QAAQ,CAAC,CAAC,aAAa,iBAAiB,UAAU,GAAG,KAAK,CAAC,IAAI,cAAc,GAAG,CAAC,YAAY,CAAC,CAAC,UAAU,iBAAiB,IAAI,SAAS,CAAC,CAAC,QAAQ,iBAAiB,IAAI,OAAO,CAAC,CAAC,eAAe,iBAAiB,IAAI,cAAc,CAAC,CAAC,YAAY,iBAAiB,IAAI,iBAAiB,CAAC,CAAC,SAAS,iBAAiB,IAAI,QAAQ,CAAC,CAAC,WAAW,iBAAiB,IAAI,UAAU,CAAC,CAAC,WAAW,iBAAiB,IAAI,UAAU,CAAC,CAAC,aAAa,iBAAiB,IAAI,YAAY,CAAC,CAAC,eAAe,iBAAiB,KAAK,CAAC,CAAC,aAAa,KAAK,IAAI,UAAU,CAAC,CAAC,WAAW,KAAK,IAAI,QAAQ,CAAC,CAAC,IAAI,QAAQ,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,IAAI,QAAQ,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,IAAI,QAAQ,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,UAD3tX,QAC6uX,GAAG,CAAC,CAAC,KAAK,eAAe,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,KAAK,eAAe,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,KAAK,eAAe,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,KAAK,eAAe,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,KAAK,eAAe,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,QAAQ,cAAc,KAAK,IAAI,UAAU,CAAC,GAAG,CAAC,CAAC,KAAK,cAAc,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,QAAQ,cAAc,KAAK,IAAI,UAAU,CAAC,IAAI,CAAC,CAAC,KAAK,cAAc,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,KAAK,cAAc,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,KAAK,cAAc,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,KAAK,YAAY,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,KAAK,eAAe,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,KAAK,eAAe,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,KAAK,aAAa,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,YAAY,WAAW,MAAM,CAAC,CAAC,QAAQ,UAAU,IAAI,WAAW,YAAY,IAAI,YAAY,CAAC,IAAI,wBAAwB,CAAC,CAAC,QAAQ,UAAU,KAAK,IAAI,WAAW,CAAC,MAAM,YAAY,IAAI,YAAY,CAAC,IAAI,wBAAwB,CAAC,CAAC,QAAQ,UAAU,KAAK,IAAI,WAAW,CAAC,MAAM,YAAY,IAAI,YAAY,CAAC,IAAI,wBAAwB,CAAC,CAAC,QAAQ,UAAU,KAAK,IAAI,WAAW,CAAC,KAAK,YAAY,IAAI,YAAY,CAAC,IAAI,wBAAwB,CAAC,CAAC,aAAa,aAAa,EAAE,YAAY,CAAC,CAAC,CAAC,UAAU,iBAAiB,IAAI,oBAAoB,YAAY,IAAI,mBAAmB,CAAC,CAAC,YAAY,iBAAiB,IAAI,sBAAsB,YAAY,IAAI,qBAAqB,CAAC,CAAC,YAAY,iBAAiB,IAAI,sBAAsB,YAAY,IAAI,qBAAqB,CAAC,CAAC,cAAc,iBAAiB,IAAI,wBAAwB,YAAY,IAAI,uBAAuB,CAAC,CAAC,eAAe,cAAc,IAAI,kBAAkB,eAAe,IAAI,iBAAiB,CAAC,CAAC,aAAa,UAAU,OAAO,CAAC,CAAC,kBAAkB,YAAY,MAAM,CAAC,CAAC,sBAAsB,MAAM,IAAI,mBAAmB,CAAC,CAAC,gBAAgB,MAAM,IAAI,OAAO,CAAC,CAAC,cAAc,MAAM,IAAI,iBAAiB,CAAC,CAAC,qBAAqB,MAAM,IAAI,kBAAkB,CAAC,CAAC,iBAAiB,MAAM,IAAI,cAAc,CAAC,CAAC,gBAAgB,MAAM,IAAI,aAAa,CAAC,CAAC,cAAc,MAAM,IAAI,iBAAiB,CAAC,CAAC,cAAc,MAAM,IAAI,iBAAiB,CAAC,CAAC,yBAAyB,MAAM,IAAI,cAAc,CAAC,CAAC,sBAAsB,MAAM,IAAI,mBAAmB,CAAC,CAAC,wBAAwB,MAAM,IAAI,qBAAqB,CAAC,CAAC,aAAa,MAAM,IAAI,UAAU,CAAC,CAAC,wBAAwB,MAAM,IAAI,qBAAqB,CAAC,CAAC,0BAA0B,MAAM,IAAI,uBAAuB,CAAC,CAAC,WAAW,MAAM,IAAI,cAAc,CAAC,CAAC,mBAAmB,sBAAsB,GAAG,CAAC,CAAC,WAAW,QAAQ,EAAE,CAAC,CAAC,UAAU,YAAY,EAAE,IAAI,IAAI,KAAK,IAAI,iBAAiB,CAAC,UAAU,CAAC,EAAE,IAAI,IAAI,KAAK,IAAI,iBAAiB,CAAC,WAAW,WAAW,IAAI,kBAAkB,CAAC,IAAI,uBAAuB,CAAC,IAAI,wBAAwB,CAAC,IAAI,iBAAiB,CAAC,IAAI,YAAY,CAAC,CAAC,UAAU,YAAY,EAAE,IAAI,IAAI,EAAE,IAAI,iBAAiB,CAAC,UAAU,CAAC,EAAE,IAAI,IAAI,KAAK,IAAI,iBAAiB,CAAC,WAAW,WAAW,IAAI,kBAAkB,CAAC,IAAI,uBAAuB,CAAC,IAAI,wBAAwB,CAAC,IAAI,iBAAiB,CAAC,IAAI,YAAY,CAAC,CAAC,UAAU,YAAY,EAAE,IAAI,IAAI,EAAE,IAAI,iBAAiB,CAAC,WAAW,WAAW,IAAI,kBAAkB,CAAC,IAAI,uBAAuB,CAAC,IAAI,wBAAwB,CAAC,IAAI,iBAAiB,CAAC,IAAI,YAAY,CAAC,CAAC,uBAAuB,uBAAuB,IAAI,aAAa,CAAC,CAAC,eAAe,cAAc,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC,QAAQ,CAAhE,eAAgF,eAAe,IAAI,QAAQ,IAAI,MAAM,KAAK,CAAC,CAAC,CAAC,QAAQ,cAAc,IAAI,oBAAoB,cAAc,GAAG,CAAC,CAAC,OAAO,OAAO,IAAI,SAAS,EAAE,IAAI,eAAe,EAAE,IAAI,aAAa,EAAE,IAAI,cAAc,EAAE,IAAI,eAAe,EAAE,IAAI,WAAW,EAAE,IAAI,aAAa,EAAE,IAAI,UAAU,EAAE,IAAI,gBAAgB,EAAE,CAAC,CAAC,iCAAiC,oBAAoB,KAAK,CAAC,WAAW,2BAA2B,IAAI,SAAS,CAAC,IAAI,uCAAuC,oBAAoB,IAAI,aAAa,CAAC,IAAI,+BAA+B,CAAC,CAAC,qBAAqB,oBAAoB,MAAM,2BAA2B,IAAI,SAAS,CAAC,IAAI,uCAAuC,oBAAoB,IAAI,aAAa,CAAC,IAAI,+BAA+B,CAAC,CAAC,kBAAkB,oBAAoB,KAAK,CAAC,gBAAgB,CAAC,YAAY,CAAC,aAAa,CAAC,qBAAqB,CAAC,IAAI,CAAC,MAAM,CAAC,kBAAkB,CAAC,iBAAiB,CAAC,iBAAiB,2BAA2B,IAAI,SAAS,CAAC,IAAI,uCAAuC,oBAAoB,IAAI,aAAa,CAAC,IAAI,+BAA+B,CAAC,CAAC,mBAAmB,oBAAoB,QAAQ,2BAA2B,IAAI,SAAS,CAAC,IAAI,uCAAuC,oBAAoB,IAAI,aAAa,CAAC,IAAI,+BAA+B,CAAC,CAAC,aAAa,mBAAmB,KAAK,cAAc,IAAI,CAAC,CAAC,YAAY,oBAAoB,KAAK,YAAY,IAAI,CAAC,CAAC,kDAAkD,IAAI,OAAO,CAAC,MAAM,CAAC,oBAAoB,GAAG,eAAe,IAAI,CAAC,CAAC,yCAAyC,IAAI,OAAO,CAAvG,MAA8G,CAAC,oBAAoB,GAAG,QAAQ,EAAE,CAAC,CAAC,iBAAiB,uBAAuB,QAAQ,WAAW,CAAC,CAAC,SAAS,uBAAuB,OAAO,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,cAAc,uBAAuB,aAAa,IAAI,mBAAmB,aAAa,CAAC,CAAC,CAAC,oBAAoB,uBAAuB,iBAAiB,KAAK,CAAC,CAAC,aAAa,uBAAuB,UAAU,KAAK,IAAI,WAAW,CAAC,MAAM,YAAY,IAAI,YAAY,CAAC,IAAI,wBAAwB,CAAC,CAAC,iBAAiB,uBAAuB,iBAAiB,IAAI,sBAAsB,YAAY,IAAI,qBAAqB,CAAC,CAAC,qBAAqB,uBAAuB,MAAM,IAAI,aAAa,CAAC,CAAC,kCAAkC,cAAc,MAAM,IAAI,mBAAmB,CAAC,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,gBAAgB,OAAO,iBAAiB,IAAI,SAAS,CAAC,CAAC,yBAAyB,OAAO,iBAAiB,UAAU,GAAG,KAAK,CAAC,IAAI,cAAc,GAAG,CAAC,YAAY,CAAC,CAAC,kBAAkB,OAAO,iBAAiB,IAAI,iBAAiB,CAAC,CAAC,qBAAqB,OAAO,iBAAiB,UAAU,GAAG,KAAK,CAAC,IAAI,UAAU,GAAG,CAAC,YAAY,CAAC,CAAC,uBAAuB,OAAO,iBAAiB,UAAU,GAAG,KAAK,CAAC,IAAI,YAAY,GAAG,CAAC,YAAY,CAAC,CAAC,6BAA6B,OAAO,MAAM,IAAI,oBAAoB,CAAC,CAAC,gBAAgB,OAAO,qBAAqB,SAAS,CAAC,CAAC,kBAAkB,OAAO,QAAQ,CAAC,CAAC,CAAC,CAAC,gBAAgB,OAAO,iBAAiB,IAAI,SAAS,CAAC,CAAC,6BAA6B,OAAO,MAAM,IAAI,oBAAoB,CAAC,CAAC,aAAa,OAAO,iBAAiB,IAAI,eAAe,EAAE,EAAE,EAAE,EAAE,KAAK,IAAI,EAAE,IAAI,wBAAwB,IAAI,eAAe,CAAC,cAAc,WAAW,IAAI,kBAAkB,CAAC,IAAI,uBAAuB,CAAC,IAAI,wBAAwB,CAAC,IAAI,iBAAiB,CAAC,IAAI,YAAY,CAAC,CAAC,gBAAgB,OAAO,gBAAgB,IAAI,OAAO,CAAC,CAAC,oBAAoB,OAAO,uBAAuB,IAAI,wBAAwB,IAAI,eAAe,EAAE,EAAE,EAAE,EAAE,IAAI,uBAAuB,IAAI,uBAAuB,CAAC,CAAC,mBAAmB,OAAO,mBAAmB,KAAK,cAAc,IAAI,CAAC,CAAC,6BAA6B,eAAe,aAAa,IAAI,UAAU,CAAC,CAAC,0BAA0B,eAAe,aAAa,IAAI,OAAO,CAAC,CAAC,2BAA2B,eAAe,iBAAiB,IAAI,eAAe,EAAE,EAAE,EAAE,EAAE,KAAK,IAAI,EAAE,IAAI,wBAAwB,IAAI,eAAe,CAAC,cAAc,WAAW,IAAI,kBAAkB,CAAC,IAAI,uBAAuB,CAAC,IAAI,wBAAwB,CAAC,IAAI,iBAAiB,CAAC,IAAI,YAAY,CAAC,CAAC,mCAAmC,eAAe,gBAAgB,UAAU,GAAG,KAAK,CAAC,IAAI,cAAc,GAAG,CAAC,YAAY,CAAC,CAAC,4BAA4B,eAAe,gBAAgB,UAAU,GAAG,KAAK,CAAC,IAAI,OAAO,GAAG,CAAC,YAAY,CAAC,CAAC,wBAAwB,eAAe,cAAc,IAAI,oBAAoB,cAAc,GAAG,CAAC,CAAC,2BAA2B,eAAe,cAAc,IAAI,OAAO,CAAC,CAAC,6BAA6B,UAAU,eAAe,IAAI,CAAC,CAAC,4BAA4B,UAAU,OAAO,WAAW,CAAC,CAAC,oBAAoB,UAAU,QAAQ,EAAE,CAAC,CAAC,sBAAsB,KAAK,CAAC,KAAK,eAAe,KAAK,IAAI,UAAU,CAAC,IAAI,CAAC,CAAC,mBAAmB,KAAK,CAAC,KAAK,eAAe,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,mBAAmB,KAAK,CAAC,KAAK,eAAe,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,gCAAgC,CAAC,mBAAmB,aAAa,IAAI,cAAc,CAAC,CAAC,kCAAkC,CAAC,mBAAmB,gBAAgB,UAAU,GAAG,KAAK,CAAC,IAAI,cAAc,GAAG,CAAC,YAAY,CAAC,CAAC,sCAAsC,CAAC,eAAe,eAAe,IAAI,CAAC,CAAC,6BAA6B,CAAC,eAAe,QAAQ,EAAE,CAAC,CAAC,sCAAsC,CAAC,iBAAiB,MAAM,IAAI,cAAc,CAAC,CAAC,sCAAsC,CAAC,6BAA6B,OAAO,GAAG,CAAC,CAAC,wCAAwC,CAAC,6BAA6B,MAAM,IAAI,CAAC,CAAC,sCAAsC,CAAC,2BAA2B,OAAO,IAAI,CAAC,CAAC,oCAAoC,CAAC,2BAA2B,MAAM,GAAG,CAAC,CAAC,2CAA2C,CAAC,kBAAkB,MAAM,IAAI,mBAAmB,CAAC,CAAC,oCAAoC,CAAC,kBAAkB,iBAAiB,KAAK,IAAI,UAAU,CAAC,GAAG,UAAU,IAAI,iBAAiB,IAAI,iBAAiB,CAAC,CAAC,mCAAmC,CAAC,gBAAgB,iBAAiB,KAAK,IAAI,UAAU,CAAC,IAAI,UAAU,IAAI,iBAAiB,IAAI,iBAAiB,CAAC,CAAC,mCAAmC,CAAC,iBAAiB,iBAAiB,KAAK,IAAI,UAAU,CAAC,GAAG,UAAU,IAAI,iBAAiB,IAAI,iBAAiB,CAAC,CAAC,kCAAkC,CAAC,eAAe,iBAAiB,KAAK,IAAI,UAAU,CAAC,IAAI,UAAU,IAAI,iBAAiB,IAAI,iBAAiB,CAAC,IAAI,CAAC,6CAA6C,CAAC,EAAE,CAAC,wBAAwB,mBAAmB,EAAE,mBAAmB,SAAS,QAAQ,YAAY,SAAS,MAAM,CAAC,IAAI,CAAC,qCAAqC,CAAC,EAAE,CAAC,wBAAwB,QAAQ,IAAI,CAAC,IAAI,CAAC,6CAA6C,CAAC,EAAE,CAAC,wBAAwB,YAAY,MAAM,CAAC,IAAI,CAAC,sCAAsC,CAAC,EAAE,CAAC,wBAAwB,IAAI,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,qCAAqC,CAAC,mBAAmB,iBAAiB,IAAI,aAAa,CAAC,CAAC,uCAAuC,CAAC,mBAAmB,MAAM,IAAI,aAAa,CAAC,CAAC,iCAAiC,CAAC,mBAAmB,YAAY,EAAE,IAAI,IAAI,EAAE,IAAI,iBAAiB,CAAC,UAAU,CAAC,EAAE,IAAI,IAAI,KAAK,IAAI,iBAAiB,CAAC,WAAW,WAAW,IAAI,kBAAkB,CAAC,IAAI,uBAAuB,CAAC,IAAI,wBAAwB,CAAC,IAAI,iBAAiB,CAAC,IAAI,YAAY,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,OAAO,CAAC,cAAc,WAAW,IAAI,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,OAAO,CAAC,eAAe,YAAY,KAAK,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,gBAAgB,MAAM,KAAK,CAAC,CAAC,WAAW,MAAM,IAAI,CAAC,CAAC,gBAAgB,sBAAsB,OAAO,CAAC,CAAC,OAAO,CAAC,CAAC,KAAK,CAAC,CAAC,aAAa,eAAe,GAAG,CAAC,CAAC,iBAAiB,YAAY,MAAM,CAAC,CAAC,YAAY,UAAU,KAAK,IAAI,WAAW,CAAC,MAAM,YAAY,IAAI,YAAY,CAAC,IAAI,wBAAwB,CAAC,CAAC,OAAO,CAAC,oBAAoB,CAAC,MAAM,CAAC,yCAAyC,eAAe,CAAC,wCAAwC,CAAC,mBAAmB,gBAAgB,UAAU,GAAG,KAAK,CAAC,IAAI,cAAc,GAAG,CAAC,YAAY,CAAC,CAAC,CAAC,gCAAgC,IAAI,eAAe,IAAI,CAAC,CAAC,qBAAqB,IAAI,YAAY,CAAC,CAAC,CAAC,kDAAkD,GAAG,KAAK,CAAC,eAAe,MAAM,KAAK,IAAI,UAAU,CAAC,GAAG,OAAO,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,iEAAiE,GAAG,KAAK,CAAC,eAAe,MAAM,IAAI,mBAAmB,CAAC,IAAI,CAAC,wBAAwB,CAAC,EAAE,IAAI,KAAK,YAAY,QAAQ,IAAI,CAAC,IAAI,CAAC,gCAAgC,CAAC,EAAE,IAAI,KAAK,YAAY,YAAY,MAAM,CAAC,IAAI,CAAC,yBAAyB,CAAC,EAAE,IAAI,KAAK,YAAY,IAAI,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,gCAAgC,CAAC,IAAI,eAAe,IAAI,CAAC,CAAC,mBAAmB,CAAC,IAAI,MAAM,KAAK,IAAI,UAAU,CAAC,GAAG,OAAO,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,yBAAyB,OAAO,iBAAiB,IAAI,SAAS,CAAC,CAAC,CAAC,kCAAkC,OAAO,iBAAiB,UAAU,GAAG,KAAK,CAAC,IAAI,cAAc,GAAG,CAAC,YAAY,CAAC,CAAC,CAAC,8BAA8B,OAAO,iBAAiB,UAAU,GAAG,KAAK,CAAC,IAAI,UAAU,GAAG,CAAC,YAAY,CAAC,CAAC,CAAC,gCAAgC,OAAO,iBAAiB,UAAU,GAAG,KAAK,CAAC,IAAI,YAAY,GAAG,CAAC,YAAY,CAAC,CAAC,CAAC,sCAAsC,OAAO,MAAM,IAAI,oBAAoB,CAAC,CAAC,CAAC,MAAM,aAAa,MAAM,EAAE,EAAE,GAAG,aAAa,IAAI,mBAAmB,CAAC,SAAS,OAAO,IAAI,mBAAmB,CAAC,MAAM,kBAAkB,IAAI,mBAAmB,CAAC,SAAS,UAAU,IAAI,mBAAmB,CAAC,MAAM,qBAAqB,IAAI,mBAAmB,CAAC,SAAS,UAAU,IAAI,mBAAmB,CAAC,MAAM,qBAAqB,IAAI,mBAAmB,CAAC,SAAS,QAAQ,IAAI,mBAAmB,CAAC,SAAS,mBAAmB,IAAI,mBAAmB,CAAC,MAAM,QAAQ,IAAI,mBAAmB,CAAC,SAAS,YAAY,MAAM,IAAI,EAAE,GAAG,uBAAuB,MAAM,KAAK,EAAE,GAAG,QAAQ,MAAM,IAAI,EAAE,GAAG,SAAS,IAAI,kBAAkB,CAAC,SAAS,oBAAoB,IAAI,kBAAkB,CAAC,SAAS,cAAc,IAAI,QAAQ,CAAC,SAAS,yBAAyB,IAAI,QAAQ,CAAC,SAAS,SAAS,IAAI,aAAa,CAAC,SAAS,QAAQ,IAAI,aAAa,CAAC,SAAS,OAAO,MAAM,KAAK,EAAE,GAAG,SAAS,IAAI,cAAc,CAAC,SAAS,UAAU,IAAI,cAAc,CAAC,SAAS,WAAW,IAAI,cAAc,CAAC,MAAM,cAAc,IAAI,YAAY,CAAC,QAAQ,CAAC,UAAU,gBAAgB,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,KAAK,CAAC,aAAa,CAAC,EAAE,UAAU,gBAAgB,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,KAAK,CAAC,aAAa,CAAC,EAAE,UAAU,gBAAgB,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,KAAK,CAAC,aAAa,CAAC,EAAE,UAAU,oBAAoB,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,KAAK,CAAC,aAAa,CAAC,EAAE,UAAU,oBAAoB,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,KAAK,CAAC,aAAa,CAAC,EAAE,UAAU,iBAAiB,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,KAAK,CAAC,aAAa,CAAC,MAAM,UAAU,YAAY,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,UAAU,gBAAgB,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,UAAU,aAAa,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,UAAU,WAAW,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,KAAK,CAAC,aAAa,CAAC,EAAE,EAAE,MAAM,UAAU,iBAAiB,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,UAAU,iBAAiB,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,KAAK,CAAC,aAAa,CAAC,EAAE,EAAE,MAAM,UAAU,uBAAuB,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,UAAU,eAAe,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,UAAU,gBAAgB,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,KAAK,CAAC,aAAa,CAAC,EAAE,EAAE,MAAM,UAAU,qBAAqB,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,UAAU,sBAAsB,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,KAAK,CAAC,aAAa,CAAC,EAAE,EAAE,MAAM,UAAU,eAAe,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,UAAU,sBAAsB,CAAC,MAAM,CAAC,UAAU,CAAC,QAAQ,CAAC,KAAK,CAAC,aAAa,CAAC,EAAE,UAAU,sBAAsB,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,KAAK,CAAC,aAAa,CAAC,KAAK,UAAU,uBAAuB,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,KAAK,CAAC,aAAa,CAAC,EAAE,EAAE,MAAM,UAAU,kBAAkB,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,KAAK,CAAC,aAAa,CAAC,MAAM,UAAU,SAAS,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,UAAU,eAAe,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,UAAU,aAAa,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,UAAU,cAAc,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,UAAU,eAAe,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,UAAU,WAAW,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,UAAU,YAAY,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,UAAU,aAAa,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,UAAU,UAAU,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,UAAU,gBAAgB,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC","names":[]}
1
+ {"version":3,"sources":["../src/styles/global.css"],"sourcesContent":["/*! tailwindcss v4.0.9 | MIT License | https://tailwindcss.com */\n@layer theme{:root,:host{--font-sans:ui-sans-serif,system-ui,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\",\"Noto Color Emoji\";--font-mono:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,\"Liberation Mono\",\"Courier New\",monospace;--color-blue-500:oklch(.623 .214 259.815);--color-gray-200:oklch(.928 .006 264.531);--color-gray-400:oklch(.707 .022 261.325);--color-gray-600:oklch(.446 .03 256.802);--color-gray-800:oklch(.278 .033 256.848);--color-gray-900:oklch(.21 .034 264.665);--color-black:#000;--color-white:#fff;--spacing:.25rem;--container-xs:20rem;--text-xs:calc(var(--fontBase)*.75);--text-xs--line-height:calc(1/.75);--text-sm--line-height:calc(1.25/.875);--text-lg:1.125rem;--text-lg--line-height:calc(1.75/1.125);--text-xl--line-height:calc(1.75/1.25);--font-weight-normal:400;--font-weight-medium:500;--font-weight-semibold:600;--font-weight-bold:700;--tracking-tight:-.025em;--radius-md:calc(var(--radius) - 2px);--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4,0,.2,1);--default-font-family:var(--font-sans);--default-font-feature-settings:var(--font-sans--font-feature-settings);--default-font-variation-settings:var(--font-sans--font-variation-settings);--default-mono-font-family:var(--font-mono);--default-mono-font-feature-settings:var(--font-mono--font-feature-settings);--default-mono-font-variation-settings:var(--font-mono--font-variation-settings);--muted-foreground:var(--primary-foreground);--color-border:var(--border)}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif,system-ui,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\",\"Noto Color Emoji\");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}body{line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,\"Liberation Mono\",\"Courier New\",monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1;color:color-mix(in oklab,currentColor 50%,transparent)}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){appearance:button}::file-selector-button{appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}*{border-color:var(--border);outline-color:color-mix(in oklab,var(--ring)50%,transparent)}body{background-color:var(--background);color:var(--foreground)}}@layer components;@layer utilities{.pointer-events-none{pointer-events:none}.visible{visibility:visible}.sr-only{clip:rect(0,0,0,0);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.inset-0{inset:calc(var(--spacing)*0)}.inset-x-0{inset-inline:calc(var(--spacing)*0)}.top-1\\/2{top:50%}.top-4{top:calc(var(--spacing)*4)}.right-4{right:calc(var(--spacing)*4)}.bottom-0{bottom:calc(var(--spacing)*0)}.left-1\\/2{left:50%}.z-50{z-index:50}.-mx-1{margin-inline:calc(var(--spacing)*-1)}.mx-auto{margin-inline:auto}.my-1{margin-block:calc(var(--spacing)*1)}.mt-1{margin-top:calc(var(--spacing)*1)}.mt-4{margin-top:calc(var(--spacing)*4)}.mt-24{margin-top:calc(var(--spacing)*24)}.mt-auto{margin-top:auto}.mb-0{margin-bottom:calc(var(--spacing)*0)}.mb-1{margin-bottom:calc(var(--spacing)*1)}.mb-2{margin-bottom:calc(var(--spacing)*2)}.mb-3{margin-bottom:calc(var(--spacing)*3)}.mb-6{margin-bottom:calc(var(--spacing)*6)}.ml-2{margin-left:calc(var(--spacing)*2)}.block{display:block}.flex{display:flex}.grid{display:grid}.hidden{display:none}.inline-flex{display:inline-flex}.table{display:table}.aspect-square{aspect-ratio:1}.size-2{width:calc(var(--spacing)*2);height:calc(var(--spacing)*2)}.size-2\\.5{width:calc(var(--spacing)*2.5);height:calc(var(--spacing)*2.5)}.size-3\\.5{width:calc(var(--spacing)*3.5);height:calc(var(--spacing)*3.5)}.size-4{width:calc(var(--spacing)*4);height:calc(var(--spacing)*4)}.size-9{width:calc(var(--spacing)*9);height:calc(var(--spacing)*9)}.h-2{height:calc(var(--spacing)*2)}.h-2\\.5{height:calc(var(--spacing)*2.5)}.h-3{height:calc(var(--spacing)*3)}.h-4{height:calc(var(--spacing)*4)}.h-5{height:calc(var(--spacing)*5)}.h-8{height:calc(var(--spacing)*8)}.h-9{height:calc(var(--spacing)*9)}.h-10{height:calc(var(--spacing)*10)}.h-\\[300px\\]{height:300px}.h-\\[var\\(--radix-select-trigger-height\\)\\]{height:var(--radix-select-trigger-height)}.h-auto{height:auto}.h-full{height:100%}.h-px{height:1px}.max-h-96{max-height:calc(var(--spacing)*96)}.max-h-\\[calc\\(80vh-120px\\)\\]{max-height:calc(80vh - 120px)}.min-h-11{min-height:calc(var(--spacing)*11)}.w-2\\.5{width:calc(var(--spacing)*2.5)}.w-3{width:calc(var(--spacing)*3)}.w-4{width:calc(var(--spacing)*4)}.w-5{width:calc(var(--spacing)*5)}.w-\\[100px\\]{width:100px}.w-fit{width:fit-content}.w-full{width:100%}.max-w-xs{max-width:var(--container-xs)}.min-w-0{min-width:calc(var(--spacing)*0)}.min-w-\\[8rem\\]{min-width:8rem}.min-w-\\[var\\(--radix-select-trigger-width\\)\\]{min-width:var(--radix-select-trigger-width)}.flex-1{flex:1}.shrink-0{flex-shrink:0}.-translate-x-1\\/2{--tw-translate-x:calc(calc(1/2*100%)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}.-translate-y-1\\/2{--tw-translate-y:calc(calc(1/2*100%)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-y-\\[calc\\(-50\\%_-_2px\\)\\]{--tw-translate-y:calc(-50% - 2px);translate:var(--tw-translate-x)var(--tw-translate-y)}.rotate-45{rotate:45deg}.cursor-default{cursor:default}.touch-none{touch-action:none}.scroll-my-1{scroll-margin-block:calc(var(--spacing)*1)}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.flex-col{flex-direction:column}.items-center{align-items:center}.items-start{align-items:flex-start}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.gap-0{gap:calc(var(--spacing)*0)}.gap-1{gap:calc(var(--spacing)*1)}.gap-1\\.5{gap:calc(var(--spacing)*1.5)}.gap-2{gap:calc(var(--spacing)*2)}.gap-3{gap:calc(var(--spacing)*3)}.gap-4{gap:calc(var(--spacing)*4)}.gap-6{gap:calc(var(--spacing)*6)}:where(.space-y-0>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*0)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*0)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-1>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*1)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*1)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-2>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*2)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*2)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-3>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*3)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*3)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-4>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*4)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*4)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-6>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*6)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*6)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-x-3>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(calc(var(--spacing)*3)*var(--tw-space-x-reverse));margin-inline-end:calc(calc(var(--spacing)*3)*calc(1 - var(--tw-space-x-reverse)))}.overflow-hidden{overflow:hidden}.overflow-y-auto{overflow-y:auto}.rounded{border-radius:.25rem}.rounded-\\[2px\\]{border-radius:2px}.rounded-\\[inherit\\]{border-radius:inherit}.rounded-full{border-radius:3.40282e38px}.rounded-lg{border-radius:var(--radius)}.rounded-md{border-radius:calc(var(--radius) - 2px)}.rounded-sm{border-radius:calc(var(--radius) - 4px)}.rounded-xl{border-radius:calc(var(--radius) + 2px)}.rounded-t-\\[10px\\]{border-top-left-radius:10px;border-top-right-radius:10px}.border,.border-1{border-style:var(--tw-border-style);border-width:1px}.border-t{border-top-style:var(--tw-border-style);border-top-width:1px}.border-t-2{border-top-style:var(--tw-border-style);border-top-width:2px}.border-l{border-left-style:var(--tw-border-style);border-left-width:1px}.border-gray-200{border-color:var(--color-gray-200)}.border-input{border-color:var(--input)}.border-transparent{border-color:#0000}.border-t-transparent{border-top-color:#0000}.border-l-transparent{border-left-color:#0000}.bg-background{background-color:var(--background)}.bg-badge{background-color:var(--badge)}.bg-black\\/80{background-color:color-mix(in oklab,var(--color-black)80%,transparent)}.bg-border{background-color:var(--border)}.bg-card{background-color:var(--card)}.bg-destructive{background-color:var(--destructive)}.bg-gray-900{background-color:var(--color-gray-900)}.bg-muted{background-color:var(--muted)}.bg-popover{background-color:var(--popover)}.bg-primary{background-color:var(--primary)}.bg-secondary{background-color:var(--secondary)}.bg-transparent{background-color:#0000}.fill-primary{fill:var(--primary)}.fill-radio{fill:var(--radio)}.p-0{padding:calc(var(--spacing)*0)}.p-1{padding:calc(var(--spacing)*1)}.p-4{padding:calc(var(--spacing)*4)}.p-\\[1px\\]{padding:1px}.px-0{padding-inline:calc(var(--spacing)*0)}.px-2{padding-inline:calc(var(--spacing)*2)}.px-3{padding-inline:calc(var(--spacing)*3)}.px-4{padding-inline:calc(var(--spacing)*4)}.px-6{padding-inline:calc(var(--spacing)*6)}.py-0\\.5{padding-block:calc(var(--spacing)*.5)}.py-1{padding-block:calc(var(--spacing)*1)}.py-1\\.5{padding-block:calc(var(--spacing)*1.5)}.py-2{padding-block:calc(var(--spacing)*2)}.py-6{padding-block:calc(var(--spacing)*6)}.py-7{padding-block:calc(var(--spacing)*7)}.pt-2{padding-top:calc(var(--spacing)*2)}.pb-2{padding-bottom:calc(var(--spacing)*2)}.pb-4{padding-bottom:calc(var(--spacing)*4)}.pl-2{padding-left:calc(var(--spacing)*2)}.text-center{text-align:center}.text-lg{font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}.text-sm{font-size:calc(var(--fontBase)*.875);line-height:var(--tw-leading,var(--text-sm--line-height))}.text-xl{font-size:calc(var(--fontBase)*1.25);line-height:var(--tw-leading,var(--text-xl--line-height))}.text-xs{font-size:calc(var(--fontBase)*.75);line-height:var(--tw-leading,var(--text-xs--line-height))}.leading-none{--tw-leading:1;line-height:1}.font-bold{--tw-font-weight:var(--font-weight-bold);font-weight:var(--font-weight-bold)}.font-medium{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.font-normal{--tw-font-weight:var(--font-weight-normal);font-weight:var(--font-weight-normal)}.font-semibold{--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold)}.tracking-tight{--tw-tracking:var(--tracking-tight);letter-spacing:var(--tracking-tight)}.text-balance{text-wrap:balance}.whitespace-nowrap{white-space:nowrap}.text-badge-foreground{color:var(--badge-foreground)}.text-base-color{color:var(--base)}.text-blue-500{color:var(--color-blue-500)}.text-card-foreground{color:var(--card-foreground)}.text-destructive{color:var(--destructive)}.text-foreground{color:var(--foreground)}.text-gray-400{color:var(--color-gray-400)}.text-gray-600{color:var(--color-gray-600)}.text-link-button-primary{color:var(--link-button)}.text-muted-foreground{color:var(--muted-foreground)}.text-popover-foreground{color:var(--popover-foreground)}.text-primary{color:var(--primary)}.text-primary-foreground{color:var(--primary-foreground)}.text-secondary-foreground{color:var(--secondary-foreground)}.text-white{color:var(--color-white)}.underline-offset-4{text-underline-offset:4px}.opacity-70{opacity:.7}.shadow-md{--tw-shadow:0 4px 6px -1px var(--tw-shadow-color,#0000001a),0 2px 4px -2px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-sm{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-xs{--tw-shadow:0 1px 2px 0 var(--tw-shadow-color,#0000000d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.ring-offset-background{--tw-ring-offset-color:var(--background)}.outline-hidden{outline-style:none}@media (forced-colors:active){.outline-hidden{outline-offset:2px;outline:2px solid #0000}}.outline{outline-style:var(--tw-outline-style);outline-width:1px}.filter{filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.transition-\\[color\\,box-shadow\\]{transition-property:color,box-shadow;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-\\[color\\]{transition-property:color;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-opacity{transition-property:opacity;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.outline-none{--tw-outline-style:none;outline-style:none}.select-none{-webkit-user-select:none;user-select:none}.group-data-\\[disabled\\=true\\]\\:pointer-events-none:is(:where(.group)[data-disabled=true] *){pointer-events:none}.group-data-\\[disabled\\=true\\]\\:opacity-50:is(:where(.group)[data-disabled=true] *){opacity:.5}.file\\:inline-flex::file-selector-button{display:inline-flex}.file\\:h-7::file-selector-button{height:calc(var(--spacing)*7)}.file\\:border-0::file-selector-button{border-style:var(--tw-border-style);border-width:0}.file\\:bg-transparent::file-selector-button{background-color:#0000}.file\\:text-sm::file-selector-button{font-size:calc(var(--fontBase)*.875);line-height:var(--tw-leading,var(--text-sm--line-height))}.file\\:font-medium::file-selector-button{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.file\\:text-foreground::file-selector-button{color:var(--foreground)}.placeholder\\:text-muted-foreground::placeholder{color:var(--muted-foreground)}@media (hover:hover){.hover\\:bg-accent:hover{background-color:var(--accent)}.hover\\:bg-destructive\\/90:hover{background-color:color-mix(in oklab,var(--destructive)90%,transparent)}.hover\\:bg-gray-800:hover{background-color:var(--color-gray-800)}.hover\\:bg-primary\\/90:hover{background-color:color-mix(in oklab,var(--primary)90%,transparent)}.hover\\:bg-secondary\\/80:hover{background-color:color-mix(in oklab,var(--secondary)80%,transparent)}.hover\\:text-accent-foreground:hover{color:var(--accent-foreground)}.hover\\:underline:hover{text-decoration-line:underline}.hover\\:opacity-100:hover{opacity:1}}.focus\\:bg-accent:focus{background-color:var(--accent)}.focus\\:text-accent-foreground:focus{color:var(--accent-foreground)}.focus\\:ring-2:focus{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentColor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus\\:ring-ring:focus{--tw-ring-color:var(--ring)}.focus\\:ring-offset-2:focus{--tw-ring-offset-width:2px;--tw-ring-offset-shadow:var(--tw-ring-inset,)0 0 0 var(--tw-ring-offset-width)var(--tw-ring-offset-color)}.focus\\:outline-none:focus{--tw-outline-style:none;outline-style:none}.focus-visible\\:border-focused:focus-visible{border-color:var(--focused)}.focus-visible\\:border-ring:focus-visible{border-color:var(--ring)}.focus-visible\\:ring-\\[3px\\]:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(3px + var(--tw-ring-offset-width))var(--tw-ring-color,currentColor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus-visible\\:ring-destructive\\/20:focus-visible{--tw-ring-color:color-mix(in oklab,var(--destructive)20%,transparent)}.focus-visible\\:ring-ring\\/50:focus-visible{--tw-ring-color:color-mix(in oklab,var(--ring)50%,transparent)}.focus-visible\\:outline-1:focus-visible{outline-style:var(--tw-outline-style);outline-width:1px}.focus-visible\\:outline-ring:focus-visible{outline-color:var(--ring)}.disabled\\:pointer-events-none:disabled{pointer-events:none}.disabled\\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\\:opacity-50:disabled{opacity:.5}.has-\\[\\>svg\\]\\:px-2\\.5:has(>svg){padding-inline:calc(var(--spacing)*2.5)}.has-\\[\\>svg\\]\\:px-3:has(>svg){padding-inline:calc(var(--spacing)*3)}.has-\\[\\>svg\\]\\:px-4:has(>svg){padding-inline:calc(var(--spacing)*4)}.aria-invalid\\:border-destructive[aria-invalid=true]{border-color:var(--destructive)}.aria-invalid\\:ring-destructive\\/20[aria-invalid=true]{--tw-ring-color:color-mix(in oklab,var(--destructive)20%,transparent)}.data-\\[disabled\\]\\:pointer-events-none[data-disabled]{pointer-events:none}.data-\\[disabled\\]\\:opacity-50[data-disabled]{opacity:.5}.data-\\[error\\=true\\]\\:text-destructive[data-error=true]{color:var(--destructive)}.data-\\[orientation\\=horizontal\\]\\:h-px[data-orientation=horizontal]{height:1px}.data-\\[orientation\\=horizontal\\]\\:w-full[data-orientation=horizontal]{width:100%}.data-\\[orientation\\=vertical\\]\\:h-full[data-orientation=vertical]{height:100%}.data-\\[orientation\\=vertical\\]\\:w-px[data-orientation=vertical]{width:1px}.data-\\[placeholder\\]\\:text-muted-foreground[data-placeholder]{color:var(--muted-foreground)}.data-\\[side\\=bottom\\]\\:translate-y-1[data-side=bottom]{--tw-translate-y:calc(var(--spacing)*1);translate:var(--tw-translate-x)var(--tw-translate-y)}.data-\\[side\\=left\\]\\:-translate-x-1[data-side=left]{--tw-translate-x:calc(var(--spacing)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}.data-\\[side\\=right\\]\\:translate-x-1[data-side=right]{--tw-translate-x:calc(var(--spacing)*1);translate:var(--tw-translate-x)var(--tw-translate-y)}.data-\\[side\\=top\\]\\:-translate-y-1[data-side=top]{--tw-translate-y:calc(var(--spacing)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}:is(.\\*\\:data-\\[slot\\=select-value\\]\\:line-clamp-1>*)[data-slot=select-value]{-webkit-line-clamp:1;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}:is(.\\*\\:data-\\[slot\\=select-value\\]\\:flex>*)[data-slot=select-value]{display:flex}:is(.\\*\\:data-\\[slot\\=select-value\\]\\:items-center>*)[data-slot=select-value]{align-items:center}:is(.\\*\\:data-\\[slot\\=select-value\\]\\:gap-2>*)[data-slot=select-value]{gap:calc(var(--spacing)*2)}.data-\\[state\\=active\\]\\:bg-background[data-state=active]{background-color:var(--background)}.data-\\[state\\=active\\]\\:text-foreground[data-state=active]{color:var(--foreground)}.data-\\[state\\=active\\]\\:shadow-sm[data-state=active]{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}@media (width>=40rem){.sm\\:text-left{text-align:left}}@media (width>=48rem){.md\\:col-span-2{grid-column:span 2/span 2}.md\\:w-\\[200px\\]{width:200px}.md\\:w-auto{width:auto}.md\\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.md\\:flex-row{flex-direction:row}.md\\:items-center{align-items:center}.md\\:text-sm{font-size:calc(var(--fontBase)*.875);line-height:var(--tw-leading,var(--text-sm--line-height))}}@media (prefers-color-scheme:dark){.dark\\:focus-visible\\:ring-destructive\\/40:focus-visible,.dark\\:aria-invalid\\:ring-destructive\\/40[aria-invalid=true]{--tw-ring-color:color-mix(in oklab,var(--destructive)40%,transparent)}}.\\[\\&_svg\\]\\:pointer-events-none svg{pointer-events:none}.\\[\\&_svg\\]\\:shrink-0 svg{flex-shrink:0}.\\[\\&_svg\\:not\\(\\[class\\*\\=\\'size-\\'\\]\\)\\]\\:size-4 svg:not([class*=size-]){width:calc(var(--spacing)*4);height:calc(var(--spacing)*4)}.\\[\\&_svg\\:not\\(\\[class\\*\\=\\'text-\\'\\]\\)\\]\\:text-muted-foreground svg:not([class*=text-]){color:var(--muted-foreground)}:is(.\\*\\:\\[span\\]\\:last\\:flex>*):is(span):last-child{display:flex}:is(.\\*\\:\\[span\\]\\:last\\:items-center>*):is(span):last-child{align-items:center}:is(.\\*\\:\\[span\\]\\:last\\:gap-2>*):is(span):last-child{gap:calc(var(--spacing)*2)}.\\[\\&\\>svg\\]\\:pointer-events-none>svg{pointer-events:none}.\\[\\&\\>svg\\]\\:size-3>svg{width:calc(var(--spacing)*3);height:calc(var(--spacing)*3)}@media (hover:hover){a.\\[a\\&\\]\\:hover\\:bg-accent:hover{background-color:var(--accent)}a.\\[a\\&\\]\\:hover\\:bg-destructive\\/90:hover{background-color:color-mix(in oklab,var(--destructive)90%,transparent)}a.\\[a\\&\\]\\:hover\\:bg-primary\\/90:hover{background-color:color-mix(in oklab,var(--primary)90%,transparent)}a.\\[a\\&\\]\\:hover\\:bg-secondary\\/90:hover{background-color:color-mix(in oklab,var(--secondary)90%,transparent)}a.\\[a\\&\\]\\:hover\\:text-accent-foreground:hover{color:var(--accent-foreground)}}}:root{--background:oklch(1 0 0);--foreground:var(--primaryForeground,#4b5865);--card:var(--primaryBackground,#fff);--card-foreground:var(--primaryForeground,#4b5865);--popover:var(--primaryBackground,#fff);--popover-foreground:var(--primaryForeground,#4b5865);--primary:var(--primaryBackground,#fff);--primary-foreground:var(--primaryForeground,#364452);--badge:var(--primaryForeground,#364452);--badge-foreground:var(--primaryBackground,#fff);--radio:var(--primaryForeground,#364452);--secondary:oklch(.97 0 0);--secondary-foreground:oklch(.205 0 0);--muted:oklch(.97 0 0);--accent:var(--accentBackground,#e3e9ef);--accent-foreground:var(--accentForeground,#0f1419);--destructive:var(--danger,#d92020);--destructive-foreground:var(--danger,#d92020);--border:var(--borderInput,#9aa6b2);--input:var(--borderInput,#9aa6b2);--ring:oklch(.708 0 0);--radius:var(--borderRadius,.625rem);--focused:var(--borderRadius,#0061ff);--fontBase:var(--fontSizeBase,1rem);--link-button:var(--foreground,#4b5865)}@property --tw-translate-x{syntax:\"*\";inherits:false;initial-value:0}@property --tw-translate-y{syntax:\"*\";inherits:false;initial-value:0}@property --tw-translate-z{syntax:\"*\";inherits:false;initial-value:0}@property --tw-space-y-reverse{syntax:\"*\";inherits:false;initial-value:0}@property --tw-space-x-reverse{syntax:\"*\";inherits:false;initial-value:0}@property --tw-border-style{syntax:\"*\";inherits:false;initial-value:solid}@property --tw-leading{syntax:\"*\";inherits:false}@property --tw-font-weight{syntax:\"*\";inherits:false}@property --tw-tracking{syntax:\"*\";inherits:false}@property --tw-shadow{syntax:\"*\";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:\"*\";inherits:false}@property --tw-inset-shadow{syntax:\"*\";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:\"*\";inherits:false}@property --tw-ring-color{syntax:\"*\";inherits:false}@property --tw-ring-shadow{syntax:\"*\";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:\"*\";inherits:false}@property --tw-inset-ring-shadow{syntax:\"*\";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:\"*\";inherits:false}@property --tw-ring-offset-width{syntax:\"<length>\";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:\"*\";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:\"*\";inherits:false;initial-value:0 0 #0000}@property --tw-outline-style{syntax:\"*\";inherits:false;initial-value:solid}@property --tw-blur{syntax:\"*\";inherits:false}@property --tw-brightness{syntax:\"*\";inherits:false}@property --tw-contrast{syntax:\"*\";inherits:false}@property --tw-grayscale{syntax:\"*\";inherits:false}@property --tw-hue-rotate{syntax:\"*\";inherits:false}@property --tw-invert{syntax:\"*\";inherits:false}@property --tw-opacity{syntax:\"*\";inherits:false}@property --tw-saturate{syntax:\"*\";inherits:false}@property --tw-sepia{syntax:\"*\";inherits:false}@property --tw-drop-shadow{syntax:\"*\";inherits:false}\n"],"mappings":"AACA,aAAa,MAAM,MAAM,YAAY,aAAa,CAAC,SAAS,CAAC,UAAU,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,iBAAiB,CAAC,mBAAmB,YAAY,YAAY,CAAC,cAAc,CAAC,KAAK,CAAC,MAAM,CAAC,QAAQ,CAAC,iBAAiB,CAAC,aAAa,CAAC,UAAU,iBAAiB,MAAM,KAAK,KAAK,SAAS,iBAAiB,MAAM,KAAK,KAAK,SAAS,iBAAiB,MAAM,KAAK,KAAK,SAAS,iBAAiB,MAAM,KAAK,IAAI,SAAS,iBAAiB,MAAM,KAAK,KAAK,SAAS,iBAAiB,MAAM,IAAI,KAAK,SAAS,cAAc,KAAK,cAAc,KAAK,UAAU,OAAO,eAAe,MAAM,UAAU,KAAK,IAAI,WAAW,CAAC,KAAK,uBAAuB,KAAK,CAAC,CAAC,KAAK,uBAAuB,KAAK,IAAI,CAAC,MAAM,UAAU,SAAS,uBAAuB,KAAK,IAAI,CAAC,OAAO,uBAAuB,KAAK,IAAI,CAAC,MAAM,qBAAqB,IAAI,qBAAqB,IAAI,uBAAuB,IAAI,mBAAmB,IAAI,iBAAiB,QAAQ,YAAY,KAAK,IAAI,UAAU,EAAE,KAAK,8BAA8B,KAAK,qCAAqC,aAAa,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,sBAAsB,IAAI,aAAa,gCAAgC,IAAI,oCAAoC,kCAAkC,IAAI,sCAAsC,2BAA2B,IAAI,aAAa,qCAAqC,IAAI,oCAAoC,uCAAuC,IAAI,sCAAsC,mBAAmB,IAAI,sBAAsB,eAAe,IAAI,SAAS,CAAC,CAAC,YAAY,EAAE,OAAO,QAAQ,WAAW,WAAW,WAAW,OAAO,EAAE,MAD1iD,OACujD,EADvjD,QACikD,CAAC,CAAC,uBAAuB,WAAW,WAAW,OAAO,EAAE,MADznD,OACsoD,EADtoD,QACgpD,CAAC,CAAC,KAAK,MAAM,yBAAyB,KAAK,SAAS,EAAE,YAAY,IAAI,YAAY,IAAI,qBAAqB,CAAC,aAAa,CAAC,SAAS,CAAC,UAAU,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,iBAAiB,CAAC,oBAAoB,sBAAsB,IAAI,+BAA+B,CAAC,QAAQ,wBAAwB,IAAI,iCAAiC,CAAC,QAAQ,4BAA4B,WAAW,CAAC,KAAK,YAAY,OAAO,CAAC,GAAG,OAAO,EAAE,MAAM,QAAQ,iBAAiB,GAAG,CAAC,IAAI,OAAO,CAAC,QAAQ,wBAAwB,UAAU,OAAO,gBAAgB,UAAU,MAAM,CAAC,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,UAAU,QAAQ,YAAY,OAAO,CAAC,EAAE,MAAM,QAAwE,wBAAwB,QAAQ,gBAAgB,OAAO,CAAC,EAAE,OAAO,YAAY,MAAM,CAAC,KAAK,IAAI,KAAK,IAAI,YAAY,IAAI,0BAA0B,CAAC,YAAY,CAAC,cAAc,CAAC,KAAK,CAAC,MAAM,CAAC,QAAQ,CAAC,iBAAiB,CAAC,aAAa,CAAC,WAAW,sBAAsB,IAAI,oCAAoC,CAAC,QAAQ,wBAAwB,IAAI,sCAAsC,CAAC,QAAQ,UAAU,GAAG,CAAC,MAAM,UAAU,GAAG,CAAC,IAAI,IAAI,eAAe,SAAS,UAAU,IAAI,YAAY,EAAE,SAAS,QAAQ,CAAC,IAAI,OAAO,MAAM,CAAC,IAAI,IAAI,KAAK,CAAC,MAAM,YAAY,EAAE,aAAa,QAAQ,gBAAgB,QAAQ,CAAC,gBAAgB,QAAQ,IAAI,CAAC,SAAS,eAAe,QAAQ,CAAC,QAAQ,QAAQ,SAAS,CAAC,GAAG,GAAG,KAAK,WAAW,IAAI,CAAC,IAAI,IAAI,MAAM,OAAO,MAAM,OAAO,MAAM,OAAO,eAAe,OAAO,QAAQ,KAAK,CAAC,IAAI,MAAM,UAAU,KAAK,OAAO,IAAI,CAAC,OAAO,MAAM,OAAO,SAAS,SAAS,KAAK,QAAQ,sBAAsB,QAAQ,wBAAwB,QAAQ,eAAe,QAAQ,MAAM,QAAQ,QAAQ,EAAE,iBAAiB,MADtzG,cAC00G,CAAC,CAAC,uBAAuB,KAAK,QAAQ,sBAAsB,QAAQ,wBAAwB,QAAQ,eAAe,QAAQ,MAAM,QAAQ,QAAQ,EAAE,iBAAiB,MAD9+G,cACkgH,CAAC,CAAC,OAAO,MAAM,IAAI,CAAC,UAAU,CAAC,QAAQ,SAAS,YAAY,MAAM,CAAC,OAAO,MAAM,IAAI,CAAC,UAAU,CAAC,QAAQ,SAAS,OAAO,qBAAqB,IAAI,CAAC,uBAAuB,kBAAkB,GAAG,CAAC,cAAc,QAAQ,EAAE,MAAM,UAAU,GAAG,KAAK,CAAC,aAAa,GAAG,CAAC,YAAY,CAAC,SAAS,OAAO,QAAQ,CAAC,4BAA4B,mBAAmB,IAAI,CAAC,8BAA8B,WAAW,IAAI,WAAW,OAAO,CAAC,wBAAwB,QAAQ,WAAW,CAAC,uCADz8H,QACw/H,CAAC,CAAC,wBAAwB,cAAc,CAAC,CAAC,mCAAmC,cAAc,CAAC,CAAC,oCAAoC,cAAc,CAAC,CAAC,kCAAkC,cAAc,CAAC,CAAC,mCAAmC,cAAc,CAAC,CAAC,qCAAqC,cAAc,CAAC,CAAC,qCAAqC,cAAc,CAAC,CAAC,0CAA0C,cAAc,CAAC,CAAC,uCAAuC,cAAc,CAAC,CAAC,iBAAiB,WAAW,IAAI,CAAC,OAAO,KAAK,OAAO,CAAC,aAAa,CAAC,YAAY,CAAC,cAAc,WAAW,MAAM,CAAC,uBAAuB,WAAW,MAAM,CAAC,4BAA4B,OAAO,IAAI,CAAC,4BAA4B,OAAO,IAAI,CAAC,CAAC,OAAO,OAAO,KAAK,CAAC,sBAAsB,QAAQ,cAAc,CAAC,EAAE,aAAa,IAAI,UAAU,cAAc,UAAU,GAAG,KAAK,CAAC,IAAI,OAAO,GAAG,CAAC,YAAY,CAAC,KAAK,iBAAiB,IAAI,cAAc,MAAM,IAAI,aAAa,CAAC,CAAC,kBAAkB,iBAAiB,CAAC,oBAAoB,eAAe,IAAI,CAAC,CAAC,QAAQ,WAAW,OAAO,CAAC,CAAC,QAAQ,KAAK,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,YAAY,OAAO,aAAa,EAAE,MAAM,IAAI,OAAO,IADtkK,OACilK,KADjlK,QAC8lK,EAAE,SAAS,SAAS,SAAS,MAAM,CAAC,CAAC,SAAS,SAAS,QAAQ,CAAC,CAAC,MAAM,SAAS,KAAK,CAAC,CAAC,SAAS,SAAS,QAAQ,CAAC,CAAC,QAAQ,MAAM,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,UAAU,aAAa,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,SAAS,IAAI,GAAG,CAAC,CAAC,MAAM,IAAI,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,QAAQ,MAAM,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,SAAS,OAAO,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,UAAU,KAAK,GAAG,CAAC,CAAC,KAAK,QAAQ,EAAE,CAAC,CAAC,MAAM,cAAc,KAAK,IAAI,UAAU,CAAC,GAAG,CAAC,CAAC,QAAQ,cAAc,IAAI,CAAC,CAAC,KAAK,aAAa,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,KAAK,WAAW,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,KAAK,WAAW,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,MAAM,WAAW,KAAK,IAAI,UAAU,CAAC,GAAG,CAAC,CAAC,QAAQ,WAAW,IAAI,CAAC,CAAC,KAAK,cAAc,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,KAAK,cAAc,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,KAAK,cAAc,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,KAAK,cAAc,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,KAAK,cAAc,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,KAAK,YAAY,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,MAAM,QAAQ,KAAK,CAAC,CAAC,KAAK,QAAQ,IAAI,CAAC,CAAC,KAAK,QAAQ,IAAI,CAAC,CAAC,OAAO,QAAQ,IAAI,CAAC,CAAC,YAAY,QAAQ,WAAW,CAAC,CAAC,MAAM,QAAQ,KAAK,CAAC,CAAC,cAAc,aAAa,CAAC,CAAC,CAAC,OAAO,MAAM,KAAK,IAAI,UAAU,CAAC,GAAG,OAAO,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,UAAU,MAAM,KAAK,IAAI,UAAU,CAAC,KAAK,OAAO,KAAK,IAAI,UAAU,CAAC,IAAI,CAAC,CAAC,UAAU,MAAM,KAAK,IAAI,UAAU,CAAC,KAAK,OAAO,KAAK,IAAI,UAAU,CAAC,IAAI,CAAC,CAAC,OAAO,MAAM,KAAK,IAAI,UAAU,CAAC,GAAG,OAAO,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,OAAO,MAAM,KAAK,IAAI,UAAU,CAAC,GAAG,OAAO,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,IAAI,OAAO,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,OAAO,OAAO,KAAK,IAAI,UAAU,CAAC,IAAI,CAAC,CAAC,IAAI,OAAO,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,IAAI,OAAO,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,IAAI,OAAO,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,IAAI,OAAO,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,IAAI,OAAO,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,KAAK,OAAO,KAAK,IAAI,UAAU,CAAC,GAAG,CAAC,CAAC,YAAY,OAAO,KAAK,CAAC,CAAC,2CAA2C,OAAO,IAAI,8BAA8B,CAAC,CAAC,OAAO,OAAO,IAAI,CAAC,CAAC,OAAO,OAAO,IAAI,CAAC,CAAC,KAAK,OAAO,GAAG,CAAC,CAAC,SAAS,WAAW,KAAK,IAAI,UAAU,CAAC,GAAG,CAAC,CAAC,6BAA6B,WAAW,KAAK,KAAK,EAAE,MAAM,CAAC,CAAC,SAAS,WAAW,KAAK,IAAI,UAAU,CAAC,GAAG,CAAC,CAAC,OAAO,MAAM,KAAK,IAAI,UAAU,CAAC,IAAI,CAAC,CAAC,IAAI,MAAM,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,IAAI,MAAM,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,IAAI,MAAM,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,YAAY,MAAM,KAAK,CAAC,CAAC,MAAM,MAAM,WAAW,CAAC,CAAC,OAAO,MAAM,IAAI,CAAC,CAAC,SAAS,UAAU,IAAI,eAAe,CAAC,CAAC,QAAQ,UAAU,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,eAAe,UAAU,IAAI,CAAC,CAAC,8CAA8C,UAAU,IAAI,6BAA6B,CAAC,CAAC,OAAO,KAAK,CAAC,CAAC,CAAC,SAAS,YAAY,CAAC,CAAC,CAAC,kBAAkB,kBAAiB,MAAwB,UAAU,IAAI,iBAAiB,IAAI,iBAAiB,CAAC,CAAC,kBAAkB,kBAAiB,MAAwB,UAAU,IAAI,iBAAiB,IAAI,iBAAiB,CAAC,CAAC,oCAAoC,kBAAiB,KAAK,KAAK,EAAE,MAAK,UAAU,IAAI,iBAAiB,IAAI,iBAAiB,CAAC,CAAC,UAAU,OAAO,KAAK,CAAC,CAAC,eAAe,OAAO,OAAO,CAAC,CAAC,WAAW,aAAa,IAAI,CAAC,CAAC,YAAY,oBAAoB,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,YAAY,sBAAsB,OAAO,CAAC,CAAC,OAAO,CAAC,CAAC,KAAK,CAAC,CAAC,YAAY,sBAAsB,OAAO,CAAC,CAAC,OAAO,CAAC,CAAC,KAAK,CAAC,CAAC,SAAS,eAAe,MAAM,CAAC,CAAC,aAAa,YAAY,MAAM,CAAC,CAAC,YAAY,YAAY,UAAU,CAAC,CAAC,gBAAgB,gBAAgB,aAAa,CAAC,CAAC,eAAe,gBAAgB,MAAM,CAAC,CAAC,MAAM,IAAI,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,MAAM,IAAI,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,SAAS,IAAI,KAAK,IAAI,UAAU,CAAC,IAAI,CAAC,CAAC,MAAM,IAAI,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,MAAM,IAAI,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,MAAM,IAAI,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,MAAM,IAAI,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,OAAO,CAAC,SAAS,CAAC,KAAK,cAAc,qBAAqB,EAAE,mBAAmB,KAAK,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,IAAI,uBAAuB,iBAAiB,KAAK,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,KAAK,EAAE,EAAE,IAAI,uBAAuB,CAAC,OAAO,CAAC,SAAS,CAAC,KAAK,cAAc,qBAAqB,EAAE,mBAAmB,KAAK,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,IAAI,uBAAuB,iBAAiB,KAAK,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,KAAK,EAAE,EAAE,IAAI,uBAAuB,CAAC,OAAO,CAAC,SAAS,CAAC,KAAK,cAAc,qBAAqB,EAAE,mBAAmB,KAAK,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,IAAI,uBAAuB,iBAAiB,KAAK,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,KAAK,EAAE,EAAE,IAAI,uBAAuB,CAAC,OAAO,CAAC,SAAS,CAAC,KAAK,cAAc,qBAAqB,EAAE,mBAAmB,KAAK,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,IAAI,uBAAuB,iBAAiB,KAAK,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,KAAK,EAAE,EAAE,IAAI,uBAAuB,CAAC,OAAO,CAAC,SAAS,CAAC,KAAK,cAAc,qBAAqB,EAAE,mBAAmB,KAAK,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,IAAI,uBAAuB,iBAAiB,KAAK,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,KAAK,EAAE,EAAE,IAAI,uBAAuB,CAAC,OAAO,CAAC,SAAS,CAAC,KAAK,cAAc,qBAAqB,EAAE,mBAAmB,KAAK,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,IAAI,uBAAuB,iBAAiB,KAAK,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,KAAK,EAAE,EAAE,IAAI,uBAAuB,CAAC,OAAO,CAAC,SAAS,CAAC,KAAK,cAAc,qBAAqB,EAAE,oBAAoB,KAAK,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,IAAI,uBAAuB,kBAAkB,KAAK,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,KAAK,EAAE,EAAE,IAAI,uBAAuB,CAAC,CAAC,gBAAgB,SAAS,MAAM,CAAC,CAAC,gBAAgB,WAAW,IAAI,CAAC,CAAC,QADljU,cACwkU,MAAM,CAAC,CAAC,gBADhlU,cAC8mU,GAAG,CAAC,CAAC,oBAAoB,cAAc,OAAO,CAAC,CAAC,aAD9pU,cACyrU,YAAY,CAAC,CAAC,WAAW,cAAc,IAAI,SAAS,CAAC,CAAC,WAAW,cAAc,KAAK,IAAI,UAAU,EAAE,IAAI,CAAC,CAAC,WAAW,cAAc,KAAK,IAAI,UAAU,EAAE,IAAI,CAAC,CAAC,WAAW,cAAc,KAAK,IAAI,UAAU,EAAE,IAAI,CAAC,CAAC,mBAAmB,uBAAuB,KAAK,wBAAwB,IAAI,CAAC,CAAC,OAAO,CAAC,SAAS,aAAa,IAAI,mBAAmB,aAAa,GAAG,CAAC,CAAC,SAAS,iBAAiB,IAAI,mBAAmB,iBAAiB,GAAG,CAAC,CAAC,WAAW,iBAAiB,IAAI,mBAAmB,iBAAiB,GAAG,CAAC,CAAC,SAAS,kBAAkB,IAAI,mBAAmB,kBAAkB,GAAG,CAAC,CAAC,gBAAgB,aAAa,IAAI,iBAAiB,CAAC,CAAC,aAAa,aAAa,IAAI,QAAQ,CAAC,CAAC,mBAAmB,aAAa,KAAK,CAAC,CAAC,qBAAqB,iBAAiB,KAAK,CAAC,CAAC,qBAAqB,kBAAkB,KAAK,CAAC,CAAC,cAAc,iBAAiB,IAAI,aAAa,CAAC,CAAC,SAAS,iBAAiB,IAAI,QAAQ,CAAC,CAAC,aAAa,iBAAiB,UAAU,GAAG,KAAK,CAAC,IAAI,cAAc,GAAG,CAAC,YAAY,CAAC,CAAC,UAAU,iBAAiB,IAAI,SAAS,CAAC,CAAC,QAAQ,iBAAiB,IAAI,OAAO,CAAC,CAAC,eAAe,iBAAiB,IAAI,cAAc,CAAC,CAAC,YAAY,iBAAiB,IAAI,iBAAiB,CAAC,CAAC,SAAS,iBAAiB,IAAI,QAAQ,CAAC,CAAC,WAAW,iBAAiB,IAAI,UAAU,CAAC,CAAC,WAAW,iBAAiB,IAAI,UAAU,CAAC,CAAC,aAAa,iBAAiB,IAAI,YAAY,CAAC,CAAC,eAAe,iBAAiB,KAAK,CAAC,CAAC,aAAa,KAAK,IAAI,UAAU,CAAC,CAAC,WAAW,KAAK,IAAI,QAAQ,CAAC,CAAC,IAAI,QAAQ,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,IAAI,QAAQ,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,IAAI,QAAQ,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,UADhsX,QACktX,GAAG,CAAC,CAAC,KAAK,eAAe,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,KAAK,eAAe,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,KAAK,eAAe,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,KAAK,eAAe,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,KAAK,eAAe,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,QAAQ,cAAc,KAAK,IAAI,UAAU,CAAC,GAAG,CAAC,CAAC,KAAK,cAAc,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,QAAQ,cAAc,KAAK,IAAI,UAAU,CAAC,IAAI,CAAC,CAAC,KAAK,cAAc,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,KAAK,cAAc,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,KAAK,cAAc,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,KAAK,YAAY,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,KAAK,eAAe,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,KAAK,eAAe,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,KAAK,aAAa,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,YAAY,WAAW,MAAM,CAAC,CAAC,QAAQ,UAAU,IAAI,WAAW,YAAY,IAAI,YAAY,CAAC,IAAI,wBAAwB,CAAC,CAAC,QAAQ,UAAU,KAAK,IAAI,WAAW,CAAC,MAAM,YAAY,IAAI,YAAY,CAAC,IAAI,wBAAwB,CAAC,CAAC,QAAQ,UAAU,KAAK,IAAI,WAAW,CAAC,MAAM,YAAY,IAAI,YAAY,CAAC,IAAI,wBAAwB,CAAC,CAAC,QAAQ,UAAU,KAAK,IAAI,WAAW,CAAC,KAAK,YAAY,IAAI,YAAY,CAAC,IAAI,wBAAwB,CAAC,CAAC,aAAa,aAAa,EAAE,YAAY,CAAC,CAAC,CAAC,UAAU,iBAAiB,IAAI,oBAAoB,YAAY,IAAI,mBAAmB,CAAC,CAAC,YAAY,iBAAiB,IAAI,sBAAsB,YAAY,IAAI,qBAAqB,CAAC,CAAC,YAAY,iBAAiB,IAAI,sBAAsB,YAAY,IAAI,qBAAqB,CAAC,CAAC,cAAc,iBAAiB,IAAI,wBAAwB,YAAY,IAAI,uBAAuB,CAAC,CAAC,eAAe,cAAc,IAAI,kBAAkB,eAAe,IAAI,iBAAiB,CAAC,CAAC,aAAa,UAAU,OAAO,CAAC,CAAC,kBAAkB,YAAY,MAAM,CAAC,CAAC,sBAAsB,MAAM,IAAI,mBAAmB,CAAC,CAAC,gBAAgB,MAAM,IAAI,OAAO,CAAC,CAAC,cAAc,MAAM,IAAI,iBAAiB,CAAC,CAAC,qBAAqB,MAAM,IAAI,kBAAkB,CAAC,CAAC,iBAAiB,MAAM,IAAI,cAAc,CAAC,CAAC,gBAAgB,MAAM,IAAI,aAAa,CAAC,CAAC,cAAc,MAAM,IAAI,iBAAiB,CAAC,CAAC,cAAc,MAAM,IAAI,iBAAiB,CAAC,CAAC,yBAAyB,MAAM,IAAI,cAAc,CAAC,CAAC,sBAAsB,MAAM,IAAI,mBAAmB,CAAC,CAAC,wBAAwB,MAAM,IAAI,qBAAqB,CAAC,CAAC,aAAa,MAAM,IAAI,UAAU,CAAC,CAAC,wBAAwB,MAAM,IAAI,qBAAqB,CAAC,CAAC,0BAA0B,MAAM,IAAI,uBAAuB,CAAC,CAAC,WAAW,MAAM,IAAI,cAAc,CAAC,CAAC,mBAAmB,sBAAsB,GAAG,CAAC,CAAC,WAAW,QAAQ,EAAE,CAAC,CAAC,UAAU,YAAY,EAAE,IAAI,IAAI,KAAK,IAAI,iBAAiB,CAAC,UAAU,CAAC,EAAE,IAAI,IAAI,KAAK,IAAI,iBAAiB,CAAC,WAAW,WAAW,IAAI,kBAAkB,CAAC,IAAI,uBAAuB,CAAC,IAAI,wBAAwB,CAAC,IAAI,iBAAiB,CAAC,IAAI,YAAY,CAAC,CAAC,UAAU,YAAY,EAAE,IAAI,IAAI,EAAE,IAAI,iBAAiB,CAAC,UAAU,CAAC,EAAE,IAAI,IAAI,KAAK,IAAI,iBAAiB,CAAC,WAAW,WAAW,IAAI,kBAAkB,CAAC,IAAI,uBAAuB,CAAC,IAAI,wBAAwB,CAAC,IAAI,iBAAiB,CAAC,IAAI,YAAY,CAAC,CAAC,UAAU,YAAY,EAAE,IAAI,IAAI,EAAE,IAAI,iBAAiB,CAAC,WAAW,WAAW,IAAI,kBAAkB,CAAC,IAAI,uBAAuB,CAAC,IAAI,wBAAwB,CAAC,IAAI,iBAAiB,CAAC,IAAI,YAAY,CAAC,CAAC,uBAAuB,uBAAuB,IAAI,aAAa,CAAC,CAAC,eAAe,cAAc,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC,QAAQ,CAAhE,eAAgF,eAAe,IAAI,QAAQ,IAAI,MAAM,KAAK,CAAC,CAAC,CAAC,QAAQ,cAAc,IAAI,oBAAoB,cAAc,GAAG,CAAC,CAAC,OAAO,OAAO,IAAI,SAAS,EAAE,IAAI,eAAe,EAAE,IAAI,aAAa,EAAE,IAAI,cAAc,EAAE,IAAI,eAAe,EAAE,IAAI,WAAW,EAAE,IAAI,aAAa,EAAE,IAAI,UAAU,EAAE,IAAI,gBAAgB,EAAE,CAAC,CAAC,iCAAiC,oBAAoB,KAAK,CAAC,WAAW,2BAA2B,IAAI,SAAS,CAAC,IAAI,uCAAuC,oBAAoB,IAAI,aAAa,CAAC,IAAI,+BAA+B,CAAC,CAAC,qBAAqB,oBAAoB,MAAM,2BAA2B,IAAI,SAAS,CAAC,IAAI,uCAAuC,oBAAoB,IAAI,aAAa,CAAC,IAAI,+BAA+B,CAAC,CAAC,kBAAkB,oBAAoB,KAAK,CAAC,gBAAgB,CAAC,YAAY,CAAC,aAAa,CAAC,qBAAqB,CAAC,IAAI,CAAC,MAAM,CAAC,kBAAkB,CAAC,iBAAiB,CAAC,iBAAiB,2BAA2B,IAAI,SAAS,CAAC,IAAI,uCAAuC,oBAAoB,IAAI,aAAa,CAAC,IAAI,+BAA+B,CAAC,CAAC,mBAAmB,oBAAoB,QAAQ,2BAA2B,IAAI,SAAS,CAAC,IAAI,uCAAuC,oBAAoB,IAAI,aAAa,CAAC,IAAI,+BAA+B,CAAC,CAAC,aAAa,mBAAmB,KAAK,cAAc,IAAI,CAAC,CAAC,YAAY,oBAAoB,KAAK,YAAY,IAAI,CAAC,CAAC,kDAAkD,IAAI,OAAO,CAAC,MAAM,CAAC,oBAAoB,GAAG,eAAe,IAAI,CAAC,CAAC,yCAAyC,IAAI,OAAO,CAAvG,MAA8G,CAAC,oBAAoB,GAAG,QAAQ,EAAE,CAAC,CAAC,iBAAiB,uBAAuB,QAAQ,WAAW,CAAC,CAAC,SAAS,uBAAuB,OAAO,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,cAAc,uBAAuB,aAAa,IAAI,mBAAmB,aAAa,CAAC,CAAC,CAAC,oBAAoB,uBAAuB,iBAAiB,KAAK,CAAC,CAAC,aAAa,uBAAuB,UAAU,KAAK,IAAI,WAAW,CAAC,MAAM,YAAY,IAAI,YAAY,CAAC,IAAI,wBAAwB,CAAC,CAAC,iBAAiB,uBAAuB,iBAAiB,IAAI,sBAAsB,YAAY,IAAI,qBAAqB,CAAC,CAAC,qBAAqB,uBAAuB,MAAM,IAAI,aAAa,CAAC,CAAC,kCAAkC,cAAc,MAAM,IAAI,mBAAmB,CAAC,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,gBAAgB,OAAO,iBAAiB,IAAI,SAAS,CAAC,CAAC,yBAAyB,OAAO,iBAAiB,UAAU,GAAG,KAAK,CAAC,IAAI,cAAc,GAAG,CAAC,YAAY,CAAC,CAAC,kBAAkB,OAAO,iBAAiB,IAAI,iBAAiB,CAAC,CAAC,qBAAqB,OAAO,iBAAiB,UAAU,GAAG,KAAK,CAAC,IAAI,UAAU,GAAG,CAAC,YAAY,CAAC,CAAC,uBAAuB,OAAO,iBAAiB,UAAU,GAAG,KAAK,CAAC,IAAI,YAAY,GAAG,CAAC,YAAY,CAAC,CAAC,6BAA6B,OAAO,MAAM,IAAI,oBAAoB,CAAC,CAAC,gBAAgB,OAAO,qBAAqB,SAAS,CAAC,CAAC,kBAAkB,OAAO,QAAQ,CAAC,CAAC,CAAC,CAAC,gBAAgB,OAAO,iBAAiB,IAAI,SAAS,CAAC,CAAC,6BAA6B,OAAO,MAAM,IAAI,oBAAoB,CAAC,CAAC,aAAa,OAAO,iBAAiB,IAAI,eAAe,EAAE,EAAE,EAAE,EAAE,KAAK,IAAI,EAAE,IAAI,wBAAwB,IAAI,eAAe,CAAC,cAAc,WAAW,IAAI,kBAAkB,CAAC,IAAI,uBAAuB,CAAC,IAAI,wBAAwB,CAAC,IAAI,iBAAiB,CAAC,IAAI,YAAY,CAAC,CAAC,gBAAgB,OAAO,gBAAgB,IAAI,OAAO,CAAC,CAAC,oBAAoB,OAAO,uBAAuB,IAAI,wBAAwB,IAAI,eAAe,EAAE,EAAE,EAAE,EAAE,IAAI,uBAAuB,IAAI,uBAAuB,CAAC,CAAC,mBAAmB,OAAO,mBAAmB,KAAK,cAAc,IAAI,CAAC,CAAC,6BAA6B,eAAe,aAAa,IAAI,UAAU,CAAC,CAAC,0BAA0B,eAAe,aAAa,IAAI,OAAO,CAAC,CAAC,2BAA2B,eAAe,iBAAiB,IAAI,eAAe,EAAE,EAAE,EAAE,EAAE,KAAK,IAAI,EAAE,IAAI,wBAAwB,IAAI,eAAe,CAAC,cAAc,WAAW,IAAI,kBAAkB,CAAC,IAAI,uBAAuB,CAAC,IAAI,wBAAwB,CAAC,IAAI,iBAAiB,CAAC,IAAI,YAAY,CAAC,CAAC,mCAAmC,eAAe,gBAAgB,UAAU,GAAG,KAAK,CAAC,IAAI,cAAc,GAAG,CAAC,YAAY,CAAC,CAAC,4BAA4B,eAAe,gBAAgB,UAAU,GAAG,KAAK,CAAC,IAAI,OAAO,GAAG,CAAC,YAAY,CAAC,CAAC,wBAAwB,eAAe,cAAc,IAAI,oBAAoB,cAAc,GAAG,CAAC,CAAC,2BAA2B,eAAe,cAAc,IAAI,OAAO,CAAC,CAAC,6BAA6B,UAAU,eAAe,IAAI,CAAC,CAAC,4BAA4B,UAAU,OAAO,WAAW,CAAC,CAAC,oBAAoB,UAAU,QAAQ,EAAE,CAAC,CAAC,sBAAsB,KAAK,CAAC,KAAK,eAAe,KAAK,IAAI,UAAU,CAAC,IAAI,CAAC,CAAC,mBAAmB,KAAK,CAAC,KAAK,eAAe,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,mBAAmB,KAAK,CAAC,KAAK,eAAe,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,gCAAgC,CAAC,mBAAmB,aAAa,IAAI,cAAc,CAAC,CAAC,kCAAkC,CAAC,mBAAmB,gBAAgB,UAAU,GAAG,KAAK,CAAC,IAAI,cAAc,GAAG,CAAC,YAAY,CAAC,CAAC,sCAAsC,CAAC,eAAe,eAAe,IAAI,CAAC,CAAC,6BAA6B,CAAC,eAAe,QAAQ,EAAE,CAAC,CAAC,sCAAsC,CAAC,iBAAiB,MAAM,IAAI,cAAc,CAAC,CAAC,sCAAsC,CAAC,6BAA6B,OAAO,GAAG,CAAC,CAAC,wCAAwC,CAAC,6BAA6B,MAAM,IAAI,CAAC,CAAC,sCAAsC,CAAC,2BAA2B,OAAO,IAAI,CAAC,CAAC,oCAAoC,CAAC,2BAA2B,MAAM,GAAG,CAAC,CAAC,2CAA2C,CAAC,kBAAkB,MAAM,IAAI,mBAAmB,CAAC,CAAC,oCAAoC,CAAC,kBAAkB,iBAAiB,KAAK,IAAI,UAAU,CAAC,GAAG,UAAU,IAAI,iBAAiB,IAAI,iBAAiB,CAAC,CAAC,mCAAmC,CAAC,gBAAgB,iBAAiB,KAAK,IAAI,UAAU,CAAC,IAAI,UAAU,IAAI,iBAAiB,IAAI,iBAAiB,CAAC,CAAC,mCAAmC,CAAC,iBAAiB,iBAAiB,KAAK,IAAI,UAAU,CAAC,GAAG,UAAU,IAAI,iBAAiB,IAAI,iBAAiB,CAAC,CAAC,kCAAkC,CAAC,eAAe,iBAAiB,KAAK,IAAI,UAAU,CAAC,IAAI,UAAU,IAAI,iBAAiB,IAAI,iBAAiB,CAAC,IAAI,CAAC,6CAA6C,CAAC,EAAE,CAAC,wBAAwB,mBAAmB,EAAE,mBAAmB,SAAS,QAAQ,YAAY,SAAS,MAAM,CAAC,IAAI,CAAC,qCAAqC,CAAC,EAAE,CAAC,wBAAwB,QAAQ,IAAI,CAAC,IAAI,CAAC,6CAA6C,CAAC,EAAE,CAAC,wBAAwB,YAAY,MAAM,CAAC,IAAI,CAAC,sCAAsC,CAAC,EAAE,CAAC,wBAAwB,IAAI,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,qCAAqC,CAAC,mBAAmB,iBAAiB,IAAI,aAAa,CAAC,CAAC,uCAAuC,CAAC,mBAAmB,MAAM,IAAI,aAAa,CAAC,CAAC,iCAAiC,CAAC,mBAAmB,YAAY,EAAE,IAAI,IAAI,EAAE,IAAI,iBAAiB,CAAC,UAAU,CAAC,EAAE,IAAI,IAAI,KAAK,IAAI,iBAAiB,CAAC,WAAW,WAAW,IAAI,kBAAkB,CAAC,IAAI,uBAAuB,CAAC,IAAI,wBAAwB,CAAC,IAAI,iBAAiB,CAAC,IAAI,YAAY,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,OAAO,CAAC,cAAc,WAAW,IAAI,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,OAAO,CAAC,eAAe,YAAY,KAAK,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,gBAAgB,MAAM,KAAK,CAAC,CAAC,WAAW,MAAM,IAAI,CAAC,CAAC,gBAAgB,sBAAsB,OAAO,CAAC,CAAC,OAAO,CAAC,CAAC,KAAK,CAAC,CAAC,aAAa,eAAe,GAAG,CAAC,CAAC,iBAAiB,YAAY,MAAM,CAAC,CAAC,YAAY,UAAU,KAAK,IAAI,WAAW,CAAC,MAAM,YAAY,IAAI,YAAY,CAAC,IAAI,wBAAwB,CAAC,CAAC,OAAO,CAAC,oBAAoB,CAAC,MAAM,CAAC,yCAAyC,eAAe,CAAC,wCAAwC,CAAC,mBAAmB,gBAAgB,UAAU,GAAG,KAAK,CAAC,IAAI,cAAc,GAAG,CAAC,YAAY,CAAC,CAAC,CAAC,gCAAgC,IAAI,eAAe,IAAI,CAAC,CAAC,qBAAqB,IAAI,YAAY,CAAC,CAAC,CAAC,kDAAkD,GAAG,KAAK,CAAC,eAAe,MAAM,KAAK,IAAI,UAAU,CAAC,GAAG,OAAO,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,iEAAiE,GAAG,KAAK,CAAC,eAAe,MAAM,IAAI,mBAAmB,CAAC,IAAI,CAAC,wBAAwB,CAAC,EAAE,IAAI,KAAK,YAAY,QAAQ,IAAI,CAAC,IAAI,CAAC,gCAAgC,CAAC,EAAE,IAAI,KAAK,YAAY,YAAY,MAAM,CAAC,IAAI,CAAC,yBAAyB,CAAC,EAAE,IAAI,KAAK,YAAY,IAAI,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC,gCAAgC,CAAC,IAAI,eAAe,IAAI,CAAC,CAAC,mBAAmB,CAAC,IAAI,MAAM,KAAK,IAAI,UAAU,CAAC,GAAG,OAAO,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,yBAAyB,OAAO,iBAAiB,IAAI,SAAS,CAAC,CAAC,CAAC,kCAAkC,OAAO,iBAAiB,UAAU,GAAG,KAAK,CAAC,IAAI,cAAc,GAAG,CAAC,YAAY,CAAC,CAAC,CAAC,8BAA8B,OAAO,iBAAiB,UAAU,GAAG,KAAK,CAAC,IAAI,UAAU,GAAG,CAAC,YAAY,CAAC,CAAC,CAAC,gCAAgC,OAAO,iBAAiB,UAAU,GAAG,KAAK,CAAC,IAAI,YAAY,GAAG,CAAC,YAAY,CAAC,CAAC,CAAC,sCAAsC,OAAO,MAAM,IAAI,oBAAoB,CAAC,CAAC,CAAC,MAAM,aAAa,MAAM,EAAE,EAAE,GAAG,aAAa,IAAI,mBAAmB,CAAC,SAAS,OAAO,IAAI,mBAAmB,CAAC,MAAM,kBAAkB,IAAI,mBAAmB,CAAC,SAAS,UAAU,IAAI,mBAAmB,CAAC,MAAM,qBAAqB,IAAI,mBAAmB,CAAC,SAAS,UAAU,IAAI,mBAAmB,CAAC,MAAM,qBAAqB,IAAI,mBAAmB,CAAC,SAAS,QAAQ,IAAI,mBAAmB,CAAC,SAAS,mBAAmB,IAAI,mBAAmB,CAAC,MAAM,QAAQ,IAAI,mBAAmB,CAAC,SAAS,YAAY,MAAM,IAAI,EAAE,GAAG,uBAAuB,MAAM,KAAK,EAAE,GAAG,QAAQ,MAAM,IAAI,EAAE,GAAG,SAAS,IAAI,kBAAkB,CAAC,SAAS,oBAAoB,IAAI,kBAAkB,CAAC,SAAS,cAAc,IAAI,QAAQ,CAAC,SAAS,yBAAyB,IAAI,QAAQ,CAAC,SAAS,SAAS,IAAI,aAAa,CAAC,SAAS,QAAQ,IAAI,aAAa,CAAC,SAAS,OAAO,MAAM,KAAK,EAAE,GAAG,SAAS,IAAI,cAAc,CAAC,SAAS,UAAU,IAAI,cAAc,CAAC,SAAS,WAAW,IAAI,cAAc,CAAC,MAAM,cAAc,IAAI,YAAY,CAAC,QAAQ,CAAC,UAAU,gBAAgB,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,KAAK,CAAC,aAAa,CAAC,EAAE,UAAU,gBAAgB,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,KAAK,CAAC,aAAa,CAAC,EAAE,UAAU,gBAAgB,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,KAAK,CAAC,aAAa,CAAC,EAAE,UAAU,oBAAoB,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,KAAK,CAAC,aAAa,CAAC,EAAE,UAAU,oBAAoB,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,KAAK,CAAC,aAAa,CAAC,EAAE,UAAU,iBAAiB,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,KAAK,CAAC,aAAa,CAAC,MAAM,UAAU,YAAY,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,UAAU,gBAAgB,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,UAAU,aAAa,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,UAAU,WAAW,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,KAAK,CAAC,aAAa,CAAC,EAAE,EAAE,MAAM,UAAU,iBAAiB,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,UAAU,iBAAiB,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,KAAK,CAAC,aAAa,CAAC,EAAE,EAAE,MAAM,UAAU,uBAAuB,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,UAAU,eAAe,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,UAAU,gBAAgB,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,KAAK,CAAC,aAAa,CAAC,EAAE,EAAE,MAAM,UAAU,qBAAqB,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,UAAU,sBAAsB,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,KAAK,CAAC,aAAa,CAAC,EAAE,EAAE,MAAM,UAAU,eAAe,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,UAAU,sBAAsB,CAAC,MAAM,CAAC,UAAU,CAAC,QAAQ,CAAC,KAAK,CAAC,aAAa,CAAC,EAAE,UAAU,sBAAsB,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,KAAK,CAAC,aAAa,CAAC,KAAK,UAAU,uBAAuB,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,KAAK,CAAC,aAAa,CAAC,EAAE,EAAE,MAAM,UAAU,kBAAkB,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,KAAK,CAAC,aAAa,CAAC,MAAM,UAAU,SAAS,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,UAAU,eAAe,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,UAAU,aAAa,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,UAAU,cAAc,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,UAAU,eAAe,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,UAAU,WAAW,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,UAAU,YAAY,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,UAAU,aAAa,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,UAAU,UAAU,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,UAAU,gBAAgB,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC","names":[]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remoteoss/remote-flows",
3
- "version": "0.0.0",
3
+ "version": "0.0.1",
4
4
  "scripts": {
5
5
  "build": "NODE_ENV=production tsup",
6
6
  "ci": "npm run build && npm run check-format && npm run check-exports && npm run lint && npm run test",
@@ -46,8 +46,8 @@
46
46
  "dist"
47
47
  ],
48
48
  "peerDependencies": {
49
- "react": "^18.0.0",
50
- "react-dom": "^18.0.0"
49
+ "react": "^18 || ^19",
50
+ "react-dom": "^18 || ^19"
51
51
  },
52
52
  "dependencies": {
53
53
  "@hey-api/client-fetch": "^0.8.1",