@xyo-network/react-standard-node 2.61.0 → 2.63.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/cjs/lib/Builders/SentinelBuilder.js.map +1 -1
- package/dist/docs.json +6100 -0
- package/dist/esm/lib/Builders/SentinelBuilder.js.map +1 -1
- package/dist/types/lib/Builders/MemoryNodeBuilder.d.ts +35 -118
- package/dist/types/lib/Builders/MemoryNodeBuilder.d.ts.map +1 -1
- package/dist/types/lib/Builders/SentinelBuilder.d.ts +34 -198
- package/dist/types/lib/Builders/SentinelBuilder.d.ts.map +1 -1
- package/dist/types/lib/Builders/StorageArchivistBuilder.d.ts +37 -41
- package/dist/types/lib/Builders/StorageArchivistBuilder.d.ts.map +1 -1
- package/package.json +21 -21
- package/src/lib/Builders/SentinelBuilder.ts +2 -2
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SentinelBuilder.js","sourceRoot":"","sources":["../../../../src/lib/Builders/SentinelBuilder.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAA;AAC3D,OAAO,EAAE,cAAc,
|
|
1
|
+
{"version":3,"file":"SentinelBuilder.js","sourceRoot":"","sources":["../../../../src/lib/Builders/SentinelBuilder.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAA;AAC3D,OAAO,EAAE,cAAc,EAAwC,MAAM,uBAAuB,CAAA;AAE5F,MAAM,OAAO,eAAe;IAIhB;IACA;IAJF,SAAS,CAA4B;IAE7C,YACU,MAAsB,EACtB,OAAwB;QADxB,WAAM,GAAN,MAAM,CAAgB;QACtB,YAAO,GAAP,OAAO,CAAiB;QAEhC,eAAe,CAAC,MAAM,EAAE,wBAAwB,CAAC,CAAA;IACnD,CAAC;IAED,IAAI,QAAQ;QACV,OAAO,eAAe,CAAC,IAAI,CAAC,SAAS,EAAE,wCAAwC,CAAC,CAAA;IAClF,CAAC;IAED,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,MAAsB,EAAE,OAAwB;QAClE,MAAM,QAAQ,GAAG,IAAI,IAAI,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;QAC1C,QAAQ,CAAC,SAAS,GAAG,MAAM,QAAQ,CAAC,aAAa,EAAE,CAAA;QACnD,OAAO,QAAQ,CAAA;IACjB,CAAC;IAED,KAAK,CAAC,aAAa;QACjB,MAAM,MAAM,GAAG,IAAI,CAAC,WAAW,EAAE,CAAA;QACjC,OAAO,CAAC,MAAM,cAAc,CAAC,MAAM,CAAC,MAAM,CAAC,CAAmB,CAAA;IAChE,CAAC;IAEO,WAAW;QACjB,OAAO;YACL,OAAO,EAAE,IAAI,CAAC,OAAO;YACrB,MAAM,EAAE,IAAI,CAAC,MAAM;SACpB,CAAA;IACH,CAAC;CACF"}
|
|
@@ -12,42 +12,41 @@ export declare class MemoryNodeBuilder {
|
|
|
12
12
|
private _node;
|
|
13
13
|
get node(): MemoryNode<import("@xyo-network/core").BaseParamsFields & {
|
|
14
14
|
account?: AccountInstance | "random" | undefined;
|
|
15
|
-
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
15
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<{
|
|
16
16
|
accountDerivationPath?: string | undefined;
|
|
17
|
-
readonly archivist?: import("@xyo-network/module
|
|
17
|
+
readonly archivist?: import("@xyo-network/module").ArchivistModuleConfig | undefined;
|
|
18
|
+
readonly labels?: import("@xyo-network/module").Labels | undefined;
|
|
18
19
|
readonly name?: string | undefined;
|
|
19
20
|
readonly paging?: Record<string, {
|
|
20
21
|
size?: number | undefined;
|
|
21
22
|
}> | undefined;
|
|
22
|
-
readonly schema: string;
|
|
23
23
|
readonly security?: {
|
|
24
24
|
readonly allowAnonymous?: boolean | undefined;
|
|
25
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module
|
|
25
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module").CosigningAddressSet)[]> | undefined;
|
|
26
26
|
readonly disallowed?: Record<string, string[]> | undefined;
|
|
27
27
|
} | undefined;
|
|
28
28
|
readonly sign?: boolean | undefined;
|
|
29
29
|
readonly storeQueries?: boolean | undefined;
|
|
30
30
|
readonly timestamp?: boolean | undefined;
|
|
31
|
-
} & Omit<
|
|
31
|
+
} & Omit<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
32
32
|
accountDerivationPath?: string | undefined;
|
|
33
|
-
readonly archivist?: import("@xyo-network/module
|
|
33
|
+
readonly archivist?: import("@xyo-network/module").ArchivistModuleConfig | undefined;
|
|
34
|
+
readonly labels?: import("@xyo-network/module").Labels | undefined;
|
|
34
35
|
readonly name?: string | undefined;
|
|
35
36
|
readonly paging?: Record<string, {
|
|
36
37
|
size?: number | undefined;
|
|
37
38
|
}> | undefined;
|
|
38
|
-
readonly schema: "network.xyo.node.config";
|
|
39
39
|
readonly security?: {
|
|
40
40
|
readonly allowAnonymous?: boolean | undefined;
|
|
41
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module
|
|
41
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module").CosigningAddressSet)[]> | undefined;
|
|
42
42
|
readonly disallowed?: Record<string, string[]> | undefined;
|
|
43
43
|
} | undefined;
|
|
44
44
|
readonly sign?: boolean | undefined;
|
|
45
45
|
readonly storeQueries?: boolean | undefined;
|
|
46
46
|
readonly timestamp?: boolean | undefined;
|
|
47
|
-
} &
|
|
47
|
+
} & {
|
|
48
48
|
archivist?: string | undefined;
|
|
49
|
-
|
|
50
|
-
} & Omit<undefined, "schema">, "schema"> & {
|
|
49
|
+
} & {
|
|
51
50
|
schema: "network.xyo.node.config";
|
|
52
51
|
}, "schema"> & {
|
|
53
52
|
schema: string;
|
|
@@ -65,179 +64,97 @@ export declare class MemoryNodeBuilder {
|
|
|
65
64
|
addBridge(apiDomain: string, moduleName?: string, account?: AccountInstance): Promise<void>;
|
|
66
65
|
addSentinel(config: SentinelConfig, account: AccountInstance): Promise<import("@xyo-network/sentinel").MemorySentinel<import("@xyo-network/core").BaseParamsFields & {
|
|
67
66
|
account?: AccountInstance | "random" | undefined;
|
|
68
|
-
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
69
|
-
accountDerivationPath?: string | undefined;
|
|
70
|
-
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
71
|
-
readonly name?: string | undefined;
|
|
72
|
-
readonly paging?: Record<string, {
|
|
73
|
-
size?: number | undefined;
|
|
74
|
-
}> | undefined;
|
|
75
|
-
readonly schema: string;
|
|
76
|
-
readonly security?: {
|
|
77
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
78
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
79
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
80
|
-
} | undefined;
|
|
81
|
-
readonly sign?: boolean | undefined;
|
|
82
|
-
readonly storeQueries?: boolean | undefined;
|
|
83
|
-
readonly timestamp?: boolean | undefined;
|
|
84
|
-
} & Omit<Omit<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
85
|
-
accountDerivationPath?: string | undefined;
|
|
86
|
-
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
87
|
-
readonly name?: string | undefined;
|
|
88
|
-
readonly paging?: Record<string, {
|
|
89
|
-
size?: number | undefined;
|
|
90
|
-
}> | undefined;
|
|
91
|
-
readonly schema: string;
|
|
92
|
-
readonly security?: {
|
|
93
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
94
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
95
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
96
|
-
} | undefined;
|
|
97
|
-
readonly sign?: boolean | undefined;
|
|
98
|
-
readonly storeQueries?: boolean | undefined;
|
|
99
|
-
readonly timestamp?: boolean | undefined;
|
|
100
|
-
} & Omit<Omit<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
67
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<{
|
|
101
68
|
accountDerivationPath?: string | undefined;
|
|
102
|
-
readonly archivist?: import("@xyo-network/module
|
|
69
|
+
readonly archivist?: import("@xyo-network/module").ArchivistModuleConfig | undefined;
|
|
70
|
+
readonly labels?: import("@xyo-network/module").Labels | undefined;
|
|
103
71
|
readonly name?: string | undefined;
|
|
104
72
|
readonly paging?: Record<string, {
|
|
105
73
|
size?: number | undefined;
|
|
106
74
|
}> | undefined;
|
|
107
|
-
readonly schema: "network.xyo.sentinel.config";
|
|
108
75
|
readonly security?: {
|
|
109
76
|
readonly allowAnonymous?: boolean | undefined;
|
|
110
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module
|
|
77
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module").CosigningAddressSet)[]> | undefined;
|
|
111
78
|
readonly disallowed?: Record<string, string[]> | undefined;
|
|
112
79
|
} | undefined;
|
|
113
80
|
readonly sign?: boolean | undefined;
|
|
114
81
|
readonly storeQueries?: boolean | undefined;
|
|
115
82
|
readonly timestamp?: boolean | undefined;
|
|
116
|
-
} &
|
|
83
|
+
} & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<{
|
|
117
84
|
accountDerivationPath?: string | undefined;
|
|
118
|
-
readonly archivist?: import("@xyo-network/module
|
|
85
|
+
readonly archivist?: import("@xyo-network/module").ArchivistModuleConfig | undefined;
|
|
86
|
+
readonly labels?: import("@xyo-network/module").Labels | undefined;
|
|
119
87
|
readonly name?: string | undefined;
|
|
120
88
|
readonly paging?: Record<string, {
|
|
121
89
|
size?: number | undefined;
|
|
122
90
|
}> | undefined;
|
|
123
|
-
readonly schema: string;
|
|
124
91
|
readonly security?: {
|
|
125
92
|
readonly allowAnonymous?: boolean | undefined;
|
|
126
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module
|
|
93
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module").CosigningAddressSet)[]> | undefined;
|
|
127
94
|
readonly disallowed?: Record<string, string[]> | undefined;
|
|
128
95
|
} | undefined;
|
|
129
96
|
readonly sign?: boolean | undefined;
|
|
130
97
|
readonly storeQueries?: boolean | undefined;
|
|
131
98
|
readonly timestamp?: boolean | undefined;
|
|
132
|
-
} &
|
|
99
|
+
} & {
|
|
133
100
|
archivists?: string[] | undefined;
|
|
134
101
|
schema: string;
|
|
102
|
+
} & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
103
|
+
schema: "network.xyo.module.config";
|
|
135
104
|
}, "schema"> & {
|
|
136
|
-
schema:
|
|
105
|
+
schema: "network.xyo.module.config";
|
|
137
106
|
} & {
|
|
138
|
-
schema: "network.xyo.sentinel.config";
|
|
139
107
|
witnesses?: string[] | undefined;
|
|
140
|
-
} & {
|
|
141
|
-
schema: string;
|
|
142
108
|
}, "schema"> & {
|
|
143
109
|
schema: "network.xyo.sentinel.config";
|
|
144
|
-
}, "schema"> & {
|
|
145
|
-
schema: string;
|
|
146
|
-
}, "schema"> & {
|
|
147
|
-
schema: string;
|
|
148
|
-
}, "schema"> & {
|
|
149
|
-
schema: string;
|
|
150
|
-
}, "schema"> & {
|
|
151
|
-
schema: string;
|
|
152
110
|
};
|
|
153
111
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
154
112
|
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
155
|
-
}, import("@xyo-network/sentinel
|
|
113
|
+
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/sentinel").SentinelInstance<import("@xyo-network/core").BaseParamsFields & {
|
|
156
114
|
account?: AccountInstance | "random" | undefined;
|
|
157
|
-
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
158
|
-
accountDerivationPath?: string | undefined;
|
|
159
|
-
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
160
|
-
readonly name?: string | undefined;
|
|
161
|
-
readonly paging?: Record<string, {
|
|
162
|
-
size?: number | undefined;
|
|
163
|
-
}> | undefined;
|
|
164
|
-
readonly schema: string;
|
|
165
|
-
readonly security?: {
|
|
166
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
167
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
168
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
169
|
-
} | undefined;
|
|
170
|
-
readonly sign?: boolean | undefined;
|
|
171
|
-
readonly storeQueries?: boolean | undefined;
|
|
172
|
-
readonly timestamp?: boolean | undefined;
|
|
173
|
-
} & Omit<Omit<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
174
|
-
accountDerivationPath?: string | undefined;
|
|
175
|
-
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
176
|
-
readonly name?: string | undefined;
|
|
177
|
-
readonly paging?: Record<string, {
|
|
178
|
-
size?: number | undefined;
|
|
179
|
-
}> | undefined;
|
|
180
|
-
readonly schema: string;
|
|
181
|
-
readonly security?: {
|
|
182
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
183
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
184
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
185
|
-
} | undefined;
|
|
186
|
-
readonly sign?: boolean | undefined;
|
|
187
|
-
readonly storeQueries?: boolean | undefined;
|
|
188
|
-
readonly timestamp?: boolean | undefined;
|
|
189
|
-
} & Omit<Omit<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
115
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<{
|
|
190
116
|
accountDerivationPath?: string | undefined;
|
|
191
|
-
readonly archivist?: import("@xyo-network/module
|
|
117
|
+
readonly archivist?: import("@xyo-network/module").ArchivistModuleConfig | undefined;
|
|
118
|
+
readonly labels?: import("@xyo-network/module").Labels | undefined;
|
|
192
119
|
readonly name?: string | undefined;
|
|
193
120
|
readonly paging?: Record<string, {
|
|
194
121
|
size?: number | undefined;
|
|
195
122
|
}> | undefined;
|
|
196
|
-
readonly schema: "network.xyo.sentinel.config";
|
|
197
123
|
readonly security?: {
|
|
198
124
|
readonly allowAnonymous?: boolean | undefined;
|
|
199
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module
|
|
125
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module").CosigningAddressSet)[]> | undefined;
|
|
200
126
|
readonly disallowed?: Record<string, string[]> | undefined;
|
|
201
127
|
} | undefined;
|
|
202
128
|
readonly sign?: boolean | undefined;
|
|
203
129
|
readonly storeQueries?: boolean | undefined;
|
|
204
130
|
readonly timestamp?: boolean | undefined;
|
|
205
|
-
} &
|
|
131
|
+
} & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<{
|
|
206
132
|
accountDerivationPath?: string | undefined;
|
|
207
|
-
readonly archivist?: import("@xyo-network/module
|
|
133
|
+
readonly archivist?: import("@xyo-network/module").ArchivistModuleConfig | undefined;
|
|
134
|
+
readonly labels?: import("@xyo-network/module").Labels | undefined;
|
|
208
135
|
readonly name?: string | undefined;
|
|
209
136
|
readonly paging?: Record<string, {
|
|
210
137
|
size?: number | undefined;
|
|
211
138
|
}> | undefined;
|
|
212
|
-
readonly schema: string;
|
|
213
139
|
readonly security?: {
|
|
214
140
|
readonly allowAnonymous?: boolean | undefined;
|
|
215
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module
|
|
141
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module").CosigningAddressSet)[]> | undefined;
|
|
216
142
|
readonly disallowed?: Record<string, string[]> | undefined;
|
|
217
143
|
} | undefined;
|
|
218
144
|
readonly sign?: boolean | undefined;
|
|
219
145
|
readonly storeQueries?: boolean | undefined;
|
|
220
146
|
readonly timestamp?: boolean | undefined;
|
|
221
|
-
} &
|
|
147
|
+
} & {
|
|
222
148
|
archivists?: string[] | undefined;
|
|
223
149
|
schema: string;
|
|
150
|
+
} & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
151
|
+
schema: "network.xyo.module.config";
|
|
224
152
|
}, "schema"> & {
|
|
225
|
-
schema:
|
|
153
|
+
schema: "network.xyo.module.config";
|
|
226
154
|
} & {
|
|
227
|
-
schema: "network.xyo.sentinel.config";
|
|
228
155
|
witnesses?: string[] | undefined;
|
|
229
|
-
} & {
|
|
230
|
-
schema: string;
|
|
231
156
|
}, "schema"> & {
|
|
232
157
|
schema: "network.xyo.sentinel.config";
|
|
233
|
-
}, "schema"> & {
|
|
234
|
-
schema: string;
|
|
235
|
-
}, "schema"> & {
|
|
236
|
-
schema: string;
|
|
237
|
-
}, "schema"> & {
|
|
238
|
-
schema: string;
|
|
239
|
-
}, "schema"> & {
|
|
240
|
-
schema: string;
|
|
241
158
|
};
|
|
242
159
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
243
160
|
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MemoryNodeBuilder.d.ts","sourceRoot":"","sources":["../../../../src/lib/Builders/MemoryNodeBuilder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAG5D,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAA;AACpD,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAA;AAErD,OAAO,EAAE,wBAAwB,EAAE,MAAM,gCAAgC,CAAA;AAEzE,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAA;AACtD,OAAO,EAAE,eAAe,EAAiB,MAAM,sBAAsB,CAAA;AAKrE,MAAM,WAAW,uBAAuB;IACtC,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,IAAI,CAAC,EAAE,UAAU,CAAA;CAClB;AAED,qBAAa,iBAAiB;IAC5B,OAAO,CAAC,KAAK,CAAwB;IAErC,IAAI,IAAI
|
|
1
|
+
{"version":3,"file":"MemoryNodeBuilder.d.ts","sourceRoot":"","sources":["../../../../src/lib/Builders/MemoryNodeBuilder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAG5D,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAA;AACpD,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAA;AAErD,OAAO,EAAE,wBAAwB,EAAE,MAAM,gCAAgC,CAAA;AAEzE,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAA;AACtD,OAAO,EAAE,eAAe,EAAiB,MAAM,sBAAsB,CAAA;AAKrE,MAAM,WAAW,uBAAuB;IACtC,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,IAAI,CAAC,EAAE,UAAU,CAAA;CAClB;AAED,qBAAa,iBAAiB;IAC5B,OAAO,CAAC,KAAK,CAAwB;IAErC,IAAI,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8DAEP;WAEY,MAAM,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,EAAE,uBAAuB,EAAE,OAAO,CAAC,EAAE,eAAe,GAAG,OAAO,CAAC,iBAAiB,CAAC;IAQnH,4GAA4G;IACtG,YAAY,CAAC,OAAO,EAAE,eAAe,EAAE,UAAU,CAAC,EAAE,MAAM,EAAE,SAAS,CAAC,EAAE,MAAM;IAI9E,kBAAkB,CAAC,UAAU,CAAC,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,eAAe;IAOjE,mBAAmB,CAAC,OAAO,EAAE,eAAe,EAAE,UAAU,CAAC,EAAE,MAAM,EAAE,SAAS,CAAC,EAAE,MAAM;IAOrF,SAAS,CAAC,SAAS,EAAE,MAAM,EAAE,UAAU,SAAqB,EAAE,OAAO,CAAC,EAAE,eAAe;IAYvF,WAAW,CAAC,MAAM,EAAE,cAAc,EAAE,OAAO,EAAE,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAM5D,YAAY,CAAC,iBAAiB,EAAE,wBAAwB,EAAE,SAAS,GAAE,CAAC,MAAM,OAAO,CAAC,eAAe,CAAC,CAAC,EAAO;IAkB5G,MAAM,CAAC,MAAM,EAAE,cAAc,EAAE,QAAQ,CAAC,EAAE,OAAO,EAAE,UAAU,CAAC,EAAE,OAAO;YAgB/D,cAAc;CAM7B"}
|