@agent-plan/core 0.2.19-next.1 → 0.2.19-next.10
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/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/plan-store.d.ts +80 -12
- package/dist/plan-store.d.ts.map +1 -1
- package/dist/plan-store.js +277 -92
- package/dist/recap.d.ts.map +1 -1
- package/dist/recap.js +21 -7
- package/dist/refs.d.ts +23 -0
- package/dist/refs.d.ts.map +1 -1
- package/dist/refs.js +66 -0
- package/dist/schema.d.ts +139 -0
- package/dist/schema.d.ts.map +1 -1
- package/dist/schema.js +28 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ export * from "./naming.js";
|
|
|
2
2
|
export * from "./refs.js";
|
|
3
3
|
export * from "./schema.js";
|
|
4
4
|
export * from "./recap.js";
|
|
5
|
-
export { PlanStore, PlanStoreError, setWriteBusyHook, setWriteNotifyHook, migrateToUuids, withFeatureLock, type PhaseHandoffSummary } from "./plan-store.js";
|
|
5
|
+
export { PlanStore, PlanStoreError, setWriteBusyHook, setWriteNotifyHook, migrateToUuids, migrateToGlobalSequence, withFeatureLock, type PhaseHandoffSummary } from "./plan-store.js";
|
|
6
6
|
export { PlanRenderer } from "./renderer.js";
|
|
7
7
|
export { ExportService } from "./export-service.js";
|
|
8
8
|
export type { CodebaseProfile, ResumeFocus, ActivityEntry, ActivityLog, AmbientFacts } from "./schema.js";
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAC;AAC5B,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,OAAO,EAAE,SAAS,EAAE,cAAc,EAAE,gBAAgB,EAAE,kBAAkB,EAAE,cAAc,EAAE,eAAe,EAAE,KAAK,mBAAmB,EAAE,MAAM,iBAAiB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAC;AAC5B,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,OAAO,EAAE,SAAS,EAAE,cAAc,EAAE,gBAAgB,EAAE,kBAAkB,EAAE,cAAc,EAAE,uBAAuB,EAAE,eAAe,EAAE,KAAK,mBAAmB,EAAE,MAAM,iBAAiB,CAAC;AACtL,OAAO,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC;AAC7C,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AACpD,YAAY,EAAE,eAAe,EAAE,WAAW,EAAE,aAAa,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -2,6 +2,6 @@ export * from "./naming.js";
|
|
|
2
2
|
export * from "./refs.js";
|
|
3
3
|
export * from "./schema.js";
|
|
4
4
|
export * from "./recap.js";
|
|
5
|
-
export { PlanStore, PlanStoreError, setWriteBusyHook, setWriteNotifyHook, migrateToUuids, withFeatureLock } from "./plan-store.js";
|
|
5
|
+
export { PlanStore, PlanStoreError, setWriteBusyHook, setWriteNotifyHook, migrateToUuids, migrateToGlobalSequence, withFeatureLock } from "./plan-store.js";
|
|
6
6
|
export { PlanRenderer } from "./renderer.js";
|
|
7
7
|
export { ExportService } from "./export-service.js";
|
package/dist/plan-store.d.ts
CHANGED
|
@@ -9,14 +9,39 @@ export declare function withFeatureLock<T>(featureId: string, fn: () => Promise<
|
|
|
9
9
|
/** Summary of a phase that has a non-empty handoff, for the listHandoffs() API. */
|
|
10
10
|
export interface PhaseHandoffSummary {
|
|
11
11
|
phaseId: string;
|
|
12
|
+
/** Owning feature id (for deep-linking to the phase-detail route). */
|
|
13
|
+
featureId?: string | undefined;
|
|
12
14
|
/** Human-readable composite ref, e.g. `P003` or `P003(F002)`. */
|
|
13
15
|
compositeRef: string;
|
|
14
16
|
/** handoffUpdatedAt (falls back to phase.updatedAt if unset). */
|
|
15
17
|
updatedAt: string;
|
|
16
18
|
/** First non-empty line of the handoff, leading markdown headers stripped, ~80 chars. */
|
|
17
19
|
firstLine: string;
|
|
20
|
+
/** Full handoff content (phase.handoff) — lets the /handoff viewer render
|
|
21
|
+
* inline without a per-phase fetch. */
|
|
22
|
+
content: string;
|
|
18
23
|
}
|
|
19
24
|
export declare function migrateToUuids(store: PlanStore): Promise<void>;
|
|
25
|
+
/**
|
|
26
|
+
* One-time idempotent migration to GLOBAL F/P/T numbering.
|
|
27
|
+
*
|
|
28
|
+
* Legacy plans assign Phase.number per-feature and Task.number per-phase, so
|
|
29
|
+
* every feature has a P001 and every phase has a T001 (ambiguous in chat/handoffs).
|
|
30
|
+
* This renumbers ALL features/phases/tasks by `createdAt` asc (stable tiebreak by
|
|
31
|
+
* id) into a single project-wide 1..N sequence and sets the monotonic project
|
|
32
|
+
* counters (nextFeatureNumber/nextPhaseNumber/nextTaskNumber).
|
|
33
|
+
*
|
|
34
|
+
* Idempotent: if no duplicate phase/task/feature numbers exist across the
|
|
35
|
+
* project, the plan is already global → no renumber writes happen (only the
|
|
36
|
+
* counters are ensured, in case project.json predates them). MUST run before
|
|
37
|
+
* ensureStructureOrdering (which no longer renumbers — numbers are stable).
|
|
38
|
+
*/
|
|
39
|
+
export declare function migrateToGlobalSequence(store: PlanStore): Promise<{
|
|
40
|
+
migrated: boolean;
|
|
41
|
+
phases: number;
|
|
42
|
+
tasks: number;
|
|
43
|
+
features: number;
|
|
44
|
+
}>;
|
|
20
45
|
export declare class PlanStore {
|
|
21
46
|
readonly root: string;
|
|
22
47
|
private autoSync;
|
|
@@ -46,6 +71,18 @@ export declare class PlanStore {
|
|
|
46
71
|
ensureStructureOrdering(): Promise<{
|
|
47
72
|
changed: boolean;
|
|
48
73
|
}>;
|
|
74
|
+
/** Rebuild each phase's `tasks` + `taskIds` from the task's OWN `phaseId`
|
|
75
|
+
* (source of truth). Heals plans where tasks got filed into the wrong phase
|
|
76
|
+
* file (e.g. the migrateToGlobalSequence index-mismatch bug, @agent-plan/core
|
|
77
|
+
* <0.2.19-next.7). Deterministic, lossless, idempotent: groups every task by
|
|
78
|
+
* its phaseId, preserves each phase's existing taskIds order, appends orphan
|
|
79
|
+
* tasks (whose phaseId dangles or is empty) by number. Writes a phase file
|
|
80
|
+
* only when its task set actually changed. */
|
|
81
|
+
rebuildContainment(): Promise<{
|
|
82
|
+
changed: number;
|
|
83
|
+
tasks: number;
|
|
84
|
+
orphan: number;
|
|
85
|
+
}>;
|
|
49
86
|
private manifestPath;
|
|
50
87
|
private projectPath;
|
|
51
88
|
private requirementsPath;
|
|
@@ -63,11 +100,22 @@ export declare class PlanStore {
|
|
|
63
100
|
private codebasePath;
|
|
64
101
|
private resumePath;
|
|
65
102
|
private activityPath;
|
|
66
|
-
private handoffPath;
|
|
67
103
|
init(projectName: string): Promise<void>;
|
|
68
104
|
exists(): Promise<boolean>;
|
|
69
105
|
loadManifest(): Promise<Manifest>;
|
|
70
106
|
loadProject(): Promise<Project>;
|
|
107
|
+
/**
|
|
108
|
+
* Allocate the next global sequence number for a feature/phase/task.
|
|
109
|
+
* Reads the monotonic counter from project.json, increments it, persists,
|
|
110
|
+
* and returns the allocated number. MUST be called within withFeatureLock
|
|
111
|
+
* (adapters create entities inside a lock) so the counter is race-free.
|
|
112
|
+
* The counter never reuses a number — deletions leave gaps (by design:
|
|
113
|
+
* stable references survive deletion).
|
|
114
|
+
*/
|
|
115
|
+
allocFeatureNumber(): Promise<number>;
|
|
116
|
+
allocPhaseNumber(): Promise<number>;
|
|
117
|
+
allocTaskNumber(): Promise<number>;
|
|
118
|
+
private allocSeqNumber;
|
|
71
119
|
loadPhase(phaseId: string): Promise<Phase>;
|
|
72
120
|
/** Read raw feature files WITHOUT the derived `status` field. Used
|
|
73
121
|
* internally so loadFeatures/loadAll can derive status from phases without
|
|
@@ -90,14 +138,6 @@ export declare class PlanStore {
|
|
|
90
138
|
/** True when a guard bypass is currently active (not expired). */
|
|
91
139
|
isGuardBypassed(): Promise<boolean>;
|
|
92
140
|
loadActivityLog(): Promise<ActivityLog>;
|
|
93
|
-
handoffExists(): Promise<boolean>;
|
|
94
|
-
loadHandoff(): Promise<{
|
|
95
|
-
content: string;
|
|
96
|
-
createdAt: string;
|
|
97
|
-
updatedAt: string;
|
|
98
|
-
} | null>;
|
|
99
|
-
saveHandoff(content: string): Promise<void>;
|
|
100
|
-
deleteHandoff(): Promise<void>;
|
|
101
141
|
appendActivity(type: string, ref: string, summary: string): Promise<ActivityEntry>;
|
|
102
142
|
/** Derive an up-to-date resume focus from the current workspace state. */
|
|
103
143
|
refreshResume(notes?: string, lastSessionSummary?: string): Promise<ResumeFocus>;
|
|
@@ -148,6 +188,11 @@ export declare class PlanStore {
|
|
|
148
188
|
prioritiesAssigned: number;
|
|
149
189
|
duplicateShortIds: string[];
|
|
150
190
|
};
|
|
191
|
+
containment: {
|
|
192
|
+
changed: number;
|
|
193
|
+
tasks: number;
|
|
194
|
+
orphan: number;
|
|
195
|
+
};
|
|
151
196
|
integrity: {
|
|
152
197
|
duplicatePhaseIds: string[];
|
|
153
198
|
danglingPhaseIds: string[];
|
|
@@ -188,9 +233,32 @@ export declare class PlanStore {
|
|
|
188
233
|
/** Set the handoff text for a phase + stamp handoffUpdatedAt. Atomic per-file
|
|
189
234
|
* update via updatePhase (so the web UI refreshes via maybeAutoSync). */
|
|
190
235
|
setPhaseHandoff(phaseId: string, text: string): Promise<void>;
|
|
191
|
-
/**
|
|
192
|
-
*
|
|
193
|
-
|
|
236
|
+
/** Directory where cleared handoff content is archived as .md files
|
|
237
|
+
* (gitignored). Keeps the phase JSON lean while making past handoffs
|
|
238
|
+
* recoverable + human-readable. */
|
|
239
|
+
private handoffArchiveDir;
|
|
240
|
+
/** Mark the phase handoff as read/acknowledged on recap (sets handoffReadAt).
|
|
241
|
+
* Does NOT clear the handoff — content is kept until a task starts or the
|
|
242
|
+
* phase completes, so a restart between read and resume does not lose it. */
|
|
243
|
+
markHandoffRead(phaseId: string): Promise<void>;
|
|
244
|
+
/** One-time import of a legacy .planner/HANDOFF.md file (file-based handoff
|
|
245
|
+
* from before F004) into the entity-scoped phase.handoff. Idempotent: if the
|
|
246
|
+
* file is absent or empty, no-op. If it exists + non-empty + the target phase
|
|
247
|
+
* has no handoff, writes the content onto the current in-progress phase (or
|
|
248
|
+
* the first phase if none in-progress) with an "imported" handoffHistory entry,
|
|
249
|
+
* then renames the file to HANDOFF.md.bak so it won't re-import. If the target
|
|
250
|
+
* already has a handoff, the entity-scoped one wins and the file is just .bak'd. */
|
|
251
|
+
importLegacyHandoffFile(): Promise<{
|
|
252
|
+
imported: boolean;
|
|
253
|
+
phaseRef?: string;
|
|
254
|
+
}>;
|
|
255
|
+
/** Clear the handoff for a phase, archiving its content first. The handoff
|
|
256
|
+
* markdown is written to .planner/handoff-archive/<phaseId>-<ISO>.md and a
|
|
257
|
+
* metadata entry { file, clearedAt, reason } is prepended to handoffHistory
|
|
258
|
+
* (capped at 5; oldest file is deleted when trimmed). handoffUpdatedAt is
|
|
259
|
+
* left unchanged as an audit trail. If the handoff is empty, this is a no-op.
|
|
260
|
+
* reason: "task-started" | "phase-done" | "manual" | "superseded" | "imported". */
|
|
261
|
+
clearPhaseHandoff(phaseId: string, reason?: string): Promise<void>;
|
|
194
262
|
/** List all phases that have a non-empty handoff, newest first, with a
|
|
195
263
|
* human-readable composite ref (P00x or P00x(F00x)) and a first-line excerpt. */
|
|
196
264
|
listHandoffs(): Promise<PhaseHandoffSummary[]>;
|
package/dist/plan-store.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plan-store.d.ts","sourceRoot":"","sources":["../src/plan-store.ts"],"names":[],"mappings":"AAEA,OAAO,EAGL,KAAK,OAAO,EACZ,KAAK,gBAAgB,EAGrB,KAAK,QAAQ,EAEb,KAAK,KAAK,EAEV,KAAK,aAAa,EAElB,KAAK,OAAO,EAEZ,KAAK,oBAAoB,EAIzB,KAAK,aAAa,EAClB,KAAK,WAAW,EAChB,KAAK,eAAe,EACpB,KAAK,WAAW,EACjB,MAAM,aAAa,CAAC;AAOrB,qBAAa,cAAe,SAAQ,KAAK;aAGrB,KAAK,CAAC,EAAE,OAAO;gBAD/B,OAAO,EAAE,MAAM,EACC,KAAK,CAAC,EAAE,OAAO,YAAA;CAKlC;AAeD,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,CAAC,CAAC,IAAI,EAAE,OAAO,KAAK,IAAI,CAAC,GAAG,SAAS,GAAG,IAAI,CAElF;AAKD,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,CAAC,MAAM,IAAI,CAAC,GAAG,SAAS,GAAG,IAAI,CAEvE;AAaD,wBAAgB,eAAe,CAAC,CAAC,EAAE,SAAS,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC,CAAC,CAAC,GAAG,OAAO,CAAC,CAAC,CAAC,CAStF;AAmDD,mFAAmF;AACnF,MAAM,WAAW,mBAAmB;IAClC,OAAO,EAAE,MAAM,CAAC;IAChB,iEAAiE;IACjE,YAAY,EAAE,MAAM,CAAC;IACrB,iEAAiE;IACjE,SAAS,EAAE,MAAM,CAAC;IAClB,yFAAyF;IACzF,SAAS,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"plan-store.d.ts","sourceRoot":"","sources":["../src/plan-store.ts"],"names":[],"mappings":"AAEA,OAAO,EAGL,KAAK,OAAO,EACZ,KAAK,gBAAgB,EAGrB,KAAK,QAAQ,EAEb,KAAK,KAAK,EAEV,KAAK,aAAa,EAElB,KAAK,OAAO,EAEZ,KAAK,oBAAoB,EAIzB,KAAK,aAAa,EAClB,KAAK,WAAW,EAChB,KAAK,eAAe,EACpB,KAAK,WAAW,EACjB,MAAM,aAAa,CAAC;AAOrB,qBAAa,cAAe,SAAQ,KAAK;aAGrB,KAAK,CAAC,EAAE,OAAO;gBAD/B,OAAO,EAAE,MAAM,EACC,KAAK,CAAC,EAAE,OAAO,YAAA;CAKlC;AAeD,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,CAAC,CAAC,IAAI,EAAE,OAAO,KAAK,IAAI,CAAC,GAAG,SAAS,GAAG,IAAI,CAElF;AAKD,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,CAAC,MAAM,IAAI,CAAC,GAAG,SAAS,GAAG,IAAI,CAEvE;AAaD,wBAAgB,eAAe,CAAC,CAAC,EAAE,SAAS,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC,CAAC,CAAC,GAAG,OAAO,CAAC,CAAC,CAAC,CAStF;AAmDD,mFAAmF;AACnF,MAAM,WAAW,mBAAmB;IAClC,OAAO,EAAE,MAAM,CAAC;IAChB,sEAAsE;IACtE,SAAS,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC/B,iEAAiE;IACjE,YAAY,EAAE,MAAM,CAAC;IACrB,iEAAiE;IACjE,SAAS,EAAE,MAAM,CAAC;IAClB,yFAAyF;IACzF,SAAS,EAAE,MAAM,CAAC;IAClB;4CACwC;IACxC,OAAO,EAAE,MAAM,CAAC;CACjB;AASD,wBAAsB,cAAc,CAAC,KAAK,EAAE,SAAS,GAAG,OAAO,CAAC,IAAI,CAAC,CAsEpE;AAED;;;;;;;;;;;;;GAaG;AACH,wBAAsB,uBAAuB,CAAC,KAAK,EAAE,SAAS,GAAG,OAAO,CAAC;IAAE,QAAQ,EAAE,OAAO,CAAC;IAAC,MAAM,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,CAAC;IAAC,QAAQ,EAAE,MAAM,CAAA;CAAE,CAAC,CAyE/I;AA4BD,qBAAa,SAAS;IACpB,SAAgB,IAAI,EAAE,MAAM,CAAC;IAC7B,OAAO,CAAC,QAAQ,CAAS;IACzB,OAAO,CAAC,SAAS,CAAS;IAO1B,OAAO,CAAC,eAAe,CAAS;gBAEpB,IAAI,EAAE,MAAM;IAIxB;;4EAEwE;IACxE,cAAc,CAAC,KAAK,EAAE,OAAO,GAAG,IAAI;IAEpC;;;2BAGuB;YACT,UAAU;IAUxB,2EAA2E;IACrE,oBAAoB,CAAC,CAAC,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC,CAAC,CAAC,GAAG,OAAO,CAAC,CAAC,CAAC;IAI/D;;oFAEgF;IAC1E,QAAQ,CAAC,CAAC,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC,CAAC,CAAC,GAAG,OAAO,CAAC,CAAC,CAAC;YAIrC,aAAa;IAK3B,OAAO,CAAC,cAAc;IAMtB,OAAO,CAAC,yBAAyB;IAKjC,OAAO,CAAC,sBAAsB;IAc9B,OAAO,CAAC,0BAA0B;IAyD5B,uBAAuB,IAAI,OAAO,CAAC;QAAE,OAAO,EAAE,OAAO,CAAA;KAAE,CAAC;IAkB9D;;;;;;mDAM+C;IACzC,kBAAkB,IAAI,OAAO,CAAC;QAAE,OAAO,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAE,CAAC;IAgCvF,OAAO,CAAC,YAAY;IAGpB,OAAO,CAAC,WAAW;IAGnB,OAAO,CAAC,gBAAgB;IAGxB,OAAO,CAAC,YAAY;IAGpB,OAAO,CAAC,WAAW;IAGnB,OAAO,CAAC,WAAW;IAGnB,OAAO,CAAC,gBAAgB;IAMxB;;gFAE4E;YAC9D,aAAa;IAa3B,OAAO,CAAC,SAAS;IAGjB,OAAO,CAAC,SAAS;IAGjB,OAAO,CAAC,YAAY;IAGpB,OAAO,CAAC,YAAY;IAGpB,OAAO,CAAC,UAAU;IAGlB,OAAO,CAAC,YAAY;IAKd,IAAI,CAAC,WAAW,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAkGxC,MAAM,IAAI,OAAO,CAAC,OAAO,CAAC;IAW1B,YAAY,IAAI,OAAO,CAAC,QAAQ,CAAC;IAIjC,WAAW,IAAI,OAAO,CAAC,OAAO,CAAC;IAIrC;;;;;;;OAOG;IACG,kBAAkB,IAAI,OAAO,CAAC,MAAM,CAAC;IACrC,gBAAgB,IAAI,OAAO,CAAC,MAAM,CAAC;IACnC,eAAe,IAAI,OAAO,CAAC,MAAM,CAAC;YAC1B,cAAc;IAUtB,SAAS,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,KAAK,CAAC;IAMhD;;0BAEsB;YACR,eAAe;IAqCvB,YAAY,IAAI,OAAO,CAAC,gBAAgB,CAAC;IAOzC,mBAAmB,IAAI,OAAO,CAAC,eAAe,GAAG,IAAI,CAAC;IAQtD,mBAAmB,CAAC,OAAO,EAAE,eAAe,GAAG,OAAO,CAAC,IAAI,CAAC;IAM5D,UAAU,IAAI,OAAO,CAAC,WAAW,GAAG,IAAI,CAAC;IAQzC,UAAU,CAAC,MAAM,EAAE,WAAW,GAAG,OAAO,CAAC,IAAI,CAAC;IAiBpD;;;;;OAKG;IACG,oBAAoB,CAAC,eAAe,SAAK,GAAG,OAAO,CAAC,MAAM,CAAC;IAmBjE,qCAAqC;IAC/B,gBAAgB,IAAI,OAAO,CAAC,IAAI,CAAC;IAQvC,kEAAkE;IAC5D,eAAe,IAAI,OAAO,CAAC,OAAO,CAAC;IAQnC,eAAe,IAAI,OAAO,CAAC,WAAW,CAAC;IAQvC,cAAc,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,aAAa,CAAC;IAaxF,0EAA0E;IACpE,aAAa,CAAC,KAAK,CAAC,EAAE,MAAM,EAAE,kBAAkB,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,WAAW,CAAC;IAqBhF,gBAAgB,IAAI,OAAO,CAAC,oBAAoB,CAAC;IAQjD,aAAa,IAAI,OAAO,CAAC,KAAK,EAAE,CAAC;IA0BjC,OAAO,IAAI,OAAO,CAAC,aAAa,CAAC;IAYvC;4DACwD;IAClD,eAAe,IAAI,OAAO,CAAC;QAAE,OAAO,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAA;KAAE,CAAC;IAmEzF;;;;;OAKG;IACG,oBAAoB,IAAI,OAAO,CAAC;QAAE,OAAO,EAAE,MAAM,CAAA;KAAE,CAAC;IA0B1D;mFAC+E;IACzE,gBAAgB,IAAI,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC;IAY9C;;;qEAGiE;IAC3D,YAAY,CAAC,IAAI,EAAE,SAAS,GAAG,OAAO,GAAG,MAAM,EAAE,QAAQ,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;IAmB1F;;sFAEkF;IAC5E,yBAAyB,IAAI,OAAO,CAAC;QACzC,gBAAgB,EAAE,MAAM,CAAC;QACzB,kBAAkB,EAAE,MAAM,CAAC;QAC3B,iBAAiB,EAAE,MAAM,EAAE,CAAC;KAC7B,CAAC;IAuFF,gFAAgF;IAC1E,MAAM,IAAI,OAAO,CAAC;QACtB,QAAQ,EAAE;YAAE,OAAO,EAAE,MAAM,CAAC;YAAC,QAAQ,EAAE,MAAM,CAAC;YAAC,QAAQ,EAAE,MAAM,CAAA;SAAE,CAAC;QAClE,QAAQ,EAAE;YAAE,gBAAgB,EAAE,MAAM,CAAC;YAAC,kBAAkB,EAAE,MAAM,CAAC;YAAC,iBAAiB,EAAE,MAAM,EAAE,CAAA;SAAE,CAAC;QAChG,WAAW,EAAE;YAAE,OAAO,EAAE,MAAM,CAAC;YAAC,KAAK,EAAE,MAAM,CAAC;YAAC,MAAM,EAAE,MAAM,CAAA;SAAE,CAAC;QAChE,SAAS,EAAE;YAAE,iBAAiB,EAAE,MAAM,EAAE,CAAC;YAAC,gBAAgB,EAAE,MAAM,EAAE,CAAC;YAAC,iBAAiB,EAAE,MAAM,EAAE,CAAA;SAAE,CAAC;KACrG,CAAC;IAcF,0FAA0F;IACpF,iBAAiB,IAAI,OAAO,CAAC;QAAE,iBAAiB,EAAE,MAAM,EAAE,CAAC;QAAC,gBAAgB,EAAE,MAAM,EAAE,CAAC;QAAC,iBAAiB,EAAE,MAAM,EAAE,CAAA;KAAE,CAAC;IA4B5H,OAAO,CAAC,iBAAiB;IAoBzB,OAAO,CAAC,mBAAmB;IAoBrB,YAAY,IAAI,OAAO,CAAC,MAAM,EAAE,CAAC;IAOvC;;;wFAGoF;IAC9E,oBAAoB,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC;IAe7D,aAAa,CAAC,OAAO,EAAE,CAAC,CAAC,EAAE,OAAO,KAAK,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;IAMjE,cAAc,CAAC,OAAO,EAAE,CAAC,CAAC,EAAE,gBAAgB,KAAK,gBAAgB,GAAG,OAAO,CAAC,gBAAgB,CAAC;IAY7F,kBAAkB,CAAC,OAAO,EAAE,CAAC,CAAC,EAAE,oBAAoB,KAAK,oBAAoB,GAAG,OAAO,CAAC,oBAAoB,CAAC;IAM7G,WAAW,CAAC,OAAO,EAAE,OAAO,GAAG,OAAO,CAAC,IAAI,CAAC;IAO5C,YAAY,CAAC,QAAQ,EAAE,gBAAgB,GAAG,OAAO,CAAC,IAAI,CAAC;IAS7D,kGAAkG;YACpF,eAAe;IAsB7B,oFAAoF;IAC9E,WAAW,CAAC,OAAO,EAAE,OAAO,GAAG,OAAO,CAAC,IAAI,CAAC;IAW5C,gBAAgB,CAAC,IAAI,EAAE,oBAAoB,GAAG,OAAO,CAAC,IAAI,CAAC;IAMzD,SAAS,CAAC,KAAK,EAAE,KAAK,GAAG,OAAO,CAAC,IAAI,CAAC;IAQ9C;;6DAEyD;IACnD,WAAW,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,CAAC,KAAK,EAAE,KAAK,KAAK,KAAK,GAAG,OAAO,CAAC,KAAK,CAAC;IAgBpF,8EAA8E;IACxE,eAAe,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;IAIvD;8EAC0E;IACpE,eAAe,CAAC,OAAO,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAKnE;;wCAEoC;IACpC,OAAO,CAAC,iBAAiB;IAIzB;;kFAE8E;IACxE,eAAe,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAIrD;;;;;;yFAMqF;IAC/E,uBAAuB,IAAI,OAAO,CAAC;QAAE,QAAQ,EAAE,OAAO,CAAC;QAAC,QAAQ,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IAyBlF;;;;;wFAKoF;IAC9E,iBAAiB,CAAC,OAAO,EAAE,MAAM,EAAE,MAAM,SAAW,GAAG,OAAO,CAAC,IAAI,CAAC;IAoB1E;sFACkF;IAC5E,YAAY,IAAI,OAAO,CAAC,mBAAmB,EAAE,CAAC;IAsB9C,WAAW,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAWjD,sFAAsF;IAChF,aAAa,IAAI,OAAO,CAAC,aAAa,CAAC;IAW7C,iEAAiE;IAC3D,cAAc,IAAI,OAAO,CAAC,MAAM,EAAE,CAAC;IA0BzC,qDAAqD;YACvC,aAAa;CAS5B"}
|