@fluojs/http 1.1.1 → 1.1.2
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.ko.md +10 -4
- package/README.md +10 -4
- package/dist/context/request-context.d.ts +5 -3
- package/dist/context/request-context.d.ts.map +1 -1
- package/dist/context/request-context.js +61 -17
- package/dist/dispatch/dispatcher.d.ts.map +1 -1
- package/dist/dispatch/dispatcher.js +1 -0
- package/package.json +1 -1
package/README.ko.md
CHANGED
|
@@ -41,6 +41,11 @@ class CreateUserDto {
|
|
|
41
41
|
name!: string;
|
|
42
42
|
}
|
|
43
43
|
|
|
44
|
+
class FindUserParamsDto {
|
|
45
|
+
@FromPath('id')
|
|
46
|
+
id!: string;
|
|
47
|
+
}
|
|
48
|
+
|
|
44
49
|
@Controller('/users')
|
|
45
50
|
export class UserController {
|
|
46
51
|
@Post('/')
|
|
@@ -50,8 +55,9 @@ export class UserController {
|
|
|
50
55
|
}
|
|
51
56
|
|
|
52
57
|
@Get('/:id')
|
|
53
|
-
|
|
54
|
-
|
|
58
|
+
@RequestDto(FindUserParamsDto)
|
|
59
|
+
getById(input: FindUserParamsDto) {
|
|
60
|
+
return { id: input.id, name: 'John Doe' };
|
|
55
61
|
}
|
|
56
62
|
}
|
|
57
63
|
```
|
|
@@ -96,7 +102,7 @@ function someDeepHelper() {
|
|
|
96
102
|
}
|
|
97
103
|
```
|
|
98
104
|
|
|
99
|
-
`runWithRequestContext(...)`는 호스트가 `globalThis.AsyncLocalStorage` 또는 Node 내장 `node:async_hooks` 모듈로 `AsyncLocalStorage`를 제공할 때 활성 컨텍스트를 `await` 이후까지 보존합니다. 루트 `@fluojs/http` import는 async-context storage를 probe하거나 instantiate하지 않습니다. Helper가 처음 사용될 때 storage를 lazy하게 해석하고, `process.getBuiltinModule(...)` 실패를 guard하며,
|
|
105
|
+
`runWithRequestContext(...)`는 호스트가 `globalThis.AsyncLocalStorage` 또는 Node 내장 `node:async_hooks` 모듈로 `AsyncLocalStorage`를 제공할 때 활성 컨텍스트를 `await` 이후까지 보존합니다. 루트 `@fluojs/http` import는 async-context storage를 probe하거나 instantiate하지 않습니다. Helper가 처음 사용될 때 storage를 lazy하게 해석하고, `process.getBuiltinModule(...)` 실패를 guard하며, Node async storage 해석이 끝나기 전에 등록된 promise continuation도 격리하면서 첫 호출의 동기 callback 반환 및 throw 동작은 그대로 유지합니다. 비동기 컨텍스트 primitive가 없는 비 Node 호스트에서는 동기 stack fallback을 사용하며, 겹치는 비동기 요청이 서로의 컨텍스트를 관찰하지 않도록 awaited continuation이 재개되기 전에 컨텍스트를 비웁니다.
|
|
100
106
|
|
|
101
107
|
### 프록시 뒤의 속도 제한
|
|
102
108
|
|
|
@@ -180,7 +186,7 @@ Fluo의 HTTP 데코레이터는 TC39 표준 데코레이터이며, runtime 또
|
|
|
180
186
|
|
|
181
187
|
디스패처는 활성 dispatch 동안에만 호스트 비동기 컨텍스트 저장소로 `RequestContext`를 바인딩합니다. 지원되는 Node 20+ 런타임을 포함해 `AsyncLocalStorage`가 있는 호스트에서는 컨텍스트가 awaited work 이후까지 유지됩니다. 비동기 컨텍스트 primitive가 없는 비 Node 호스트에서는 fallback 컨텍스트가 동기 프레임에만 유효하고, 겹치는 요청이 서로의 컨텍스트를 관찰하지 않도록 `await` 이후에는 의도적으로 사용할 수 없습니다. 요청이 controller graph, middleware, guard, interceptor, observer, DTO converter, custom binder 또는 수동 `getCurrentRequestContext()` / `assertRequestContext()` container 접근을 통해 request-scoped DI를 사용할 수 있으면, 디스패처는 요청 observer가 끝난 뒤 `finally` 경로에서 isolated request-scoped DI 컨테이너를 생성하고 dispose합니다. Singleton-only route는 `RequestContext.container`가 접근되기 전까지 이 컨테이너 lifecycle을 건너뛰어 baseline 경로의 불필요한 per-request allocation을 피하면서도, graph가 모호하거나 request-scoped이면 request-scoped provider isolation을 유지합니다. 따라서 공개 `RequestContext.container` 읽기는 request-scoped provider resolve에 항상 안전합니다. singleton-only fast path는 내부 dispatcher 최적화일 뿐, 공개 context가 root container를 노출한다는 약속이 아닙니다.
|
|
182
188
|
|
|
183
|
-
어댑터는 플랫폼이 제공한다면 `FrameworkRequest.signal`에 `AbortSignal`을
|
|
189
|
+
어댑터는 플랫폼이 제공한다면 `FrameworkRequest.signal`에 `AbortSignal`을 전달하고, signal allocation이 실용적이지 않다면 `isAborted()` probe를 제공해야 합니다. Dispatcher는 per-dispatch request clone에 두 abort surface를 모두 보존하고 handler 작업 전후에 검사하므로 `AbortSignal`이 없는 어댑터도 abandon된 요청을 중단할 수 있습니다. SSE에서는 가능하면 `FrameworkResponse.stream.onClose(...)`도 노출해야 합니다. `SseResponse`는 request abort와 raw stream close를 모두 구독하고, 멱등하게 닫히며, 어느 쪽이 먼저 종료되더라도 등록한 listener를 제거합니다.
|
|
184
190
|
|
|
185
191
|
## 공개 API
|
|
186
192
|
|
package/README.md
CHANGED
|
@@ -43,6 +43,11 @@ class CreateUserDto {
|
|
|
43
43
|
name!: string;
|
|
44
44
|
}
|
|
45
45
|
|
|
46
|
+
class FindUserParamsDto {
|
|
47
|
+
@FromPath('id')
|
|
48
|
+
id!: string;
|
|
49
|
+
}
|
|
50
|
+
|
|
46
51
|
@Controller('/users')
|
|
47
52
|
export class UserController {
|
|
48
53
|
@Post('/')
|
|
@@ -52,8 +57,9 @@ export class UserController {
|
|
|
52
57
|
}
|
|
53
58
|
|
|
54
59
|
@Get('/:id')
|
|
55
|
-
|
|
56
|
-
|
|
60
|
+
@RequestDto(FindUserParamsDto)
|
|
61
|
+
getById(input: FindUserParamsDto) {
|
|
62
|
+
return { id: input.id, name: 'John Doe' };
|
|
57
63
|
}
|
|
58
64
|
}
|
|
59
65
|
```
|
|
@@ -98,7 +104,7 @@ function someDeepHelper() {
|
|
|
98
104
|
}
|
|
99
105
|
```
|
|
100
106
|
|
|
101
|
-
`runWithRequestContext(...)` preserves the active context across awaited work when the host provides `AsyncLocalStorage` through `globalThis.AsyncLocalStorage` or Node's built-in `node:async_hooks` module. The root `@fluojs/http` import does not probe or instantiate async-context storage; helpers resolve storage lazily on first use, guard `process.getBuiltinModule(...)` failures, and
|
|
107
|
+
`runWithRequestContext(...)` preserves the active context across awaited work when the host provides `AsyncLocalStorage` through `globalThis.AsyncLocalStorage` or Node's built-in `node:async_hooks` module. The root `@fluojs/http` import does not probe or instantiate async-context storage; helpers resolve storage lazily on first use, guard `process.getBuiltinModule(...)` failures, and keep the first-call synchronous callback return and throw behavior unchanged while isolating promise continuations registered before Node async storage finishes resolving. Non-Node hosts without an async-context primitive use a synchronous stack fallback that clears the context before awaited continuations resume, avoiding cross-request leaks instead of pretending to isolate overlapping async work.
|
|
102
108
|
|
|
103
109
|
### Rate limiting behind proxies
|
|
104
110
|
|
|
@@ -182,7 +188,7 @@ This compatibility path is an execution fallback for Bun bundle output; applicat
|
|
|
182
188
|
|
|
183
189
|
The dispatcher binds `RequestContext` with host async-context storage for the active dispatch only. On hosts with `AsyncLocalStorage`, including supported Node 20+ runtimes, the context remains available across awaited work. On non-Node hosts without an async-context primitive, the fallback context is synchronous-only and intentionally unavailable after `await` so overlapping requests cannot observe one another's context. When a request may use request-scoped DI through its controller graph, middleware, guards, interceptors, observers, DTO converters, a custom binder, or manual `getCurrentRequestContext()` / `assertRequestContext()` container access, the dispatcher creates and disposes an isolated request-scoped DI container from its `finally` path after request observers finish. Singleton-only routes skip that container lifecycle until `RequestContext.container` is accessed, so the baseline path avoids unnecessary per-request allocation while preserving request-scoped provider isolation whenever the graph is ambiguous or request-scoped. Public `RequestContext.container` reads are therefore always safe for resolving request-scoped providers; the singleton-only fast path is an internal dispatcher optimization, not a promise that the public context exposes the root container.
|
|
184
190
|
|
|
185
|
-
Adapters should pass an `AbortSignal` on `FrameworkRequest.signal` when the platform exposes one. For SSE, adapters should also expose `FrameworkResponse.stream.onClose(...)` when possible; `SseResponse` listens to both request abort and raw stream close, closes idempotently, and removes registered listeners when either side terminates first.
|
|
191
|
+
Adapters should pass an `AbortSignal` on `FrameworkRequest.signal` when the platform exposes one, or an `isAborted()` probe when allocating a signal is not practical. The dispatcher preserves both abort surfaces on its per-dispatch request clone and checks them before and after handler work so adapters without `AbortSignal` can still stop abandoned requests. For SSE, adapters should also expose `FrameworkResponse.stream.onClose(...)` when possible; `SseResponse` listens to both request abort and raw stream close, closes idempotently, and removes registered listeners when either side terminates first.
|
|
186
192
|
|
|
187
193
|
## Public API
|
|
188
194
|
|
|
@@ -2,9 +2,11 @@ import type { ContextKey, RequestContext } from '../types.js';
|
|
|
2
2
|
/**
|
|
3
3
|
* Runs a callback inside the request-scoped async context.
|
|
4
4
|
*
|
|
5
|
-
* Hosts with `AsyncLocalStorage` preserve the context across awaited work.
|
|
6
|
-
*
|
|
7
|
-
*
|
|
5
|
+
* Hosts with `AsyncLocalStorage` preserve the context across awaited work. During lazy
|
|
6
|
+
* `AsyncLocalStorage` resolution, promise continuations registered before the store resolves keep
|
|
7
|
+
* their request context until the returned promise settles. Hosts without an async context primitive
|
|
8
|
+
* use a stack fallback that keeps the context only for the synchronous callback frame and clears it
|
|
9
|
+
* before awaited continuations resume.
|
|
8
10
|
*
|
|
9
11
|
* @param context Request context snapshot to bind to the current async execution chain.
|
|
10
12
|
* @param callback Callback executed with `context` available through request-context helpers.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"request-context.d.ts","sourceRoot":"","sources":["../../src/context/request-context.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"request-context.d.ts","sourceRoot":"","sources":["../../src/context/request-context.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAoB9D;;;;;;;;;;;;GAYG;AACH,wBAAgB,qBAAqB,CAAC,CAAC,EAAE,OAAO,EAAE,cAAc,EAAE,QAAQ,EAAE,MAAM,CAAC,GAAG,CAAC,CAgBtF;AAED;;;;GAIG;AACH,wBAAgB,wBAAwB,IAAI,cAAc,GAAG,SAAS,CAErE;AAED;;;;;GAKG;AACH,wBAAgB,oBAAoB,IAAI,cAAc,CAUrD;AAED;;;;;GAKG;AACH,wBAAgB,oBAAoB,CAAC,OAAO,EAAE,cAAc,GAAG,cAAc,CAK5E;AAED;;;;;GAKG;AACH,wBAAgB,gBAAgB,CAAC,CAAC,EAAE,WAAW,EAAE,MAAM,GAAG,UAAU,CAAC,CAAC,CAAC,CAKtE;AAED;;;;;;GAMG;AACH,wBAAgB,eAAe,CAAC,CAAC,EAAE,OAAO,EAAE,cAAc,EAAE,GAAG,EAAE,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,SAAS,CAE7F;AAED;;;;;;GAMG;AACH,wBAAgB,eAAe,CAAC,CAAC,EAAE,OAAO,EAAE,cAAc,EAAE,GAAG,EAAE,UAAU,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,CAAC,GAAG,IAAI,CAE9F"}
|
|
@@ -4,14 +4,17 @@ import { createStackRequestContextStore } from './request-context-stack-store.js
|
|
|
4
4
|
let requestContextStore;
|
|
5
5
|
let requestContextStoreResolution;
|
|
6
6
|
let fallbackRequestContextStore;
|
|
7
|
+
let originalPromiseThen;
|
|
8
|
+
let promiseThenPatchDepth = 0;
|
|
7
9
|
const dynamicResolutionFallbackStack = [];
|
|
8
|
-
|
|
9
10
|
/**
|
|
10
11
|
* Runs a callback inside the request-scoped async context.
|
|
11
12
|
*
|
|
12
|
-
* Hosts with `AsyncLocalStorage` preserve the context across awaited work.
|
|
13
|
-
*
|
|
14
|
-
*
|
|
13
|
+
* Hosts with `AsyncLocalStorage` preserve the context across awaited work. During lazy
|
|
14
|
+
* `AsyncLocalStorage` resolution, promise continuations registered before the store resolves keep
|
|
15
|
+
* their request context until the returned promise settles. Hosts without an async context primitive
|
|
16
|
+
* use a stack fallback that keeps the context only for the synchronous callback frame and clears it
|
|
17
|
+
* before awaited continuations resume.
|
|
15
18
|
*
|
|
16
19
|
* @param context Request context snapshot to bind to the current async execution chain.
|
|
17
20
|
* @param callback Callback executed with `context` available through request-context helpers.
|
|
@@ -143,26 +146,33 @@ function getFallbackRequestContextStore() {
|
|
|
143
146
|
}
|
|
144
147
|
function runWithDynamicResolutionFallbackContext(context, callback) {
|
|
145
148
|
dynamicResolutionFallbackStack.push(context);
|
|
149
|
+
installPromiseThenContextBridge();
|
|
150
|
+
let cleanedUp = false;
|
|
151
|
+
const cleanup = () => {
|
|
152
|
+
if (cleanedUp) {
|
|
153
|
+
return;
|
|
154
|
+
}
|
|
155
|
+
cleanedUp = true;
|
|
156
|
+
removeDynamicResolutionFallbackContext(context);
|
|
157
|
+
restorePromiseThenContextBridge();
|
|
158
|
+
void resolveRequestContextStore();
|
|
159
|
+
};
|
|
146
160
|
try {
|
|
147
161
|
const result = callback();
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
});
|
|
162
|
+
if (isPromise(result)) {
|
|
163
|
+
const then = originalPromiseThen ?? Promise.prototype.then;
|
|
164
|
+
void then.call(result, cleanup, cleanup);
|
|
165
|
+
return result;
|
|
153
166
|
}
|
|
154
|
-
|
|
167
|
+
cleanup();
|
|
155
168
|
return result;
|
|
156
169
|
} catch (error) {
|
|
157
|
-
|
|
170
|
+
cleanup();
|
|
158
171
|
throw error;
|
|
159
172
|
}
|
|
160
173
|
}
|
|
161
174
|
function getDynamicResolutionFallbackContext() {
|
|
162
|
-
|
|
163
|
-
return undefined;
|
|
164
|
-
}
|
|
165
|
-
return dynamicResolutionFallbackStack[0];
|
|
175
|
+
return dynamicResolutionFallbackStack.at(-1);
|
|
166
176
|
}
|
|
167
177
|
function removeDynamicResolutionFallbackContext(context) {
|
|
168
178
|
const index = dynamicResolutionFallbackStack.lastIndexOf(context);
|
|
@@ -170,8 +180,42 @@ function removeDynamicResolutionFallbackContext(context) {
|
|
|
170
180
|
dynamicResolutionFallbackStack.splice(index, 1);
|
|
171
181
|
}
|
|
172
182
|
}
|
|
173
|
-
function
|
|
174
|
-
|
|
183
|
+
function installPromiseThenContextBridge() {
|
|
184
|
+
if (promiseThenPatchDepth === 0) {
|
|
185
|
+
originalPromiseThen = Promise.prototype.then;
|
|
186
|
+
Object.defineProperty(Promise.prototype, 'then', {
|
|
187
|
+
configurable: true,
|
|
188
|
+
value: createContextBridgePromiseThen(originalPromiseThen),
|
|
189
|
+
writable: true
|
|
190
|
+
});
|
|
191
|
+
}
|
|
192
|
+
promiseThenPatchDepth += 1;
|
|
193
|
+
}
|
|
194
|
+
function restorePromiseThenContextBridge() {
|
|
195
|
+
promiseThenPatchDepth -= 1;
|
|
196
|
+
if (promiseThenPatchDepth === 0 && originalPromiseThen) {
|
|
197
|
+
Object.defineProperty(Promise.prototype, 'then', {
|
|
198
|
+
configurable: true,
|
|
199
|
+
value: originalPromiseThen,
|
|
200
|
+
writable: true
|
|
201
|
+
});
|
|
202
|
+
originalPromiseThen = undefined;
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
function createContextBridgePromiseThen(originalThen) {
|
|
206
|
+
return function contextBridgePromiseThen(onfulfilled, onrejected) {
|
|
207
|
+
const context = getDynamicResolutionFallbackContext();
|
|
208
|
+
return originalThen.call(this, wrapPromiseCallback(context, onfulfilled), wrapPromiseCallback(context, onrejected));
|
|
209
|
+
};
|
|
210
|
+
}
|
|
211
|
+
function wrapPromiseCallback(context, callback) {
|
|
212
|
+
if (!context || typeof callback !== 'function') {
|
|
213
|
+
return callback;
|
|
214
|
+
}
|
|
215
|
+
return value => runWithDynamicResolutionFallbackContext(context, () => callback(value));
|
|
216
|
+
}
|
|
217
|
+
function isPromise(value) {
|
|
218
|
+
return value instanceof Promise;
|
|
175
219
|
}
|
|
176
220
|
function isAsyncCallback(callback) {
|
|
177
221
|
return callback.constructor.name === 'AsyncFunction';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dispatcher.d.ts","sourceRoot":"","sources":["../../src/dispatch/dispatcher.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,SAAS,EAAyB,MAAM,YAAY,CAAC;AAQnE,OAAO,KAAK,EACV,MAAM,EACN,yBAAyB,EACzB,aAAa,EACb,UAAU,EACV,gBAAgB,EAChB,gBAAgB,EAChB,iBAAiB,EAKjB,cAAc,EAEd,eAAe,EAEf,cAAc,EAId,mBAAmB,EACpB,MAAM,aAAa,CAAC;AAKrB,OAAO,EAKL,KAAK,aAAa,EAOnB,MAAM,sBAAsB,CAAC;AAE9B,YAAY,EAAE,mBAAmB,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AAC/E,OAAO,EAAE,4BAA4B,EAAE,sBAAsB,EAAE,MAAM,sBAAsB,CAAC;AAE5F,gEAAgE;AAChE,MAAM,MAAM,YAAY,GAAG,CAAC,KAAK,EAAE,OAAO,EAAE,OAAO,EAAE,gBAAgB,EAAE,QAAQ,EAAE,iBAAiB,EAAE,SAAS,CAAC,EAAE,MAAM,KAAK,OAAO,CAAC,OAAO,GAAG,IAAI,CAAC,GAAG,OAAO,GAAG,IAAI,CAAC;AAEpK,uDAAuD;AACvD,MAAM,WAAW,uBAAuB;IACtC,iDAAiD;IACjD,aAAa,CAAC,EAAE,cAAc,EAAE,CAAC;IACjC,kFAAkF;IAClF,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,kDAAkD;IAClD,kBAAkB,CAAC,EAAE,yBAAyB,CAAC;IAC/C,sDAAsD;IACtD,cAAc,EAAE,cAAc,CAAC;IAC/B,2DAA2D;IAC3D,YAAY,CAAC,EAAE,eAAe,EAAE,CAAC;IACjC,0DAA0D;IAC1D,SAAS,CAAC,EAAE,mBAAmB,EAAE,CAAC;IAClC,+DAA+D;IAC/D,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,qCAAqC;IACrC,OAAO,CAAC,EAAE,YAAY,CAAC;IACvB,sEAAsE;IACtE,YAAY,CAAC,EAAE;QACb,wDAAwD;QACxD,oBAAoB,CAAC,EAAE,SAAS,aAAa,EAAE,CAAC;KACjD,CAAC;IACF,qDAAqD;IACrD,MAAM,CAAC,EAAE,gBAAgB,CAAC;IAC1B,qDAAqD;IACrD,aAAa,EAAE,SAAS,CAAC;IACzB,+EAA+E;IAC/E,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;
|
|
1
|
+
{"version":3,"file":"dispatcher.d.ts","sourceRoot":"","sources":["../../src/dispatch/dispatcher.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,SAAS,EAAyB,MAAM,YAAY,CAAC;AAQnE,OAAO,KAAK,EACV,MAAM,EACN,yBAAyB,EACzB,aAAa,EACb,UAAU,EACV,gBAAgB,EAChB,gBAAgB,EAChB,iBAAiB,EAKjB,cAAc,EAEd,eAAe,EAEf,cAAc,EAId,mBAAmB,EACpB,MAAM,aAAa,CAAC;AAKrB,OAAO,EAKL,KAAK,aAAa,EAOnB,MAAM,sBAAsB,CAAC;AAE9B,YAAY,EAAE,mBAAmB,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AAC/E,OAAO,EAAE,4BAA4B,EAAE,sBAAsB,EAAE,MAAM,sBAAsB,CAAC;AAE5F,gEAAgE;AAChE,MAAM,MAAM,YAAY,GAAG,CAAC,KAAK,EAAE,OAAO,EAAE,OAAO,EAAE,gBAAgB,EAAE,QAAQ,EAAE,iBAAiB,EAAE,SAAS,CAAC,EAAE,MAAM,KAAK,OAAO,CAAC,OAAO,GAAG,IAAI,CAAC,GAAG,OAAO,GAAG,IAAI,CAAC;AAEpK,uDAAuD;AACvD,MAAM,WAAW,uBAAuB;IACtC,iDAAiD;IACjD,aAAa,CAAC,EAAE,cAAc,EAAE,CAAC;IACjC,kFAAkF;IAClF,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,kDAAkD;IAClD,kBAAkB,CAAC,EAAE,yBAAyB,CAAC;IAC/C,sDAAsD;IACtD,cAAc,EAAE,cAAc,CAAC;IAC/B,2DAA2D;IAC3D,YAAY,CAAC,EAAE,eAAe,EAAE,CAAC;IACjC,0DAA0D;IAC1D,SAAS,CAAC,EAAE,mBAAmB,EAAE,CAAC;IAClC,+DAA+D;IAC/D,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,qCAAqC;IACrC,OAAO,CAAC,EAAE,YAAY,CAAC;IACvB,sEAAsE;IACtE,YAAY,CAAC,EAAE;QACb,wDAAwD;QACxD,oBAAoB,CAAC,EAAE,SAAS,aAAa,EAAE,CAAC;KACjD,CAAC;IACF,qDAAqD;IACrD,MAAM,CAAC,EAAE,gBAAgB,CAAC;IAC1B,qDAAqD;IACrD,aAAa,EAAE,SAAS,CAAC;IACzB,+EAA+E;IAC/E,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AA08BD;;;;;GAKG;AACH,wBAAgB,gBAAgB,CAAC,OAAO,EAAE,uBAAuB,GAAG,UAAU,CAuF7E;AAED;;;;;GAKG;AACH,wBAAgB,0BAA0B,CAAC,UAAU,EAAE,UAAU,GAAG,aAAa,GAAG,SAAS,CAE5F;AAED,OAAO,EAAE,mBAAmB,EAAE,MAAM,sBAAsB,CAAC"}
|