@deepintel-ltd/farmpro-contracts 1.23.2 → 1.24.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/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/routes/commodity-deals.routes.d.ts +1339 -0
- package/dist/routes/commodity-deals.routes.d.ts.map +1 -1
- package/dist/routes/commodity-deals.routes.js +49 -1
- package/dist/routes/documents.routes.d.ts +6 -0
- package/dist/routes/documents.routes.d.ts.map +1 -1
- package/dist/routes/documents.routes.js +2 -0
- package/dist/routes/finance.routes.d.ts +68 -68
- package/dist/routes/index.d.ts +2 -0
- package/dist/routes/index.d.ts.map +1 -1
- package/dist/routes/index.js +2 -0
- package/dist/routes/inventory.routes.d.ts +584 -0
- package/dist/routes/inventory.routes.d.ts.map +1 -1
- package/dist/routes/inventory.routes.js +26 -1
- package/dist/routes/live-monitor.routes.d.ts +15 -10
- package/dist/routes/live-monitor.routes.d.ts.map +1 -1
- package/dist/routes/monitoring-visualization.routes.d.ts +3 -0
- package/dist/routes/monitoring-visualization.routes.d.ts.map +1 -1
- package/dist/routes/poultry.routes.d.ts +3318 -0
- package/dist/routes/poultry.routes.d.ts.map +1 -0
- package/dist/routes/poultry.routes.js +195 -0
- package/dist/routes/team-payments.routes.d.ts +42 -42
- package/dist/routes/trade-cash-events.routes.d.ts +20 -20
- package/dist/routes/waybills.routes.d.ts +14 -0
- package/dist/routes/waybills.routes.d.ts.map +1 -1
- package/dist/schemas/commodity-deals.schemas.d.ts +484 -0
- package/dist/schemas/commodity-deals.schemas.d.ts.map +1 -1
- package/dist/schemas/commodity-deals.schemas.js +34 -0
- package/dist/schemas/finance.schemas.d.ts +78 -78
- package/dist/schemas/inventory.schemas.d.ts +122 -0
- package/dist/schemas/inventory.schemas.d.ts.map +1 -1
- package/dist/schemas/inventory.schemas.js +35 -0
- package/dist/schemas/live-monitor.schemas.d.ts +24 -16
- package/dist/schemas/live-monitor.schemas.d.ts.map +1 -1
- package/dist/schemas/live-monitor.schemas.js +3 -2
- package/dist/schemas/monitoring-visualization.schemas.d.ts +64 -0
- package/dist/schemas/monitoring-visualization.schemas.d.ts.map +1 -1
- package/dist/schemas/monitoring-visualization.schemas.js +25 -1
- package/dist/schemas/team-payments.schemas.d.ts +30 -30
- package/dist/schemas/trade-cash-events.schemas.d.ts +24 -24
- package/dist/schemas/waybills.schemas.d.ts +16 -0
- package/dist/schemas/waybills.schemas.d.ts.map +1 -1
- package/dist/schemas/waybills.schemas.js +1 -0
- package/package.json +1 -1
|
@@ -19,15 +19,15 @@ export declare const tradeCashEventsRouter: {
|
|
|
19
19
|
type?: "capital_in" | "capital_out" | "commission_payout" | "supplier_payment" | "buyer_receipt" | undefined;
|
|
20
20
|
pageSize?: number | undefined;
|
|
21
21
|
invoiceId?: string | undefined;
|
|
22
|
-
partyId?: string | undefined;
|
|
23
22
|
dealId?: string | undefined;
|
|
23
|
+
partyId?: string | undefined;
|
|
24
24
|
page?: number | undefined;
|
|
25
25
|
}, {
|
|
26
26
|
type?: "capital_in" | "capital_out" | "commission_payout" | "supplier_payment" | "buyer_receipt" | undefined;
|
|
27
27
|
pageSize?: number | undefined;
|
|
28
28
|
invoiceId?: string | undefined;
|
|
29
|
-
partyId?: string | undefined;
|
|
30
29
|
dealId?: string | undefined;
|
|
30
|
+
partyId?: string | undefined;
|
|
31
31
|
page?: number | undefined;
|
|
32
32
|
}>;
|
|
33
33
|
summary: "List trade cash events (requires COMMODITY_TRADE pack)";
|
|
@@ -69,8 +69,8 @@ export declare const tradeCashEventsRouter: {
|
|
|
69
69
|
notes?: string | null | undefined;
|
|
70
70
|
invoiceId?: string | null | undefined;
|
|
71
71
|
reference?: string | null | undefined;
|
|
72
|
-
partyName?: string | null | undefined;
|
|
73
72
|
dealId?: string | null | undefined;
|
|
73
|
+
partyName?: string | null | undefined;
|
|
74
74
|
}, {
|
|
75
75
|
type: "capital_in" | "capital_out" | "commission_payout" | "supplier_payment" | "buyer_receipt";
|
|
76
76
|
createdAt: string;
|
|
@@ -85,8 +85,8 @@ export declare const tradeCashEventsRouter: {
|
|
|
85
85
|
notes?: string | null | undefined;
|
|
86
86
|
invoiceId?: string | null | undefined;
|
|
87
87
|
reference?: string | null | undefined;
|
|
88
|
-
partyName?: string | null | undefined;
|
|
89
88
|
dealId?: string | null | undefined;
|
|
89
|
+
partyName?: string | null | undefined;
|
|
90
90
|
}>;
|
|
91
91
|
relationships: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
92
92
|
links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
@@ -108,8 +108,8 @@ export declare const tradeCashEventsRouter: {
|
|
|
108
108
|
notes?: string | null | undefined;
|
|
109
109
|
invoiceId?: string | null | undefined;
|
|
110
110
|
reference?: string | null | undefined;
|
|
111
|
-
partyName?: string | null | undefined;
|
|
112
111
|
dealId?: string | null | undefined;
|
|
112
|
+
partyName?: string | null | undefined;
|
|
113
113
|
};
|
|
114
114
|
relationships?: Record<string, unknown> | undefined;
|
|
115
115
|
links?: Record<string, string> | undefined;
|
|
@@ -131,8 +131,8 @@ export declare const tradeCashEventsRouter: {
|
|
|
131
131
|
notes?: string | null | undefined;
|
|
132
132
|
invoiceId?: string | null | undefined;
|
|
133
133
|
reference?: string | null | undefined;
|
|
134
|
-
partyName?: string | null | undefined;
|
|
135
134
|
dealId?: string | null | undefined;
|
|
135
|
+
partyName?: string | null | undefined;
|
|
136
136
|
};
|
|
137
137
|
relationships?: Record<string, unknown> | undefined;
|
|
138
138
|
links?: Record<string, string> | undefined;
|
|
@@ -180,8 +180,8 @@ export declare const tradeCashEventsRouter: {
|
|
|
180
180
|
notes?: string | null | undefined;
|
|
181
181
|
invoiceId?: string | null | undefined;
|
|
182
182
|
reference?: string | null | undefined;
|
|
183
|
-
partyName?: string | null | undefined;
|
|
184
183
|
dealId?: string | null | undefined;
|
|
184
|
+
partyName?: string | null | undefined;
|
|
185
185
|
};
|
|
186
186
|
relationships?: Record<string, unknown> | undefined;
|
|
187
187
|
links?: Record<string, string> | undefined;
|
|
@@ -215,8 +215,8 @@ export declare const tradeCashEventsRouter: {
|
|
|
215
215
|
notes?: string | null | undefined;
|
|
216
216
|
invoiceId?: string | null | undefined;
|
|
217
217
|
reference?: string | null | undefined;
|
|
218
|
-
partyName?: string | null | undefined;
|
|
219
218
|
dealId?: string | null | undefined;
|
|
219
|
+
partyName?: string | null | undefined;
|
|
220
220
|
};
|
|
221
221
|
relationships?: Record<string, unknown> | undefined;
|
|
222
222
|
links?: Record<string, string> | undefined;
|
|
@@ -542,8 +542,8 @@ export declare const tradeCashEventsRouter: {
|
|
|
542
542
|
notes?: string | null | undefined;
|
|
543
543
|
invoiceId?: string | null | undefined;
|
|
544
544
|
reference?: string | null | undefined;
|
|
545
|
-
partyName?: string | null | undefined;
|
|
546
545
|
dealId?: string | null | undefined;
|
|
546
|
+
partyName?: string | null | undefined;
|
|
547
547
|
}, {
|
|
548
548
|
type: "capital_in" | "capital_out" | "commission_payout" | "supplier_payment" | "buyer_receipt";
|
|
549
549
|
occurredAt: string;
|
|
@@ -555,8 +555,8 @@ export declare const tradeCashEventsRouter: {
|
|
|
555
555
|
notes?: string | null | undefined;
|
|
556
556
|
invoiceId?: string | null | undefined;
|
|
557
557
|
reference?: string | null | undefined;
|
|
558
|
-
partyName?: string | null | undefined;
|
|
559
558
|
dealId?: string | null | undefined;
|
|
559
|
+
partyName?: string | null | undefined;
|
|
560
560
|
}>;
|
|
561
561
|
}, "strip", z.ZodTypeAny, {
|
|
562
562
|
type: "trade-cash-events";
|
|
@@ -571,8 +571,8 @@ export declare const tradeCashEventsRouter: {
|
|
|
571
571
|
notes?: string | null | undefined;
|
|
572
572
|
invoiceId?: string | null | undefined;
|
|
573
573
|
reference?: string | null | undefined;
|
|
574
|
-
partyName?: string | null | undefined;
|
|
575
574
|
dealId?: string | null | undefined;
|
|
575
|
+
partyName?: string | null | undefined;
|
|
576
576
|
};
|
|
577
577
|
}, {
|
|
578
578
|
type: "trade-cash-events";
|
|
@@ -587,8 +587,8 @@ export declare const tradeCashEventsRouter: {
|
|
|
587
587
|
notes?: string | null | undefined;
|
|
588
588
|
invoiceId?: string | null | undefined;
|
|
589
589
|
reference?: string | null | undefined;
|
|
590
|
-
partyName?: string | null | undefined;
|
|
591
590
|
dealId?: string | null | undefined;
|
|
591
|
+
partyName?: string | null | undefined;
|
|
592
592
|
};
|
|
593
593
|
}>;
|
|
594
594
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -605,8 +605,8 @@ export declare const tradeCashEventsRouter: {
|
|
|
605
605
|
notes?: string | null | undefined;
|
|
606
606
|
invoiceId?: string | null | undefined;
|
|
607
607
|
reference?: string | null | undefined;
|
|
608
|
-
partyName?: string | null | undefined;
|
|
609
608
|
dealId?: string | null | undefined;
|
|
609
|
+
partyName?: string | null | undefined;
|
|
610
610
|
};
|
|
611
611
|
};
|
|
612
612
|
}, {
|
|
@@ -623,8 +623,8 @@ export declare const tradeCashEventsRouter: {
|
|
|
623
623
|
notes?: string | null | undefined;
|
|
624
624
|
invoiceId?: string | null | undefined;
|
|
625
625
|
reference?: string | null | undefined;
|
|
626
|
-
partyName?: string | null | undefined;
|
|
627
626
|
dealId?: string | null | undefined;
|
|
627
|
+
partyName?: string | null | undefined;
|
|
628
628
|
};
|
|
629
629
|
};
|
|
630
630
|
}>;
|
|
@@ -665,8 +665,8 @@ export declare const tradeCashEventsRouter: {
|
|
|
665
665
|
notes?: string | null | undefined;
|
|
666
666
|
invoiceId?: string | null | undefined;
|
|
667
667
|
reference?: string | null | undefined;
|
|
668
|
-
partyName?: string | null | undefined;
|
|
669
668
|
dealId?: string | null | undefined;
|
|
669
|
+
partyName?: string | null | undefined;
|
|
670
670
|
}, {
|
|
671
671
|
type: "capital_in" | "capital_out" | "commission_payout" | "supplier_payment" | "buyer_receipt";
|
|
672
672
|
createdAt: string;
|
|
@@ -681,8 +681,8 @@ export declare const tradeCashEventsRouter: {
|
|
|
681
681
|
notes?: string | null | undefined;
|
|
682
682
|
invoiceId?: string | null | undefined;
|
|
683
683
|
reference?: string | null | undefined;
|
|
684
|
-
partyName?: string | null | undefined;
|
|
685
684
|
dealId?: string | null | undefined;
|
|
685
|
+
partyName?: string | null | undefined;
|
|
686
686
|
}>;
|
|
687
687
|
relationships: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
688
688
|
links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
@@ -704,8 +704,8 @@ export declare const tradeCashEventsRouter: {
|
|
|
704
704
|
notes?: string | null | undefined;
|
|
705
705
|
invoiceId?: string | null | undefined;
|
|
706
706
|
reference?: string | null | undefined;
|
|
707
|
-
partyName?: string | null | undefined;
|
|
708
707
|
dealId?: string | null | undefined;
|
|
708
|
+
partyName?: string | null | undefined;
|
|
709
709
|
};
|
|
710
710
|
relationships?: Record<string, unknown> | undefined;
|
|
711
711
|
links?: Record<string, string> | undefined;
|
|
@@ -727,8 +727,8 @@ export declare const tradeCashEventsRouter: {
|
|
|
727
727
|
notes?: string | null | undefined;
|
|
728
728
|
invoiceId?: string | null | undefined;
|
|
729
729
|
reference?: string | null | undefined;
|
|
730
|
-
partyName?: string | null | undefined;
|
|
731
730
|
dealId?: string | null | undefined;
|
|
731
|
+
partyName?: string | null | undefined;
|
|
732
732
|
};
|
|
733
733
|
relationships?: Record<string, unknown> | undefined;
|
|
734
734
|
links?: Record<string, string> | undefined;
|
|
@@ -776,8 +776,8 @@ export declare const tradeCashEventsRouter: {
|
|
|
776
776
|
notes?: string | null | undefined;
|
|
777
777
|
invoiceId?: string | null | undefined;
|
|
778
778
|
reference?: string | null | undefined;
|
|
779
|
-
partyName?: string | null | undefined;
|
|
780
779
|
dealId?: string | null | undefined;
|
|
780
|
+
partyName?: string | null | undefined;
|
|
781
781
|
};
|
|
782
782
|
relationships?: Record<string, unknown> | undefined;
|
|
783
783
|
links?: Record<string, string> | undefined;
|
|
@@ -811,8 +811,8 @@ export declare const tradeCashEventsRouter: {
|
|
|
811
811
|
notes?: string | null | undefined;
|
|
812
812
|
invoiceId?: string | null | undefined;
|
|
813
813
|
reference?: string | null | undefined;
|
|
814
|
-
partyName?: string | null | undefined;
|
|
815
814
|
dealId?: string | null | undefined;
|
|
815
|
+
partyName?: string | null | undefined;
|
|
816
816
|
};
|
|
817
817
|
relationships?: Record<string, unknown> | undefined;
|
|
818
818
|
links?: Record<string, string> | undefined;
|
|
@@ -642,6 +642,7 @@ export declare const waybillsRouter: {
|
|
|
642
642
|
transportCost: z.ZodOptional<z.ZodNumber>;
|
|
643
643
|
storageCost: z.ZodOptional<z.ZodNumber>;
|
|
644
644
|
miscellaneousCost: z.ZodOptional<z.ZodNumber>;
|
|
645
|
+
supplierId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
645
646
|
}, "strip", z.ZodTypeAny, {
|
|
646
647
|
currency: string;
|
|
647
648
|
items: {
|
|
@@ -676,6 +677,7 @@ export declare const waybillsRouter: {
|
|
|
676
677
|
purchaseCost?: number | undefined;
|
|
677
678
|
storageCost?: number | undefined;
|
|
678
679
|
miscellaneousCost?: number | undefined;
|
|
680
|
+
supplierId?: string | null | undefined;
|
|
679
681
|
}, {
|
|
680
682
|
items: {
|
|
681
683
|
description: string;
|
|
@@ -710,6 +712,7 @@ export declare const waybillsRouter: {
|
|
|
710
712
|
purchaseCost?: number | undefined;
|
|
711
713
|
storageCost?: number | undefined;
|
|
712
714
|
miscellaneousCost?: number | undefined;
|
|
715
|
+
supplierId?: string | null | undefined;
|
|
713
716
|
}>;
|
|
714
717
|
}, "strip", z.ZodTypeAny, {
|
|
715
718
|
type: "waybills";
|
|
@@ -747,6 +750,7 @@ export declare const waybillsRouter: {
|
|
|
747
750
|
purchaseCost?: number | undefined;
|
|
748
751
|
storageCost?: number | undefined;
|
|
749
752
|
miscellaneousCost?: number | undefined;
|
|
753
|
+
supplierId?: string | null | undefined;
|
|
750
754
|
};
|
|
751
755
|
}, {
|
|
752
756
|
type: "waybills";
|
|
@@ -784,6 +788,7 @@ export declare const waybillsRouter: {
|
|
|
784
788
|
purchaseCost?: number | undefined;
|
|
785
789
|
storageCost?: number | undefined;
|
|
786
790
|
miscellaneousCost?: number | undefined;
|
|
791
|
+
supplierId?: string | null | undefined;
|
|
787
792
|
};
|
|
788
793
|
}>;
|
|
789
794
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -823,6 +828,7 @@ export declare const waybillsRouter: {
|
|
|
823
828
|
purchaseCost?: number | undefined;
|
|
824
829
|
storageCost?: number | undefined;
|
|
825
830
|
miscellaneousCost?: number | undefined;
|
|
831
|
+
supplierId?: string | null | undefined;
|
|
826
832
|
};
|
|
827
833
|
};
|
|
828
834
|
}, {
|
|
@@ -862,6 +868,7 @@ export declare const waybillsRouter: {
|
|
|
862
868
|
purchaseCost?: number | undefined;
|
|
863
869
|
storageCost?: number | undefined;
|
|
864
870
|
miscellaneousCost?: number | undefined;
|
|
871
|
+
supplierId?: string | null | undefined;
|
|
865
872
|
};
|
|
866
873
|
};
|
|
867
874
|
}>;
|
|
@@ -2227,6 +2234,7 @@ export declare const waybillsRouter: {
|
|
|
2227
2234
|
transportCost: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
2228
2235
|
storageCost: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
2229
2236
|
miscellaneousCost: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
2237
|
+
supplierId: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
2230
2238
|
}, "strip", z.ZodTypeAny, {
|
|
2231
2239
|
farmId?: string | undefined;
|
|
2232
2240
|
currency?: string | undefined;
|
|
@@ -2261,6 +2269,7 @@ export declare const waybillsRouter: {
|
|
|
2261
2269
|
purchaseCost?: number | undefined;
|
|
2262
2270
|
storageCost?: number | undefined;
|
|
2263
2271
|
miscellaneousCost?: number | undefined;
|
|
2272
|
+
supplierId?: string | null | undefined;
|
|
2264
2273
|
}, {
|
|
2265
2274
|
farmId?: string | undefined;
|
|
2266
2275
|
currency?: string | undefined;
|
|
@@ -2295,6 +2304,7 @@ export declare const waybillsRouter: {
|
|
|
2295
2304
|
purchaseCost?: number | undefined;
|
|
2296
2305
|
storageCost?: number | undefined;
|
|
2297
2306
|
miscellaneousCost?: number | undefined;
|
|
2307
|
+
supplierId?: string | null | undefined;
|
|
2298
2308
|
}>;
|
|
2299
2309
|
}, "strip", z.ZodTypeAny, {
|
|
2300
2310
|
type: "waybills";
|
|
@@ -2333,6 +2343,7 @@ export declare const waybillsRouter: {
|
|
|
2333
2343
|
purchaseCost?: number | undefined;
|
|
2334
2344
|
storageCost?: number | undefined;
|
|
2335
2345
|
miscellaneousCost?: number | undefined;
|
|
2346
|
+
supplierId?: string | null | undefined;
|
|
2336
2347
|
};
|
|
2337
2348
|
}, {
|
|
2338
2349
|
type: "waybills";
|
|
@@ -2371,6 +2382,7 @@ export declare const waybillsRouter: {
|
|
|
2371
2382
|
purchaseCost?: number | undefined;
|
|
2372
2383
|
storageCost?: number | undefined;
|
|
2373
2384
|
miscellaneousCost?: number | undefined;
|
|
2385
|
+
supplierId?: string | null | undefined;
|
|
2374
2386
|
};
|
|
2375
2387
|
}>;
|
|
2376
2388
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2411,6 +2423,7 @@ export declare const waybillsRouter: {
|
|
|
2411
2423
|
purchaseCost?: number | undefined;
|
|
2412
2424
|
storageCost?: number | undefined;
|
|
2413
2425
|
miscellaneousCost?: number | undefined;
|
|
2426
|
+
supplierId?: string | null | undefined;
|
|
2414
2427
|
};
|
|
2415
2428
|
};
|
|
2416
2429
|
}, {
|
|
@@ -2451,6 +2464,7 @@ export declare const waybillsRouter: {
|
|
|
2451
2464
|
purchaseCost?: number | undefined;
|
|
2452
2465
|
storageCost?: number | undefined;
|
|
2453
2466
|
miscellaneousCost?: number | undefined;
|
|
2467
|
+
supplierId?: string | null | undefined;
|
|
2454
2468
|
};
|
|
2455
2469
|
};
|
|
2456
2470
|
}>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"waybills.routes.d.ts","sourceRoot":"","sources":["../../src/routes/waybills.routes.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAexB,eAAO,MAAM,cAAc
|
|
1
|
+
{"version":3,"file":"waybills.routes.d.ts","sourceRoot":"","sources":["../../src/routes/waybills.routes.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAexB,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgGzB,CAAC"}
|