@elaraai/e3-core 0.0.2-beta.4 → 0.0.2-beta.40
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 +25 -22
- package/dist/src/dataflow/api-compat.d.ts +90 -0
- package/dist/src/dataflow/api-compat.d.ts.map +1 -0
- package/dist/src/dataflow/api-compat.js +139 -0
- package/dist/src/dataflow/api-compat.js.map +1 -0
- package/dist/src/dataflow/index.d.ts +18 -0
- package/dist/src/dataflow/index.d.ts.map +1 -0
- package/dist/src/dataflow/index.js +23 -0
- package/dist/src/dataflow/index.js.map +1 -0
- package/dist/src/dataflow/orchestrator/LocalOrchestrator.d.ts +76 -0
- package/dist/src/dataflow/orchestrator/LocalOrchestrator.d.ts.map +1 -0
- package/dist/src/dataflow/orchestrator/LocalOrchestrator.js +695 -0
- package/dist/src/dataflow/orchestrator/LocalOrchestrator.js.map +1 -0
- package/dist/src/dataflow/orchestrator/index.d.ts +12 -0
- package/dist/src/dataflow/orchestrator/index.d.ts.map +1 -0
- package/dist/src/dataflow/orchestrator/index.js +12 -0
- package/dist/src/dataflow/orchestrator/index.js.map +1 -0
- package/dist/src/dataflow/orchestrator/interfaces.d.ts +163 -0
- package/dist/src/dataflow/orchestrator/interfaces.d.ts.map +1 -0
- package/dist/src/dataflow/orchestrator/interfaces.js +52 -0
- package/dist/src/dataflow/orchestrator/interfaces.js.map +1 -0
- package/dist/src/dataflow/state-store/FileStateStore.d.ts +67 -0
- package/dist/src/dataflow/state-store/FileStateStore.d.ts.map +1 -0
- package/dist/src/dataflow/state-store/FileStateStore.js +300 -0
- package/dist/src/dataflow/state-store/FileStateStore.js.map +1 -0
- package/dist/src/dataflow/state-store/InMemoryStateStore.d.ts +42 -0
- package/dist/src/dataflow/state-store/InMemoryStateStore.d.ts.map +1 -0
- package/dist/src/dataflow/state-store/InMemoryStateStore.js +229 -0
- package/dist/src/dataflow/state-store/InMemoryStateStore.js.map +1 -0
- package/dist/src/dataflow/state-store/index.d.ts +13 -0
- package/dist/src/dataflow/state-store/index.d.ts.map +1 -0
- package/dist/src/dataflow/state-store/index.js +13 -0
- package/dist/src/dataflow/state-store/index.js.map +1 -0
- package/dist/src/dataflow/state-store/interfaces.d.ts +159 -0
- package/dist/src/dataflow/state-store/interfaces.d.ts.map +1 -0
- package/dist/src/dataflow/state-store/interfaces.js +6 -0
- package/dist/src/dataflow/state-store/interfaces.js.map +1 -0
- package/dist/src/dataflow/steps.d.ts +222 -0
- package/dist/src/dataflow/steps.d.ts.map +1 -0
- package/dist/src/dataflow/steps.js +707 -0
- package/dist/src/dataflow/steps.js.map +1 -0
- package/dist/src/dataflow/types.d.ts +127 -0
- package/dist/src/dataflow/types.d.ts.map +1 -0
- package/dist/src/dataflow/types.js +7 -0
- package/dist/src/dataflow/types.js.map +1 -0
- package/dist/src/dataflow.d.ts +113 -38
- package/dist/src/dataflow.d.ts.map +1 -1
- package/dist/src/dataflow.js +269 -416
- package/dist/src/dataflow.js.map +1 -1
- package/dist/src/dataset-refs.d.ts +124 -0
- package/dist/src/dataset-refs.d.ts.map +1 -0
- package/dist/src/dataset-refs.js +319 -0
- package/dist/src/dataset-refs.js.map +1 -0
- package/dist/src/errors.d.ts +39 -9
- package/dist/src/errors.d.ts.map +1 -1
- package/dist/src/errors.js +51 -8
- package/dist/src/errors.js.map +1 -1
- package/dist/src/execution/LocalTaskRunner.d.ts +73 -0
- package/dist/src/execution/LocalTaskRunner.d.ts.map +1 -0
- package/dist/src/execution/LocalTaskRunner.js +399 -0
- package/dist/src/execution/LocalTaskRunner.js.map +1 -0
- package/dist/src/execution/MockTaskRunner.d.ts +49 -0
- package/dist/src/execution/MockTaskRunner.d.ts.map +1 -0
- package/dist/src/execution/MockTaskRunner.js +54 -0
- package/dist/src/execution/MockTaskRunner.js.map +1 -0
- package/dist/src/execution/index.d.ts +16 -0
- package/dist/src/execution/index.d.ts.map +1 -0
- package/dist/src/execution/index.js +8 -0
- package/dist/src/execution/index.js.map +1 -0
- package/dist/src/execution/interfaces.d.ts +246 -0
- package/dist/src/execution/interfaces.d.ts.map +1 -0
- package/dist/src/execution/interfaces.js +6 -0
- package/dist/src/execution/interfaces.js.map +1 -0
- package/dist/src/execution/processHelpers.d.ts +20 -0
- package/dist/src/execution/processHelpers.d.ts.map +1 -0
- package/dist/src/execution/processHelpers.js +62 -0
- package/dist/src/execution/processHelpers.js.map +1 -0
- package/dist/src/executions.d.ts +71 -104
- package/dist/src/executions.d.ts.map +1 -1
- package/dist/src/executions.js +110 -476
- package/dist/src/executions.js.map +1 -1
- package/dist/src/index.d.ts +19 -9
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +48 -18
- package/dist/src/index.js.map +1 -1
- package/dist/src/objects.d.ts +8 -51
- package/dist/src/objects.d.ts.map +1 -1
- package/dist/src/objects.js +13 -230
- package/dist/src/objects.js.map +1 -1
- package/dist/src/packages.d.ts +22 -14
- package/dist/src/packages.d.ts.map +1 -1
- package/dist/src/packages.js +134 -88
- package/dist/src/packages.js.map +1 -1
- package/dist/src/storage/in-memory/InMemoryRepoStore.d.ts +35 -0
- package/dist/src/storage/in-memory/InMemoryRepoStore.d.ts.map +1 -0
- package/dist/src/storage/in-memory/InMemoryRepoStore.js +107 -0
- package/dist/src/storage/in-memory/InMemoryRepoStore.js.map +1 -0
- package/dist/src/storage/in-memory/InMemoryStorage.d.ts +139 -0
- package/dist/src/storage/in-memory/InMemoryStorage.d.ts.map +1 -0
- package/dist/src/storage/in-memory/InMemoryStorage.js +439 -0
- package/dist/src/storage/in-memory/InMemoryStorage.js.map +1 -0
- package/dist/src/storage/in-memory/index.d.ts +12 -0
- package/dist/src/storage/in-memory/index.d.ts.map +1 -0
- package/dist/src/storage/in-memory/index.js +12 -0
- package/dist/src/storage/in-memory/index.js.map +1 -0
- package/dist/src/storage/index.d.ts +18 -0
- package/dist/src/storage/index.d.ts.map +1 -0
- package/dist/src/storage/index.js +10 -0
- package/dist/src/storage/index.js.map +1 -0
- package/dist/src/storage/interfaces.d.ts +581 -0
- package/dist/src/storage/interfaces.d.ts.map +1 -0
- package/dist/src/storage/interfaces.js +6 -0
- package/dist/src/storage/interfaces.js.map +1 -0
- package/dist/src/storage/local/LocalBackend.d.ts +56 -0
- package/dist/src/storage/local/LocalBackend.d.ts.map +1 -0
- package/dist/src/storage/local/LocalBackend.js +145 -0
- package/dist/src/storage/local/LocalBackend.js.map +1 -0
- package/dist/src/storage/local/LocalDatasetRefStore.d.ts +22 -0
- package/dist/src/storage/local/LocalDatasetRefStore.d.ts.map +1 -0
- package/dist/src/storage/local/LocalDatasetRefStore.js +118 -0
- package/dist/src/storage/local/LocalDatasetRefStore.js.map +1 -0
- package/dist/src/storage/local/LocalLockService.d.ts +111 -0
- package/dist/src/storage/local/LocalLockService.d.ts.map +1 -0
- package/dist/src/storage/local/LocalLockService.js +355 -0
- package/dist/src/storage/local/LocalLockService.js.map +1 -0
- package/dist/src/storage/local/LocalLogStore.d.ts +23 -0
- package/dist/src/storage/local/LocalLogStore.d.ts.map +1 -0
- package/dist/src/storage/local/LocalLogStore.js +66 -0
- package/dist/src/storage/local/LocalLogStore.js.map +1 -0
- package/dist/src/storage/local/LocalObjectStore.d.ts +55 -0
- package/dist/src/storage/local/LocalObjectStore.d.ts.map +1 -0
- package/dist/src/storage/local/LocalObjectStore.js +300 -0
- package/dist/src/storage/local/LocalObjectStore.js.map +1 -0
- package/dist/src/storage/local/LocalRefStore.d.ts +50 -0
- package/dist/src/storage/local/LocalRefStore.d.ts.map +1 -0
- package/dist/src/storage/local/LocalRefStore.js +337 -0
- package/dist/src/storage/local/LocalRefStore.js.map +1 -0
- package/dist/src/storage/local/LocalRepoStore.d.ts +55 -0
- package/dist/src/storage/local/LocalRepoStore.d.ts.map +1 -0
- package/dist/src/storage/local/LocalRepoStore.js +365 -0
- package/dist/src/storage/local/LocalRepoStore.js.map +1 -0
- package/dist/src/storage/local/gc.d.ts +92 -0
- package/dist/src/storage/local/gc.d.ts.map +1 -0
- package/dist/src/storage/local/gc.js +377 -0
- package/dist/src/storage/local/gc.js.map +1 -0
- package/dist/src/storage/local/index.d.ts +18 -0
- package/dist/src/storage/local/index.d.ts.map +1 -0
- package/dist/src/storage/local/index.js +18 -0
- package/dist/src/storage/local/index.js.map +1 -0
- package/dist/src/storage/local/localHelpers.d.ts +25 -0
- package/dist/src/storage/local/localHelpers.d.ts.map +1 -0
- package/dist/src/storage/local/localHelpers.js +69 -0
- package/dist/src/storage/local/localHelpers.js.map +1 -0
- package/dist/src/{repository.d.ts → storage/local/repository.d.ts} +8 -4
- package/dist/src/storage/local/repository.d.ts.map +1 -0
- package/dist/src/{repository.js → storage/local/repository.js} +31 -29
- package/dist/src/storage/local/repository.js.map +1 -0
- package/dist/src/tasks.d.ts +16 -10
- package/dist/src/tasks.d.ts.map +1 -1
- package/dist/src/tasks.js +35 -41
- package/dist/src/tasks.js.map +1 -1
- package/dist/src/test-helpers.d.ts +5 -4
- package/dist/src/test-helpers.d.ts.map +1 -1
- package/dist/src/test-helpers.js +9 -21
- package/dist/src/test-helpers.js.map +1 -1
- package/dist/src/transfer/InMemoryTransferBackend.d.ts +66 -0
- package/dist/src/transfer/InMemoryTransferBackend.d.ts.map +1 -0
- package/dist/src/transfer/InMemoryTransferBackend.js +166 -0
- package/dist/src/transfer/InMemoryTransferBackend.js.map +1 -0
- package/dist/src/transfer/index.d.ts +8 -0
- package/dist/src/transfer/index.d.ts.map +1 -0
- package/dist/src/transfer/index.js +9 -0
- package/dist/src/transfer/index.js.map +1 -0
- package/dist/src/transfer/interfaces.d.ts +103 -0
- package/dist/src/transfer/interfaces.d.ts.map +1 -0
- package/dist/src/transfer/interfaces.js +6 -0
- package/dist/src/transfer/interfaces.js.map +1 -0
- package/dist/src/transfer/types.d.ts +79 -0
- package/dist/src/transfer/types.d.ts.map +1 -0
- package/dist/src/transfer/types.js +58 -0
- package/dist/src/transfer/types.js.map +1 -0
- package/dist/src/trees.d.ts +147 -59
- package/dist/src/trees.d.ts.map +1 -1
- package/dist/src/trees.js +372 -419
- package/dist/src/trees.js.map +1 -1
- package/dist/src/uuid.d.ts +26 -0
- package/dist/src/uuid.d.ts.map +1 -0
- package/dist/src/uuid.js +80 -0
- package/dist/src/uuid.js.map +1 -0
- package/dist/src/workspaceStatus.d.ts +6 -4
- package/dist/src/workspaceStatus.d.ts.map +1 -1
- package/dist/src/workspaceStatus.js +43 -49
- package/dist/src/workspaceStatus.js.map +1 -1
- package/dist/src/workspaces.d.ts +35 -47
- package/dist/src/workspaces.d.ts.map +1 -1
- package/dist/src/workspaces.js +194 -156
- package/dist/src/workspaces.js.map +1 -1
- package/package.json +4 -4
- package/dist/src/gc.d.ts +0 -54
- package/dist/src/gc.d.ts.map +0 -1
- package/dist/src/gc.js +0 -233
- package/dist/src/gc.js.map +0 -1
- package/dist/src/repository.d.ts.map +0 -1
- package/dist/src/repository.js.map +0 -1
- package/dist/src/workspaceLock.d.ts +0 -67
- package/dist/src/workspaceLock.d.ts.map +0 -1
- package/dist/src/workspaceLock.js +0 -217
- package/dist/src/workspaceLock.js.map +0 -1
package/dist/src/workspaces.d.ts
CHANGED
|
@@ -3,18 +3,27 @@
|
|
|
3
3
|
* Licensed under BSL 1.1. See LICENSE for details.
|
|
4
4
|
*/
|
|
5
5
|
import type { WorkspaceState } from '@elaraai/e3-types';
|
|
6
|
-
import {
|
|
6
|
+
import type { StorageBackend, LockHandle } from './storage/interfaces.js';
|
|
7
|
+
/**
|
|
8
|
+
* List workspace names.
|
|
9
|
+
*
|
|
10
|
+
* @param storage - Storage backend
|
|
11
|
+
* @param repo - Repository identifier
|
|
12
|
+
* @returns Array of workspace names
|
|
13
|
+
*/
|
|
14
|
+
export declare function workspaceList(storage: StorageBackend, repo: string): Promise<string[]>;
|
|
7
15
|
/**
|
|
8
16
|
* Create an empty workspace.
|
|
9
17
|
*
|
|
10
18
|
* Creates an undeployed workspace (state file with null package info).
|
|
11
19
|
* Use workspaceDeploy to deploy a package.
|
|
12
20
|
*
|
|
13
|
-
* @param
|
|
21
|
+
* @param storage - Storage backend
|
|
22
|
+
* @param repo - Repository identifier
|
|
14
23
|
* @param name - Workspace name
|
|
15
24
|
* @throws {WorkspaceExistsError} If workspace already exists
|
|
16
25
|
*/
|
|
17
|
-
export declare function workspaceCreate(
|
|
26
|
+
export declare function workspaceCreate(storage: StorageBackend, repo: string, name: string): Promise<void>;
|
|
18
27
|
/**
|
|
19
28
|
* Options for workspace removal.
|
|
20
29
|
*/
|
|
@@ -24,7 +33,7 @@ export interface WorkspaceRemoveOptions {
|
|
|
24
33
|
* for releasing the lock after the operation. If not provided, workspaceRemove
|
|
25
34
|
* will acquire and release a lock internally.
|
|
26
35
|
*/
|
|
27
|
-
lock?:
|
|
36
|
+
lock?: LockHandle;
|
|
28
37
|
}
|
|
29
38
|
/**
|
|
30
39
|
* Remove a workspace.
|
|
@@ -34,62 +43,38 @@ export interface WorkspaceRemoveOptions {
|
|
|
34
43
|
* Acquires a workspace lock to prevent removing a workspace while a dataflow
|
|
35
44
|
* is running. Throws WorkspaceLockError if the workspace is currently locked.
|
|
36
45
|
*
|
|
37
|
-
* @param
|
|
46
|
+
* @param storage - Storage backend
|
|
47
|
+
* @param repo - Repository identifier
|
|
38
48
|
* @param name - Workspace name
|
|
39
49
|
* @param options - Optional settings including external lock
|
|
40
50
|
* @throws {WorkspaceNotFoundError} If workspace doesn't exist
|
|
41
51
|
* @throws {WorkspaceLockError} If workspace is locked by another process
|
|
42
52
|
*/
|
|
43
|
-
export declare function workspaceRemove(
|
|
44
|
-
/**
|
|
45
|
-
* List workspace names.
|
|
46
|
-
*
|
|
47
|
-
* @param repoPath - Path to .e3 repository
|
|
48
|
-
* @returns Array of workspace names
|
|
49
|
-
*/
|
|
50
|
-
export declare function workspaceList(repoPath: string): Promise<string[]>;
|
|
53
|
+
export declare function workspaceRemove(storage: StorageBackend, repo: string, name: string, options?: WorkspaceRemoveOptions): Promise<void>;
|
|
51
54
|
/**
|
|
52
55
|
* Get the full state for a workspace.
|
|
53
56
|
*
|
|
54
|
-
* @param
|
|
57
|
+
* @param storage - Storage backend
|
|
58
|
+
* @param repo - Repository identifier
|
|
55
59
|
* @param name - Workspace name
|
|
56
60
|
* @returns Workspace state, or null if workspace doesn't exist or is not deployed
|
|
57
61
|
*/
|
|
58
|
-
export declare function workspaceGetState(
|
|
62
|
+
export declare function workspaceGetState(storage: StorageBackend, repo: string, name: string): Promise<WorkspaceState | null>;
|
|
59
63
|
/**
|
|
60
64
|
* Get the deployed package for a workspace.
|
|
61
65
|
*
|
|
62
|
-
* @param
|
|
66
|
+
* @param storage - Storage backend
|
|
67
|
+
* @param repo - Repository identifier
|
|
63
68
|
* @param name - Workspace name
|
|
64
69
|
* @returns Package name, version, and hash
|
|
65
70
|
* @throws {WorkspaceNotFoundError} If workspace doesn't exist
|
|
66
71
|
* @throws {WorkspaceNotDeployedError} If workspace exists but has no package deployed
|
|
67
72
|
*/
|
|
68
|
-
export declare function workspaceGetPackage(
|
|
73
|
+
export declare function workspaceGetPackage(storage: StorageBackend, repo: string, name: string): Promise<{
|
|
69
74
|
name: string;
|
|
70
75
|
version: string;
|
|
71
76
|
hash: string;
|
|
72
77
|
}>;
|
|
73
|
-
/**
|
|
74
|
-
* Get the root tree hash for a workspace.
|
|
75
|
-
*
|
|
76
|
-
* @param repoPath - Path to .e3 repository
|
|
77
|
-
* @param name - Workspace name
|
|
78
|
-
* @returns Root tree object hash
|
|
79
|
-
* @throws {WorkspaceNotFoundError} If workspace doesn't exist
|
|
80
|
-
* @throws {WorkspaceNotDeployedError} If workspace exists but has no package deployed
|
|
81
|
-
*/
|
|
82
|
-
export declare function workspaceGetRoot(repoPath: string, name: string): Promise<string>;
|
|
83
|
-
/**
|
|
84
|
-
* Atomically update the root tree hash for a workspace.
|
|
85
|
-
*
|
|
86
|
-
* @param repoPath - Path to .e3 repository
|
|
87
|
-
* @param name - Workspace name
|
|
88
|
-
* @param hash - New root tree object hash
|
|
89
|
-
* @throws {WorkspaceNotFoundError} If workspace doesn't exist
|
|
90
|
-
* @throws {WorkspaceNotDeployedError} If workspace exists but has no package deployed
|
|
91
|
-
*/
|
|
92
|
-
export declare function workspaceSetRoot(repoPath: string, name: string, hash: string): Promise<void>;
|
|
93
78
|
/**
|
|
94
79
|
* Options for workspace deployment.
|
|
95
80
|
*/
|
|
@@ -99,26 +84,28 @@ export interface WorkspaceDeployOptions {
|
|
|
99
84
|
* for releasing the lock after the operation. If not provided, workspaceDeploy
|
|
100
85
|
* will acquire and release a lock internally.
|
|
101
86
|
*/
|
|
102
|
-
lock?:
|
|
87
|
+
lock?: LockHandle;
|
|
103
88
|
}
|
|
104
89
|
/**
|
|
105
90
|
* Deploy a package to a workspace.
|
|
106
91
|
*
|
|
107
92
|
* Creates the workspace if it doesn't exist. Writes state file atomically
|
|
108
|
-
* containing deployment info
|
|
93
|
+
* containing deployment info. Initializes per-dataset ref files from the
|
|
94
|
+
* package's data/ directory.
|
|
109
95
|
*
|
|
110
96
|
* Acquires a workspace lock to prevent conflicts with running dataflows
|
|
111
97
|
* or concurrent deploys. Throws WorkspaceLockError if the workspace is
|
|
112
98
|
* currently locked by another process.
|
|
113
99
|
*
|
|
114
|
-
* @param
|
|
100
|
+
* @param storage - Storage backend
|
|
101
|
+
* @param repo - Repository identifier
|
|
115
102
|
* @param name - Workspace name
|
|
116
103
|
* @param pkgName - Package name
|
|
117
104
|
* @param pkgVersion - Package version
|
|
118
105
|
* @param options - Optional settings including external lock
|
|
119
106
|
* @throws {WorkspaceLockError} If workspace is locked by another process
|
|
120
107
|
*/
|
|
121
|
-
export declare function workspaceDeploy(
|
|
108
|
+
export declare function workspaceDeploy(storage: StorageBackend, repo: string, name: string, pkgName: string, pkgVersion: string, options?: WorkspaceDeployOptions): Promise<void>;
|
|
122
109
|
/**
|
|
123
110
|
* Result of exporting a workspace
|
|
124
111
|
*/
|
|
@@ -133,18 +120,19 @@ export interface WorkspaceExportResult {
|
|
|
133
120
|
*
|
|
134
121
|
* 1. Read workspace state
|
|
135
122
|
* 2. Read deployed package structure using stored packageHash
|
|
136
|
-
* 3. Create new PackageObject with
|
|
137
|
-
* 4. Collect all referenced objects
|
|
138
|
-
* 5. Write to .zip
|
|
123
|
+
* 3. Create new PackageObject with current structure
|
|
124
|
+
* 4. Collect all referenced objects from dataset refs
|
|
125
|
+
* 5. Write per-dataset refs and objects to .zip
|
|
139
126
|
*
|
|
140
|
-
* @param
|
|
127
|
+
* @param storage - Storage backend
|
|
128
|
+
* @param repo - Repository identifier
|
|
141
129
|
* @param name - Workspace name
|
|
142
130
|
* @param zipPath - Path to write the .zip file
|
|
143
131
|
* @param outputName - Package name (default: deployed package name)
|
|
144
|
-
* @param version - Package version (default: <pkgVersion>-<
|
|
132
|
+
* @param version - Package version (default: <pkgVersion>-<short hash>)
|
|
145
133
|
* @returns Export result with package info
|
|
146
134
|
* @throws {WorkspaceNotFoundError} If workspace doesn't exist
|
|
147
135
|
* @throws {WorkspaceNotDeployedError} If workspace exists but has no package deployed
|
|
148
136
|
*/
|
|
149
|
-
export declare function workspaceExport(
|
|
137
|
+
export declare function workspaceExport(storage: StorageBackend, repo: string, name: string, zipPath: string, outputName?: string, version?: string): Promise<WorkspaceExportResult>;
|
|
150
138
|
//# sourceMappingURL=workspaces.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"workspaces.d.ts","sourceRoot":"","sources":["../../src/workspaces.ts"],"names":[],"mappings":"AAAA;;;GAGG;
|
|
1
|
+
{"version":3,"file":"workspaces.d.ts","sourceRoot":"","sources":["../../src/workspaces.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAqBH,OAAO,KAAK,EAAiB,cAAc,EAA0B,MAAM,mBAAmB,CAAC;AAS/F,OAAO,KAAK,EAAE,cAAc,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAC;AAE1E;;;;;;GAMG;AACH,wBAAsB,aAAa,CAAC,OAAO,EAAE,cAAc,EAAE,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,CAE5F;AA0DD;;;;;;;;;;GAUG;AACH,wBAAsB,eAAe,CACnC,OAAO,EAAE,cAAc,EACvB,IAAI,EAAE,MAAM,EACZ,IAAI,EAAE,MAAM,GACX,OAAO,CAAC,IAAI,CAAC,CASf;AAED;;GAEG;AACH,MAAM,WAAW,sBAAsB;IACrC;;;;OAIG;IACH,IAAI,CAAC,EAAE,UAAU,CAAC;CACnB;AAED;;;;;;;;;;;;;;GAcG;AACH,wBAAsB,eAAe,CACnC,OAAO,EAAE,cAAc,EACvB,IAAI,EAAE,MAAM,EACZ,IAAI,EAAE,MAAM,EACZ,OAAO,GAAE,sBAA2B,GACnC,OAAO,CAAC,IAAI,CAAC,CA+Bf;AAED;;;;;;;GAOG;AACH,wBAAsB,iBAAiB,CACrC,OAAO,EAAE,cAAc,EACvB,IAAI,EAAE,MAAM,EACZ,IAAI,EAAE,MAAM,GACX,OAAO,CAAC,cAAc,GAAG,IAAI,CAAC,CAMhC;AAED;;;;;;;;;GASG;AACH,wBAAsB,mBAAmB,CACvC,OAAO,EAAE,cAAc,EACvB,IAAI,EAAE,MAAM,EACZ,IAAI,EAAE,MAAM,GACX,OAAO,CAAC;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,OAAO,EAAE,MAAM,CAAC;IAAC,IAAI,EAAE,MAAM,CAAA;CAAE,CAAC,CAO1D;AAED;;GAEG;AACH,MAAM,WAAW,sBAAsB;IACrC;;;;OAIG;IACH,IAAI,CAAC,EAAE,UAAU,CAAC;CACnB;AAED;;;;;;;;;;;;;;;;;;GAkBG;AACH,wBAAsB,eAAe,CACnC,OAAO,EAAE,cAAc,EACvB,IAAI,EAAE,MAAM,EACZ,IAAI,EAAE,MAAM,EACZ,OAAO,EAAE,MAAM,EACf,UAAU,EAAE,MAAM,EAClB,OAAO,GAAE,sBAA2B,GACnC,OAAO,CAAC,IAAI,CAAC,CAyCf;AAED;;GAEG;AACH,MAAM,WAAW,qBAAqB;IACpC,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;CACjB;AAOD;;;;;;;;;;;;;;;;;;GAkBG;AACH,wBAAsB,eAAe,CACnC,OAAO,EAAE,cAAc,EACvB,IAAI,EAAE,MAAM,EACZ,IAAI,EAAE,MAAM,EACZ,OAAO,EAAE,MAAM,EACf,UAAU,CAAC,EAAE,MAAM,EACnB,OAAO,CAAC,EAAE,MAAM,GACf,OAAO,CAAC,qBAAqB,CAAC,CAmMhC"}
|