@prisma-next/family-sql 0.5.0-dev.62 → 0.5.0-dev.63
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/control-adapter.d.mts +11 -5
- package/dist/control-adapter.d.mts.map +1 -1
- package/dist/control.d.mts +1 -1
- package/dist/control.d.mts.map +1 -1
- package/dist/control.mjs +7 -4
- package/dist/control.mjs.map +1 -1
- package/dist/migration.d.mts +1 -1
- package/dist/schema-verify.d.mts +1 -1
- package/dist/{types-DiBtjG6M.d.mts → types-DFQkcr8A.d.mts} +44 -3
- package/dist/{types-DiBtjG6M.d.mts.map → types-DFQkcr8A.d.mts.map} +1 -1
- package/dist/verify-sql-schema-Ovz7RXR5.mjs.map +1 -1
- package/package.json +18 -18
- package/src/core/control-adapter.ts +14 -5
- package/src/core/control-instance.ts +7 -3
- package/src/core/migrations/plan-helpers.ts +1 -0
- package/src/core/migrations/types.ts +43 -0
package/dist/migration.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { T as SqlPlanTargetDetails, p as SqlMigrationPlanOperation } from "./types-
|
|
1
|
+
import { T as SqlPlanTargetDetails, p as SqlMigrationPlanOperation } from "./types-DFQkcr8A.mjs";
|
|
2
2
|
import { Migration } from "@prisma-next/migration-tools/migration";
|
|
3
3
|
|
|
4
4
|
//#region src/core/sql-migration.d.ts
|
package/dist/schema-verify.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { i as verifySqlSchema, n as NativeTypeNormalizer, r as VerifySqlSchemaOptions } from "./verify-sql-schema-DW8Agf1F.mjs";
|
|
2
|
-
import { i as ComponentDatabaseDependency } from "./types-
|
|
2
|
+
import { i as ComponentDatabaseDependency } from "./types-DFQkcr8A.mjs";
|
|
3
3
|
import { SchemaIssue, SchemaVerificationNode } from "@prisma-next/framework-components/control";
|
|
4
4
|
import { SqlIndexIR, SqlSchemaIR, SqlUniqueIR } from "@prisma-next/sql-schema-ir/types";
|
|
5
5
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ControlAdapterDescriptor, ControlDriverInstance, ControlExtensionDescriptor, ControlFamilyInstance, ControlStack, MigratableTargetDescriptor, MigrationOperationPolicy, MigrationPlan, MigrationPlanOperation, MigrationPlannerConflict, MigrationPlannerFailureResult, MigrationPlannerSuccessResult, MigrationRunnerExecutionChecks, MigrationRunnerFailure, MigrationRunnerSuccessValue, OperationContext, OperationPreview, OperationPreviewCapable, PslContractInferCapable, SchemaIssue, SchemaViewCapable, SignDatabaseResult, VerifyDatabaseResult, VerifyDatabaseSchemaResult } from "@prisma-next/framework-components/control";
|
|
1
|
+
import { ContractSpace, ControlAdapterDescriptor, ControlDriverInstance, ControlExtensionDescriptor, ControlFamilyInstance, ControlStack, MigratableTargetDescriptor, MigrationOperationPolicy, MigrationPlan, MigrationPlanOperation, MigrationPlannerConflict, MigrationPlannerFailureResult, MigrationPlannerSuccessResult, MigrationRunnerExecutionChecks, MigrationRunnerFailure, MigrationRunnerSuccessValue, OperationContext, OperationPreview, OperationPreviewCapable, PslContractInferCapable, SchemaIssue, SchemaViewCapable, SignDatabaseResult, VerifyDatabaseResult, VerifyDatabaseSchemaResult } from "@prisma-next/framework-components/control";
|
|
2
2
|
import { Result } from "@prisma-next/utils/result";
|
|
3
3
|
import { Contract } from "@prisma-next/contract/types";
|
|
4
4
|
import { SqlSchemaIR } from "@prisma-next/sql-schema-ir/types";
|
|
@@ -139,6 +139,20 @@ interface CodecControlHooks<TTargetDetails = unknown> {
|
|
|
139
139
|
interface SqlControlExtensionDescriptor<TTargetId extends string> extends ControlExtensionDescriptor<'sql', TTargetId> {
|
|
140
140
|
readonly databaseDependencies?: ComponentDatabaseDependencies<unknown>;
|
|
141
141
|
readonly queryOperations?: () => ReadonlyArray<SqlOperationDescriptor>;
|
|
142
|
+
/**
|
|
143
|
+
* Schema-contributing extensions opt into the per-space planner / runner /
|
|
144
|
+
* verifier by setting this field. Extensions without it are codec-only or
|
|
145
|
+
* query-ops-only — today's behaviour preserved.
|
|
146
|
+
*
|
|
147
|
+
* The shape comes from `@prisma-next/framework-components/control`
|
|
148
|
+
* (`ContractSpace`) — contract-space identity is a framework concept,
|
|
149
|
+
* not a SQL-specific one. The SQL family specialises the generic to
|
|
150
|
+
* `Contract<SqlStorage>` so descriptor authors continue to see a
|
|
151
|
+
* typed contract value.
|
|
152
|
+
*
|
|
153
|
+
* @see specs/framework-mechanism.spec.md § 1.
|
|
154
|
+
*/
|
|
155
|
+
readonly contractSpace?: ContractSpace<Contract<SqlStorage>>;
|
|
142
156
|
}
|
|
143
157
|
interface SqlControlAdapterDescriptor<TTargetId extends string> extends ControlAdapterDescriptor<'sql', TTargetId> {
|
|
144
158
|
readonly queryOperations?: () => ReadonlyArray<SqlOperationDescriptor>;
|
|
@@ -185,6 +199,21 @@ interface SqlMigrationPlanContractInfo {
|
|
|
185
199
|
readonly profileHash?: string;
|
|
186
200
|
}
|
|
187
201
|
interface SqlMigrationPlan<TTargetDetails> extends MigrationPlan {
|
|
202
|
+
/**
|
|
203
|
+
* Contract space this plan applies to. The runner uses this to key the
|
|
204
|
+
* `prisma_contract.marker` row it writes/reads (`space = <spaceId>`),
|
|
205
|
+
* so per-extension plans hit per-extension marker rows instead of all
|
|
206
|
+
* collapsing onto the app's row.
|
|
207
|
+
*
|
|
208
|
+
* App-plan callers pass `APP_SPACE_ID` (`'app'`); per-extension plans
|
|
209
|
+
* pass the extension's space id. Required at every call site so the
|
|
210
|
+
* type system surfaces every place that needs to thread the value
|
|
211
|
+
* (rather than letting an `?? APP_SPACE_ID` fall-through silently
|
|
212
|
+
* collapse multi-space markers onto the `'app'` row).
|
|
213
|
+
*
|
|
214
|
+
* @see specs/framework-mechanism.spec.md § 2.
|
|
215
|
+
*/
|
|
216
|
+
readonly spaceId: string;
|
|
188
217
|
/**
|
|
189
218
|
* Origin contract identity that the plan expects the database to currently be at.
|
|
190
219
|
* If omitted or null, the runner skips origin validation entirely.
|
|
@@ -233,6 +262,14 @@ interface SqlMigrationPlannerPlanOptions {
|
|
|
233
262
|
readonly schema: SqlSchemaIR;
|
|
234
263
|
readonly policy: MigrationOperationPolicy;
|
|
235
264
|
readonly schemaName?: string;
|
|
265
|
+
/**
|
|
266
|
+
* Contract space the plan applies to. The planner stamps this onto
|
|
267
|
+
* the produced {@link SqlMigrationPlan.spaceId} so the runner keys
|
|
268
|
+
* the marker row by the right space. App-plan callers pass
|
|
269
|
+
* `APP_SPACE_ID`; per-extension callers pass the extension's space
|
|
270
|
+
* id.
|
|
271
|
+
*/
|
|
272
|
+
readonly spaceId: string;
|
|
236
273
|
/**
|
|
237
274
|
* The "from" contract (state the planner assumes the database starts at),
|
|
238
275
|
* or `null` for reconciliation flows that have no prior contract.
|
|
@@ -292,7 +329,7 @@ interface SqlMigrationRunnerExecuteOptions<TTargetDetails> {
|
|
|
292
329
|
*/
|
|
293
330
|
readonly frameworkComponents: ReadonlyArray<TargetBoundComponentDescriptor<'sql', string>>;
|
|
294
331
|
}
|
|
295
|
-
type SqlMigrationRunnerErrorCode = 'DESTINATION_CONTRACT_MISMATCH' | 'MARKER_ORIGIN_MISMATCH' | 'POLICY_VIOLATION' | 'PRECHECK_FAILED' | 'POSTCHECK_FAILED' | 'SCHEMA_VERIFY_FAILED' | 'FOREIGN_KEY_VIOLATION' | 'EXECUTION_FAILED';
|
|
332
|
+
type SqlMigrationRunnerErrorCode = 'DESTINATION_CONTRACT_MISMATCH' | 'LEGACY_MARKER_SHAPE' | 'MARKER_ORIGIN_MISMATCH' | 'POLICY_VIOLATION' | 'PRECHECK_FAILED' | 'POSTCHECK_FAILED' | 'SCHEMA_VERIFY_FAILED' | 'FOREIGN_KEY_VIOLATION' | 'EXECUTION_FAILED';
|
|
296
333
|
interface SqlMigrationRunnerFailure extends MigrationRunnerFailure {
|
|
297
334
|
readonly code: SqlMigrationRunnerErrorCode;
|
|
298
335
|
readonly meta?: AnyRecord;
|
|
@@ -309,6 +346,10 @@ interface SqlControlTargetDescriptor<TTargetId extends string, TTargetDetails> e
|
|
|
309
346
|
}
|
|
310
347
|
interface CreateSqlMigrationPlanOptions<TTargetDetails> {
|
|
311
348
|
readonly targetId: string;
|
|
349
|
+
/**
|
|
350
|
+
* Contract space this plan applies to. Mirrors {@link SqlMigrationPlan.spaceId}.
|
|
351
|
+
*/
|
|
352
|
+
readonly spaceId: string;
|
|
312
353
|
readonly origin?: SqlMigrationPlanContractInfo | null;
|
|
313
354
|
readonly destination: SqlMigrationPlanContractInfo;
|
|
314
355
|
readonly operations: readonly SqlMigrationPlanOperation<TTargetDetails>[];
|
|
@@ -322,4 +363,4 @@ interface CreateSqlMigrationPlanOptions<TTargetDetails> {
|
|
|
322
363
|
}
|
|
323
364
|
//#endregion
|
|
324
365
|
export { SqlPlannerResult as A, SqlMigrationRunnerResult as C, SqlPlannerConflictKind as D, SqlPlannerConflict as E, SchemaVerifyOptions as F, SqlControlFamilyInstance as I, StorageTypePlanResult as M, collectInitDependencies as N, SqlPlannerConflictLocation as O, isDatabaseDependencyProvider as P, SqlMigrationRunnerFailure as S, SqlPlanTargetDetails as T, SqlMigrationPlannerPlanOptions as _, CreateSqlMigrationPlanOptions as a, SqlMigrationRunnerExecuteCallbacks as b, SqlControlAdapterDescriptor as c, SqlMigrationPlan as d, SqlMigrationPlanContractInfo as f, SqlMigrationPlanner as g, SqlMigrationPlanOperationTarget as h, ComponentDatabaseDependency as i, SqlPlannerSuccessResult as j, SqlPlannerFailureResult as k, SqlControlExtensionDescriptor as l, SqlMigrationPlanOperationStep as m, CodecControlHooks as n, ExpandNativeTypeInput as o, SqlMigrationPlanOperation as p, ComponentDatabaseDependencies as r, ResolveIdentityValueInput as s, AnyRecord as t, SqlControlTargetDescriptor as u, SqlMigrationRunner as v, SqlMigrationRunnerSuccessValue as w, SqlMigrationRunnerExecuteOptions as x, SqlMigrationRunnerErrorCode as y };
|
|
325
|
-
//# sourceMappingURL=types-
|
|
366
|
+
//# sourceMappingURL=types-DFQkcr8A.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types-
|
|
1
|
+
{"version":3,"file":"types-DFQkcr8A.d.mts","names":[],"sources":["../src/core/control-instance.ts","../src/core/migrations/types.ts"],"sourcesContent":[],"mappings":";;;;;;;;;;;UAiKU,eAAA;;;;;AA3HsE;AA2HvD,KAOpB,uBAAA,GAA0B,GAAH,CAAA,MAAA,EAAe,eAAA,CAAZ;AAAG,UAExB,sBAAA,CAAsB;EACW,SAAA,gBAAA,EAAd,aAAc,CAAA,eAAA,CAAA;EAAd,SAAA,oBAAA,EACI,aADJ,CACkB,eADlB,CAAA;EACkB,SAAA,YAAA,EACtB,aADsB,CAAA,MAAA,CAAA;EAAd,SAAA,oBAAA,EAEA,uBAFA;;AAEA,UAGhB,mBAAA,CAHgB;EAAuB,SAAA,MAAA,EAIrC,qBAJqC,CAAA,KAAA,EAAA,MAAA,CAAA;EAGvC,SAAA,QAAA,EAAA,OAAmB;EACjB,SAAA,MAAA,EAAA,OAAA;EAGE,SAAA,OAAA,CAAA,EAAA,gBAAA;EAKyB;;;AAG9C;EACuC,SAAA,mBAAA,EAJP,aAIO,CAJO,8BAIP,CAAA,KAAA,EAAA,MAAA,CAAA,CAAA;;AAEX,UAHX,wBAAA,SACP,qBAEkB,CAAA,KAAA,EAFW,WAEX,CAAA,EADxB,iBACwB,CADN,WACM,CAAA,EAAxB,uBAAwB,CAAA,WAAA,CAAA,EACxB,uBADwB,EAExB,sBAFwB,CAAA;EAGe,gBAAA,CAAA,YAAA,EAAA,OAAA,CAAA,EAAA,QAAA;EAGtB,MAAA,CAAA,OAAA,EAAA;IAKP,SAAA,MAAA,EALO,qBAKP,CAAA,KAAA,EAAA,MAAA,CAAA;IAAR,SAAA,QAAA,EAAA,OAAA;IAEkB,SAAA,gBAAA,EAAA,MAAA;IAA8B,SAAA,YAAA,EAAA,MAAA;IAAR,SAAA,UAAA,CAAA,EAAA,MAAA;EAGzB,CAAA,CAAA,EALf,OAKe,CALP,oBAKO,CAAA;EAIP,YAAA,CAAA,OAAA,EAPU,mBAOV,CAAA,EAPgC,OAOhC,CAPwC,0BAOxC,CAAA;EAAR,IAAA,CAAA,OAAA,EAAA;IAGe,SAAA,MAAA,EAPA,qBAOA,CAAA,KAAA,EAAA,MAAA,CAAA;IAEP,SAAA,QAAA,EAAA,OAAA;IAAR,SAAA,YAAA,EAAA,MAAA;IAEuB,SAAA,UAAA,CAAA,EAAA,MAAA;EAAc,CAAA,CAAA,EAPrC,OAOqC,CAP7B,kBAO6B,CAAA;EAED,UAAA,CAAA,OAAA,EAAA;IAA2B,SAAA,MAAA,EANhD,qBAMgD,CAAA,KAAA,EAAA,MAAA,CAAA;IA/B3D,SAAA,QAAA,CAAA,EAAA,OAAA;EACN,CAAA,CAAA,EA0BE,OA1BF,CA0BU,WA1BV,CAAA;EACA,gBAAA,CAAA,QAAA,EA2ByB,WA3BzB,CAAA,EA2BuC,cA3BvC;EACA,kBAAA,CAAA,UAAA,EAAA,SA4BsC,sBA5BtC,EAAA,CAAA,EA4BiE,gBA5BjE;;;;KCvKQ,SAAA,GAAY,SAAS;UAEhB;;EDqIP,SAAA,KAAA,EAAA,MAAe;EAOpB,SAAA,OAAA,EAAA,SCzIwB,yBDyIc,CCzIY,cDyIrB,CAAA,EAAA;AAAA;AAGS,UCzI1B,6BDyI0B,CAAA,cAAA,CAAA,CAAA;EAAd,SAAA,IAAA,CAAA,EAAA,SCxIF,2BDwIE,CCxI0B,cDwI1B,CAAA,EAAA;;AACI,UCtIhB,0BAAA,CDsIgB;EACR,SAAA,oBAAA,CAAA,ECtIS,6BDsIT,CAAA,OAAA,CAAA;;AAC+B,iBCpIxC,4BAAA,CDoIwC,KAAA,EAAA,OAAA,CAAA,EAAA,KAAA,ICpIe,0BDoIf;AAGvC,iBCnID,uBAAA,CDmIoB,UAAA,EClItB,aDkIsB,CAAA,OAAA,CAAA,CAAA,EAAA,SCjIxB,2BDiIwB,CAAA,OAAA,CAAA,EAAA;AACjB,UCvHF,qBDuHE,CAAA,cAAA,CAAA,CAAA;EAGE,SAAA,UAAA,EAAA,SCzHW,yBDyHX,CCzHqC,cDyHrC,CAAA,EAAA;;;;AAQrB;AACuC,UC5HtB,qBAAA,CD4HsB;EACjB,SAAA,UAAA,EAAA,MAAA;EACM,SAAA,OAAA,CAAA,EAAA,MAAA;EAGe,SAAA,UAAA,CAAA,EC9HnB,MD8HmB,CAAA,MAAA,EAAA,OAAA,CAAA;;;;;;;;;AAiBrC,UCrIW,yBAAA,CDqIX;EAGe,SAAA,UAAA,EAAA,MAAA;EAEP,SAAA,OAAA,CAAA,EAAA,MAAA;EAAR,SAAA,UAAA,CAAA,ECvIkB,MDuIlB,CAAA,MAAA,EAAA,OAAA,CAAA;;AAEqC,UCtI1B,iBDsI0B,CAAA,iBAAA,OAAA,CAAA,CAAA;EAED,kBAAA,CAAA,EAAA,CAAA,OAAA,EAAA;IAA2B,SAAA,QAAA,EAAA,MAAA;IA/B3D,SAAA,YAAA,ECtGiB,mBDsGjB;IACN,SAAA,QAAA,ECtGmB,QDsGnB,CCtG4B,UDsG5B,CAAA;IACA,SAAA,MAAA,ECtGiB,WDsGjB;IACA,SAAA,UAAA,CAAA,EAAA,MAAA;IACA,SAAA,MAAA,ECtGiB,wBDsGjB;EAAsB,CAAA,EAAA,GCrGlB,qBDqGkB,CCrGI,cDqGJ,CAAA;;;2BClGC;IAtEf,SAAS,MAAA,EAuEA,WAvEG;IAEP,SAAA,UAAA,CAAA,EAAA,MAA2B;EAM3B,CAAA,EAAA,GAAA,SAiEA,WAjEA,EAAA;EAIA,eAAA,CAAA,EAAA,CAAA,OAAA,EAAA;IAID,SAAA,MAAA,EA2DK,qBA3DuB,CAA2B,KAAA,EAAA,MAAA,CAAA;IAIvD,SAAA,UAAA,CAAA,EAAuB,MAAA;EAatB,CAAA,EAAA,GA4CT,OA5CS,CA4CD,MA5CC,CAAA,MAAqB,EA4CP,mBA5CO,CAAA,CACoB;EAMzC;AAajB;AAMA;;;;;;;;EAW2B,gBAAA,CAAA,EAAA,CAAA,KAAA,EAkBE,qBAlBF,EAAA,GAAA,MAAA;EACN;;;;;;;;;EA8BJ,oBAAA,CAAA,EAAA,CAAA,KAAA,EAHgB,yBAGa,EAAA,GAAA,MAAA,GAAA,IAAA,GAAA,SAAA;;AAEZ,UAFjB,6BAEiB,CAAA,kBAAA,MAAA,CAAA,SADxB,0BACwB,CAAA,KAAA,EADU,SACV,CAAA,CAAA;EACe,SAAA,oBAAA,CAAA,EADf,6BACe,CAAA,OAAA,CAAA;EAAd,SAAA,eAAA,CAAA,EAAA,GAAA,GAAA,aAAA,CAAc,sBAAd,CAAA;EAce;;;;;AAGlD;;;;;;AAKA;AAsBA;EAKiB,SAAA,aAAA,CAAA,EAnCU,aAmCqB,CAnCP,QAmCO,CAnCE,UAmCF,CAAA,CAE3B;AAGrB;AAEmD,UAvClC,2BAuCkC,CAAA,kBAAA,MAAA,CAAA,SAtCzC,wBAsCyC,CAAA,KAAA,EAtCT,SAsCS,CAAA,CAAA;EAAhC,SAAA,eAAA,CAAA,EAAA,GAAA,GArCgB,aAqChB,CArC8B,sBAqC9B,CAAA;;AAEU,UApCZ,6BAAA,CAoCY;EACE,SAAA,WAAA,EAAA,MAAA;EACb,SAAA,GAAA,EAAA,MAAA;EANiD;;AASnE;AAKA;;;;;EAmCkB,SAAA,MAAA,CAAA,EAAA,SAAA,OAAA,EAAA;EAnCwC,SAAA,IAAA,CAAA,EAlCxC,SAkCwC;;AAsC1D;AAQA;AAQA;;;;;AAAoE,UA9EnD,oBAAA,CA8EmD;EAMnD,SAAA,MAAA,EAAA,MAAA;EACF,SAAA,IAAA,EAAA,MAAA;;AAEE,UAlFA,+BAkFA,CAAA,cAAA,CAAA,CAAA;EAFP,SAAA,EAAA,EAAA,MAAA;EAAI,SAAA,OAAA,CAAA,EA9EO,cA8EP;AAKd;AAAsD,UAhFrC,yBAgFqC,CAAA,cAAA,CAAA,SAhFa,sBAgFb,CAAA;EAEvB,SAAA,OAAA,CAAA,EAAA,MAAA;EAFkB,SAAA,MAAA,EA9E9B,+BA8E8B,CA9EE,cA8EF,CAAA;EAAI,SAAA,QAAA,EAAA,SA7EvB,6BA6EuB,EAAA;EAKzC,SAAA,OAAA,EAAA,SAjFiB,6BAiFD,EAAA;EACA,SAAA,SAAA,EAAA,SAjFG,6BAiFH,EAAA;EAAxB,SAAA,IAAA,CAAA,EAhFc,SAgFd;;AACuB,UA9EV,4BAAA,CA8EU;EAEV,SAAA,WAAA,EAAA,MAAA;EACa,SAAA,WAAA,CAAA,EAAA,MAAA;;AACX,UA7EF,gBA6EE,CAAA,cAAA,CAAA,SA7EuC,aA6EvC,CAAA;EACA;;;;;;AAkCnB;;;;;AAIA;;;EAE4D,SAAA,OAAA,EAAA,MAAA;EAA1B;;AAGlC;;EACiB,SAAA,MAAA,CAAA,EAtGG,4BAsGH,GAAA,IAAA;EACE;;;EAUA,SAAA,WAAA,EA7GK,4BA6GL;EAGuC,SAAA,UAAA,EAAA,SA/G1B,yBA+G0B,CA/GA,cA+GA,CAAA,EAAA;EAAnC;;;;;;AAevB;AAWA;EACiB,SAAA,kBAAA,EAAA,SAAA,MAAA,EAAA;EACC,SAAA,IAAA,CAAA,EAjIA,SAiIA;;AAFuD,KA5H7D,sBAAA,GA4H6D,cAAA,GAAA,qBAAA,GAAA,mBAAA,GAAA,oBAAA,GAAA,uBAAA,GAAA,sBAAA;AAKxD,UAzHA,0BAAA,CAyH+B;EAEpC,SAAA,KAAA,CAAA,EAAA,MAAA;EACV,SAAA,MAAA,CAAA,EAAA,MAAA;EACA,SAAA,KAAA,CAAA,EAAA,MAAA;EAFqC,SAAA,UAAA,CAAA,EAAA,MAAA;EAAM,SAAA,IAAA,CAAA,EAAA,MAAA;AAK7C;AAE8C,UA1H7B,kBAAA,SAA2B,wBA0HE,CAAA;EAAjC,SAAA,IAAA,EAzHI,sBAyHJ;EACA,SAAA,QAAA,CAAA,EAzHS,0BAyHT;EAAR,SAAA,IAAA,CAAA,EAxHa,SAwHb;;AAGY,UAxHA,uBAwH0B,CAAA,cAAA,CAAA,SAvHjC,IAuHiC,CAvH5B,6BAuH4B,EAAA,MAAA,CAAA,CAAA;EACC,SAAA,IAAA,EAAA,SAAA;EAAW,SAAA,IAAA,EAtHtC,gBAsHsC,CAtHrB,cAsHqB,CAAA;;AACpB,UApHlB,uBAAA,SAAgC,IAoHd,CApHmB,6BAoHnB,EAAA,WAAA,CAAA,CAAA;EACX,SAAA,IAAA,EAAA,SAAA;EAA+C,SAAA,SAAA,EAAA,SAnHxC,kBAmHwC,EAAA;;AAChD,KAjHX,gBAiHW,CAAA,cAAA,CAAA,GAhHnB,uBAgHmB,CAhHK,cAgHL,CAAA,GA/GnB,uBA+GmB;AAA8C,UA7GpD,8BAAA,CA6GoD;EAAnB,SAAA,QAAA,EA5G7B,QA4G6B,CA5GpB,UA4GoB,CAAA;EAHxC,SAAA,MAAA,EAxGS,WAwGT;EAA0B,SAAA,MAAA,EAvGjB,wBAuGiB;EAMnB,SAAA,UAAA,CAAA,EAAA,MAAA;EAMG;;;;;;;;;;;;;;;;;;;;;;;yBA1FK,SAAS;;;;;;gCAMF,cAAc;;UAG7B;gBACD,iCAAiC,iBAAiB;;UAGjD;+BACc,0BAA0B;kCACvB,0BAA0B;;UAG3C;iBACA,iBAAiB;mBACf;;;;;gCAKa,SAAS;;;;;mBAKtB;;;uBAGI,mCAAmC;qBACrC;;;;;6BAKQ;;;;;;gCAMG,cAAc;;KAGlC,2BAAA;UAWK,yBAAA,SAAkC;iBAClC;kBACC;;UAGD,8BAAA,SAAuC;KAE5C,wBAAA,GAA2B,OACrC,gCACA;UAGe;mBAEJ,iCAAiC,kBACzC,QAAQ;;UAGI,6EACP,kCAAkC,WAAW;mCACpB,cAAc;wBACzB,2BAA2B,oBAAoB;uBAChD,2BAA2B,mBAAmB;;UAGpD;;;;;;oBAMG;wBACI;gCACQ,0BAA0B;;;;;;;kBAOxC"}
|