@ottoai/documents 1.3.4 → 1.3.5
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/create/pdf/united-states/form-1099/form.dto.d.ts +27 -0
- package/dist/create/pdf/united-states/form-1099/form.dto.js +132 -0
- package/dist/create/pdf/united-states/form-1099/form.dto.js.map +1 -0
- package/dist/create/pdf/united-states/form-1099/index.d.ts +2 -0
- package/dist/create/pdf/united-states/form-1099/index.js +65 -0
- package/dist/create/pdf/united-states/form-1099/index.js.map +1 -0
- package/dist/create/pdf/united-states/form-1099/schema.json +918 -0
- package/dist/create/pdf/united-states/form-w9/form.dto.d.ts +30 -0
- package/dist/create/pdf/united-states/form-w9/form.dto.js +146 -0
- package/dist/create/pdf/united-states/form-w9/form.dto.js.map +1 -0
- package/dist/create/pdf/united-states/form-w9/index.d.ts +2 -0
- package/dist/create/pdf/united-states/form-w9/index.js +105 -0
- package/dist/create/pdf/united-states/form-w9/index.js.map +1 -0
- package/dist/create/pdf/united-states/form-w9/schema.json +739 -0
- package/dist/create/pdf/united-states/index.d.ts +5 -3
- package/dist/create/pdf/united-states/index.js +8 -4
- package/dist/create/pdf/united-states/index.js.map +1 -1
- package/dist/create/pdf/util/buffer.d.ts +1 -0
- package/dist/create/pdf/util/buffer.js +18 -3
- package/dist/create/pdf/util/buffer.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
export declare class AddressDto {
|
|
2
|
+
city: string | null;
|
|
3
|
+
state: string | null;
|
|
4
|
+
postal_code: string | null;
|
|
5
|
+
address_line_1: string | null;
|
|
6
|
+
address_line_2?: string | null;
|
|
7
|
+
country?: string | null;
|
|
8
|
+
}
|
|
9
|
+
export declare class Form1099Dto {
|
|
10
|
+
isVoid: boolean;
|
|
11
|
+
isCorrected: boolean;
|
|
12
|
+
accountNumber?: string;
|
|
13
|
+
calendarYear: number;
|
|
14
|
+
payerName: string;
|
|
15
|
+
payerTin: string;
|
|
16
|
+
payerPhone: string;
|
|
17
|
+
payerAddress: AddressDto;
|
|
18
|
+
recipientName: string;
|
|
19
|
+
recipientTin: string;
|
|
20
|
+
recipientAddress: AddressDto;
|
|
21
|
+
nonemployeeCompensation: number;
|
|
22
|
+
directSalesOver5000: boolean;
|
|
23
|
+
federalIncomeTaxWithheld: number;
|
|
24
|
+
stateTaxWithheld: number;
|
|
25
|
+
stateNumber: number;
|
|
26
|
+
stateIncome: number;
|
|
27
|
+
}
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.Form1099Dto = exports.AddressDto = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
class AddressDto {
|
|
15
|
+
}
|
|
16
|
+
exports.AddressDto = AddressDto;
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, class_validator_1.IsString)(),
|
|
19
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
20
|
+
__metadata("design:type", Object)
|
|
21
|
+
], AddressDto.prototype, "city", void 0);
|
|
22
|
+
__decorate([
|
|
23
|
+
(0, class_validator_1.IsString)(),
|
|
24
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
25
|
+
__metadata("design:type", Object)
|
|
26
|
+
], AddressDto.prototype, "state", void 0);
|
|
27
|
+
__decorate([
|
|
28
|
+
(0, class_validator_1.IsString)(),
|
|
29
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
30
|
+
__metadata("design:type", Object)
|
|
31
|
+
], AddressDto.prototype, "postal_code", void 0);
|
|
32
|
+
__decorate([
|
|
33
|
+
(0, class_validator_1.IsString)(),
|
|
34
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
35
|
+
__metadata("design:type", Object)
|
|
36
|
+
], AddressDto.prototype, "address_line_1", void 0);
|
|
37
|
+
__decorate([
|
|
38
|
+
(0, class_validator_1.IsOptional)(),
|
|
39
|
+
(0, class_validator_1.IsString)(),
|
|
40
|
+
__metadata("design:type", Object)
|
|
41
|
+
], AddressDto.prototype, "address_line_2", void 0);
|
|
42
|
+
__decorate([
|
|
43
|
+
(0, class_validator_1.IsOptional)(),
|
|
44
|
+
(0, class_validator_1.IsString)(),
|
|
45
|
+
__metadata("design:type", Object)
|
|
46
|
+
], AddressDto.prototype, "country", void 0);
|
|
47
|
+
class Form1099Dto {
|
|
48
|
+
}
|
|
49
|
+
exports.Form1099Dto = Form1099Dto;
|
|
50
|
+
__decorate([
|
|
51
|
+
(0, class_validator_1.IsBoolean)(),
|
|
52
|
+
__metadata("design:type", Boolean)
|
|
53
|
+
], Form1099Dto.prototype, "isVoid", void 0);
|
|
54
|
+
__decorate([
|
|
55
|
+
(0, class_validator_1.IsBoolean)(),
|
|
56
|
+
__metadata("design:type", Boolean)
|
|
57
|
+
], Form1099Dto.prototype, "isCorrected", void 0);
|
|
58
|
+
__decorate([
|
|
59
|
+
(0, class_validator_1.IsString)(),
|
|
60
|
+
(0, class_validator_1.IsOptional)(),
|
|
61
|
+
__metadata("design:type", String)
|
|
62
|
+
], Form1099Dto.prototype, "accountNumber", void 0);
|
|
63
|
+
__decorate([
|
|
64
|
+
(0, class_validator_1.IsNumber)(),
|
|
65
|
+
(0, class_validator_1.Min)(2000),
|
|
66
|
+
(0, class_validator_1.Max)(2100),
|
|
67
|
+
__metadata("design:type", Number)
|
|
68
|
+
], Form1099Dto.prototype, "calendarYear", void 0);
|
|
69
|
+
__decorate([
|
|
70
|
+
(0, class_validator_1.IsString)(),
|
|
71
|
+
__metadata("design:type", String)
|
|
72
|
+
], Form1099Dto.prototype, "payerName", void 0);
|
|
73
|
+
__decorate([
|
|
74
|
+
(0, class_validator_1.IsString)(),
|
|
75
|
+
(0, class_validator_1.Length)(9, 9, { message: "TIN must be exactly 9 digits" }),
|
|
76
|
+
__metadata("design:type", String)
|
|
77
|
+
], Form1099Dto.prototype, "payerTin", void 0);
|
|
78
|
+
__decorate([
|
|
79
|
+
(0, class_validator_1.IsPhoneNumber)("US"),
|
|
80
|
+
__metadata("design:type", String)
|
|
81
|
+
], Form1099Dto.prototype, "payerPhone", void 0);
|
|
82
|
+
__decorate([
|
|
83
|
+
(0, class_validator_1.ValidateNested)(),
|
|
84
|
+
(0, class_validator_1.IsObject)(),
|
|
85
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
86
|
+
__metadata("design:type", AddressDto)
|
|
87
|
+
], Form1099Dto.prototype, "payerAddress", void 0);
|
|
88
|
+
__decorate([
|
|
89
|
+
(0, class_validator_1.IsString)(),
|
|
90
|
+
__metadata("design:type", String)
|
|
91
|
+
], Form1099Dto.prototype, "recipientName", void 0);
|
|
92
|
+
__decorate([
|
|
93
|
+
(0, class_validator_1.IsString)(),
|
|
94
|
+
(0, class_validator_1.Length)(9, 9, { message: "TIN must be exactly 9 digits" }),
|
|
95
|
+
__metadata("design:type", String)
|
|
96
|
+
], Form1099Dto.prototype, "recipientTin", void 0);
|
|
97
|
+
__decorate([
|
|
98
|
+
(0, class_validator_1.ValidateNested)(),
|
|
99
|
+
(0, class_validator_1.IsObject)(),
|
|
100
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
101
|
+
__metadata("design:type", AddressDto)
|
|
102
|
+
], Form1099Dto.prototype, "recipientAddress", void 0);
|
|
103
|
+
__decorate([
|
|
104
|
+
(0, class_validator_1.IsNumber)(),
|
|
105
|
+
(0, class_validator_1.Min)(0),
|
|
106
|
+
__metadata("design:type", Number)
|
|
107
|
+
], Form1099Dto.prototype, "nonemployeeCompensation", void 0);
|
|
108
|
+
__decorate([
|
|
109
|
+
(0, class_validator_1.IsBoolean)(),
|
|
110
|
+
__metadata("design:type", Boolean)
|
|
111
|
+
], Form1099Dto.prototype, "directSalesOver5000", void 0);
|
|
112
|
+
__decorate([
|
|
113
|
+
(0, class_validator_1.IsNumber)(),
|
|
114
|
+
(0, class_validator_1.Min)(0),
|
|
115
|
+
__metadata("design:type", Number)
|
|
116
|
+
], Form1099Dto.prototype, "federalIncomeTaxWithheld", void 0);
|
|
117
|
+
__decorate([
|
|
118
|
+
(0, class_validator_1.IsNumber)(),
|
|
119
|
+
(0, class_validator_1.Min)(0),
|
|
120
|
+
__metadata("design:type", Number)
|
|
121
|
+
], Form1099Dto.prototype, "stateTaxWithheld", void 0);
|
|
122
|
+
__decorate([
|
|
123
|
+
(0, class_validator_1.IsNumber)(),
|
|
124
|
+
(0, class_validator_1.Min)(0),
|
|
125
|
+
__metadata("design:type", Number)
|
|
126
|
+
], Form1099Dto.prototype, "stateNumber", void 0);
|
|
127
|
+
__decorate([
|
|
128
|
+
(0, class_validator_1.IsNumber)(),
|
|
129
|
+
(0, class_validator_1.Min)(0),
|
|
130
|
+
__metadata("design:type", Number)
|
|
131
|
+
], Form1099Dto.prototype, "stateIncome", void 0);
|
|
132
|
+
//# sourceMappingURL=form.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"form.dto.js","sourceRoot":"","sources":["../../../../../src/create/pdf/united-states/form-1099/form.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAYyB;AAGzB,MAAa,UAAU;CAwBtB;AAxBD,gCAwBC;AArBC;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;wCACO;AAIpB;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;yCACQ;AAIrB;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;+CACc;AAI3B;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;kDACiB;AAI9B;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;kDACoB;AAI/B;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;2CACa;AAI1B,MAAa,WAAW;CAiEvB;AAjED,kCAiEC;AA/DC;IADC,IAAA,2BAAS,GAAE;;2CACI;AAGhB;IADC,IAAA,2BAAS,GAAE;;gDACS;AAIrB;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;kDACU;AAKvB;IAHC,IAAA,0BAAQ,GAAE;IACV,IAAA,qBAAG,EAAC,IAAI,CAAC;IACT,IAAA,qBAAG,EAAC,IAAI,CAAC;;iDACW;AAGrB;IADC,IAAA,0BAAQ,GAAE;;8CACO;AAIlB;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,wBAAM,EAAC,CAAC,EAAE,CAAC,EAAE,EAAE,OAAO,EAAE,8BAA8B,EAAE,CAAC;;6CACzC;AAGjB;IADC,IAAA,+BAAa,EAAC,IAAI,CAAC;;+CACD;AAKnB;IAHC,IAAA,gCAAc,GAAE;IAChB,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;8BACC,UAAU;iDAAC;AAGzB;IADC,IAAA,0BAAQ,GAAE;;kDACW;AAItB;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,wBAAM,EAAC,CAAC,EAAE,CAAC,EAAE,EAAE,OAAO,EAAE,8BAA8B,EAAE,CAAC;;iDACrC;AAKrB;IAHC,IAAA,gCAAc,GAAE;IAChB,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;8BACK,UAAU;qDAAC;AAI7B;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,qBAAG,EAAC,CAAC,CAAC;;4DACyB;AAGhC;IADC,IAAA,2BAAS,GAAE;;wDACiB;AAI7B;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,qBAAG,EAAC,CAAC,CAAC;;6DAC0B;AAIjC;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,qBAAG,EAAC,CAAC,CAAC;;qDACkB;AAIzB;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,qBAAG,EAAC,CAAC,CAAC;;gDACa;AAIpB;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,qBAAG,EAAC,CAAC,CAAC;;gDACa"}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.form1099 = void 0;
|
|
7
|
+
const fs_1 = require("fs");
|
|
8
|
+
const util_1 = require("util");
|
|
9
|
+
const path_1 = require("path");
|
|
10
|
+
const generator_1 = require("../../util/pdfme/generator");
|
|
11
|
+
const text_1 = __importDefault(require("../../util/pdfme/schemas/text"));
|
|
12
|
+
const image_1 = __importDefault(require("../../util/pdfme/schemas/graphics/image"));
|
|
13
|
+
const buffer_1 = require("../../util/buffer");
|
|
14
|
+
const constants_1 = require("../constants");
|
|
15
|
+
const schema_json_1 = __importDefault(require("./schema.json"));
|
|
16
|
+
const readFilePromise = (0, util_1.promisify)(fs_1.readFile);
|
|
17
|
+
const w9FormCoordinates = (data) => {
|
|
18
|
+
const page3 = {
|
|
19
|
+
isVoid: data.isVoid ? constants_1.CHECKED_IMAGE : "",
|
|
20
|
+
isCorrected: data.isCorrected ? constants_1.CHECKED_IMAGE : "",
|
|
21
|
+
directSalesOver5000: data.directSalesOver5000 ? constants_1.CHECKED_IMAGE : "",
|
|
22
|
+
payerDetails: (0, buffer_1.formatPayerDetails)(data.payerName, data.payerAddress, data.payerPhone),
|
|
23
|
+
payerTin: data.payerTin,
|
|
24
|
+
recipientTin: data.recipientTin,
|
|
25
|
+
recipientName: data.recipientName,
|
|
26
|
+
recipientStreetAddress: data.recipientAddress.address_line_1 || "",
|
|
27
|
+
recipientFullAddress: (0, buffer_1.formatAddress)({
|
|
28
|
+
...data.recipientAddress,
|
|
29
|
+
address_line_1: "",
|
|
30
|
+
address_line_2: "",
|
|
31
|
+
}),
|
|
32
|
+
accountNumber: data.accountNumber || "",
|
|
33
|
+
calendarYear: data.calendarYear.toString(),
|
|
34
|
+
nonemployeeCompensation: data.nonemployeeCompensation.toString(),
|
|
35
|
+
federalIncomeTaxWithheld: data.federalIncomeTaxWithheld.toString(),
|
|
36
|
+
stateTaxWithheld: data.stateTaxWithheld.toString(),
|
|
37
|
+
stateNumber: data.stateNumber.toString(),
|
|
38
|
+
stateIncome: data.stateIncome.toString(),
|
|
39
|
+
};
|
|
40
|
+
return [page3];
|
|
41
|
+
};
|
|
42
|
+
let pdfBufferInstance;
|
|
43
|
+
const getPDFInstance = async () => {
|
|
44
|
+
if (!pdfBufferInstance) {
|
|
45
|
+
pdfBufferInstance = await readFilePromise((0, path_1.resolve)(__dirname, "./template.pdf"));
|
|
46
|
+
}
|
|
47
|
+
return pdfBufferInstance;
|
|
48
|
+
};
|
|
49
|
+
const form1099 = async (data) => {
|
|
50
|
+
const pdfBuffer = await getPDFInstance();
|
|
51
|
+
const template = {
|
|
52
|
+
basePdf: (0, buffer_1.toArrayBuffer)(pdfBuffer),
|
|
53
|
+
schemas: schema_json_1.default,
|
|
54
|
+
};
|
|
55
|
+
const plugins = {
|
|
56
|
+
Text: text_1.default,
|
|
57
|
+
Image: image_1.default,
|
|
58
|
+
};
|
|
59
|
+
const inputs = w9FormCoordinates(data);
|
|
60
|
+
return (0, generator_1.generate)({ template, inputs, plugins }).then((pdf) => {
|
|
61
|
+
return (0, buffer_1.toBuffer)(pdf);
|
|
62
|
+
});
|
|
63
|
+
};
|
|
64
|
+
exports.form1099 = form1099;
|
|
65
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/create/pdf/united-states/form-1099/index.ts"],"names":[],"mappings":";;;;;;AAAA,2BAA8B;AAC9B,+BAAiC;AACjC,+BAA+B;AAE/B,0DAAsD;AACtD,yEAAuD;AACvD,oFAAkE;AAClE,8CAK2B;AAC3B,4CAA6C;AAC7C,gEAAuC;AAGvC,MAAM,eAAe,GAAG,IAAA,gBAAS,EAAC,aAAQ,CAAC,CAAC;AAE5C,MAAM,iBAAiB,GAAG,CAAC,IAAiB,EAA4B,EAAE;IACxE,MAAM,KAAK,GAAG;QACZ,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,yBAAa,CAAC,CAAC,CAAC,EAAE;QACxC,WAAW,EAAE,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,yBAAa,CAAC,CAAC,CAAC,EAAE;QAClD,mBAAmB,EAAE,IAAI,CAAC,mBAAmB,CAAC,CAAC,CAAC,yBAAa,CAAC,CAAC,CAAC,EAAE;QAClE,YAAY,EAAE,IAAA,2BAAkB,EAC9B,IAAI,CAAC,SAAS,EACd,IAAI,CAAC,YAAY,EACjB,IAAI,CAAC,UAAU,CAChB;QACD,QAAQ,EAAE,IAAI,CAAC,QAAQ;QACvB,YAAY,EAAE,IAAI,CAAC,YAAY;QAC/B,aAAa,EAAE,IAAI,CAAC,aAAa;QACjC,sBAAsB,EAAE,IAAI,CAAC,gBAAgB,CAAC,cAAc,IAAI,EAAE;QAClE,oBAAoB,EAAE,IAAA,sBAAa,EAAC;YAClC,GAAG,IAAI,CAAC,gBAAgB;YACxB,cAAc,EAAE,EAAE;YAClB,cAAc,EAAE,EAAE;SACnB,CAAC;QACF,aAAa,EAAE,IAAI,CAAC,aAAa,IAAI,EAAE;QACvC,YAAY,EAAE,IAAI,CAAC,YAAY,CAAC,QAAQ,EAAE;QAC1C,uBAAuB,EAAE,IAAI,CAAC,uBAAuB,CAAC,QAAQ,EAAE;QAChE,wBAAwB,EAAE,IAAI,CAAC,wBAAwB,CAAC,QAAQ,EAAE;QAClE,gBAAgB,EAAE,IAAI,CAAC,gBAAgB,CAAC,QAAQ,EAAE;QAClD,WAAW,EAAE,IAAI,CAAC,WAAW,CAAC,QAAQ,EAAE;QACxC,WAAW,EAAE,IAAI,CAAC,WAAW,CAAC,QAAQ,EAAE;KACzC,CAAC;IACF,OAAO,CAAC,KAAK,CAAC,CAAC;AACjB,CAAC,CAAC;AAEF,IAAI,iBAAyB,CAAC;AAC9B,MAAM,cAAc,GAAG,KAAK,IAAqB,EAAE;IACjD,IAAI,CAAC,iBAAiB,EAAE,CAAC;QACvB,iBAAiB,GAAG,MAAM,eAAe,CACvC,IAAA,cAAO,EAAC,SAAS,EAAE,gBAAgB,CAAC,CACrC,CAAC;IACJ,CAAC;IACD,OAAO,iBAAiB,CAAC;AAC3B,CAAC,CAAC;AAKK,MAAM,QAAQ,GAAG,KAAK,EAAE,IAAiB,EAAmB,EAAE;IACnE,MAAM,SAAS,GAAG,MAAM,cAAc,EAAE,CAAC;IACzC,MAAM,QAAQ,GAAa;QACzB,OAAO,EAAE,IAAA,sBAAa,EAAC,SAAS,CAAC;QACjC,OAAO,EAAE,qBAAU;KACpB,CAAC;IAEF,MAAM,OAAO,GAAG;QACd,IAAI,EAAE,cAAU;QAChB,KAAK,EAAE,eAAW;KACnB,CAAC;IACF,MAAM,MAAM,GAAG,iBAAiB,CAAC,IAAI,CAAC,CAAC;IACvC,OAAO,IAAA,oBAAQ,EAAC,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE;QAC1D,OAAO,IAAA,iBAAQ,EAAC,GAAG,CAAC,CAAC;IACvB,CAAC,CAAC,CAAC;AACL,CAAC,CAAC;AAfW,QAAA,QAAQ,YAenB"}
|