@bufbuild/protobuf 0.0.1-alpha.1 → 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 +21 -1
- package/dist/cjs/binary-encoding.js +402 -410
- package/dist/cjs/descriptor-registry.js +407 -449
- package/dist/cjs/descriptor-set.js +416 -513
- package/dist/cjs/field.js +30 -30
- package/dist/cjs/google/protobuf/any_pb.js +122 -140
- package/dist/cjs/google/protobuf/api_pb.js +177 -224
- package/dist/cjs/google/protobuf/compiler/plugin_pb.js +125 -227
- package/dist/cjs/google/protobuf/descriptor_pb.js +1029 -1888
- package/dist/cjs/google/protobuf/duration_pb.js +72 -88
- package/dist/cjs/google/protobuf/empty_pb.js +17 -17
- package/dist/cjs/google/protobuf/field_mask_pb.js +77 -94
- package/dist/cjs/google/protobuf/source_context_pb.js +25 -25
- package/dist/cjs/google/protobuf/struct_pb.js +144 -181
- package/dist/cjs/google/protobuf/timestamp_pb.js +86 -123
- package/dist/cjs/google/protobuf/type_pb.js +406 -462
- package/dist/cjs/google/protobuf/wrappers_pb.js +407 -470
- package/dist/cjs/index.js +24 -122
- package/dist/cjs/message.js +81 -89
- package/dist/cjs/private/assert.js +20 -26
- package/dist/cjs/private/base64.js +79 -78
- package/dist/cjs/private/binary-format-common.js +195 -208
- package/dist/cjs/private/binary-format-proto2.js +75 -109
- package/dist/cjs/private/binary-format-proto3.js +57 -90
- package/dist/cjs/private/enum.js +38 -43
- package/dist/cjs/private/field-list.js +51 -50
- package/dist/cjs/private/field-wrapper.js +8 -10
- package/dist/cjs/private/field.js +22 -25
- package/dist/cjs/private/goog-varint.js +275 -0
- package/dist/cjs/private/json-format-common.js +414 -440
- package/dist/cjs/private/json-format-proto2.js +78 -89
- package/dist/cjs/private/json-format-proto3.js +69 -93
- package/dist/cjs/private/message-type.js +26 -27
- package/dist/cjs/private/names.js +58 -62
- package/dist/cjs/private/proto-runtime.js +11 -16
- package/dist/cjs/private/scalars.js +100 -103
- package/dist/cjs/private/util-common.js +180 -210
- package/dist/cjs/proto-int64.js +111 -112
- package/dist/cjs/proto2.js +50 -63
- package/dist/cjs/proto3.js +61 -74
- package/dist/cjs/service-type.js +14 -17
- package/dist/cjs/type-registry.js +33 -31
- package/dist/esm/binary-encoding.js +401 -414
- package/dist/esm/descriptor-registry.js +409 -458
- package/dist/esm/descriptor-set.js +417 -478
- package/dist/esm/field.js +29 -29
- package/dist/esm/google/protobuf/any_pb.js +122 -140
- package/dist/esm/google/protobuf/api_pb.js +177 -197
- package/dist/esm/google/protobuf/compiler/plugin_pb.js +123 -216
- package/dist/esm/google/protobuf/descriptor_pb.js +1013 -1804
- package/dist/esm/google/protobuf/duration_pb.js +72 -88
- package/dist/esm/google/protobuf/empty_pb.js +17 -17
- package/dist/esm/google/protobuf/field_mask_pb.js +77 -94
- package/dist/esm/google/protobuf/source_context_pb.js +25 -25
- package/dist/esm/google/protobuf/struct_pb.js +143 -180
- package/dist/esm/google/protobuf/timestamp_pb.js +86 -123
- package/dist/esm/google/protobuf/type_pb.js +401 -421
- package/dist/esm/google/protobuf/wrappers_pb.js +406 -397
- package/dist/esm/index.js +1 -1
- package/dist/esm/message.js +81 -89
- package/dist/esm/private/assert.js +19 -21
- package/dist/esm/private/base64.js +79 -78
- package/dist/esm/private/binary-format-common.js +196 -207
- package/dist/esm/private/binary-format-proto2.js +76 -81
- package/dist/esm/private/binary-format-proto3.js +58 -67
- package/dist/esm/private/enum.js +38 -43
- package/dist/esm/private/field-list.js +51 -50
- package/dist/esm/private/field-wrapper.js +8 -10
- package/dist/esm/private/field.js +22 -22
- package/dist/esm/private/goog-varint.js +266 -0
- package/dist/esm/private/json-format-common.js +414 -435
- package/dist/esm/private/json-format-proto2.js +76 -81
- package/dist/esm/private/json-format-proto3.js +66 -80
- package/dist/esm/private/message-type.js +27 -28
- package/dist/esm/private/names.js +57 -57
- package/dist/esm/private/proto-runtime.js +11 -11
- package/dist/esm/private/scalars.js +99 -99
- package/dist/esm/private/util-common.js +180 -192
- package/dist/esm/proto-int64.js +111 -112
- package/dist/esm/proto2.js +50 -57
- package/dist/esm/proto3.js +61 -68
- package/dist/esm/service-type.js +12 -12
- package/dist/esm/type-registry.js +33 -31
- package/dist/types/binary-encoding.d.ts +398 -398
- package/dist/types/binary-format.d.ts +69 -91
- package/dist/types/descriptor-registry.d.ts +23 -29
- package/dist/types/descriptor-set.d.ts +107 -128
- package/dist/types/enum.d.ts +21 -21
- package/dist/types/field-list.d.ts +21 -21
- package/dist/types/field.d.ts +191 -231
- package/dist/types/google/protobuf/any_pb.d.ts +56 -77
- package/dist/types/google/protobuf/api_pb.d.ts +144 -187
- package/dist/types/google/protobuf/compiler/plugin_pb.d.ts +195 -257
- package/dist/types/google/protobuf/descriptor_pb.d.ts +1360 -1737
- package/dist/types/google/protobuf/duration_pb.d.ts +30 -50
- package/dist/types/google/protobuf/empty_pb.d.ts +9 -28
- package/dist/types/google/protobuf/field_mask_pb.d.ts +17 -37
- package/dist/types/google/protobuf/source_context_pb.d.ts +16 -35
- package/dist/types/google/protobuf/struct_pb.d.ts +64 -115
- package/dist/types/google/protobuf/timestamp_pb.d.ts +31 -51
- package/dist/types/google/protobuf/type_pb.d.ts +355 -422
- package/dist/types/google/protobuf/wrappers_pb.d.ts +181 -297
- package/dist/types/index.d.ts +4 -27
- package/dist/types/json-format.d.ts +70 -89
- package/dist/types/message-type.d.ts +38 -46
- package/dist/types/message.d.ts +73 -99
- package/dist/types/private/assert.d.ts +1 -4
- package/dist/types/private/binary-format-common.d.ts +6 -32
- package/dist/types/private/enum.d.ts +4 -11
- package/dist/types/private/field-list.d.ts +14 -21
- package/dist/types/private/field-wrapper.d.ts +5 -11
- package/dist/types/private/field.d.ts +12 -12
- package/dist/types/{google/varint.d.ts → private/goog-varint.d.ts} +6 -13
- package/dist/types/private/json-format-common.d.ts +5 -27
- package/dist/types/private/message-type.d.ts +3 -8
- package/dist/types/private/names.d.ts +1 -4
- package/dist/types/private/options-map.d.ts +1 -1
- package/dist/types/private/proto-runtime.d.ts +29 -42
- package/dist/types/private/scalars.d.ts +5 -12
- package/dist/types/private/util-common.d.ts +1 -4
- package/dist/types/private/util.d.ts +29 -41
- package/dist/types/proto-int64.d.ts +42 -42
- package/dist/types/service-type.d.ts +37 -57
- package/dist/types/type-registry.d.ts +13 -15
- package/package.json +2 -2
- package/dist/cjs/google/varint.js +0 -280
- package/dist/esm/google/varint.js +0 -265
package/dist/esm/field.js
CHANGED
|
@@ -5,33 +5,33 @@
|
|
|
5
5
|
*/
|
|
6
6
|
export var ScalarType;
|
|
7
7
|
(function (ScalarType) {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
8
|
+
// 0 is reserved for errors.
|
|
9
|
+
// Order is weird for historical reasons.
|
|
10
|
+
ScalarType[ScalarType["DOUBLE"] = 1] = "DOUBLE";
|
|
11
|
+
ScalarType[ScalarType["FLOAT"] = 2] = "FLOAT";
|
|
12
|
+
// Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT64 if
|
|
13
|
+
// negative values are likely.
|
|
14
|
+
ScalarType[ScalarType["INT64"] = 3] = "INT64";
|
|
15
|
+
ScalarType[ScalarType["UINT64"] = 4] = "UINT64";
|
|
16
|
+
// Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT32 if
|
|
17
|
+
// negative values are likely.
|
|
18
|
+
ScalarType[ScalarType["INT32"] = 5] = "INT32";
|
|
19
|
+
ScalarType[ScalarType["FIXED64"] = 6] = "FIXED64";
|
|
20
|
+
ScalarType[ScalarType["FIXED32"] = 7] = "FIXED32";
|
|
21
|
+
ScalarType[ScalarType["BOOL"] = 8] = "BOOL";
|
|
22
|
+
ScalarType[ScalarType["STRING"] = 9] = "STRING";
|
|
23
|
+
// Tag-delimited aggregate.
|
|
24
|
+
// Group type is deprecated and not supported in proto3. However, Proto3
|
|
25
|
+
// implementations should still be able to parse the group wire format and
|
|
26
|
+
// treat group fields as unknown fields.
|
|
27
|
+
// TYPE_GROUP = 10,
|
|
28
|
+
// TYPE_MESSAGE = 11, // Length-delimited aggregate.
|
|
29
|
+
// New in version 2.
|
|
30
|
+
ScalarType[ScalarType["BYTES"] = 12] = "BYTES";
|
|
31
|
+
ScalarType[ScalarType["UINT32"] = 13] = "UINT32";
|
|
32
|
+
// TYPE_ENUM = 14,
|
|
33
|
+
ScalarType[ScalarType["SFIXED32"] = 15] = "SFIXED32";
|
|
34
|
+
ScalarType[ScalarType["SFIXED64"] = 16] = "SFIXED64";
|
|
35
|
+
ScalarType[ScalarType["SINT32"] = 17] = "SINT32";
|
|
36
|
+
ScalarType[ScalarType["SINT64"] = 18] = "SINT64";
|
|
37
37
|
})(ScalarType || (ScalarType = {}));
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/* eslint-disable */
|
|
2
|
-
// @generated by protoc-gen-es v0.0.1
|
|
2
|
+
// @generated by protoc-gen-es v0.0.1 with parameter "bootstrap_wkt=true,ts_nocheck=false"
|
|
3
3
|
// @generated from file google/protobuf/any.proto (package google.protobuf, syntax proto3)
|
|
4
4
|
//
|
|
5
5
|
// Protocol Buffers - Google's data interchange format
|
|
@@ -120,157 +120,139 @@ import { Message, proto3 } from "../../index.js";
|
|
|
120
120
|
* @generated from message google.protobuf.Any
|
|
121
121
|
*/
|
|
122
122
|
export class Any extends Message {
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
}
|
|
166
|
-
toJson(options) {
|
|
167
|
-
if (this.typeUrl === "") {
|
|
168
|
-
return {};
|
|
123
|
+
constructor(data) {
|
|
124
|
+
super();
|
|
125
|
+
/**
|
|
126
|
+
* A URL/resource name that uniquely identifies the type of the serialized
|
|
127
|
+
* protocol buffer message. This string must contain at least
|
|
128
|
+
* one "/" character. The last segment of the URL's path must represent
|
|
129
|
+
* the fully qualified name of the type (as in
|
|
130
|
+
* `path/google.protobuf.Duration`). The name should be in a canonical form
|
|
131
|
+
* (e.g., leading "." is not accepted).
|
|
132
|
+
*
|
|
133
|
+
* In practice, teams usually precompile into the binary all types that they
|
|
134
|
+
* expect it to use in the context of Any. However, for URLs which use the
|
|
135
|
+
* scheme `http`, `https`, or no scheme, one can optionally set up a type
|
|
136
|
+
* server that maps type URLs to message definitions as follows:
|
|
137
|
+
*
|
|
138
|
+
* * If no scheme is provided, `https` is assumed.
|
|
139
|
+
* * An HTTP GET on the URL must yield a [google.protobuf.Type][]
|
|
140
|
+
* value in binary format, or produce an error.
|
|
141
|
+
* * Applications are allowed to cache lookup results based on the
|
|
142
|
+
* URL, or have them precompiled into a binary to avoid any
|
|
143
|
+
* lookup. Therefore, binary compatibility needs to be preserved
|
|
144
|
+
* on changes to types. (Use versioned type names to manage
|
|
145
|
+
* breaking changes.)
|
|
146
|
+
*
|
|
147
|
+
* Note: this functionality is not currently available in the official
|
|
148
|
+
* protobuf release, and it is not used for type URLs beginning with
|
|
149
|
+
* type.googleapis.com.
|
|
150
|
+
*
|
|
151
|
+
* Schemes other than `http`, `https` (or the empty scheme) might be
|
|
152
|
+
* used with implementation specific semantics.
|
|
153
|
+
*
|
|
154
|
+
*
|
|
155
|
+
* @generated from field: string type_url = 1;
|
|
156
|
+
*/
|
|
157
|
+
this.typeUrl = "";
|
|
158
|
+
/**
|
|
159
|
+
* Must be a valid serialized protocol buffer of the above specified type.
|
|
160
|
+
*
|
|
161
|
+
* @generated from field: bytes value = 2;
|
|
162
|
+
*/
|
|
163
|
+
this.value = new Uint8Array(0);
|
|
164
|
+
proto3.util.initPartial(data, this);
|
|
169
165
|
}
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
166
|
+
toJson(options) {
|
|
167
|
+
if (this.typeUrl === "") {
|
|
168
|
+
return {};
|
|
169
|
+
}
|
|
170
|
+
const typeName = this.typeUrlToName(this.typeUrl);
|
|
171
|
+
const messageType = options?.typeRegistry?.findMessage(typeName);
|
|
172
|
+
if (!messageType) {
|
|
173
|
+
throw new Error(`cannot encode message google.protobuf.Any to JSON: "${this.typeUrl}" is not in the type registry`);
|
|
174
|
+
}
|
|
175
|
+
const message = messageType.fromBinary(this.value);
|
|
176
|
+
let json = message.toJson(options);
|
|
177
|
+
if (typeName.startsWith("google.protobuf.") || (json === null || Array.isArray(json) || typeof json !== "object")) {
|
|
178
|
+
json = { value: json };
|
|
179
|
+
}
|
|
180
|
+
json["@type"] = this.typeUrl;
|
|
181
|
+
return json;
|
|
176
182
|
}
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
183
|
+
fromJson(json, options) {
|
|
184
|
+
if (json === null || Array.isArray(json) || typeof json != "object") {
|
|
185
|
+
throw new Error(`cannot decode message google.protobuf.Any from JSON: expected object but got ${json === null ? "null" : Array.isArray(json) ? "array" : typeof json}`);
|
|
186
|
+
}
|
|
187
|
+
const typeUrl = json["@type"];
|
|
188
|
+
if (typeof typeUrl != "string" || typeUrl == "") {
|
|
189
|
+
throw new Error(`cannot decode message google.protobuf.Any from JSON: "@type" is empty`);
|
|
190
|
+
}
|
|
191
|
+
const typeName = this.typeUrlToName(typeUrl), messageType = options?.typeRegistry?.findMessage(typeName);
|
|
192
|
+
if (!messageType) {
|
|
193
|
+
throw new Error(`cannot decode message google.protobuf.Any from JSON: ${typeUrl} is not in the type registry`);
|
|
194
|
+
}
|
|
195
|
+
let message;
|
|
196
|
+
if (typeName.startsWith("google.protobuf.") && Object.prototype.hasOwnProperty.call(json, "value")) {
|
|
197
|
+
message = messageType.fromJson(json["value"], options);
|
|
198
|
+
}
|
|
199
|
+
else {
|
|
200
|
+
const copy = Object.assign({}, json);
|
|
201
|
+
delete copy["@type"];
|
|
202
|
+
message = messageType.fromJson(copy, options);
|
|
203
|
+
}
|
|
204
|
+
this.packFrom(message);
|
|
205
|
+
return this;
|
|
186
206
|
}
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
fromJson(json, options) {
|
|
191
|
-
if (json === null || Array.isArray(json) || typeof json != "object") {
|
|
192
|
-
throw new Error(
|
|
193
|
-
`cannot decode message google.protobuf.Any from JSON: expected object but got ${
|
|
194
|
-
json === null ? "null" : Array.isArray(json) ? "array" : typeof json
|
|
195
|
-
}`
|
|
196
|
-
);
|
|
207
|
+
packFrom(message) {
|
|
208
|
+
this.value = message.toBinary();
|
|
209
|
+
this.typeUrl = this.typeNameToUrl(message.getType().typeName);
|
|
197
210
|
}
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
211
|
+
unpackTo(target) {
|
|
212
|
+
if (!this.is(target.getType())) {
|
|
213
|
+
return false;
|
|
214
|
+
}
|
|
215
|
+
target.fromBinary(this.value);
|
|
216
|
+
return true;
|
|
203
217
|
}
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
if (!messageType) {
|
|
207
|
-
throw new Error(
|
|
208
|
-
`cannot decode message google.protobuf.Any from JSON: ${typeUrl} is not in the type registry`
|
|
209
|
-
);
|
|
218
|
+
is(type) {
|
|
219
|
+
return this.typeUrl === this.typeNameToUrl(type.typeName);
|
|
210
220
|
}
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
typeName.startsWith("google.protobuf.") &&
|
|
214
|
-
Object.prototype.hasOwnProperty.call(json, "value")
|
|
215
|
-
) {
|
|
216
|
-
message = messageType.fromJson(json["value"], options);
|
|
217
|
-
} else {
|
|
218
|
-
const copy = Object.assign({}, json);
|
|
219
|
-
delete copy["@type"];
|
|
220
|
-
message = messageType.fromJson(copy, options);
|
|
221
|
+
typeNameToUrl(name) {
|
|
222
|
+
return `type.googleapis.com/${name}`;
|
|
221
223
|
}
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
224
|
+
typeUrlToName(url) {
|
|
225
|
+
if (!url.length) {
|
|
226
|
+
throw new Error(`invalid type url: ${url}`);
|
|
227
|
+
}
|
|
228
|
+
const slash = url.lastIndexOf("/");
|
|
229
|
+
const name = slash > 0 ? url.substring(slash + 1) : url;
|
|
230
|
+
if (!name.length) {
|
|
231
|
+
throw new Error(`invalid type url: ${url}`);
|
|
232
|
+
}
|
|
233
|
+
return name;
|
|
232
234
|
}
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
return this.typeUrl === this.typeNameToUrl(type.typeName);
|
|
238
|
-
}
|
|
239
|
-
typeNameToUrl(name) {
|
|
240
|
-
return `type.googleapis.com/${name}`;
|
|
241
|
-
}
|
|
242
|
-
typeUrlToName(url) {
|
|
243
|
-
if (!url.length) {
|
|
244
|
-
throw new Error(`invalid type url: ${url}`);
|
|
235
|
+
static pack(message) {
|
|
236
|
+
const any = new Any();
|
|
237
|
+
any.packFrom(message);
|
|
238
|
+
return any;
|
|
245
239
|
}
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
240
|
+
static fromBinary(bytes, options) {
|
|
241
|
+
return new Any().fromBinary(bytes, options);
|
|
242
|
+
}
|
|
243
|
+
static fromJson(jsonValue, options) {
|
|
244
|
+
return new Any().fromJson(jsonValue, options);
|
|
245
|
+
}
|
|
246
|
+
static fromJsonString(jsonString, options) {
|
|
247
|
+
return new Any().fromJsonString(jsonString, options);
|
|
248
|
+
}
|
|
249
|
+
static equals(a, b) {
|
|
250
|
+
return proto3.util.equals(Any, a, b);
|
|
250
251
|
}
|
|
251
|
-
return name;
|
|
252
|
-
}
|
|
253
|
-
static pack(message) {
|
|
254
|
-
const any = new Any();
|
|
255
|
-
any.packFrom(message);
|
|
256
|
-
return any;
|
|
257
|
-
}
|
|
258
|
-
static fromBinary(bytes, options) {
|
|
259
|
-
return new Any().fromBinary(bytes, options);
|
|
260
|
-
}
|
|
261
|
-
static fromJson(jsonValue, options) {
|
|
262
|
-
return new Any().fromJson(jsonValue, options);
|
|
263
|
-
}
|
|
264
|
-
static fromJsonString(jsonString, options) {
|
|
265
|
-
return new Any().fromJsonString(jsonString, options);
|
|
266
|
-
}
|
|
267
|
-
static equals(a, b) {
|
|
268
|
-
return proto3.util.equals(Any, a, b);
|
|
269
|
-
}
|
|
270
252
|
}
|
|
271
253
|
Any.runtime = proto3;
|
|
272
254
|
Any.typeName = "google.protobuf.Any";
|
|
273
255
|
Any.fields = proto3.util.newFieldList(() => [
|
|
274
|
-
|
|
275
|
-
|
|
256
|
+
{ no: 1, name: "type_url", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
257
|
+
{ no: 2, name: "value", kind: "scalar", T: 12 /* ScalarType.BYTES */ },
|
|
276
258
|
]);
|