@adoptai/genui-components 0.1.57 → 0.1.59
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/dist/composites/document-field-extraction/FieldAuditLog.d.ts +27 -0
- package/dist/composites/document-field-extraction/FieldAuditLog.d.ts.map +1 -0
- package/dist/composites/document-field-extraction/FieldDetail.d.ts +22 -0
- package/dist/composites/document-field-extraction/FieldDetail.d.ts.map +1 -0
- package/dist/composites/document-field-extraction/FieldDetails.d.ts +18 -0
- package/dist/composites/document-field-extraction/FieldDetails.d.ts.map +1 -0
- package/dist/composites/document-field-extraction/bboxTransform.d.ts +25 -0
- package/dist/composites/document-field-extraction/bboxTransform.d.ts.map +1 -0
- package/dist/composites/document-field-extraction/fieldLabels.d.ts +2 -0
- package/dist/composites/document-field-extraction/fieldLabels.d.ts.map +1 -0
- package/dist/composites/document-field-extraction/resolver.cjs +1920 -0
- package/dist/composites/document-field-extraction/resolver.cjs.map +1 -0
- package/dist/composites/document-field-extraction/resolver.d.ts +16 -0
- package/dist/composites/document-field-extraction/resolver.d.ts.map +1 -0
- package/dist/composites/document-field-extraction/resolver.js +1913 -0
- package/dist/composites/document-field-extraction/resolver.js.map +1 -0
- package/dist/composites/tabby-auth/resolver.cjs +597 -0
- package/dist/composites/tabby-auth/resolver.cjs.map +1 -0
- package/dist/composites/tabby-auth/resolver.d.ts +3 -0
- package/dist/composites/tabby-auth/resolver.d.ts.map +1 -0
- package/dist/composites/tabby-auth/resolver.js +595 -0
- package/dist/composites/tabby-auth/resolver.js.map +1 -0
- package/dist/composites/workflow-stepper/resolver.cjs +86 -18
- package/dist/composites/workflow-stepper/resolver.cjs.map +1 -1
- package/dist/composites/workflow-stepper/resolver.d.ts.map +1 -1
- package/dist/composites/workflow-stepper/resolver.js +86 -18
- package/dist/composites/workflow-stepper/resolver.js.map +1 -1
- package/dist/index.cjs +2661 -345
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +5 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2456 -144
- package/dist/index.js.map +1 -1
- package/dist/renderer.cjs +2482 -281
- package/dist/renderer.cjs.map +1 -1
- package/dist/renderer.js +2339 -138
- package/dist/renderer.js.map +1 -1
- package/dist/resolver.cjs +2481 -280
- package/dist/resolver.cjs.map +1 -1
- package/dist/resolver.d.ts.map +1 -1
- package/dist/resolver.js +2339 -138
- package/dist/resolver.js.map +1 -1
- package/dist/schemas/document-field-extraction.d.ts +258 -0
- package/dist/schemas/document-field-extraction.d.ts.map +1 -0
- package/dist/schemas/index.cjs +262 -3
- package/dist/schemas/index.cjs.map +1 -1
- package/dist/schemas/index.d.ts +376 -0
- package/dist/schemas/index.d.ts.map +1 -1
- package/dist/schemas/index.js +262 -3
- package/dist/schemas/index.js.map +1 -1
- package/dist/schemas/tabby-auth.d.ts +58 -0
- package/dist/schemas/tabby-auth.d.ts.map +1 -0
- package/dist/schemas/workflow-stepper.d.ts +60 -0
- package/dist/schemas/workflow-stepper.d.ts.map +1 -1
- package/dist/tool-definitions.json +326 -3
- package/package.json +1 -1
package/dist/schemas/index.d.ts
CHANGED
|
@@ -5041,9 +5041,29 @@ export declare const schemaRegistry: {
|
|
|
5041
5041
|
active: "active";
|
|
5042
5042
|
done: "done";
|
|
5043
5043
|
blocked: "blocked";
|
|
5044
|
+
running: "running";
|
|
5044
5045
|
failed: "failed";
|
|
5045
5046
|
review: "review";
|
|
5046
5047
|
}>;
|
|
5048
|
+
eval: z.ZodOptional<z.ZodObject<{
|
|
5049
|
+
score: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
5050
|
+
verdict: z.ZodOptional<z.ZodEnum<{
|
|
5051
|
+
good: "good";
|
|
5052
|
+
bad: "bad";
|
|
5053
|
+
}>>;
|
|
5054
|
+
reasoning: z.ZodOptional<z.ZodString>;
|
|
5055
|
+
judge_ok: z.ZodOptional<z.ZodBoolean>;
|
|
5056
|
+
data_quality_flags: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5057
|
+
field: z.ZodOptional<z.ZodString>;
|
|
5058
|
+
issue: z.ZodOptional<z.ZodString>;
|
|
5059
|
+
severity: z.ZodOptional<z.ZodEnum<{
|
|
5060
|
+
high: "high";
|
|
5061
|
+
medium: "medium";
|
|
5062
|
+
low: "low";
|
|
5063
|
+
}>>;
|
|
5064
|
+
details: z.ZodOptional<z.ZodString>;
|
|
5065
|
+
}, z.core.$strip>>>;
|
|
5066
|
+
}, z.core.$strip>>;
|
|
5047
5067
|
assignees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5048
5068
|
name: z.ZodString;
|
|
5049
5069
|
kind: z.ZodEnum<{
|
|
@@ -5111,6 +5131,46 @@ export declare const schemaRegistry: {
|
|
|
5111
5131
|
type: string;
|
|
5112
5132
|
enum: string[];
|
|
5113
5133
|
};
|
|
5134
|
+
eval: {
|
|
5135
|
+
type: string;
|
|
5136
|
+
description: string;
|
|
5137
|
+
properties: {
|
|
5138
|
+
score: {
|
|
5139
|
+
type: string;
|
|
5140
|
+
};
|
|
5141
|
+
verdict: {
|
|
5142
|
+
type: string;
|
|
5143
|
+
enum: string[];
|
|
5144
|
+
};
|
|
5145
|
+
reasoning: {
|
|
5146
|
+
type: string;
|
|
5147
|
+
};
|
|
5148
|
+
judge_ok: {
|
|
5149
|
+
type: string;
|
|
5150
|
+
};
|
|
5151
|
+
data_quality_flags: {
|
|
5152
|
+
type: string;
|
|
5153
|
+
items: {
|
|
5154
|
+
type: string;
|
|
5155
|
+
properties: {
|
|
5156
|
+
field: {
|
|
5157
|
+
type: string;
|
|
5158
|
+
};
|
|
5159
|
+
issue: {
|
|
5160
|
+
type: string;
|
|
5161
|
+
};
|
|
5162
|
+
severity: {
|
|
5163
|
+
type: string;
|
|
5164
|
+
enum: string[];
|
|
5165
|
+
};
|
|
5166
|
+
details: {
|
|
5167
|
+
type: string;
|
|
5168
|
+
};
|
|
5169
|
+
};
|
|
5170
|
+
};
|
|
5171
|
+
};
|
|
5172
|
+
};
|
|
5173
|
+
};
|
|
5114
5174
|
assignees: {
|
|
5115
5175
|
type: string;
|
|
5116
5176
|
maxItems: number;
|
|
@@ -5146,6 +5206,264 @@ export declare const schemaRegistry: {
|
|
|
5146
5206
|
};
|
|
5147
5207
|
};
|
|
5148
5208
|
};
|
|
5209
|
+
"document-field-extraction": {
|
|
5210
|
+
schema: z.ZodObject<{
|
|
5211
|
+
type: z.ZodLiteral<"document-field-extraction">;
|
|
5212
|
+
doc_type: z.ZodOptional<z.ZodString>;
|
|
5213
|
+
file_name: z.ZodOptional<z.ZodString>;
|
|
5214
|
+
payload_ref: z.ZodOptional<z.ZodString>;
|
|
5215
|
+
store_id: z.ZodOptional<z.ZodString>;
|
|
5216
|
+
doc_id: z.ZodOptional<z.ZodString>;
|
|
5217
|
+
pages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5218
|
+
page: z.ZodNumber;
|
|
5219
|
+
imageUrl: z.ZodOptional<z.ZodString>;
|
|
5220
|
+
width_pt: z.ZodNumber;
|
|
5221
|
+
height_pt: z.ZodNumber;
|
|
5222
|
+
}, z.core.$strip>>>;
|
|
5223
|
+
fields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5224
|
+
field_key: z.ZodString;
|
|
5225
|
+
label: z.ZodString;
|
|
5226
|
+
value: z.ZodString;
|
|
5227
|
+
page: z.ZodNumber;
|
|
5228
|
+
bbox: z.ZodOptional<z.ZodNullable<z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber, z.ZodNumber], null>>>;
|
|
5229
|
+
confidence: z.ZodOptional<z.ZodNumber>;
|
|
5230
|
+
confidence_tier: z.ZodOptional<z.ZodEnum<{
|
|
5231
|
+
red: "red";
|
|
5232
|
+
green: "green";
|
|
5233
|
+
amber: "amber";
|
|
5234
|
+
}>>;
|
|
5235
|
+
badge: z.ZodOptional<z.ZodEnum<{
|
|
5236
|
+
SC: "SC";
|
|
5237
|
+
CN: "CN";
|
|
5238
|
+
AB: "AB";
|
|
5239
|
+
SW: "SW";
|
|
5240
|
+
}>>;
|
|
5241
|
+
state: z.ZodOptional<z.ZodEnum<{
|
|
5242
|
+
ok: "ok";
|
|
5243
|
+
corrected: "corrected";
|
|
5244
|
+
missing: "missing";
|
|
5245
|
+
warn: "warn";
|
|
5246
|
+
}>>;
|
|
5247
|
+
entity_type: z.ZodOptional<z.ZodString>;
|
|
5248
|
+
is_primary: z.ZodOptional<z.ZodBoolean>;
|
|
5249
|
+
previous_value: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5250
|
+
corrected_by: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5251
|
+
}, z.core.$strip>>>;
|
|
5252
|
+
page_count: z.ZodOptional<z.ZodNumber>;
|
|
5253
|
+
pages_processed: z.ZodOptional<z.ZodNumber>;
|
|
5254
|
+
summary: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
5255
|
+
display_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5256
|
+
short_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5257
|
+
organization: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5258
|
+
domain: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5259
|
+
domain_group: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5260
|
+
tax_year: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
5261
|
+
crumbs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
5262
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
5263
|
+
stats: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5264
|
+
field_key: z.ZodString;
|
|
5265
|
+
label: z.ZodString;
|
|
5266
|
+
value: z.ZodString;
|
|
5267
|
+
caption: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5268
|
+
}, z.core.$strip>>>;
|
|
5269
|
+
facts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5270
|
+
field_key: z.ZodString;
|
|
5271
|
+
label: z.ZodString;
|
|
5272
|
+
value: z.ZodString;
|
|
5273
|
+
badge: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5274
|
+
}, z.core.$strip>>>;
|
|
5275
|
+
}, z.core.$strip>>>;
|
|
5276
|
+
}, z.core.$strip>;
|
|
5277
|
+
tool: {
|
|
5278
|
+
name: string;
|
|
5279
|
+
description: string;
|
|
5280
|
+
input_schema: {
|
|
5281
|
+
type: "object";
|
|
5282
|
+
properties: {
|
|
5283
|
+
type: {
|
|
5284
|
+
type: string;
|
|
5285
|
+
enum: string[];
|
|
5286
|
+
};
|
|
5287
|
+
doc_type: {
|
|
5288
|
+
type: string;
|
|
5289
|
+
};
|
|
5290
|
+
file_name: {
|
|
5291
|
+
type: string;
|
|
5292
|
+
description: string;
|
|
5293
|
+
};
|
|
5294
|
+
payload_ref: {
|
|
5295
|
+
type: string;
|
|
5296
|
+
description: string;
|
|
5297
|
+
};
|
|
5298
|
+
store_id: {
|
|
5299
|
+
type: string;
|
|
5300
|
+
description: string;
|
|
5301
|
+
};
|
|
5302
|
+
doc_id: {
|
|
5303
|
+
type: string;
|
|
5304
|
+
description: string;
|
|
5305
|
+
};
|
|
5306
|
+
pages: {
|
|
5307
|
+
type: string;
|
|
5308
|
+
items: {
|
|
5309
|
+
type: string;
|
|
5310
|
+
properties: {
|
|
5311
|
+
page: {
|
|
5312
|
+
type: string;
|
|
5313
|
+
description: string;
|
|
5314
|
+
};
|
|
5315
|
+
imageUrl: {
|
|
5316
|
+
type: string;
|
|
5317
|
+
};
|
|
5318
|
+
width_pt: {
|
|
5319
|
+
type: string;
|
|
5320
|
+
};
|
|
5321
|
+
height_pt: {
|
|
5322
|
+
type: string;
|
|
5323
|
+
};
|
|
5324
|
+
};
|
|
5325
|
+
required: string[];
|
|
5326
|
+
};
|
|
5327
|
+
};
|
|
5328
|
+
fields: {
|
|
5329
|
+
type: string;
|
|
5330
|
+
items: {
|
|
5331
|
+
type: string;
|
|
5332
|
+
properties: {
|
|
5333
|
+
field_key: {
|
|
5334
|
+
type: string;
|
|
5335
|
+
};
|
|
5336
|
+
label: {
|
|
5337
|
+
type: string;
|
|
5338
|
+
};
|
|
5339
|
+
value: {
|
|
5340
|
+
type: string;
|
|
5341
|
+
};
|
|
5342
|
+
page: {
|
|
5343
|
+
type: string;
|
|
5344
|
+
description: string;
|
|
5345
|
+
};
|
|
5346
|
+
bbox: {
|
|
5347
|
+
type: string;
|
|
5348
|
+
items: {
|
|
5349
|
+
type: string;
|
|
5350
|
+
};
|
|
5351
|
+
description: string;
|
|
5352
|
+
};
|
|
5353
|
+
confidence: {
|
|
5354
|
+
type: string;
|
|
5355
|
+
};
|
|
5356
|
+
confidence_tier: {
|
|
5357
|
+
type: string;
|
|
5358
|
+
enum: string[];
|
|
5359
|
+
};
|
|
5360
|
+
badge: {
|
|
5361
|
+
type: string;
|
|
5362
|
+
enum: string[];
|
|
5363
|
+
};
|
|
5364
|
+
state: {
|
|
5365
|
+
type: string;
|
|
5366
|
+
enum: string[];
|
|
5367
|
+
};
|
|
5368
|
+
entity_type: {
|
|
5369
|
+
type: string;
|
|
5370
|
+
};
|
|
5371
|
+
is_primary: {
|
|
5372
|
+
type: string;
|
|
5373
|
+
};
|
|
5374
|
+
};
|
|
5375
|
+
required: string[];
|
|
5376
|
+
};
|
|
5377
|
+
};
|
|
5378
|
+
page_count: {
|
|
5379
|
+
type: string;
|
|
5380
|
+
};
|
|
5381
|
+
pages_processed: {
|
|
5382
|
+
type: string;
|
|
5383
|
+
};
|
|
5384
|
+
summary: {
|
|
5385
|
+
type: string;
|
|
5386
|
+
description: string;
|
|
5387
|
+
properties: {
|
|
5388
|
+
display_name: {
|
|
5389
|
+
type: string;
|
|
5390
|
+
};
|
|
5391
|
+
short_name: {
|
|
5392
|
+
type: string;
|
|
5393
|
+
};
|
|
5394
|
+
organization: {
|
|
5395
|
+
type: string;
|
|
5396
|
+
};
|
|
5397
|
+
domain: {
|
|
5398
|
+
type: string;
|
|
5399
|
+
};
|
|
5400
|
+
domain_group: {
|
|
5401
|
+
type: string;
|
|
5402
|
+
};
|
|
5403
|
+
tax_year: {
|
|
5404
|
+
type: string;
|
|
5405
|
+
};
|
|
5406
|
+
crumbs: {
|
|
5407
|
+
type: string;
|
|
5408
|
+
items: {
|
|
5409
|
+
type: string;
|
|
5410
|
+
};
|
|
5411
|
+
};
|
|
5412
|
+
tags: {
|
|
5413
|
+
type: string;
|
|
5414
|
+
items: {
|
|
5415
|
+
type: string;
|
|
5416
|
+
};
|
|
5417
|
+
};
|
|
5418
|
+
stats: {
|
|
5419
|
+
type: string;
|
|
5420
|
+
items: {
|
|
5421
|
+
type: string;
|
|
5422
|
+
properties: {
|
|
5423
|
+
field_key: {
|
|
5424
|
+
type: string;
|
|
5425
|
+
};
|
|
5426
|
+
label: {
|
|
5427
|
+
type: string;
|
|
5428
|
+
};
|
|
5429
|
+
value: {
|
|
5430
|
+
type: string;
|
|
5431
|
+
};
|
|
5432
|
+
caption: {
|
|
5433
|
+
type: string;
|
|
5434
|
+
};
|
|
5435
|
+
};
|
|
5436
|
+
required: string[];
|
|
5437
|
+
};
|
|
5438
|
+
};
|
|
5439
|
+
facts: {
|
|
5440
|
+
type: string;
|
|
5441
|
+
items: {
|
|
5442
|
+
type: string;
|
|
5443
|
+
properties: {
|
|
5444
|
+
field_key: {
|
|
5445
|
+
type: string;
|
|
5446
|
+
};
|
|
5447
|
+
label: {
|
|
5448
|
+
type: string;
|
|
5449
|
+
};
|
|
5450
|
+
value: {
|
|
5451
|
+
type: string;
|
|
5452
|
+
};
|
|
5453
|
+
badge: {
|
|
5454
|
+
type: string;
|
|
5455
|
+
};
|
|
5456
|
+
};
|
|
5457
|
+
required: string[];
|
|
5458
|
+
};
|
|
5459
|
+
};
|
|
5460
|
+
};
|
|
5461
|
+
};
|
|
5462
|
+
};
|
|
5463
|
+
required: string[];
|
|
5464
|
+
};
|
|
5465
|
+
};
|
|
5466
|
+
};
|
|
5149
5467
|
"decision-card": {
|
|
5150
5468
|
schema: z.ZodObject<{
|
|
5151
5469
|
type: z.ZodLiteral<"decision-card">;
|
|
@@ -5295,6 +5613,64 @@ export declare const schemaRegistry: {
|
|
|
5295
5613
|
};
|
|
5296
5614
|
};
|
|
5297
5615
|
};
|
|
5616
|
+
"tabby-auth": {
|
|
5617
|
+
schema: z.ZodObject<{
|
|
5618
|
+
type: z.ZodLiteral<"tabby-auth">;
|
|
5619
|
+
app: z.ZodString;
|
|
5620
|
+
url: z.ZodString;
|
|
5621
|
+
workspace: z.ZodOptional<z.ZodString>;
|
|
5622
|
+
state: z.ZodOptional<z.ZodEnum<{
|
|
5623
|
+
pending: "pending";
|
|
5624
|
+
connected: "connected";
|
|
5625
|
+
}>>;
|
|
5626
|
+
ctaLabel: z.ZodOptional<z.ZodString>;
|
|
5627
|
+
steps: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
5628
|
+
description: z.ZodOptional<z.ZodString>;
|
|
5629
|
+
iconUrl: z.ZodOptional<z.ZodString>;
|
|
5630
|
+
}, z.core.$strip>;
|
|
5631
|
+
tool: {
|
|
5632
|
+
name: string;
|
|
5633
|
+
description: string;
|
|
5634
|
+
input_schema: {
|
|
5635
|
+
type: "object";
|
|
5636
|
+
properties: {
|
|
5637
|
+
type: {
|
|
5638
|
+
type: string;
|
|
5639
|
+
enum: string[];
|
|
5640
|
+
};
|
|
5641
|
+
app: {
|
|
5642
|
+
type: string;
|
|
5643
|
+
};
|
|
5644
|
+
url: {
|
|
5645
|
+
type: string;
|
|
5646
|
+
};
|
|
5647
|
+
workspace: {
|
|
5648
|
+
type: string;
|
|
5649
|
+
};
|
|
5650
|
+
state: {
|
|
5651
|
+
type: string;
|
|
5652
|
+
enum: string[];
|
|
5653
|
+
};
|
|
5654
|
+
ctaLabel: {
|
|
5655
|
+
type: string;
|
|
5656
|
+
};
|
|
5657
|
+
steps: {
|
|
5658
|
+
type: string;
|
|
5659
|
+
items: {
|
|
5660
|
+
type: string;
|
|
5661
|
+
};
|
|
5662
|
+
};
|
|
5663
|
+
description: {
|
|
5664
|
+
type: string;
|
|
5665
|
+
};
|
|
5666
|
+
iconUrl: {
|
|
5667
|
+
type: string;
|
|
5668
|
+
};
|
|
5669
|
+
};
|
|
5670
|
+
required: string[];
|
|
5671
|
+
};
|
|
5672
|
+
};
|
|
5673
|
+
};
|
|
5298
5674
|
};
|
|
5299
5675
|
export type SchemaPayload<T extends keyof typeof schemaRegistry> = z.infer<(typeof schemaRegistry)[T]["schema"]>;
|
|
5300
5676
|
export { buildRenderUITool } from "./buildRenderUITool";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/schemas/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/schemas/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AA6DxB,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6BAvDN,CAAC;;;;;;;;6BAAD,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoH4C,CAAC;AAEnE,MAAM,MAAM,aAAa,CAAC,CAAC,SAAS,MAAM,OAAO,cAAc,IAC7D,CAAC,CAAC,KAAK,CAAC,CAAC,OAAO,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC;AAEhD,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACxD,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC"}
|