@adoptai/genui-components 0.1.56 → 0.1.58
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/builders/BuilderForm.d.ts.map +1 -1
- package/dist/composites/decision-card/resolver.cjs +634 -0
- package/dist/composites/decision-card/resolver.cjs.map +1 -0
- package/dist/composites/decision-card/resolver.d.ts +13 -0
- package/dist/composites/decision-card/resolver.d.ts.map +1 -0
- package/dist/composites/decision-card/resolver.js +627 -0
- package/dist/composites/decision-card/resolver.js.map +1 -0
- 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.d.ts +16 -0
- package/dist/composites/document-field-extraction/resolver.d.ts.map +1 -0
- package/dist/composites/workflow-stepper/resolver.cjs +4 -1
- package/dist/composites/workflow-stepper/resolver.cjs.map +1 -1
- package/dist/composites/workflow-stepper/resolver.js +4 -1
- package/dist/composites/workflow-stepper/resolver.js.map +1 -1
- package/dist/index.cjs +2735 -382
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +7 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2530 -183
- package/dist/index.js.map +1 -1
- package/dist/renderer.cjs +2410 -178
- package/dist/renderer.cjs.map +1 -1
- package/dist/renderer.js +2267 -35
- package/dist/renderer.js.map +1 -1
- package/dist/resolver.cjs +2409 -177
- package/dist/resolver.cjs.map +1 -1
- package/dist/resolver.d.ts.map +1 -1
- package/dist/resolver.js +2267 -35
- package/dist/resolver.js.map +1 -1
- package/dist/schemas/decision-card.d.ts +149 -0
- package/dist/schemas/decision-card.d.ts.map +1 -0
- 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 +283 -1
- package/dist/schemas/index.cjs.map +1 -1
- package/dist/schemas/index.d.ts +407 -0
- package/dist/schemas/index.d.ts.map +1 -1
- package/dist/schemas/index.js +283 -1
- package/dist/schemas/index.js.map +1 -1
- package/dist/shared/InteractionContext.d.ts +10 -0
- package/dist/shared/InteractionContext.d.ts.map +1 -1
- package/dist/tool-definitions.json +359 -3
- package/package.json +1 -1
package/dist/schemas/index.d.ts
CHANGED
|
@@ -5146,6 +5146,413 @@ export declare const schemaRegistry: {
|
|
|
5146
5146
|
};
|
|
5147
5147
|
};
|
|
5148
5148
|
};
|
|
5149
|
+
"document-field-extraction": {
|
|
5150
|
+
schema: z.ZodObject<{
|
|
5151
|
+
type: z.ZodLiteral<"document-field-extraction">;
|
|
5152
|
+
doc_type: z.ZodOptional<z.ZodString>;
|
|
5153
|
+
file_name: z.ZodOptional<z.ZodString>;
|
|
5154
|
+
payload_ref: z.ZodOptional<z.ZodString>;
|
|
5155
|
+
store_id: z.ZodOptional<z.ZodString>;
|
|
5156
|
+
doc_id: z.ZodOptional<z.ZodString>;
|
|
5157
|
+
pages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5158
|
+
page: z.ZodNumber;
|
|
5159
|
+
imageUrl: z.ZodOptional<z.ZodString>;
|
|
5160
|
+
width_pt: z.ZodNumber;
|
|
5161
|
+
height_pt: z.ZodNumber;
|
|
5162
|
+
}, z.core.$strip>>>;
|
|
5163
|
+
fields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5164
|
+
field_key: z.ZodString;
|
|
5165
|
+
label: z.ZodString;
|
|
5166
|
+
value: z.ZodString;
|
|
5167
|
+
page: z.ZodNumber;
|
|
5168
|
+
bbox: z.ZodOptional<z.ZodNullable<z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber, z.ZodNumber], null>>>;
|
|
5169
|
+
confidence: z.ZodOptional<z.ZodNumber>;
|
|
5170
|
+
confidence_tier: z.ZodOptional<z.ZodEnum<{
|
|
5171
|
+
red: "red";
|
|
5172
|
+
green: "green";
|
|
5173
|
+
amber: "amber";
|
|
5174
|
+
}>>;
|
|
5175
|
+
badge: z.ZodOptional<z.ZodEnum<{
|
|
5176
|
+
SC: "SC";
|
|
5177
|
+
CN: "CN";
|
|
5178
|
+
AB: "AB";
|
|
5179
|
+
SW: "SW";
|
|
5180
|
+
}>>;
|
|
5181
|
+
state: z.ZodOptional<z.ZodEnum<{
|
|
5182
|
+
ok: "ok";
|
|
5183
|
+
corrected: "corrected";
|
|
5184
|
+
missing: "missing";
|
|
5185
|
+
warn: "warn";
|
|
5186
|
+
}>>;
|
|
5187
|
+
entity_type: z.ZodOptional<z.ZodString>;
|
|
5188
|
+
is_primary: z.ZodOptional<z.ZodBoolean>;
|
|
5189
|
+
previous_value: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5190
|
+
corrected_by: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5191
|
+
}, z.core.$strip>>>;
|
|
5192
|
+
page_count: z.ZodOptional<z.ZodNumber>;
|
|
5193
|
+
pages_processed: z.ZodOptional<z.ZodNumber>;
|
|
5194
|
+
summary: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
5195
|
+
display_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5196
|
+
short_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5197
|
+
organization: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5198
|
+
domain: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5199
|
+
domain_group: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5200
|
+
tax_year: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
5201
|
+
crumbs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
5202
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
5203
|
+
stats: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5204
|
+
field_key: z.ZodString;
|
|
5205
|
+
label: z.ZodString;
|
|
5206
|
+
value: z.ZodString;
|
|
5207
|
+
caption: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5208
|
+
}, z.core.$strip>>>;
|
|
5209
|
+
facts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5210
|
+
field_key: z.ZodString;
|
|
5211
|
+
label: z.ZodString;
|
|
5212
|
+
value: z.ZodString;
|
|
5213
|
+
badge: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5214
|
+
}, z.core.$strip>>>;
|
|
5215
|
+
}, z.core.$strip>>>;
|
|
5216
|
+
}, z.core.$strip>;
|
|
5217
|
+
tool: {
|
|
5218
|
+
name: string;
|
|
5219
|
+
description: string;
|
|
5220
|
+
input_schema: {
|
|
5221
|
+
type: "object";
|
|
5222
|
+
properties: {
|
|
5223
|
+
type: {
|
|
5224
|
+
type: string;
|
|
5225
|
+
enum: string[];
|
|
5226
|
+
};
|
|
5227
|
+
doc_type: {
|
|
5228
|
+
type: string;
|
|
5229
|
+
};
|
|
5230
|
+
file_name: {
|
|
5231
|
+
type: string;
|
|
5232
|
+
description: string;
|
|
5233
|
+
};
|
|
5234
|
+
payload_ref: {
|
|
5235
|
+
type: string;
|
|
5236
|
+
description: string;
|
|
5237
|
+
};
|
|
5238
|
+
store_id: {
|
|
5239
|
+
type: string;
|
|
5240
|
+
description: string;
|
|
5241
|
+
};
|
|
5242
|
+
doc_id: {
|
|
5243
|
+
type: string;
|
|
5244
|
+
description: string;
|
|
5245
|
+
};
|
|
5246
|
+
pages: {
|
|
5247
|
+
type: string;
|
|
5248
|
+
items: {
|
|
5249
|
+
type: string;
|
|
5250
|
+
properties: {
|
|
5251
|
+
page: {
|
|
5252
|
+
type: string;
|
|
5253
|
+
description: string;
|
|
5254
|
+
};
|
|
5255
|
+
imageUrl: {
|
|
5256
|
+
type: string;
|
|
5257
|
+
};
|
|
5258
|
+
width_pt: {
|
|
5259
|
+
type: string;
|
|
5260
|
+
};
|
|
5261
|
+
height_pt: {
|
|
5262
|
+
type: string;
|
|
5263
|
+
};
|
|
5264
|
+
};
|
|
5265
|
+
required: string[];
|
|
5266
|
+
};
|
|
5267
|
+
};
|
|
5268
|
+
fields: {
|
|
5269
|
+
type: string;
|
|
5270
|
+
items: {
|
|
5271
|
+
type: string;
|
|
5272
|
+
properties: {
|
|
5273
|
+
field_key: {
|
|
5274
|
+
type: string;
|
|
5275
|
+
};
|
|
5276
|
+
label: {
|
|
5277
|
+
type: string;
|
|
5278
|
+
};
|
|
5279
|
+
value: {
|
|
5280
|
+
type: string;
|
|
5281
|
+
};
|
|
5282
|
+
page: {
|
|
5283
|
+
type: string;
|
|
5284
|
+
description: string;
|
|
5285
|
+
};
|
|
5286
|
+
bbox: {
|
|
5287
|
+
type: string;
|
|
5288
|
+
items: {
|
|
5289
|
+
type: string;
|
|
5290
|
+
};
|
|
5291
|
+
description: string;
|
|
5292
|
+
};
|
|
5293
|
+
confidence: {
|
|
5294
|
+
type: string;
|
|
5295
|
+
};
|
|
5296
|
+
confidence_tier: {
|
|
5297
|
+
type: string;
|
|
5298
|
+
enum: string[];
|
|
5299
|
+
};
|
|
5300
|
+
badge: {
|
|
5301
|
+
type: string;
|
|
5302
|
+
enum: string[];
|
|
5303
|
+
};
|
|
5304
|
+
state: {
|
|
5305
|
+
type: string;
|
|
5306
|
+
enum: string[];
|
|
5307
|
+
};
|
|
5308
|
+
entity_type: {
|
|
5309
|
+
type: string;
|
|
5310
|
+
};
|
|
5311
|
+
is_primary: {
|
|
5312
|
+
type: string;
|
|
5313
|
+
};
|
|
5314
|
+
};
|
|
5315
|
+
required: string[];
|
|
5316
|
+
};
|
|
5317
|
+
};
|
|
5318
|
+
page_count: {
|
|
5319
|
+
type: string;
|
|
5320
|
+
};
|
|
5321
|
+
pages_processed: {
|
|
5322
|
+
type: string;
|
|
5323
|
+
};
|
|
5324
|
+
summary: {
|
|
5325
|
+
type: string;
|
|
5326
|
+
description: string;
|
|
5327
|
+
properties: {
|
|
5328
|
+
display_name: {
|
|
5329
|
+
type: string;
|
|
5330
|
+
};
|
|
5331
|
+
short_name: {
|
|
5332
|
+
type: string;
|
|
5333
|
+
};
|
|
5334
|
+
organization: {
|
|
5335
|
+
type: string;
|
|
5336
|
+
};
|
|
5337
|
+
domain: {
|
|
5338
|
+
type: string;
|
|
5339
|
+
};
|
|
5340
|
+
domain_group: {
|
|
5341
|
+
type: string;
|
|
5342
|
+
};
|
|
5343
|
+
tax_year: {
|
|
5344
|
+
type: string;
|
|
5345
|
+
};
|
|
5346
|
+
crumbs: {
|
|
5347
|
+
type: string;
|
|
5348
|
+
items: {
|
|
5349
|
+
type: string;
|
|
5350
|
+
};
|
|
5351
|
+
};
|
|
5352
|
+
tags: {
|
|
5353
|
+
type: string;
|
|
5354
|
+
items: {
|
|
5355
|
+
type: string;
|
|
5356
|
+
};
|
|
5357
|
+
};
|
|
5358
|
+
stats: {
|
|
5359
|
+
type: string;
|
|
5360
|
+
items: {
|
|
5361
|
+
type: string;
|
|
5362
|
+
properties: {
|
|
5363
|
+
field_key: {
|
|
5364
|
+
type: string;
|
|
5365
|
+
};
|
|
5366
|
+
label: {
|
|
5367
|
+
type: string;
|
|
5368
|
+
};
|
|
5369
|
+
value: {
|
|
5370
|
+
type: string;
|
|
5371
|
+
};
|
|
5372
|
+
caption: {
|
|
5373
|
+
type: string;
|
|
5374
|
+
};
|
|
5375
|
+
};
|
|
5376
|
+
required: string[];
|
|
5377
|
+
};
|
|
5378
|
+
};
|
|
5379
|
+
facts: {
|
|
5380
|
+
type: string;
|
|
5381
|
+
items: {
|
|
5382
|
+
type: string;
|
|
5383
|
+
properties: {
|
|
5384
|
+
field_key: {
|
|
5385
|
+
type: string;
|
|
5386
|
+
};
|
|
5387
|
+
label: {
|
|
5388
|
+
type: string;
|
|
5389
|
+
};
|
|
5390
|
+
value: {
|
|
5391
|
+
type: string;
|
|
5392
|
+
};
|
|
5393
|
+
badge: {
|
|
5394
|
+
type: string;
|
|
5395
|
+
};
|
|
5396
|
+
};
|
|
5397
|
+
required: string[];
|
|
5398
|
+
};
|
|
5399
|
+
};
|
|
5400
|
+
};
|
|
5401
|
+
};
|
|
5402
|
+
};
|
|
5403
|
+
required: string[];
|
|
5404
|
+
};
|
|
5405
|
+
};
|
|
5406
|
+
};
|
|
5407
|
+
"decision-card": {
|
|
5408
|
+
schema: z.ZodObject<{
|
|
5409
|
+
type: z.ZodLiteral<"decision-card">;
|
|
5410
|
+
id: z.ZodOptional<z.ZodString>;
|
|
5411
|
+
decision_type: z.ZodOptional<z.ZodString>;
|
|
5412
|
+
title: z.ZodString;
|
|
5413
|
+
question: z.ZodString;
|
|
5414
|
+
amount: z.ZodOptional<z.ZodNumber>;
|
|
5415
|
+
currency: z.ZodOptional<z.ZodString>;
|
|
5416
|
+
amount_label: z.ZodOptional<z.ZodString>;
|
|
5417
|
+
severity: z.ZodOptional<z.ZodEnum<{
|
|
5418
|
+
high: "high";
|
|
5419
|
+
medium: "medium";
|
|
5420
|
+
low: "low";
|
|
5421
|
+
}>>;
|
|
5422
|
+
flags: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5423
|
+
field: z.ZodOptional<z.ZodString>;
|
|
5424
|
+
issue: z.ZodString;
|
|
5425
|
+
severity: z.ZodOptional<z.ZodEnum<{
|
|
5426
|
+
high: "high";
|
|
5427
|
+
medium: "medium";
|
|
5428
|
+
low: "low";
|
|
5429
|
+
}>>;
|
|
5430
|
+
}, z.core.$strip>>>;
|
|
5431
|
+
options: z.ZodArray<z.ZodObject<{
|
|
5432
|
+
id: z.ZodOptional<z.ZodString>;
|
|
5433
|
+
label: z.ZodString;
|
|
5434
|
+
recommended: z.ZodOptional<z.ZodBoolean>;
|
|
5435
|
+
}, z.core.$strip>>;
|
|
5436
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
5437
|
+
label: z.ZodOptional<z.ZodString>;
|
|
5438
|
+
url: z.ZodOptional<z.ZodString>;
|
|
5439
|
+
}, z.core.$strip>>;
|
|
5440
|
+
resolved: z.ZodOptional<z.ZodObject<{
|
|
5441
|
+
option: z.ZodString;
|
|
5442
|
+
}, z.core.$strip>>;
|
|
5443
|
+
}, z.core.$strip>;
|
|
5444
|
+
tool: {
|
|
5445
|
+
name: string;
|
|
5446
|
+
description: string;
|
|
5447
|
+
input_schema: {
|
|
5448
|
+
type: "object";
|
|
5449
|
+
properties: {
|
|
5450
|
+
type: {
|
|
5451
|
+
type: string;
|
|
5452
|
+
enum: string[];
|
|
5453
|
+
};
|
|
5454
|
+
id: {
|
|
5455
|
+
type: string;
|
|
5456
|
+
description: string;
|
|
5457
|
+
};
|
|
5458
|
+
decision_type: {
|
|
5459
|
+
type: string;
|
|
5460
|
+
description: string;
|
|
5461
|
+
};
|
|
5462
|
+
title: {
|
|
5463
|
+
type: string;
|
|
5464
|
+
description: string;
|
|
5465
|
+
};
|
|
5466
|
+
question: {
|
|
5467
|
+
type: string;
|
|
5468
|
+
description: string;
|
|
5469
|
+
};
|
|
5470
|
+
amount: {
|
|
5471
|
+
type: string;
|
|
5472
|
+
description: string;
|
|
5473
|
+
};
|
|
5474
|
+
currency: {
|
|
5475
|
+
type: string;
|
|
5476
|
+
description: string;
|
|
5477
|
+
};
|
|
5478
|
+
amount_label: {
|
|
5479
|
+
type: string;
|
|
5480
|
+
description: string;
|
|
5481
|
+
};
|
|
5482
|
+
severity: {
|
|
5483
|
+
type: string;
|
|
5484
|
+
enum: string[];
|
|
5485
|
+
description: string;
|
|
5486
|
+
};
|
|
5487
|
+
flags: {
|
|
5488
|
+
type: string;
|
|
5489
|
+
maxItems: number;
|
|
5490
|
+
description: string;
|
|
5491
|
+
items: {
|
|
5492
|
+
type: string;
|
|
5493
|
+
properties: {
|
|
5494
|
+
field: {
|
|
5495
|
+
type: string;
|
|
5496
|
+
};
|
|
5497
|
+
issue: {
|
|
5498
|
+
type: string;
|
|
5499
|
+
};
|
|
5500
|
+
severity: {
|
|
5501
|
+
type: string;
|
|
5502
|
+
enum: string[];
|
|
5503
|
+
};
|
|
5504
|
+
};
|
|
5505
|
+
required: string[];
|
|
5506
|
+
};
|
|
5507
|
+
};
|
|
5508
|
+
options: {
|
|
5509
|
+
type: string;
|
|
5510
|
+
minItems: number;
|
|
5511
|
+
maxItems: number;
|
|
5512
|
+
description: string;
|
|
5513
|
+
items: {
|
|
5514
|
+
type: string;
|
|
5515
|
+
properties: {
|
|
5516
|
+
id: {
|
|
5517
|
+
type: string;
|
|
5518
|
+
};
|
|
5519
|
+
label: {
|
|
5520
|
+
type: string;
|
|
5521
|
+
};
|
|
5522
|
+
recommended: {
|
|
5523
|
+
type: string;
|
|
5524
|
+
};
|
|
5525
|
+
};
|
|
5526
|
+
required: string[];
|
|
5527
|
+
};
|
|
5528
|
+
};
|
|
5529
|
+
source: {
|
|
5530
|
+
type: string;
|
|
5531
|
+
description: string;
|
|
5532
|
+
properties: {
|
|
5533
|
+
label: {
|
|
5534
|
+
type: string;
|
|
5535
|
+
};
|
|
5536
|
+
url: {
|
|
5537
|
+
type: string;
|
|
5538
|
+
};
|
|
5539
|
+
};
|
|
5540
|
+
};
|
|
5541
|
+
resolved: {
|
|
5542
|
+
type: string;
|
|
5543
|
+
description: string;
|
|
5544
|
+
properties: {
|
|
5545
|
+
option: {
|
|
5546
|
+
type: string;
|
|
5547
|
+
};
|
|
5548
|
+
};
|
|
5549
|
+
required: string[];
|
|
5550
|
+
};
|
|
5551
|
+
};
|
|
5552
|
+
required: string[];
|
|
5553
|
+
};
|
|
5554
|
+
};
|
|
5555
|
+
};
|
|
5149
5556
|
};
|
|
5150
5557
|
export type SchemaPayload<T extends keyof typeof schemaRegistry> = z.infer<(typeof schemaRegistry)[T]["schema"]>;
|
|
5151
5558
|
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;AA4DxB,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6BAtDN,CAAC;;;;;;;;6BAAD,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkH4C,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"}
|