gitx.do 0.0.3 → 0.1.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 +319 -92
- package/dist/cli/commands/add.d.ts +176 -0
- package/dist/cli/commands/add.d.ts.map +1 -0
- package/dist/cli/commands/add.js +979 -0
- package/dist/cli/commands/add.js.map +1 -0
- package/dist/cli/commands/blame.d.ts +1 -1
- package/dist/cli/commands/blame.d.ts.map +1 -1
- package/dist/cli/commands/blame.js +1 -1
- package/dist/cli/commands/blame.js.map +1 -1
- package/dist/cli/commands/branch.d.ts +1 -1
- package/dist/cli/commands/branch.d.ts.map +1 -1
- package/dist/cli/commands/branch.js +2 -2
- package/dist/cli/commands/branch.js.map +1 -1
- package/dist/cli/commands/checkout.d.ts +73 -0
- package/dist/cli/commands/checkout.d.ts.map +1 -0
- package/dist/cli/commands/checkout.js +725 -0
- package/dist/cli/commands/checkout.js.map +1 -0
- package/dist/cli/commands/commit.d.ts.map +1 -1
- package/dist/cli/commands/commit.js +22 -2
- package/dist/cli/commands/commit.js.map +1 -1
- package/dist/cli/commands/diff.d.ts +4 -4
- package/dist/cli/commands/diff.d.ts.map +1 -1
- package/dist/cli/commands/diff.js +9 -8
- package/dist/cli/commands/diff.js.map +1 -1
- package/dist/cli/commands/log.d.ts +1 -1
- package/dist/cli/commands/log.d.ts.map +1 -1
- package/dist/cli/commands/log.js +1 -1
- package/dist/cli/commands/log.js.map +1 -1
- package/dist/cli/commands/merge.d.ts +106 -0
- package/dist/cli/commands/merge.d.ts.map +1 -0
- package/dist/cli/commands/merge.js +852 -0
- package/dist/cli/commands/merge.js.map +1 -0
- package/dist/cli/commands/review.d.ts +1 -1
- package/dist/cli/commands/review.d.ts.map +1 -1
- package/dist/cli/commands/review.js +26 -1
- package/dist/cli/commands/review.js.map +1 -1
- package/dist/cli/commands/stash.d.ts +157 -0
- package/dist/cli/commands/stash.d.ts.map +1 -0
- package/dist/cli/commands/stash.js +655 -0
- package/dist/cli/commands/stash.js.map +1 -0
- package/dist/cli/commands/status.d.ts.map +1 -1
- package/dist/cli/commands/status.js +1 -2
- package/dist/cli/commands/status.js.map +1 -1
- package/dist/cli/commands/web.d.ts.map +1 -1
- package/dist/cli/commands/web.js +3 -2
- package/dist/cli/commands/web.js.map +1 -1
- package/dist/cli/fs-adapter.d.ts.map +1 -1
- package/dist/cli/fs-adapter.js +3 -5
- package/dist/cli/fs-adapter.js.map +1 -1
- package/dist/cli/fsx-cli-adapter.d.ts +359 -0
- package/dist/cli/fsx-cli-adapter.d.ts.map +1 -0
- package/dist/cli/fsx-cli-adapter.js +619 -0
- package/dist/cli/fsx-cli-adapter.js.map +1 -0
- package/dist/cli/index.d.ts.map +1 -1
- package/dist/cli/index.js +68 -12
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/ui/components/DiffView.d.ts +7 -2
- package/dist/cli/ui/components/DiffView.d.ts.map +1 -1
- package/dist/cli/ui/components/DiffView.js.map +1 -1
- package/dist/cli/ui/components/ErrorDisplay.d.ts +6 -2
- package/dist/cli/ui/components/ErrorDisplay.d.ts.map +1 -1
- package/dist/cli/ui/components/ErrorDisplay.js.map +1 -1
- package/dist/cli/ui/components/FuzzySearch.d.ts +8 -2
- package/dist/cli/ui/components/FuzzySearch.d.ts.map +1 -1
- package/dist/cli/ui/components/FuzzySearch.js.map +1 -1
- package/dist/cli/ui/components/LoadingSpinner.d.ts +6 -2
- package/dist/cli/ui/components/LoadingSpinner.d.ts.map +1 -1
- package/dist/cli/ui/components/LoadingSpinner.js.map +1 -1
- package/dist/cli/ui/components/NavigationList.d.ts +7 -2
- package/dist/cli/ui/components/NavigationList.d.ts.map +1 -1
- package/dist/cli/ui/components/NavigationList.js.map +1 -1
- package/dist/cli/ui/components/ScrollableContent.d.ts +7 -2
- package/dist/cli/ui/components/ScrollableContent.d.ts.map +1 -1
- package/dist/cli/ui/components/ScrollableContent.js.map +1 -1
- package/dist/cli/ui/terminal-ui.d.ts +42 -9
- package/dist/cli/ui/terminal-ui.d.ts.map +1 -1
- package/dist/cli/ui/terminal-ui.js.map +1 -1
- package/dist/do/BashModule.d.ts +871 -0
- package/dist/do/BashModule.d.ts.map +1 -0
- package/dist/do/BashModule.js +1143 -0
- package/dist/do/BashModule.js.map +1 -0
- package/dist/do/FsModule.d.ts +612 -0
- package/dist/do/FsModule.d.ts.map +1 -0
- package/dist/do/FsModule.js +1120 -0
- package/dist/do/FsModule.js.map +1 -0
- package/dist/do/GitModule.d.ts +635 -0
- package/dist/do/GitModule.d.ts.map +1 -0
- package/dist/do/GitModule.js +784 -0
- package/dist/do/GitModule.js.map +1 -0
- package/dist/do/GitRepoDO.d.ts +281 -0
- package/dist/do/GitRepoDO.d.ts.map +1 -0
- package/dist/do/GitRepoDO.js +479 -0
- package/dist/do/GitRepoDO.js.map +1 -0
- package/dist/do/bash-ast.d.ts +246 -0
- package/dist/do/bash-ast.d.ts.map +1 -0
- package/dist/do/bash-ast.js +888 -0
- package/dist/do/bash-ast.js.map +1 -0
- package/dist/do/container-executor.d.ts +491 -0
- package/dist/do/container-executor.d.ts.map +1 -0
- package/dist/do/container-executor.js +731 -0
- package/dist/do/container-executor.js.map +1 -0
- package/dist/do/index.d.ts +53 -0
- package/dist/do/index.d.ts.map +1 -0
- package/dist/do/index.js +91 -0
- package/dist/do/index.js.map +1 -0
- package/dist/do/tiered-storage.d.ts +403 -0
- package/dist/do/tiered-storage.d.ts.map +1 -0
- package/dist/do/tiered-storage.js +689 -0
- package/dist/do/tiered-storage.js.map +1 -0
- package/dist/do/withBash.d.ts +231 -0
- package/dist/do/withBash.d.ts.map +1 -0
- package/dist/do/withBash.js +244 -0
- package/dist/do/withBash.js.map +1 -0
- package/dist/do/withFs.d.ts +237 -0
- package/dist/do/withFs.d.ts.map +1 -0
- package/dist/do/withFs.js +387 -0
- package/dist/do/withFs.js.map +1 -0
- package/dist/do/withGit.d.ts +180 -0
- package/dist/do/withGit.d.ts.map +1 -0
- package/dist/do/withGit.js +271 -0
- package/dist/do/withGit.js.map +1 -0
- package/dist/durable-object/object-store.d.ts +157 -15
- package/dist/durable-object/object-store.d.ts.map +1 -1
- package/dist/durable-object/object-store.js +435 -47
- package/dist/durable-object/object-store.js.map +1 -1
- package/dist/durable-object/schema.d.ts +12 -1
- package/dist/durable-object/schema.d.ts.map +1 -1
- package/dist/durable-object/schema.js +87 -2
- package/dist/durable-object/schema.js.map +1 -1
- package/dist/index.d.ts +84 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +34 -0
- package/dist/index.js.map +1 -1
- package/dist/mcp/sandbox/miniflare-evaluator.d.ts +22 -0
- package/dist/mcp/sandbox/miniflare-evaluator.d.ts.map +1 -0
- package/dist/mcp/sandbox/miniflare-evaluator.js +140 -0
- package/dist/mcp/sandbox/miniflare-evaluator.js.map +1 -0
- package/dist/mcp/sandbox/object-store-proxy.d.ts +32 -0
- package/dist/mcp/sandbox/object-store-proxy.d.ts.map +1 -0
- package/dist/mcp/sandbox/object-store-proxy.js +30 -0
- package/dist/mcp/sandbox/object-store-proxy.js.map +1 -0
- package/dist/mcp/sandbox/template.d.ts +17 -0
- package/dist/mcp/sandbox/template.d.ts.map +1 -0
- package/dist/mcp/sandbox/template.js +71 -0
- package/dist/mcp/sandbox/template.js.map +1 -0
- package/dist/mcp/sandbox.d.ts.map +1 -1
- package/dist/mcp/sandbox.js +16 -4
- package/dist/mcp/sandbox.js.map +1 -1
- package/dist/mcp/tools/do.d.ts +32 -0
- package/dist/mcp/tools/do.d.ts.map +1 -0
- package/dist/mcp/tools/do.js +117 -0
- package/dist/mcp/tools/do.js.map +1 -0
- package/dist/mcp/tools.d.ts.map +1 -1
- package/dist/mcp/tools.js +1258 -22
- package/dist/mcp/tools.js.map +1 -1
- package/dist/pack/delta.d.ts +8 -0
- package/dist/pack/delta.d.ts.map +1 -1
- package/dist/pack/delta.js +241 -30
- package/dist/pack/delta.js.map +1 -1
- package/dist/refs/branch.d.ts +38 -25
- package/dist/refs/branch.d.ts.map +1 -1
- package/dist/refs/branch.js +421 -94
- package/dist/refs/branch.js.map +1 -1
- package/dist/refs/storage.d.ts +77 -5
- package/dist/refs/storage.d.ts.map +1 -1
- package/dist/refs/storage.js +193 -43
- package/dist/refs/storage.js.map +1 -1
- package/dist/refs/tag.d.ts +44 -24
- package/dist/refs/tag.d.ts.map +1 -1
- package/dist/refs/tag.js +411 -70
- package/dist/refs/tag.js.map +1 -1
- package/dist/storage/backend.d.ts +425 -0
- package/dist/storage/backend.d.ts.map +1 -0
- package/dist/storage/backend.js +41 -0
- package/dist/storage/backend.js.map +1 -0
- package/dist/storage/fsx-adapter.d.ts +204 -0
- package/dist/storage/fsx-adapter.d.ts.map +1 -0
- package/dist/storage/fsx-adapter.js +518 -0
- package/dist/storage/fsx-adapter.js.map +1 -0
- package/dist/storage/r2-pack.d.ts.map +1 -1
- package/dist/storage/r2-pack.js +4 -1
- package/dist/storage/r2-pack.js.map +1 -1
- package/dist/tiered/cdc-pipeline.js +3 -3
- package/dist/tiered/cdc-pipeline.js.map +1 -1
- package/dist/tiered/migration.d.ts.map +1 -1
- package/dist/tiered/migration.js +4 -1
- package/dist/tiered/migration.js.map +1 -1
- package/dist/types/capability.d.ts +1385 -0
- package/dist/types/capability.d.ts.map +1 -0
- package/dist/types/capability.js +36 -0
- package/dist/types/capability.js.map +1 -0
- package/dist/types/index.d.ts +13 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/index.js +18 -0
- package/dist/types/index.js.map +1 -0
- package/dist/types/interfaces.d.ts +673 -0
- package/dist/types/interfaces.d.ts.map +1 -0
- package/dist/types/interfaces.js +26 -0
- package/dist/types/interfaces.js.map +1 -0
- package/dist/types/objects.d.ts +182 -0
- package/dist/types/objects.d.ts.map +1 -1
- package/dist/types/objects.js +249 -4
- package/dist/types/objects.js.map +1 -1
- package/dist/types/storage.d.ts +114 -0
- package/dist/types/storage.d.ts.map +1 -1
- package/dist/types/storage.js +160 -1
- package/dist/types/storage.js.map +1 -1
- package/dist/types/worker-loader.d.ts +60 -0
- package/dist/types/worker-loader.d.ts.map +1 -0
- package/dist/types/worker-loader.js +62 -0
- package/dist/types/worker-loader.js.map +1 -0
- package/dist/utils/hash.d.ts +126 -80
- package/dist/utils/hash.d.ts.map +1 -1
- package/dist/utils/hash.js +191 -100
- package/dist/utils/hash.js.map +1 -1
- package/dist/utils/sha1.d.ts +206 -0
- package/dist/utils/sha1.d.ts.map +1 -1
- package/dist/utils/sha1.js +405 -0
- package/dist/utils/sha1.js.map +1 -1
- package/dist/wire/path-security.d.ts +157 -0
- package/dist/wire/path-security.d.ts.map +1 -0
- package/dist/wire/path-security.js +307 -0
- package/dist/wire/path-security.js.map +1 -0
- package/dist/wire/receive-pack.d.ts +7 -0
- package/dist/wire/receive-pack.d.ts.map +1 -1
- package/dist/wire/receive-pack.js +29 -1
- package/dist/wire/receive-pack.js.map +1 -1
- package/dist/wire/upload-pack.d.ts.map +1 -1
- package/dist/wire/upload-pack.js +4 -1
- package/dist/wire/upload-pack.js.map +1 -1
- package/package.json +10 -1
|
@@ -0,0 +1,204 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @fileoverview FSx Storage Adapter for gitx
|
|
3
|
+
*
|
|
4
|
+
* This module provides a storage backend implementation that uses fsx.do for
|
|
5
|
+
* both content-addressable storage (CAS) and file system operations. It bridges
|
|
6
|
+
* gitx's StorageBackend interface with fsx's CAS and fs operations.
|
|
7
|
+
*
|
|
8
|
+
* **Features**:
|
|
9
|
+
* - Content-addressable storage using fsx CAS (putObject, getObject, hasObject)
|
|
10
|
+
* - Reference storage using fsx file operations
|
|
11
|
+
* - Full file system operations for index, config, and other Git files
|
|
12
|
+
*
|
|
13
|
+
* @module storage/fsx-adapter
|
|
14
|
+
*
|
|
15
|
+
* @example
|
|
16
|
+
* ```typescript
|
|
17
|
+
* import { createFSxAdapter } from './storage/fsx-adapter'
|
|
18
|
+
*
|
|
19
|
+
* const storage = createFSxAdapter('/repos/my-repo/.git')
|
|
20
|
+
*
|
|
21
|
+
* // Store a blob
|
|
22
|
+
* const sha = await storage.putObject('blob', content)
|
|
23
|
+
*
|
|
24
|
+
* // Work with refs
|
|
25
|
+
* await storage.setRef('refs/heads/main', {
|
|
26
|
+
* name: 'refs/heads/main',
|
|
27
|
+
* target: sha,
|
|
28
|
+
* type: 'direct'
|
|
29
|
+
* })
|
|
30
|
+
* ```
|
|
31
|
+
*/
|
|
32
|
+
import type { StorageBackend, StoredObjectResult, ObjectType } from './backend';
|
|
33
|
+
import type { Ref } from '../refs/storage';
|
|
34
|
+
/**
|
|
35
|
+
* Configuration options for FSxStorageAdapter
|
|
36
|
+
*/
|
|
37
|
+
export interface FSxStorageAdapterOptions {
|
|
38
|
+
/**
|
|
39
|
+
* Root path for the Git repository (typically .git directory)
|
|
40
|
+
*/
|
|
41
|
+
rootPath: string;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* FSx storage adapter implementing the StorageBackend interface.
|
|
45
|
+
*
|
|
46
|
+
* @description
|
|
47
|
+
* This adapter uses fsx for all storage operations:
|
|
48
|
+
* - CAS operations use fsx's git-compatible object storage
|
|
49
|
+
* - Refs are stored as files at {rootPath}/refs/{refname}
|
|
50
|
+
* - File operations are relative to the rootPath
|
|
51
|
+
*/
|
|
52
|
+
export declare class FSxStorageAdapter implements StorageBackend {
|
|
53
|
+
private rootPath;
|
|
54
|
+
private storage;
|
|
55
|
+
/**
|
|
56
|
+
* Create a new FSxStorageAdapter
|
|
57
|
+
*
|
|
58
|
+
* @param rootPath - The root path for the Git repository (typically .git directory)
|
|
59
|
+
*/
|
|
60
|
+
constructor(rootPath: string);
|
|
61
|
+
/**
|
|
62
|
+
* Resolve a relative path to an absolute path within the repository
|
|
63
|
+
*
|
|
64
|
+
* @param p - Relative path within the repository
|
|
65
|
+
* @returns Absolute path
|
|
66
|
+
*/
|
|
67
|
+
private resolvePath;
|
|
68
|
+
/**
|
|
69
|
+
* Get the path for an object based on its SHA
|
|
70
|
+
*
|
|
71
|
+
* @param sha - 40-character SHA-1 hash
|
|
72
|
+
* @returns Path in format: objects/xx/yyyy...
|
|
73
|
+
*/
|
|
74
|
+
private getObjectPath;
|
|
75
|
+
/**
|
|
76
|
+
* Get the path for a ref
|
|
77
|
+
*
|
|
78
|
+
* @param name - Ref name (e.g., 'refs/heads/main', 'HEAD')
|
|
79
|
+
* @returns Absolute path to the ref file
|
|
80
|
+
*/
|
|
81
|
+
private getRefPath;
|
|
82
|
+
/**
|
|
83
|
+
* Store a Git object and return its SHA-1 hash.
|
|
84
|
+
*
|
|
85
|
+
* @description
|
|
86
|
+
* Creates a Git object in the format: "{type} {size}\0{content}",
|
|
87
|
+
* computes its SHA-1 hash, compresses it with zlib, and stores it.
|
|
88
|
+
*
|
|
89
|
+
* @param type - Object type: 'blob', 'tree', 'commit', or 'tag'
|
|
90
|
+
* @param content - Raw object content (without Git header)
|
|
91
|
+
* @returns 40-character lowercase hexadecimal SHA-1 hash
|
|
92
|
+
*/
|
|
93
|
+
putObject(type: ObjectType, content: Uint8Array): Promise<string>;
|
|
94
|
+
/**
|
|
95
|
+
* Retrieve a Git object by its SHA-1 hash.
|
|
96
|
+
*
|
|
97
|
+
* @param sha - 40-character SHA-1 hash (case-insensitive)
|
|
98
|
+
* @returns Object with type and content, or null if not found
|
|
99
|
+
*/
|
|
100
|
+
getObject(sha: string): Promise<StoredObjectResult | null>;
|
|
101
|
+
/**
|
|
102
|
+
* Check if a Git object exists in storage.
|
|
103
|
+
*
|
|
104
|
+
* @param sha - 40-character SHA-1 hash (case-insensitive)
|
|
105
|
+
* @returns True if the object exists, false otherwise
|
|
106
|
+
*/
|
|
107
|
+
hasObject(sha: string): Promise<boolean>;
|
|
108
|
+
/**
|
|
109
|
+
* Delete a Git object from storage.
|
|
110
|
+
*
|
|
111
|
+
* @param sha - 40-character SHA-1 hash (case-insensitive)
|
|
112
|
+
*/
|
|
113
|
+
deleteObject(sha: string): Promise<void>;
|
|
114
|
+
/**
|
|
115
|
+
* Get a reference by name.
|
|
116
|
+
*
|
|
117
|
+
* @param name - Full ref name (e.g., 'HEAD', 'refs/heads/main')
|
|
118
|
+
* @returns The reference or null if not found
|
|
119
|
+
*/
|
|
120
|
+
getRef(name: string): Promise<Ref | null>;
|
|
121
|
+
/**
|
|
122
|
+
* Create or update a reference.
|
|
123
|
+
*
|
|
124
|
+
* @param name - Full ref name (e.g., 'HEAD', 'refs/heads/main')
|
|
125
|
+
* @param ref - The reference object
|
|
126
|
+
*/
|
|
127
|
+
setRef(name: string, ref: Ref): Promise<void>;
|
|
128
|
+
/**
|
|
129
|
+
* Delete a reference.
|
|
130
|
+
*
|
|
131
|
+
* @param name - Full ref name to delete
|
|
132
|
+
*/
|
|
133
|
+
deleteRef(name: string): Promise<void>;
|
|
134
|
+
/**
|
|
135
|
+
* List references matching an optional prefix.
|
|
136
|
+
*
|
|
137
|
+
* @param prefix - Optional prefix to filter refs (e.g., 'refs/heads/')
|
|
138
|
+
* @returns Array of matching references
|
|
139
|
+
*/
|
|
140
|
+
listRefs(prefix?: string): Promise<Ref[]>;
|
|
141
|
+
/**
|
|
142
|
+
* Read a raw file from the repository.
|
|
143
|
+
*
|
|
144
|
+
* @param path - Path relative to Git directory
|
|
145
|
+
* @returns File contents as Uint8Array, or null if not found
|
|
146
|
+
*/
|
|
147
|
+
readFile(path: string): Promise<Uint8Array | null>;
|
|
148
|
+
/**
|
|
149
|
+
* Write a raw file to the repository.
|
|
150
|
+
*
|
|
151
|
+
* @param path - Path relative to Git directory
|
|
152
|
+
* @param content - File contents as Uint8Array
|
|
153
|
+
*/
|
|
154
|
+
writeFile(path: string, content: Uint8Array): Promise<void>;
|
|
155
|
+
/**
|
|
156
|
+
* Delete a raw file from the repository.
|
|
157
|
+
*
|
|
158
|
+
* @param path - Path relative to Git directory
|
|
159
|
+
*/
|
|
160
|
+
deleteFile(path: string): Promise<void>;
|
|
161
|
+
/**
|
|
162
|
+
* Check if a file or directory exists.
|
|
163
|
+
*
|
|
164
|
+
* @param path - Path relative to Git directory
|
|
165
|
+
* @returns True if the path exists
|
|
166
|
+
*/
|
|
167
|
+
exists(path: string): Promise<boolean>;
|
|
168
|
+
/**
|
|
169
|
+
* List contents of a directory.
|
|
170
|
+
*
|
|
171
|
+
* @param path - Path relative to Git directory
|
|
172
|
+
* @returns Array of file and directory names
|
|
173
|
+
*/
|
|
174
|
+
readdir(path: string): Promise<string[]>;
|
|
175
|
+
/**
|
|
176
|
+
* Create a directory.
|
|
177
|
+
*
|
|
178
|
+
* @param path - Path relative to Git directory
|
|
179
|
+
* @param options - Options for directory creation
|
|
180
|
+
*/
|
|
181
|
+
mkdir(path: string, options?: {
|
|
182
|
+
recursive?: boolean;
|
|
183
|
+
}): Promise<void>;
|
|
184
|
+
}
|
|
185
|
+
/**
|
|
186
|
+
* Create an FSx storage adapter.
|
|
187
|
+
*
|
|
188
|
+
* @description
|
|
189
|
+
* Factory function for creating an FSxStorageAdapter instance.
|
|
190
|
+
*
|
|
191
|
+
* @param rootPath - The root path for the Git repository (typically .git directory)
|
|
192
|
+
* @returns A StorageBackend instance backed by fsx
|
|
193
|
+
*
|
|
194
|
+
* @example
|
|
195
|
+
* ```typescript
|
|
196
|
+
* const storage = createFSxAdapter('/repos/my-project/.git')
|
|
197
|
+
*
|
|
198
|
+
* // Use the storage backend
|
|
199
|
+
* const sha = await storage.putObject('blob', content)
|
|
200
|
+
* const ref = await storage.getRef('HEAD')
|
|
201
|
+
* ```
|
|
202
|
+
*/
|
|
203
|
+
export declare function createFSxAdapter(rootPath: string): StorageBackend;
|
|
204
|
+
//# sourceMappingURL=fsx-adapter.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fsx-adapter.d.ts","sourceRoot":"","sources":["../../src/storage/fsx-adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8BG;AAEH,OAAO,KAAK,EAAE,cAAc,EAAE,kBAAkB,EAAE,UAAU,EAAE,MAAM,WAAW,CAAA;AAC/E,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,iBAAiB,CAAA;AAmE1C;;GAEG;AACH,MAAM,WAAW,wBAAwB;IACvC;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAA;CACjB;AA6GD;;;;;;;;GAQG;AACH,qBAAa,iBAAkB,YAAW,cAAc;IACtD,OAAO,CAAC,QAAQ,CAAQ;IACxB,OAAO,CAAC,OAAO,CAAgB;IAE/B;;;;OAIG;gBACS,QAAQ,EAAE,MAAM;IAW5B;;;;;OAKG;IACH,OAAO,CAAC,WAAW;IAiBnB;;;;;OAKG;IACH,OAAO,CAAC,aAAa;IAOrB;;;;;OAKG;IACH,OAAO,CAAC,UAAU;IAQlB;;;;;;;;;;OAUG;IACG,SAAS,CAAC,IAAI,EAAE,UAAU,EAAE,OAAO,EAAE,UAAU,GAAG,OAAO,CAAC,MAAM,CAAC;IAwBvE;;;;;OAKG;IACG,SAAS,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,kBAAkB,GAAG,IAAI,CAAC;IAyBhE;;;;;OAKG;IACG,SAAS,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC;IAc9C;;;;OAIG;IACG,YAAY,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAU9C;;;;;OAKG;IACG,MAAM,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,GAAG,GAAG,IAAI,CAAC;IAkB/C;;;;;OAKG;IACG,MAAM,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,EAAE,GAAG,GAAG,OAAO,CAAC,IAAI,CAAC;IAanD;;;;OAIG;IACG,SAAS,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAK5C;;;;;OAKG;IACG,QAAQ,CAAC,MAAM,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,GAAG,EAAE,CAAC;IAuD/C;;;;;OAKG;IACG,QAAQ,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,UAAU,GAAG,IAAI,CAAC;IAKxD;;;;;OAKG;IACG,SAAS,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,GAAG,OAAO,CAAC,IAAI,CAAC;IAYjE;;;;OAIG;IACG,UAAU,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAK7C;;;;;OAKG;IACG,MAAM,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC;IAS5C;;;;;OAKG;IACG,OAAO,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC;IAU9C;;;;;OAKG;IACG,KAAK,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE;QAAE,SAAS,CAAC,EAAE,OAAO,CAAA;KAAE,GAAG,OAAO,CAAC,IAAI,CAAC;CAI5E;AAMD;;;;;;;;;;;;;;;;;GAiBG;AACH,wBAAgB,gBAAgB,CAAC,QAAQ,EAAE,MAAM,GAAG,cAAc,CAEjE"}
|