@brika/di 0.3.0
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 +221 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +23 -0
- package/src/core/container.ts +26 -0
- package/src/core/index.ts +13 -0
- package/src/core/inject.ts +22 -0
- package/src/index.ts +20 -0
- package/src/testing/__tests__/use-test-bed.test.ts +136 -0
- package/src/testing/deep-stub.ts +64 -0
- package/src/testing/index.ts +44 -0
- package/src/testing/test-bed.ts +103 -0
- package/src/testing/types.ts +17 -0
- package/src/testing/use-test-bed.ts +40 -0
- package/tsconfig.json +9 -0
package/README.md
ADDED
|
@@ -0,0 +1,221 @@
|
|
|
1
|
+
# @brika/di
|
|
2
|
+
|
|
3
|
+
Dependency injection utilities for Brika, built on top of [tsyringe](https://github.com/microsoft/tsyringe).
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
bun add @brika/di
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
### Core DI
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import { container, inject, injectable, singleton } from '@brika/di';
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
#### Decorators
|
|
20
|
+
|
|
21
|
+
Use `@injectable()` or `@singleton()` to mark classes for dependency injection:
|
|
22
|
+
|
|
23
|
+
```typescript
|
|
24
|
+
import { injectable, singleton } from '@brika/di';
|
|
25
|
+
|
|
26
|
+
@injectable()
|
|
27
|
+
class UserService {
|
|
28
|
+
getUser(id: string) { /* ... */ }
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
@singleton()
|
|
32
|
+
class ConfigService {
|
|
33
|
+
readonly port = 3000;
|
|
34
|
+
}
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
#### Property Injection
|
|
38
|
+
|
|
39
|
+
Use `inject()` as a property initializer (Angular-style):
|
|
40
|
+
|
|
41
|
+
```typescript
|
|
42
|
+
import { inject } from '@brika/di';
|
|
43
|
+
|
|
44
|
+
@injectable()
|
|
45
|
+
class UserController {
|
|
46
|
+
private readonly users = inject(UserService);
|
|
47
|
+
private readonly config = inject(ConfigService);
|
|
48
|
+
|
|
49
|
+
getUser(id: string) {
|
|
50
|
+
return this.users.getUser(id);
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
#### Container Access
|
|
56
|
+
|
|
57
|
+
Direct container access when needed:
|
|
58
|
+
|
|
59
|
+
```typescript
|
|
60
|
+
import { container } from '@brika/di';
|
|
61
|
+
|
|
62
|
+
// Resolve a service
|
|
63
|
+
const userService = container.resolve(UserService);
|
|
64
|
+
|
|
65
|
+
// Register an instance
|
|
66
|
+
container.registerInstance(ConfigService, myConfig);
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
## Testing
|
|
70
|
+
|
|
71
|
+
```typescript
|
|
72
|
+
import { useTestBed, stub, get } from '@brika/di/testing';
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
### Quick Start with `useTestBed`
|
|
76
|
+
|
|
77
|
+
The simplest way to mock dependencies - lifecycle is handled automatically:
|
|
78
|
+
|
|
79
|
+
```typescript
|
|
80
|
+
import { useTestBed, stub, get } from '@brika/di/testing';
|
|
81
|
+
import { mock } from 'bun:test';
|
|
82
|
+
|
|
83
|
+
describe('UserController', () => {
|
|
84
|
+
useTestBed(); // Auto beforeEach/afterEach, autoStub enabled
|
|
85
|
+
|
|
86
|
+
test('gets user', () => {
|
|
87
|
+
stub(Logger);
|
|
88
|
+
stub(UserService, {
|
|
89
|
+
getUser: mock().mockReturnValue({ id: '1', name: 'Test' })
|
|
90
|
+
});
|
|
91
|
+
|
|
92
|
+
const controller = get(UserController);
|
|
93
|
+
expect(controller.getUser('1').name).toBe('Test');
|
|
94
|
+
});
|
|
95
|
+
});
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
### With Setup Function
|
|
99
|
+
|
|
100
|
+
Pass a setup function to run before each test:
|
|
101
|
+
|
|
102
|
+
```typescript
|
|
103
|
+
describe('UserController', () => {
|
|
104
|
+
useTestBed(() => {
|
|
105
|
+
stub(Logger);
|
|
106
|
+
stub(UserService, {
|
|
107
|
+
getUser: mock().mockReturnValue({ id: '1', name: 'Test' })
|
|
108
|
+
});
|
|
109
|
+
});
|
|
110
|
+
|
|
111
|
+
test('gets user', () => {
|
|
112
|
+
const controller = get(UserController);
|
|
113
|
+
expect(controller.getUser('1').name).toBe('Test');
|
|
114
|
+
});
|
|
115
|
+
});
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
### Options
|
|
119
|
+
|
|
120
|
+
```typescript
|
|
121
|
+
useTestBed({ autoStub: false }); // Disable auto-stubbing
|
|
122
|
+
useTestBed({ autoStub: false }, () => { /* setup */ });
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
### Deep Stubs
|
|
126
|
+
|
|
127
|
+
`stub()` creates proxy-based stubs that auto-mock all properties and methods:
|
|
128
|
+
|
|
129
|
+
```typescript
|
|
130
|
+
import { useTestBed, stub, get } from '@brika/di/testing';
|
|
131
|
+
|
|
132
|
+
useTestBed();
|
|
133
|
+
|
|
134
|
+
// All methods auto-stubbed, returns nested stubs for chaining
|
|
135
|
+
stub(Logger);
|
|
136
|
+
|
|
137
|
+
const logger = get(Logger);
|
|
138
|
+
logger.info('test'); // no-op
|
|
139
|
+
logger.withSource('hub').info('test'); // also works
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
Partial overrides merge with auto-stubs:
|
|
143
|
+
|
|
144
|
+
```typescript
|
|
145
|
+
const errors: string[] = [];
|
|
146
|
+
|
|
147
|
+
stub(Logger, {
|
|
148
|
+
withSource: () => ({
|
|
149
|
+
error: (msg: string) => errors.push(msg)
|
|
150
|
+
// info, warn, debug are auto-stubbed
|
|
151
|
+
})
|
|
152
|
+
});
|
|
153
|
+
```
|
|
154
|
+
|
|
155
|
+
### createDeepStub
|
|
156
|
+
|
|
157
|
+
For standalone use without TestBed:
|
|
158
|
+
|
|
159
|
+
```typescript
|
|
160
|
+
import { createDeepStub } from '@brika/di/testing';
|
|
161
|
+
|
|
162
|
+
const stub = createDeepStub<Logger>({
|
|
163
|
+
error: (msg) => console.log(msg)
|
|
164
|
+
});
|
|
165
|
+
|
|
166
|
+
stub.info('test'); // no-op
|
|
167
|
+
stub.error('oops'); // logs 'oops'
|
|
168
|
+
```
|
|
169
|
+
|
|
170
|
+
## Package Structure
|
|
171
|
+
|
|
172
|
+
```
|
|
173
|
+
src/
|
|
174
|
+
├── index.ts # Main exports
|
|
175
|
+
├── core/
|
|
176
|
+
│ ├── index.ts # Core re-exports
|
|
177
|
+
│ ├── container.ts # DI container with hot reload support
|
|
178
|
+
│ └── inject.ts # inject() function
|
|
179
|
+
└── testing/
|
|
180
|
+
├── index.ts # Testing re-exports
|
|
181
|
+
├── test-bed.ts # TestBed singleton
|
|
182
|
+
├── use-test-bed.ts # useTestBed() hook
|
|
183
|
+
├── deep-stub.ts # createDeepStub factory
|
|
184
|
+
└── types.ts # Type definitions
|
|
185
|
+
```
|
|
186
|
+
|
|
187
|
+
## Hot Reload Support
|
|
188
|
+
|
|
189
|
+
The container persists across module reloads (useful for development with tools like Bun's `--watch`). Singletons remain instantiated between reloads.
|
|
190
|
+
|
|
191
|
+
## API Reference
|
|
192
|
+
|
|
193
|
+
### Core
|
|
194
|
+
|
|
195
|
+
| Export | Description |
|
|
196
|
+
|--------|-------------|
|
|
197
|
+
| `container` | The DI container instance |
|
|
198
|
+
| `inject<T>(token)` | Resolve a dependency (property initializer) |
|
|
199
|
+
| `@injectable()` | Mark a class as injectable |
|
|
200
|
+
| `@singleton()` | Mark a class as a singleton |
|
|
201
|
+
|
|
202
|
+
### Testing
|
|
203
|
+
|
|
204
|
+
| Export | Description |
|
|
205
|
+
|--------|-------------|
|
|
206
|
+
| `useTestBed()` | Hook with auto lifecycle (recommended) |
|
|
207
|
+
| `stub(token, overrides?)` | Create and register a deep stub |
|
|
208
|
+
| `stubAll(...tokens)` | Stub multiple services at once |
|
|
209
|
+
| `provide(token, value)` | Register a mock value (strict, no proxy) |
|
|
210
|
+
| `get(token)` | Resolve from test container |
|
|
211
|
+
| `reset()` | Reset container for next test |
|
|
212
|
+
| `createDeepStub<T>(overrides?)` | Create a standalone deep stub |
|
|
213
|
+
|
|
214
|
+
### Types
|
|
215
|
+
|
|
216
|
+
| Type | Description |
|
|
217
|
+
|------|-------------|
|
|
218
|
+
| `Constructor<T>` | Constructor type for DI tokens |
|
|
219
|
+
| `DeepPartial<T>` | Nested partial type for overrides |
|
|
220
|
+
| `DependencyContainer` | Container type from tsyringe |
|
|
221
|
+
| `InjectionToken<T>` | Token type for injection |
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"fileNames":["../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.array.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.collection.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.object.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.promise.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.string.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.array.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.collection.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.promise.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.error.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.bun/reflect-metadata@0.2.2/node_modules/reflect-metadata/index.d.ts","../../../node_modules/.bun/tsyringe@4.10.0/node_modules/tsyringe/dist/typings/types/constructor.d.ts","../../../node_modules/.bun/tsyringe@4.10.0/node_modules/tsyringe/dist/typings/lazy-helpers.d.ts","../../../node_modules/.bun/tsyringe@4.10.0/node_modules/tsyringe/dist/typings/providers/class-provider.d.ts","../../../node_modules/.bun/tsyringe@4.10.0/node_modules/tsyringe/dist/typings/providers/value-provider.d.ts","../../../node_modules/.bun/tsyringe@4.10.0/node_modules/tsyringe/dist/typings/types/transform.d.ts","../../../node_modules/.bun/tsyringe@4.10.0/node_modules/tsyringe/dist/typings/providers/injection-token.d.ts","../../../node_modules/.bun/tsyringe@4.10.0/node_modules/tsyringe/dist/typings/providers/token-provider.d.ts","../../../node_modules/.bun/tsyringe@4.10.0/node_modules/tsyringe/dist/typings/providers/provider.d.ts","../../../node_modules/.bun/tsyringe@4.10.0/node_modules/tsyringe/dist/typings/providers/factory-provider.d.ts","../../../node_modules/.bun/tsyringe@4.10.0/node_modules/tsyringe/dist/typings/types/lifecycle.d.ts","../../../node_modules/.bun/tsyringe@4.10.0/node_modules/tsyringe/dist/typings/types/registration-options.d.ts","../../../node_modules/.bun/tsyringe@4.10.0/node_modules/tsyringe/dist/typings/types/disposable.d.ts","../../../node_modules/.bun/tsyringe@4.10.0/node_modules/tsyringe/dist/typings/types/frequency.d.ts","../../../node_modules/.bun/tsyringe@4.10.0/node_modules/tsyringe/dist/typings/types/interceptor-options.d.ts","../../../node_modules/.bun/tsyringe@4.10.0/node_modules/tsyringe/dist/typings/types/dependency-container.d.ts","../../../node_modules/.bun/tsyringe@4.10.0/node_modules/tsyringe/dist/typings/types/dictionary.d.ts","../../../node_modules/.bun/tsyringe@4.10.0/node_modules/tsyringe/dist/typings/types/index.d.ts","../../../node_modules/.bun/tsyringe@4.10.0/node_modules/tsyringe/dist/typings/decorators/auto-injectable.d.ts","../../../node_modules/.bun/tsyringe@4.10.0/node_modules/tsyringe/dist/typings/decorators/inject.d.ts","../../../node_modules/.bun/tsyringe@4.10.0/node_modules/tsyringe/dist/typings/decorators/injectable.d.ts","../../../node_modules/.bun/tsyringe@4.10.0/node_modules/tsyringe/dist/typings/decorators/registry.d.ts","../../../node_modules/.bun/tsyringe@4.10.0/node_modules/tsyringe/dist/typings/decorators/singleton.d.ts","../../../node_modules/.bun/tsyringe@4.10.0/node_modules/tsyringe/dist/typings/decorators/inject-all.d.ts","../../../node_modules/.bun/tsyringe@4.10.0/node_modules/tsyringe/dist/typings/decorators/inject-all-with-transform.d.ts","../../../node_modules/.bun/tsyringe@4.10.0/node_modules/tsyringe/dist/typings/providers/index.d.ts","../../../node_modules/.bun/tsyringe@4.10.0/node_modules/tsyringe/dist/typings/decorators/inject-with-transform.d.ts","../../../node_modules/.bun/tsyringe@4.10.0/node_modules/tsyringe/dist/typings/decorators/scoped.d.ts","../../../node_modules/.bun/tsyringe@4.10.0/node_modules/tsyringe/dist/typings/decorators/index.d.ts","../../../node_modules/.bun/tsyringe@4.10.0/node_modules/tsyringe/dist/typings/factories/factory-function.d.ts","../../../node_modules/.bun/tsyringe@4.10.0/node_modules/tsyringe/dist/typings/factories/instance-caching-factory.d.ts","../../../node_modules/.bun/tsyringe@4.10.0/node_modules/tsyringe/dist/typings/factories/instance-per-container-caching-factory.d.ts","../../../node_modules/.bun/tsyringe@4.10.0/node_modules/tsyringe/dist/typings/factories/predicate-aware-class-factory.d.ts","../../../node_modules/.bun/tsyringe@4.10.0/node_modules/tsyringe/dist/typings/factories/index.d.ts","../../../node_modules/.bun/tsyringe@4.10.0/node_modules/tsyringe/dist/typings/dependency-container.d.ts","../../../node_modules/.bun/tsyringe@4.10.0/node_modules/tsyringe/dist/typings/index.d.ts","../src/core/container.ts","../src/core/inject.ts","../src/core/index.ts","../src/index.ts","../src/testing/deep-stub.ts","../src/testing/types.ts","../src/testing/test-bed.ts","../src/testing/use-test-bed.ts","../src/testing/index.ts","../src/testing/__tests__/use-test-bed.test.ts","../../../node_modules/.bun/undici-types@7.16.0/node_modules/undici-types/utility.d.ts","../../../node_modules/.bun/undici-types@7.16.0/node_modules/undici-types/header.d.ts","../../../node_modules/.bun/undici-types@7.16.0/node_modules/undici-types/readable.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/globals.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/web-globals/blob.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/web-globals/console.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/web-globals/crypto.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/web-globals/encoding.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/web-globals/importmeta.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/web-globals/messaging.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/web-globals/navigator.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/web-globals/performance.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/web-globals/storage.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/web-globals/streams.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/web-globals/timers.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/web-globals/url.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/assert.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/buffer.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/child_process.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/cluster.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/console.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/constants.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/crypto.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/dgram.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/dns.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/domain.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/events.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/fs.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/http.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/http2.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/https.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/inspector.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/inspector/promises.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/module.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/net.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/os.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/path.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/path/posix.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/path/win32.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/process.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/punycode.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/querystring.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/quic.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/readline.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/repl.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/sea.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/sqlite.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/stream.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/test.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/test/reporters.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/timers.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/tls.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/tty.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/url.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/util.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/util/types.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/v8.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/vm.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/wasi.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/zlib.d.ts","../../../node_modules/.bun/@types+node@25.0.3/node_modules/@types/node/index.d.ts","../../../node_modules/.bun/undici-types@7.16.0/node_modules/undici-types/fetch.d.ts","../../../node_modules/.bun/undici-types@7.16.0/node_modules/undici-types/formdata.d.ts","../../../node_modules/.bun/undici-types@7.16.0/node_modules/undici-types/connector.d.ts","../../../node_modules/.bun/undici-types@7.16.0/node_modules/undici-types/client-stats.d.ts","../../../node_modules/.bun/undici-types@7.16.0/node_modules/undici-types/client.d.ts","../../../node_modules/.bun/undici-types@7.16.0/node_modules/undici-types/errors.d.ts","../../../node_modules/.bun/undici-types@7.16.0/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.bun/undici-types@7.16.0/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.bun/undici-types@7.16.0/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.bun/undici-types@7.16.0/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.bun/undici-types@7.16.0/node_modules/undici-types/pool.d.ts","../../../node_modules/.bun/undici-types@7.16.0/node_modules/undici-types/handlers.d.ts","../../../node_modules/.bun/undici-types@7.16.0/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.bun/undici-types@7.16.0/node_modules/undici-types/h2c-client.d.ts","../../../node_modules/.bun/undici-types@7.16.0/node_modules/undici-types/agent.d.ts","../../../node_modules/.bun/undici-types@7.16.0/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.bun/undici-types@7.16.0/node_modules/undici-types/mock-call-history.d.ts","../../../node_modules/.bun/undici-types@7.16.0/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.bun/undici-types@7.16.0/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.bun/undici-types@7.16.0/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.bun/undici-types@7.16.0/node_modules/undici-types/snapshot-agent.d.ts","../../../node_modules/.bun/undici-types@7.16.0/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.bun/undici-types@7.16.0/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.bun/undici-types@7.16.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.bun/undici-types@7.16.0/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.bun/undici-types@7.16.0/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.bun/undici-types@7.16.0/node_modules/undici-types/api.d.ts","../../../node_modules/.bun/undici-types@7.16.0/node_modules/undici-types/cache-interceptor.d.ts","../../../node_modules/.bun/undici-types@7.16.0/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.bun/undici-types@7.16.0/node_modules/undici-types/util.d.ts","../../../node_modules/.bun/undici-types@7.16.0/node_modules/undici-types/cookies.d.ts","../../../node_modules/.bun/undici-types@7.16.0/node_modules/undici-types/patch.d.ts","../../../node_modules/.bun/undici-types@7.16.0/node_modules/undici-types/websocket.d.ts","../../../node_modules/.bun/undici-types@7.16.0/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.bun/undici-types@7.16.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.bun/undici-types@7.16.0/node_modules/undici-types/content-type.d.ts","../../../node_modules/.bun/undici-types@7.16.0/node_modules/undici-types/cache.d.ts","../../../node_modules/.bun/undici-types@7.16.0/node_modules/undici-types/index.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/globals.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/s3.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/fetch.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/jsx.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/bun.d.ts","../../../node_modules/.bun/bun-types@1.3.8/node_modules/bun-types/globals.d.ts","../../../node_modules/.bun/bun-types@1.3.8/node_modules/bun-types/s3.d.ts","../../../node_modules/.bun/bun-types@1.3.8/node_modules/bun-types/fetch.d.ts","../../../node_modules/.bun/bun-types@1.3.8/node_modules/bun-types/jsx.d.ts","../../../node_modules/.bun/bun-types@1.3.8/node_modules/bun-types/bun.d.ts","../../../node_modules/.bun/bun-types@1.3.8/node_modules/bun-types/extensions.d.ts","../../../node_modules/.bun/bun-types@1.3.8/node_modules/bun-types/devserver.d.ts","../../../node_modules/.bun/bun-types@1.3.8/node_modules/bun-types/ffi.d.ts","../../../node_modules/.bun/bun-types@1.3.8/node_modules/bun-types/html-rewriter.d.ts","../../../node_modules/.bun/bun-types@1.3.8/node_modules/bun-types/jsc.d.ts","../../../node_modules/.bun/bun-types@1.3.8/node_modules/bun-types/sqlite.d.ts","../../../node_modules/.bun/bun-types@1.3.8/node_modules/bun-types/vendor/expect-type/utils.d.ts","../../../node_modules/.bun/bun-types@1.3.8/node_modules/bun-types/vendor/expect-type/overloads.d.ts","../../../node_modules/.bun/bun-types@1.3.8/node_modules/bun-types/vendor/expect-type/branding.d.ts","../../../node_modules/.bun/bun-types@1.3.8/node_modules/bun-types/vendor/expect-type/messages.d.ts","../../../node_modules/.bun/bun-types@1.3.8/node_modules/bun-types/vendor/expect-type/index.d.ts","../../../node_modules/.bun/bun-types@1.3.8/node_modules/bun-types/test.d.ts","../../../node_modules/.bun/bun-types@1.3.8/node_modules/bun-types/wasm.d.ts","../../../node_modules/.bun/bun-types@1.3.8/node_modules/bun-types/overrides.d.ts","../../../node_modules/.bun/bun-types@1.3.8/node_modules/bun-types/deprecated.d.ts","../../../node_modules/.bun/bun-types@1.3.8/node_modules/bun-types/redis.d.ts","../../../node_modules/.bun/bun-types@1.3.8/node_modules/bun-types/shell.d.ts","../../../node_modules/.bun/bun-types@1.3.8/node_modules/bun-types/serve.d.ts","../../../node_modules/.bun/bun-types@1.3.8/node_modules/bun-types/sql.d.ts","../../../node_modules/.bun/bun-types@1.3.8/node_modules/bun-types/security.d.ts","../../../node_modules/.bun/bun-types@1.3.8/node_modules/bun-types/bundle.d.ts","../../../node_modules/.bun/bun-types@1.3.8/node_modules/bun-types/bun.ns.d.ts","../../../node_modules/.bun/bun-types@1.3.8/node_modules/bun-types/index.d.ts","../../../node_modules/.bun/@types+bun@1.3.8/node_modules/@types/bun/index.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/extensions.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/devserver.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/ffi.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/html-rewriter.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/jsc.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/sqlite.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/vendor/expect-type/utils.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/vendor/expect-type/overloads.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/vendor/expect-type/branding.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/vendor/expect-type/messages.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/vendor/expect-type/index.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/test.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/wasm.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/overrides.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/deprecated.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/redis.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/shell.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/serve.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/sql.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/security.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/bundle.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/bun.ns.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/index.d.ts"],"fileIdsList":[[133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,281,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,151,152,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,153,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,193,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,155,160,162,165,166,169,171,172,173,175,185,190,202,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,155,156,162,165,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,157,162,166,169,171,172,173,185,203,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,158,159,162,166,169,171,172,173,176,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,159,162,166,169,171,172,173,185,190,199,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,272,273,274,275,276,277,278,279,283,284,285,287,288,294,295,296,297,298,299,300,301,302,303],[133,154,160,162,165,166,169,171,172,173,175,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,153,154,161,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,163,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,164,165,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,153,154,162,165,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,165,166,167,169,171,172,173,185,190,202,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,272,273,274,275,276,277,278,279,283,284,285,287,288,294,295,296,297,298,299,300,301,302,303],[133,154,162,165,166,167,169,171,172,173,185,190,193,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,272,273,274,275,276,277,278,279,283,284,285,287,288,294,295,296,297,298,299,300,301,302,303],[133,154,162,165,166,168,169,171,172,173,175,185,190,202,248,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,165,166,168,169,171,172,173,175,185,190,199,202,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,272,273,274,275,276,277,278,279,283,284,285,287,288,294,295,296,297,298,299,300,301,302,303],[133,154,162,166,168,169,170,171,172,173,185,190,199,202,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,272,273,274,275,276,277,278,279,283,284,285,287,288,294,295,296,297,298,299,300,301,302,303],[131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,165,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,174,185,202,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,165,166,169,171,172,173,175,185,190,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,176,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,272,273,274,275,276,277,278,279,283,284,285,287,288,294,295,296,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,177,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,165,166,169,171,172,173,180,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,272,273,274,275,276,277,278,279,283,284,285,287,288,294,295,296,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,182,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,183,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,159,162,166,169,171,172,173,175,185,193,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,165,166,169,171,172,173,185,186,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,187,203,206,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,165,166,169,171,172,173,185,190,192,193,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,191,193,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,193,203,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,194,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,151,154,162,166,169,171,172,173,185,190,196,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,190,195,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,165,166,169,171,172,173,185,197,198,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,197,198,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,159,162,166,169,171,172,173,175,185,190,199,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,272,273,274,275,276,277,278,279,283,284,285,287,288,294,295,296,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,200,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,175,185,201,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,168,169,171,172,173,183,185,202,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,203,204,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,159,162,166,169,171,172,173,185,204,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,190,205,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,174,185,206,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,207,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,157,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,159,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,203,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,248,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,202,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,208,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,180,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,193,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,272,273,274,275,276,277,278,279,283,284,285,287,288,294,295,296,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,198,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,165,166,167,169,171,172,173,180,185,190,193,202,205,206,208,248,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,272,273,274,275,276,277,278,279,283,284,285,287,288,294,295,296,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,190,209,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,159,162,166,168,169,171,172,173,185,199,203,208,248,249,250,251,253,254,255,256,257,259,260,261,263,264,270,271,272,273,274,275,276,277,278,279,283,284,285,287,288,294,295,296,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,248,249,250,251,253,254,255,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,159,162,166,169,171,172,173,180,185,190,193,199,203,208,248,249,250,251,253,255,256,258,259,260,261,263,264,270,271,272,273,274,275,276,277,278,279,283,284,285,287,288,294,295,296,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,210,249,250,251,253,254,255,256,258,259,260,261,262,263,264,270,271,272,273,274,275,276,277,278,279,280,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,157,159,162,166,167,169,171,172,173,176,185,193,199,202,209,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,296,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,249,250,251,253,254,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,269,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,265,266,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,265,266,267,268,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,265,267,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,265,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,159,162,166,168,169,171,172,173,185,199,203,208,248,249,250,251,252,254,255,256,258,259,260,261,263,264,270,271,272,273,274,275,276,277,278,279,283,284,285,287,288,294,295,296,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302],[133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,248,249,250,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,287,288,294,295,297,298,299,300,301,302,303],[133,154,159,162,166,169,171,172,173,180,185,190,193,199,203,208,248,250,251,253,254,255,256,258,259,260,261,263,264,270,271,272,273,274,275,276,277,278,279,283,284,285,287,288,294,295,296,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,210,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,286,287,288,294,295,296,297,298,299,300,301,302,303,304],[133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,288,294,295,297,298,299,300,301,302,303],[133,154,157,159,162,166,167,169,171,172,173,176,185,193,199,202,209,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,272,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,249,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,303],[133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,301,302,303],[133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,300,301,302,303],[133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,302,303],[133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,293,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,289,290,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,289,290,291,292,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,289,291,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,289,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,297,298,299,300,301,302,303],[83,133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[100,101,102,103,104,105,106,108,109,133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[87,88,133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[88,133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[87,107,133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[83,88,133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[88,90,93,133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[83,92,107,133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[83,88,90,93,97,133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[97,133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[111,112,113,114,133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[111,133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[83,97,111,133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[84,99,107,110,115,116,133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[83,84,90,133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[90,97,133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[85,86,88,89,90,91,133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[83,84,87,133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[85,86,89,91,133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[88,90,133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[90,133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[83,85,86,88,89,91,93,94,96,133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[83,87,92,93,94,95,96,97,98,133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[95,133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[92,133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,202,214,217,220,221,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,272,273,274,275,276,277,278,279,283,284,285,287,288,294,295,296,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,190,202,217,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,272,273,274,275,276,277,278,279,283,284,285,287,288,294,295,296,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,202,217,221,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,272,273,274,275,276,277,278,279,283,284,285,287,288,294,295,296,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,190,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,211,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,215,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,202,213,214,217,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,272,273,274,275,276,277,278,279,283,284,285,287,288,294,295,296,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,175,185,199,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,210,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,210,211,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,175,185,202,213,217,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,272,273,274,275,276,277,278,279,283,284,285,287,288,294,295,296,297,298,299,300,301,302,303],[128,129,130,133,154,162,165,166,169,171,172,173,185,190,202,212,216,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,272,273,274,275,276,277,278,279,283,284,285,287,288,294,295,296,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,217,225,233,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[129,133,154,162,166,169,171,172,173,185,215,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,217,242,243,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[129,133,154,162,166,169,171,172,173,185,193,202,210,212,217,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,272,273,274,275,276,277,278,279,283,284,285,287,288,294,295,296,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,210,211,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,272,273,274,275,276,277,278,279,283,284,285,287,288,294,295,296,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,217,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,202,213,217,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,272,273,274,275,276,277,278,279,283,284,285,287,288,294,295,296,297,298,299,300,301,302,303],[128,133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,211,212,213,215,216,217,218,219,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,243,244,245,246,247,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,217,235,238,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,217,225,226,227,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,215,217,226,228,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,216,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[129,133,154,162,166,169,171,172,173,185,211,217,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,217,221,226,228,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,221,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,202,215,217,220,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,272,273,274,275,276,277,278,279,283,284,285,287,288,294,295,296,297,298,299,300,301,302,303],[129,133,154,162,166,169,171,172,173,185,213,217,225,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,190,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,272,273,274,275,276,277,278,279,283,284,285,287,288,294,295,296,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,217,235,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,228,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[133,154,162,166,169,171,172,173,185,193,208,210,211,217,242,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,272,273,274,275,276,277,278,279,283,284,285,287,288,294,295,296,297,298,299,300,301,302,303],[82,117,133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[118,119,133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[117,118,133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[120,133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[82,117,126,133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[122,123,124,125,133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[82,118,122,123,133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303],[124,133,154,162,166,169,171,172,173,185,249,250,251,253,254,255,256,258,259,260,261,263,264,270,271,273,274,275,276,277,278,279,283,284,285,287,288,294,295,297,298,299,300,301,302,303]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"2ab096661c711e4a81cc464fa1e6feb929a54f5340b46b0a07ac6bbf857471f0","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","affectsGlobalScope":true,"impliedFormat":1},{"version":"73f78680d4c08509933daf80947902f6ff41b6230f94dd002ae372620adb0f60","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5239f5c01bcfa9cd32f37c496cf19c61d69d37e48be9de612b541aac915805b","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d6d51a5118d000ed3bfe6e1dd1335bebfff3fef23cd2af2f84a24d30f90cc90","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc9db798c605d6aca65d8671c7c83708f6f21c468c6a5154c2c215db716e85de","impliedFormat":1},{"version":"f4e1782993dd70717ee36648fe233c0d3ca092d262591227067a7ead3a125e1a","impliedFormat":1},{"version":"2c9dd6a0d4560397e574fa5bee2c91bf7b3324ce263f2f9e5ce3bc958b1e9c37","impliedFormat":1},{"version":"ff7b207d9330382e879e5f6b7400e3654a7aff89fdd3772fa68fa8d249090bfa","impliedFormat":1},{"version":"0bce4a5303f795de76667a9f1a1f27eea3ac35cb373ff2fb5447b6c83017192c","impliedFormat":1},{"version":"60ed20c995d33b96065518989ff8058491e1714dde308cbd8276b5e6ec194f63","impliedFormat":1},{"version":"4cdc739297d1472c5be48be0a533eddfb48744979337d0d44b23baa80642b682","impliedFormat":1},{"version":"4965db36895b5c73e1ffb8618693273d8bff1023f34827782c453e2308d5e901","impliedFormat":1},{"version":"d23463a649a21062f25db690d6bf4d132b039caff460f2df7c19e0637b2cad24","impliedFormat":1},{"version":"c442590ef92fcb502f7762f61913c0db9027839a63f04b12fcd687996853e2f0","impliedFormat":1},{"version":"81698b4d02b5402da4c93e9c42fed5871eb7db309b7197ba0a5c88209c9166a9","impliedFormat":1},{"version":"07740ea8049f2d198d58efd84cf0f5336275f2faa4638a9b85ad9fe0ea45aa24","impliedFormat":1},{"version":"b09577e6d3e3d30676bbe845435fe9c54d3bc35d2080746b8b6311a0cad051a8","impliedFormat":1},{"version":"4a414077d6debe40ef7c90dea94a659dfce04fe6b13dd4b54c5809da432623fa","impliedFormat":1},{"version":"c134fb7af7604a2d726ae20bed9a06a318b19bc2348b0f58f1b34c9a24021481","impliedFormat":1},{"version":"b79fbdf51e1f2d9f9ddb5d2f0f268e6994a6995a6fd4c8dc7d15bbcf14898368","impliedFormat":1},{"version":"0047be65cc043f837700d309d7cd5303ca254641ca88866929e03b0e2d01fc71","impliedFormat":1},{"version":"5936874e57154afe573f2be06aff14c0633fba79c933e64a96dd700b61420159","impliedFormat":1},{"version":"da995c896f6e89945f308b55cd55b482606befd093320e3bf9e7fc69e32bf614","impliedFormat":1},{"version":"f7f35650fc43a8277846d1cbf6835da5bbf517609263f9d1e7b1613bcdb3860a","impliedFormat":1},{"version":"486db679bd2a44646d50cc0f2ca117c57f3077bb583917dc7ee8af6aad88f1da","impliedFormat":1},{"version":"f2ab5958425520dbbb16293b42fbdf8c8ddc287758a513cad37b73c614542e88","impliedFormat":1},{"version":"55c35d24857fd10b99a0233ee2aa4bbecd92b35b0489241df9f31757a847aaa4","impliedFormat":1},{"version":"8efca061f43daa2dfd081be78a39b58b791369eea85852d00dad0aca9d4b3e54","impliedFormat":1},{"version":"9be18c81419bcee8b2d07485f10980bffd711adf319d27eac3a8bb623624e883","impliedFormat":1},{"version":"ea6c23043dff1adfc676e61219c20dfa5c4077dc9f9b600903cf1163874a5edd","impliedFormat":1},{"version":"9760150ca6e8646fac3d89eac6b2a29892671dfcfcafdb590bf9248b512389b1","impliedFormat":1},{"version":"88b1ab4925fb25ba67cb06994203487fc42d77706f83c5ff7c007890bedfd580","impliedFormat":1},{"version":"b62917efdaa93203b769e6dd3924fbd560e5ed1077ae9bf4302dc859e2732fc9","impliedFormat":1},{"version":"7bcf1ebe7527831bbe01b7bea8cf1621d0df7c8de0b1fcfeab2147da433cd0d7","impliedFormat":1},{"version":"d29b1c1ed9ed02dfd097d22b010f2bc464f01b2fdd8598f1535ffa60d02bc836","impliedFormat":1},{"version":"308f5a6feb41ed9399c2c566d5a651cc1260967a90449c79d63ffe51ad855e9b","impliedFormat":1},{"version":"a0ac2951002254928898562ffb771a1dc0e9dac7fc4b4c4e77149354888ed645","impliedFormat":1},{"version":"da88a126c1c6fbdba4e0b525c4658b4ef33ae9ccead34c5c583966ea7f7201ca","impliedFormat":1},{"version":"ece80ae193eb00bbfd1768b05fbe42edf8172c044b7e7f2bc4d4a3247ab055b0","impliedFormat":1},{"version":"6e3f32d637b2a4ad27562dff2c7229ba050f1d6d3b417645e1d5660d95f4ba68","signature":"3bd0b092268984be36c5a7a7cf7e2a83eec627a34c848eaae158cbe9ca3c353c"},{"version":"6a24e8066511bdba914e0447be290868aa0fcc8f811f908499604771ada2b759","signature":"2f05ef2864f0cc41be42846f345277a28b88b582aac3d04775ab7aa50a7e152b"},{"version":"7544d5a32dc84e0697712137b2fa18c85847aace21c2f4af90c2e7f1d82f0166","signature":"beffc9eb9f86ddcacec3b37722445832bb290876a7ebe435318ab65bf9ea026b"},{"version":"e2a4bc3a553ac2ddd88bbee789cfa508646f3c790468f47a64ef78616eae902b","signature":"efe34cd53b5f013869bcdf69151f0562cbb80afa39de4f41230d2107ddf6e768"},{"version":"707bc39d9a9f3cc971922cd10cbff8d167635d44a90f13f8822bdd2cbaefc103","signature":"9821bc67dbb8e0d6d1edd0c8c879611801063db5c6833bedc62e225c8681676c"},{"version":"a5c91a2f8725a8cc47e36021ae61f62bd0ee6ecbce61538bb433cbc95a84ad41","signature":"2aded069ce638719bfa8f3c8ef84eb4433ac6487828809ff7bed9a03e18de244"},{"version":"3ed94aca7c4bf89a87561bbabb62afd7bc4d44f94495540cca830ddabe059bb2","signature":"c11edd19b67409164bb55596bed6ed7295d655b899ed4aa24971da4568fafe78"},{"version":"e653443bb918a1e02afb611f65b16d1c73ca23c7bb3d8092efb3e35618a9c33a","signature":"24c24146b7b020871b50912d67423005ec8bb4ddf40901c42e1be71de5715d47"},{"version":"8aff9fb6df0ac8ed5f50b4198cbac9e9a7fce50b622a1a275bb63fc31c46a314","signature":"073d068c648456dc69cd95ae8d2843476c07e5ccd4591268584b40c20fbe3d65"},{"version":"d165031ba8abc16140021ab67024c6c0501263f11f97f847aef596294880adbb","signature":"396a3607ca8288c7dd02dff9b04e6ffb057b3c6f3d12965421373c3da78b65cc"},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"487b694c3de27ddf4ad107d4007ad304d29effccf9800c8ae23c2093638d906a","impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ccdaa19852d25ecd84eec365c3bfa16e7859cadecf6e9ca6d0dbbbee439743f","affectsGlobalScope":true,"impliedFormat":1},{"version":"438b41419b1df9f1fbe33b5e1b18f5853432be205991d1b19f5b7f351675541e","affectsGlobalScope":true,"impliedFormat":1},{"version":"096116f8fedc1765d5bd6ef360c257b4a9048e5415054b3bf3c41b07f8951b0b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5e01375c9e124a83b52ee4b3244ed1a4d214a6cfb54ac73e164a823a4a7860a","affectsGlobalScope":true,"impliedFormat":1},{"version":"f90ae2bbce1505e67f2f6502392e318f5714bae82d2d969185c4a6cecc8af2fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b58e207b93a8f1c88bbf2a95ddc686ac83962b13830fe8ad3f404ffc7051fb4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1fefabcb2b06736a66d2904074d56268753654805e829989a46a0161cd8412c5","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"c18a99f01eb788d849ad032b31cafd49de0b19e083fe775370834c5675d7df8e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5247874c2a23b9a62d178ae84f2db6a1d54e6c9a2e7e057e178cc5eea13757fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"dd0109710de4cd93e245121ab86d8c66d20f3ead80074b68e9c3e349c4f53342","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3275d55fac10b799c9546804126239baf020d220136163f763b55a74e50e750","affectsGlobalScope":true,"impliedFormat":1},{"version":"fa68a0a3b7cb32c00e39ee3cd31f8f15b80cac97dce51b6ee7fc14a1e8deb30b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c36e755bced82df7fb6ce8169265d0a7bb046ab4e2cb6d0da0cb72b22033e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"7a93de4ff8a63bafe62ba86b89af1df0ccb5e40bb85b0c67d6bbcfdcf96bf3d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"90e85f9bc549dfe2b5749b45fe734144e96cd5d04b38eae244028794e142a77e","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0a5deeb610b2a50a6350bd23df6490036a1773a8a71d70f2f9549ab009e67ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"435b3711465425770ed2ee2f1cf00ce071835265e0851a7dc4600ab4b007550e","impliedFormat":1},{"version":"7e49f52a159435fc8df4de9dc377ef5860732ca2dc9efec1640531d3cf5da7a3","impliedFormat":1},{"version":"dd4bde4bdc2e5394aed6855e98cf135dfdf5dd6468cad842e03116d31bbcc9bc","impliedFormat":1},{"version":"4d4e879009a84a47c05350b8dca823036ba3a29a3038efed1be76c9f81e45edf","affectsGlobalScope":true,"impliedFormat":1},{"version":"cf83d90d5faf27b994c2e79af02e32b555dbfe42cd9bd1571445f2168d1f4e2d","impliedFormat":1},{"version":"9ba13b47cb450a438e3076c4a3f6afb9dc85e17eae50f26d4b2d72c0688c9251","impliedFormat":1},{"version":"b64cd4401633ea4ecadfd700ddc8323a13b63b106ac7127c1d2726f32424622c","impliedFormat":1},{"version":"37c6e5fe5715814412b43cc9b50b24c67a63c4e04e753e0d1305970d65417a60","impliedFormat":1},{"version":"0e28335ac43f4d94dd2fe6d9e6fa6813570640839addd10d309d7985f33a6308","impliedFormat":1},{"version":"ee0e4946247f842c6dd483cbb60a5e6b484fee07996e3a7bc7343dfb68a04c5d","impliedFormat":1},{"version":"ef051f42b7e0ef5ca04552f54c4552eac84099d64b6c5ad0ef4033574b6035b8","impliedFormat":1},{"version":"853a43154f1d01b0173d9cbd74063507ece57170bad7a3b68f3fa1229ad0a92f","impliedFormat":1},{"version":"56231e3c39a031bfb0afb797690b20ed4537670c93c0318b72d5180833d98b72","impliedFormat":1},{"version":"5cc7c39031bfd8b00ad58f32143d59eb6ffc24f5d41a20931269011dccd36c5e","impliedFormat":1},{"version":"b0b69c61b0f0ec8ca15db4c8c41f6e77f4cacb784d42bca948f42dea33e8757e","affectsGlobalScope":true,"impliedFormat":1},{"version":"961cf7535b9c521cd634055b1b6ac49b94d055f0b573ce7fdc4cfaddab080b7c","impliedFormat":1},{"version":"806a8c6daae69e5695e7200d9eca6bc1e4298f38d90edda3ce67a794da31a24f","impliedFormat":1},{"version":"ac86245c2f31335bfd52cbe7fc760f9fc4f165387875869a478a6d9616a95e72","impliedFormat":1},{"version":"01ff95aa1443e3f7248974e5a771f513cb2ac158c8898f470a1792f817bee497","impliedFormat":1},{"version":"9d96a7ce809392ff2cb99691acf7c62e632fe56897356ba013b689277aca3619","impliedFormat":1},{"version":"42a05d8f239f74587d4926aba8cc54792eed8e8a442c7adc9b38b516642aadfe","impliedFormat":1},{"version":"5d21b58d60383cc6ab9ad3d3e265d7d25af24a2c9b506247e0e50b0a884920be","impliedFormat":1},{"version":"101f482fd48cb4c7c0468dcc6d62c843d842977aea6235644b1edd05e81fbf22","impliedFormat":1},{"version":"ae6757460f37078884b1571a3de3ebaf724d827d7e1d53626c02b3c2a408ac63","affectsGlobalScope":true,"impliedFormat":1},{"version":"27c0a08e343c6a0ae17bd13ba6d44a9758236dc904cd5e4b43456996cd51f520","impliedFormat":1},{"version":"3ef397f12387eff17f550bc484ea7c27d21d43816bbe609d495107f44b97e933","impliedFormat":1},{"version":"1023282e2ba810bc07905d3668349fbd37a26411f0c8f94a70ef3c05fe523fcf","impliedFormat":1},{"version":"b214ebcf76c51b115453f69729ee8aa7b7f8eccdae2a922b568a45c2d7ff52f7","impliedFormat":1},{"version":"429c9cdfa7d126255779efd7e6d9057ced2d69c81859bbab32073bad52e9ba76","impliedFormat":1},{"version":"6f80e51ba310608cd71bcdc09a171d7bbfb3b316048601c9ec215ce16a8dcfbc","impliedFormat":1},{"version":"a3bdc774995d56caaac759a424831091bb22450ca3590f34dae53d98323be191","affectsGlobalScope":true,"impliedFormat":1},{"version":"7f2c62938251b45715fd2a9887060ec4fbc8724727029d1cbce373747252bdd7","impliedFormat":1},{"version":"e3ace08b6bbd84655d41e244677b474fd995923ffef7149ddb68af8848b60b05","impliedFormat":1},{"version":"132580b0e86c48fab152bab850fc57a4b74fe915c8958d2ccb052b809a44b61c","impliedFormat":1},{"version":"af4ab0aa8908fc9a655bb833d3bc28e117c4f0e1038c5a891546158beb25accb","impliedFormat":1},{"version":"69c9a5a9392e8564bd81116e1ed93b13205201fb44cb35a7fde8c9f9e21c4b23","impliedFormat":1},{"version":"5f8fc37f8434691ffac1bfd8fc2634647da2c0e84253ab5d2dd19a7718915b35","impliedFormat":1},{"version":"5981c2340fd8b076cae8efbae818d42c11ffc615994cb060b1cd390795f1be2b","impliedFormat":1},{"version":"2ca2bca6845a7234eff5c3d192727a068fca72ac565f3c819c6b04ccc83dadc0","impliedFormat":1},{"version":"ed4f674fc8c0c993cc7e145069ac44129e03519b910c62be206a0cc777bdc60b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0250da3eb85c99624f974e77ef355cdf86f43980251bc371475c2b397ba55bcd","impliedFormat":1},{"version":"f1c93e046fb3d9b7f8249629f4b63dc068dd839b824dd0aa39a5e68476dc9420","impliedFormat":1},{"version":"3d3a5f27ffbc06c885dd4d5f9ee20de61faf877fe2c3a7051c4825903d9a7fdc","impliedFormat":1},{"version":"12806f9f085598ef930edaf2467a5fa1789a878fba077cd27e85dc5851e11834","impliedFormat":1},{"version":"17d06eb5709839c7ce719f0c38ada6f308fb433f2cd6d8c87b35856e07400950","impliedFormat":1},{"version":"a43fe41c33d0a192a0ecaf9b92e87bef3709c9972e6d53c42c49251ccb962d69","impliedFormat":1},{"version":"a177959203c017fad3ecc4f3d96c8757a840957a4959a3ae00dab9d35961ca6c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc727ccf9b36e257ff982ea0badeffbfc2c151802f741bddff00c6af3b784cf","impliedFormat":1},{"version":"6c00f77f0335ae0c18bd45a6c7c9c97c9625fb7e5dd6d5936eadf70718bce52e","impliedFormat":1},{"version":"4844a4c9b4b1e812b257676ed8a80b3f3be0e29bf05e742cc2ea9c3c6865e6c6","impliedFormat":1},{"version":"064878a60367e0407c42fb7ba02a2ea4d83257357dc20088e549bd4d89433e9c","impliedFormat":1},{"version":"14d4bd22d1b05824971b98f7e91b2484c90f1a684805c330476641417c3d9735","impliedFormat":1},{"version":"586eaf66bace2e731cee0ddfbfac326ad74a83c1acfeac4afb2db85ad23226c7","impliedFormat":1},{"version":"b484ec11ba00e3a2235562a41898d55372ccabe607986c6fa4f4aba72093749f","impliedFormat":1},{"version":"d1a14d87cedcf4f0b8173720d6eb29cc02878bf2b6dabf9c9d9cee742f275368","impliedFormat":1},{"version":"e60efae9fe48a2955f66bf4cbf0f082516185b877daf50d9c5e2a009660a7714","impliedFormat":1},{"version":"041a7781b9127ab568d2cdcce62c58fdea7c7407f40b8c50045d7866a2727130","impliedFormat":1},{"version":"cd9189eacf0f9143b8830e9d6769335aa6d902c04195f04145bcbf19e7f26fcb","impliedFormat":1},{"version":"e1cb68f3ef3a8dd7b2a9dfb3de482ed6c0f1586ba0db4e7d73c1d2147b6ffc51","impliedFormat":1},{"version":"55cdbeebe76a1fa18bbd7e7bf73350a2173926bd3085bb050cf5a5397025ee4e","impliedFormat":1},{"version":"3a80bc85f38526ca3b08007ee80712e7bb0601df178b23fbf0bf87036fce40ce","impliedFormat":1},{"version":"ccf4552357ce3c159ef75f0f0114e80401702228f1898bdc9402214c9499e8c0","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"2931540c47ee0ff8a62860e61782eb17b155615db61e36986e54645ec67f67c2","impliedFormat":1},{"version":"ccab02f3920fc75c01174c47fcf67882a11daf16baf9e81701d0a94636e94556","impliedFormat":1},{"version":"f6faf5f74e4c4cc309a6c6a6c4da02dbb840be5d3e92905a23dcd7b2b0bd1986","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"33e981bf6376e939f99bd7f89abec757c64897d33c005036b9a10d9587d80187","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"b41767d372275c154c7ea6c9d5449d9a741b8ce080f640155cc88ba1763e35b3","impliedFormat":1},{"version":"3bacf516d686d08682751a3bd2519ea3b8041a164bfb4f1d35728993e70a2426","impliedFormat":1},{"version":"7fb266686238369442bd1719bc0d7edd0199da4fb8540354e1ff7f16669b4323","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"5b03a034c72146b61573aab280f295b015b9168470f2df05f6080a2122f9b4df","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"54c3e2371e3d016469ad959697fd257e5621e16296fa67082c2575d0bf8eced0","impliedFormat":1},{"version":"beb8233b2c220cfa0feea31fbe9218d89fa02faa81ef744be8dce5acb89bb1fd","impliedFormat":1},{"version":"c183b931b68ad184bc8e8372bf663f3d33304772fb482f29fb91b3c391031f3e","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"48cc3ec153b50985fb95153258a710782b25975b10dd4ac8a4f3920632d10790","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"e1528ca65ac90f6fa0e4a247eb656b4263c470bb22d9033e466463e13395e599","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"866078923a56d026e39243b4392e282c1c63159723996fa89243140e1388a98d","impliedFormat":1},{"version":"6e215dac8b234548d91b718f9c07d5b09473cd5cabb29053fcd8be0af190acb6","affectsGlobalScope":true,"impliedFormat":1},{"version":"dbecf494aac7d3ee1b23cdaafae0d0bfea8590567fc153db58fe00ed9fa66c24","impliedFormat":1},{"version":"f3d3e999a323c85c8a63ce90c6e4624ff89fe137a0e2508fddc08e0556d08abf","impliedFormat":1},{"version":"314607151cc203975193d5f44765f38597be3b0a43f466d3c1bfb17176dd3bd3","impliedFormat":1},{"version":"e155d961d69d5a5a5d1492a0a69d2a8f3b40a7197989484ba8c62e26e4ecd213","impliedFormat":1},{"version":"6e215dac8b234548d91b718f9c07d5b09473cd5cabb29053fcd8be0af190acb6","affectsGlobalScope":true,"impliedFormat":1},{"version":"dbecf494aac7d3ee1b23cdaafae0d0bfea8590567fc153db58fe00ed9fa66c24","impliedFormat":1},{"version":"f3d3e999a323c85c8a63ce90c6e4624ff89fe137a0e2508fddc08e0556d08abf","impliedFormat":1},{"version":"314607151cc203975193d5f44765f38597be3b0a43f466d3c1bfb17176dd3bd3","impliedFormat":1},{"version":"13b67080c26e140e8521f2cb7de76fd55af4ed4aaadffea8fd8be9e260c186fd","impliedFormat":1},{"version":"f40aad6c91017f20fc542f5701ec41e0f6aeba63c61bbf7aa13266ec29a50a3b","impliedFormat":1},{"version":"fc9e630f9302d0414ccd6c8ed2706659cff5ae454a56560c6122fa4a3fac5bbd","affectsGlobalScope":true,"impliedFormat":1},{"version":"aa0a44af370a2d7c1aac988a17836f57910a6c52689f52f5b3ac1d4c6cadcb23","impliedFormat":1},{"version":"0ac74c7586880e26b6a599c710b59284a284e084a2bbc82cd40fb3fbfdea71ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"2ce12357dadbb8efc4e4ec4dab709c8071bf992722fc9adfea2fe0bd5b50923f","impliedFormat":1},{"version":"b5a907deaba678e5083ccdd7cc063a3a8c3413c688098f6de29d6e4cefabc85f","impliedFormat":1},{"version":"ffd344731abee98a0a85a735b19052817afd2156d97d1410819cd9bcd1bd575e","impliedFormat":1},{"version":"475e07c959f4766f90678425b45cf58ac9b95e50de78367759c1e5118e85d5c3","impliedFormat":1},{"version":"a524ae401b30a1b0814f1bbcdae459da97fa30ae6e22476e506bb3f82e3d9456","impliedFormat":1},{"version":"7375e803c033425e27cb33bae21917c106cb37b508fd242cccd978ef2ee244c7","impliedFormat":1},{"version":"eeb890c7e9218afdad2f30ad8a76b0b0b5161d11ce13b6723879de408e6bc47a","impliedFormat":1},{"version":"561c795984d06b91091780cebeac616e9e41d83240770e1af14e6ec083b713d5","impliedFormat":1},{"version":"dfbcc400ac6d20b941ccc7bd9031b9d9f54e4d495dd79117334e771959df4805","affectsGlobalScope":true,"impliedFormat":1},{"version":"944d65951e33a13068be5cd525ec42bf9bc180263ba0b723fa236970aa21f611","affectsGlobalScope":true,"impliedFormat":1},{"version":"6b386c7b6ce6f369d18246904fa5eac73566167c88fb6508feba74fa7501a384","affectsGlobalScope":true,"impliedFormat":1},{"version":"592a109e67b907ffd2078cd6f727d5c326e06eaada169eef8fb18546d96f6797","impliedFormat":1},{"version":"f2eb1e35cae499d57e34b4ac3650248776fe7dbd9a3ec34b23754cfd8c22fceb","impliedFormat":1},{"version":"fbed43a6fcf5b675f5ec6fc960328114777862b58a2bb19c109e8fc1906caa09","impliedFormat":1},{"version":"9e98bd421e71f70c75dae7029e316745c89fa7b8bc8b43a91adf9b82c206099c","impliedFormat":1},{"version":"fc803e6b01f4365f71f51f9ce13f71396766848204d4f7a1b2b6154434b84b15","impliedFormat":1},{"version":"f3afcc0d6f77a9ca2d2c5c92eb4b89cd38d6fa4bdc1410d626bd701760a977ec","impliedFormat":1},{"version":"c8109fe76467db6e801d0edfbc50e6826934686467c9418ce6b246232ce7f109","affectsGlobalScope":true,"impliedFormat":1},{"version":"e6f803e4e45915d58e721c04ec17830c6e6678d1e3e00e28edf3d52720909cea","affectsGlobalScope":true,"impliedFormat":1},{"version":"37be812b06e518320ba82e2aff3ac2ca37370a9df917db708f081b9043fa3315","impliedFormat":1},{"version":"f40aad6c91017f20fc542f5701ec41e0f6aeba63c61bbf7aa13266ec29a50a3b","impliedFormat":1},{"version":"fc9e630f9302d0414ccd6c8ed2706659cff5ae454a56560c6122fa4a3fac5bbd","affectsGlobalScope":true,"impliedFormat":1},{"version":"aa0a44af370a2d7c1aac988a17836f57910a6c52689f52f5b3ac1d4c6cadcb23","impliedFormat":1},{"version":"0ac74c7586880e26b6a599c710b59284a284e084a2bbc82cd40fb3fbfdea71ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"2ce12357dadbb8efc4e4ec4dab709c8071bf992722fc9adfea2fe0bd5b50923f","impliedFormat":1},{"version":"b5a907deaba678e5083ccdd7cc063a3a8c3413c688098f6de29d6e4cefabc85f","impliedFormat":1},{"version":"ffd344731abee98a0a85a735b19052817afd2156d97d1410819cd9bcd1bd575e","impliedFormat":1},{"version":"475e07c959f4766f90678425b45cf58ac9b95e50de78367759c1e5118e85d5c3","impliedFormat":1},{"version":"a524ae401b30a1b0814f1bbcdae459da97fa30ae6e22476e506bb3f82e3d9456","impliedFormat":1},{"version":"7375e803c033425e27cb33bae21917c106cb37b508fd242cccd978ef2ee244c7","impliedFormat":1},{"version":"eeb890c7e9218afdad2f30ad8a76b0b0b5161d11ce13b6723879de408e6bc47a","impliedFormat":1},{"version":"998da6b85ebace9ebea67040dd1a640f0156064e3d28dbe9bd9c0229b6f72347","impliedFormat":1},{"version":"dfbcc400ac6d20b941ccc7bd9031b9d9f54e4d495dd79117334e771959df4805","affectsGlobalScope":true,"impliedFormat":1},{"version":"944d65951e33a13068be5cd525ec42bf9bc180263ba0b723fa236970aa21f611","affectsGlobalScope":true,"impliedFormat":1},{"version":"6b386c7b6ce6f369d18246904fa5eac73566167c88fb6508feba74fa7501a384","affectsGlobalScope":true,"impliedFormat":1},{"version":"592a109e67b907ffd2078cd6f727d5c326e06eaada169eef8fb18546d96f6797","impliedFormat":1},{"version":"f2eb1e35cae499d57e34b4ac3650248776fe7dbd9a3ec34b23754cfd8c22fceb","impliedFormat":1},{"version":"fbed43a6fcf5b675f5ec6fc960328114777862b58a2bb19c109e8fc1906caa09","impliedFormat":1},{"version":"9e98bd421e71f70c75dae7029e316745c89fa7b8bc8b43a91adf9b82c206099c","impliedFormat":1},{"version":"fc803e6b01f4365f71f51f9ce13f71396766848204d4f7a1b2b6154434b84b15","impliedFormat":1},{"version":"f3afcc0d6f77a9ca2d2c5c92eb4b89cd38d6fa4bdc1410d626bd701760a977ec","impliedFormat":1},{"version":"c8109fe76467db6e801d0edfbc50e6826934686467c9418ce6b246232ce7f109","affectsGlobalScope":true,"impliedFormat":1},{"version":"e6f803e4e45915d58e721c04ec17830c6e6678d1e3e00e28edf3d52720909cea","affectsGlobalScope":true,"impliedFormat":1}],"root":[[118,127]],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"declarationMap":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"module":99,"noImplicitOverride":true,"noUncheckedIndexedAccess":true,"outDir":"./","removeComments":false,"skipLibCheck":true,"sourceMap":true,"strict":true,"target":99},"referencedMap":[[282,1],[151,2],[152,2],[153,3],[133,4],[154,5],[155,6],[156,7],[131,8],[157,9],[158,10],[159,11],[160,12],[161,13],[162,14],[163,14],[164,15],[165,16],[166,17],[167,18],[134,8],[132,8],[168,19],[169,20],[170,21],[210,22],[171,23],[172,24],[173,23],[174,25],[175,26],[176,27],[177,28],[178,28],[179,28],[180,29],[181,30],[182,31],[183,32],[184,33],[185,34],[186,34],[187,35],[188,8],[189,8],[190,36],[191,37],[192,36],[193,38],[194,39],[195,40],[196,41],[197,42],[198,43],[199,44],[200,45],[201,46],[202,47],[203,48],[204,49],[205,50],[206,51],[207,52],[135,23],[136,8],[137,53],[138,54],[139,8],[140,55],[141,8],[142,56],[143,57],[144,58],[145,58],[146,59],[147,8],[148,60],[149,61],[150,57],[208,62],[209,63],[258,64],[280,8],[279,65],[273,66],[260,67],[259,68],[256,69],[261,70],[254,71],[262,8],[281,72],[263,73],[257,8],[272,74],[274,75],[255,76],[278,77],[276,78],[275,79],[277,80],[264,81],[270,82],[267,83],[269,84],[268,85],[266,86],[265,8],[271,87],[253,88],[304,8],[303,89],[297,90],[284,91],[283,92],[251,93],[285,94],[249,95],[286,8],[305,96],[287,97],[252,8],[296,98],[298,99],[250,100],[302,101],[300,102],[299,103],[301,104],[288,105],[294,106],[291,107],[293,108],[292,109],[290,110],[289,8],[295,111],[82,8],[100,112],[110,113],[106,114],[105,115],[108,116],[101,115],[102,117],[103,118],[109,119],[104,112],[116,120],[111,121],[115,122],[112,123],[113,123],[114,124],[117,125],[84,112],[85,126],[91,127],[107,128],[88,129],[90,130],[89,131],[86,132],[83,8],[97,133],[98,8],[94,8],[95,8],[99,134],[96,135],[92,8],[93,136],[87,8],[80,8],[81,8],[13,8],[15,8],[14,8],[2,8],[16,8],[17,8],[18,8],[19,8],[20,8],[21,8],[22,8],[23,8],[3,8],[24,8],[25,8],[4,8],[26,8],[30,8],[27,8],[28,8],[29,8],[31,8],[32,8],[33,8],[5,8],[34,8],[35,8],[36,8],[37,8],[6,8],[41,8],[38,8],[39,8],[40,8],[42,8],[7,8],[43,8],[48,8],[49,8],[44,8],[45,8],[46,8],[47,8],[8,8],[53,8],[50,8],[51,8],[52,8],[54,8],[9,8],[55,8],[56,8],[57,8],[59,8],[58,8],[60,8],[61,8],[10,8],[62,8],[63,8],[64,8],[11,8],[65,8],[66,8],[67,8],[68,8],[69,8],[1,8],[70,8],[71,8],[12,8],[75,8],[73,8],[78,8],[77,8],[72,8],[76,8],[74,8],[79,8],[225,137],[237,138],[223,139],[238,140],[247,141],[214,142],[215,143],[213,144],[246,145],[241,146],[245,147],[217,148],[234,149],[216,150],[244,151],[211,152],[212,153],[218,154],[219,8],[224,155],[222,154],[129,156],[248,157],[239,158],[228,159],[227,154],[229,160],[232,161],[226,162],[230,163],[242,145],[220,164],[221,165],[233,166],[130,167],[236,168],[235,154],[231,169],[240,8],[128,8],[243,170],[118,171],[120,172],[119,173],[121,174],[127,175],[122,8],[126,176],[124,177],[123,8],[125,178]],"affectedFilesPendingEmit":[[118,51],[120,51],[119,51],[121,51],[127,51],[122,51],[126,51],[124,51],[123,51],[125,51]],"emitSignatures":[118,119,120,121,122,123,124,125,126,127],"version":"5.9.3"}
|
package/package.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@brika/di",
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/maxscharwath/brika.git",
|
|
9
|
+
"directory": "packages/di"
|
|
10
|
+
},
|
|
11
|
+
"keywords": ["brika", "di", "dependency-injection", "tsyringe"],
|
|
12
|
+
"exports": {
|
|
13
|
+
".": "./src/index.ts",
|
|
14
|
+
"./testing": "./src/testing/index.ts"
|
|
15
|
+
},
|
|
16
|
+
"scripts": {
|
|
17
|
+
"tsc": "bunx --bun tsc --noEmit"
|
|
18
|
+
},
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"reflect-metadata": "^0.2.2",
|
|
21
|
+
"tsyringe": "^4.10.0"
|
|
22
|
+
}
|
|
23
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DI Container
|
|
3
|
+
*
|
|
4
|
+
* Re-exports from tsyringe for dependency injection with hot reload support.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import 'reflect-metadata';
|
|
8
|
+
import { container as tsyringeContainer } from 'tsyringe';
|
|
9
|
+
|
|
10
|
+
export type { DependencyContainer, InjectionToken } from 'tsyringe';
|
|
11
|
+
export { injectable, singleton } from 'tsyringe';
|
|
12
|
+
|
|
13
|
+
// ─────────────────────────────────────────────────────────────────────────────
|
|
14
|
+
// Hot Reload Support: Persist DI container across module reloads
|
|
15
|
+
// ─────────────────────────────────────────────────────────────────────────────
|
|
16
|
+
|
|
17
|
+
const HOT_CONTAINER_KEY = Symbol.for('brika.di.container');
|
|
18
|
+
|
|
19
|
+
function getOrCreateContainer() {
|
|
20
|
+
const existing = (globalThis as Record<symbol, typeof tsyringeContainer>)[HOT_CONTAINER_KEY];
|
|
21
|
+
if (existing) return existing;
|
|
22
|
+
(globalThis as Record<symbol, typeof tsyringeContainer>)[HOT_CONTAINER_KEY] = tsyringeContainer;
|
|
23
|
+
return tsyringeContainer;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export const container = getOrCreateContainer();
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Inject Function
|
|
3
|
+
*
|
|
4
|
+
* Angular-style inject() for property initializers.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { InjectionToken } from 'tsyringe';
|
|
8
|
+
import { container } from './container';
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* Angular-style inject() - use as property initializer.
|
|
12
|
+
*
|
|
13
|
+
* @example
|
|
14
|
+
* ```ts
|
|
15
|
+
* class MyService {
|
|
16
|
+
* private readonly logs = inject(Logger);
|
|
17
|
+
* }
|
|
18
|
+
* ```
|
|
19
|
+
*/
|
|
20
|
+
export function inject<T>(token: InjectionToken<T>): T {
|
|
21
|
+
return container.resolve<T>(token);
|
|
22
|
+
}
|
package/src/index.ts
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @brika/di
|
|
3
|
+
*
|
|
4
|
+
* Dependency injection utilities for Brika.
|
|
5
|
+
*
|
|
6
|
+
* Core DI:
|
|
7
|
+
* import { container, inject, singleton } from '@brika/di';
|
|
8
|
+
*
|
|
9
|
+
* Testing utilities:
|
|
10
|
+
* import { TestBed } from '@brika/di/testing';
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
export {
|
|
14
|
+
container,
|
|
15
|
+
type DependencyContainer,
|
|
16
|
+
type InjectionToken,
|
|
17
|
+
inject,
|
|
18
|
+
injectable,
|
|
19
|
+
singleton,
|
|
20
|
+
} from './core';
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
import 'reflect-metadata';
|
|
2
|
+
import { describe, expect, mock, spyOn, test } from 'bun:test';
|
|
3
|
+
import { injectable, singleton } from 'tsyringe';
|
|
4
|
+
import { get, provide, reset, stub, trackSpy, useTestBed } from '../index';
|
|
5
|
+
|
|
6
|
+
@injectable()
|
|
7
|
+
class Logger {
|
|
8
|
+
info(msg: string) {
|
|
9
|
+
return `info: ${msg}`;
|
|
10
|
+
}
|
|
11
|
+
error(msg: string) {
|
|
12
|
+
return `error: ${msg}`;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
@singleton()
|
|
17
|
+
class ConfigService {
|
|
18
|
+
readonly port = 3000;
|
|
19
|
+
readonly host = 'localhost';
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
@injectable()
|
|
23
|
+
class UserService {
|
|
24
|
+
constructor(
|
|
25
|
+
private logger: Logger,
|
|
26
|
+
private config: ConfigService
|
|
27
|
+
) {}
|
|
28
|
+
|
|
29
|
+
getUser(id: string) {
|
|
30
|
+
this.logger.info(`Getting user ${id}`);
|
|
31
|
+
return { id, name: 'Test User', port: this.config.port };
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
describe('useTestBed', () => {
|
|
36
|
+
// Disable autoStub - these tests verify DI resolution with specific dependencies
|
|
37
|
+
useTestBed({ autoStub: false });
|
|
38
|
+
|
|
39
|
+
test('stub() creates deep stub', () => {
|
|
40
|
+
stub(Logger);
|
|
41
|
+
|
|
42
|
+
const logger = get(Logger);
|
|
43
|
+
// Methods are auto-stubbed (no-op)
|
|
44
|
+
expect(() => logger.info('test')).not.toThrow();
|
|
45
|
+
expect(() => logger.error('test')).not.toThrow();
|
|
46
|
+
});
|
|
47
|
+
|
|
48
|
+
test('stub() accepts overrides', () => {
|
|
49
|
+
const infoSpy = mock().mockReturnValue('mocked');
|
|
50
|
+
stub(Logger, { info: infoSpy });
|
|
51
|
+
|
|
52
|
+
const logger = get(Logger);
|
|
53
|
+
expect(logger.info('test')).toBe('mocked');
|
|
54
|
+
expect(infoSpy).toHaveBeenCalledWith('test');
|
|
55
|
+
});
|
|
56
|
+
|
|
57
|
+
test('provide() registers mock value', () => {
|
|
58
|
+
provide(ConfigService, { port: 8080, host: 'example.com' });
|
|
59
|
+
|
|
60
|
+
const config = get(ConfigService);
|
|
61
|
+
expect(config.port).toBe(8080);
|
|
62
|
+
expect(config.host).toBe('example.com');
|
|
63
|
+
});
|
|
64
|
+
|
|
65
|
+
test('get() resolves with mocked dependencies', () => {
|
|
66
|
+
stub(Logger);
|
|
67
|
+
provide(ConfigService, { port: 4000, host: 'mock' });
|
|
68
|
+
|
|
69
|
+
const service = get(UserService);
|
|
70
|
+
const user = service.getUser('123');
|
|
71
|
+
|
|
72
|
+
expect(user.id).toBe('123');
|
|
73
|
+
expect(user.port).toBe(4000);
|
|
74
|
+
});
|
|
75
|
+
|
|
76
|
+
test('auto-resets between tests', () => {
|
|
77
|
+
// This test verifies that previous test's mocks don't persist
|
|
78
|
+
// If reset didn't work, ConfigService would still have port: 4000
|
|
79
|
+
provide(ConfigService, { port: 7000, host: 'fresh' });
|
|
80
|
+
stub(Logger);
|
|
81
|
+
|
|
82
|
+
const service = get(UserService);
|
|
83
|
+
expect(service.getUser('1').port).toBe(7000);
|
|
84
|
+
});
|
|
85
|
+
});
|
|
86
|
+
|
|
87
|
+
// Test object for spy tests
|
|
88
|
+
const testObj = {
|
|
89
|
+
getValue: () => 'original',
|
|
90
|
+
multiply: (a: number, b: number) => a * b,
|
|
91
|
+
};
|
|
92
|
+
|
|
93
|
+
describe('trackSpy', () => {
|
|
94
|
+
useTestBed({ autoStub: false });
|
|
95
|
+
|
|
96
|
+
test('returns the spy for chaining', () => {
|
|
97
|
+
const spy = trackSpy(spyOn(testObj, 'getValue'));
|
|
98
|
+
expect(spy).toBeDefined();
|
|
99
|
+
expect(typeof spy.mockRestore).toBe('function');
|
|
100
|
+
});
|
|
101
|
+
|
|
102
|
+
test('spy is active after tracking', () => {
|
|
103
|
+
trackSpy(spyOn(testObj, 'getValue').mockReturnValue('mocked'));
|
|
104
|
+
|
|
105
|
+
expect(testObj.getValue()).toBe('mocked');
|
|
106
|
+
});
|
|
107
|
+
|
|
108
|
+
test('spy is restored after reset', () => {
|
|
109
|
+
trackSpy(spyOn(testObj, 'getValue').mockReturnValue('mocked'));
|
|
110
|
+
expect(testObj.getValue()).toBe('mocked');
|
|
111
|
+
|
|
112
|
+
reset();
|
|
113
|
+
|
|
114
|
+
expect(testObj.getValue()).toBe('original');
|
|
115
|
+
});
|
|
116
|
+
|
|
117
|
+
test('multiple spies are tracked and restored', () => {
|
|
118
|
+
trackSpy(spyOn(testObj, 'getValue').mockReturnValue('mocked'));
|
|
119
|
+
trackSpy(spyOn(testObj, 'multiply').mockReturnValue(999));
|
|
120
|
+
|
|
121
|
+
expect(testObj.getValue()).toBe('mocked');
|
|
122
|
+
expect(testObj.multiply(2, 3)).toBe(999);
|
|
123
|
+
|
|
124
|
+
reset();
|
|
125
|
+
|
|
126
|
+
expect(testObj.getValue()).toBe('original');
|
|
127
|
+
expect(testObj.multiply(2, 3)).toBe(6);
|
|
128
|
+
});
|
|
129
|
+
|
|
130
|
+
test('auto-restores spies between tests via useTestBed', () => {
|
|
131
|
+
// Previous test's spies should be restored
|
|
132
|
+
// If not, getValue would return 'mocked' from previous test
|
|
133
|
+
expect(testObj.getValue()).toBe('original');
|
|
134
|
+
expect(testObj.multiply(4, 5)).toBe(20);
|
|
135
|
+
});
|
|
136
|
+
});
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Deep stub factory - creates proxy-based stubs that auto-mock all properties and methods.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
const PROMISE_METHODS = ['then', 'catch', 'finally'] as const;
|
|
6
|
+
|
|
7
|
+
function isThenable(value: unknown): boolean {
|
|
8
|
+
return (
|
|
9
|
+
value instanceof Promise ||
|
|
10
|
+
(!!value && typeof (value as { then?: unknown }).then === 'function')
|
|
11
|
+
);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
function isPlainObject(value: unknown): value is Record<string, unknown> {
|
|
15
|
+
return !!value && typeof value === 'object' && !Array.isArray(value);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
/** Creates a deep stub that returns no-op functions for any method and nested stubs for properties. */
|
|
19
|
+
export function createDeepStub<T>(overrides: Partial<T> = {}): T {
|
|
20
|
+
const cache = new Map<string | symbol, unknown>();
|
|
21
|
+
|
|
22
|
+
const handler: ProxyHandler<object> = {
|
|
23
|
+
get(_target, prop) {
|
|
24
|
+
// Don't make stubs look like thenables - breaks await
|
|
25
|
+
if (
|
|
26
|
+
PROMISE_METHODS.includes(prop as (typeof PROMISE_METHODS)[number]) &&
|
|
27
|
+
!(prop in overrides)
|
|
28
|
+
) {
|
|
29
|
+
return undefined;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
// Return override if provided
|
|
33
|
+
if (prop in overrides) {
|
|
34
|
+
const override = (overrides as Record<string | symbol, unknown>)[prop];
|
|
35
|
+
|
|
36
|
+
if (typeof override === 'function') {
|
|
37
|
+
return function (this: unknown, ...args: unknown[]) {
|
|
38
|
+
const result = (override as (...args: unknown[]) => unknown).apply(this, args);
|
|
39
|
+
if (isThenable(result)) return result;
|
|
40
|
+
if (isPlainObject(result)) return createDeepStub(result);
|
|
41
|
+
return result;
|
|
42
|
+
};
|
|
43
|
+
}
|
|
44
|
+
return override;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
// Return cached stub
|
|
48
|
+
if (cache.has(prop)) {
|
|
49
|
+
return cache.get(prop);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
// Create nested stub function
|
|
53
|
+
const nestedStub = new Proxy(() => createDeepStub(), handler);
|
|
54
|
+
cache.set(prop, nestedStub);
|
|
55
|
+
return nestedStub;
|
|
56
|
+
},
|
|
57
|
+
|
|
58
|
+
apply() {
|
|
59
|
+
return createDeepStub();
|
|
60
|
+
},
|
|
61
|
+
};
|
|
62
|
+
|
|
63
|
+
return new Proxy({}, handler) as T;
|
|
64
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @brika/di/testing - DI testing utilities
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
export { createDeepStub } from './deep-stub';
|
|
6
|
+
export type { Constructor, DeepPartial } from './types';
|
|
7
|
+
export { useTestBed } from './use-test-bed';
|
|
8
|
+
|
|
9
|
+
// ─────────────────────────────────────────────────────────────────────────────
|
|
10
|
+
// Standalone helpers - delegate to TestBed singleton
|
|
11
|
+
// ─────────────────────────────────────────────────────────────────────────────
|
|
12
|
+
|
|
13
|
+
import { TestBed } from './test-bed';
|
|
14
|
+
import type { Constructor, DeepPartial } from './types';
|
|
15
|
+
|
|
16
|
+
/** Create and register a deep stub for a service. */
|
|
17
|
+
export function stub<T>(token: Constructor<T>, overrides?: DeepPartial<T>): T {
|
|
18
|
+
return TestBed.stub(token, overrides);
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
/** Stub multiple services at once. */
|
|
22
|
+
export function stubAll(...tokens: Constructor[]): void {
|
|
23
|
+
TestBed.stubAll(...tokens);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
/** Register a mock value for a service. */
|
|
27
|
+
export function provide<T>(token: Constructor<T>, value: T | Partial<T>): void {
|
|
28
|
+
TestBed.provide(token, value);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
/** Resolve a service from the container. */
|
|
32
|
+
export function get<T>(token: Constructor<T>): T {
|
|
33
|
+
return TestBed.get(token);
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
/** Reset the container (usually handled by useTestBed automatically). */
|
|
37
|
+
export function reset(): void {
|
|
38
|
+
TestBed.reset();
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
/** Track a spy for automatic cleanup on reset. */
|
|
42
|
+
export function trackSpy<T extends { mockRestore(): void }>(spy: T): T {
|
|
43
|
+
return TestBed.trackSpy(spy);
|
|
44
|
+
}
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* TestBed - DI testing utility for mock injection and spy management.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
import 'reflect-metadata';
|
|
6
|
+
import { container } from '../core/container';
|
|
7
|
+
import { createDeepStub } from './deep-stub';
|
|
8
|
+
import type { Constructor, DeepPartial } from './types';
|
|
9
|
+
|
|
10
|
+
/** Minimal interface for restorable spies */
|
|
11
|
+
interface Restorable {
|
|
12
|
+
mockRestore(): void;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
class TestBedImpl {
|
|
16
|
+
readonly #providers = new Map<Constructor, unknown>();
|
|
17
|
+
readonly #spies: Restorable[] = [];
|
|
18
|
+
#autoStub = false;
|
|
19
|
+
#originalResolve: typeof container.resolve | null = null;
|
|
20
|
+
|
|
21
|
+
/** Enable/disable auto-stubbing mode. */
|
|
22
|
+
autoStub(enabled = true): this {
|
|
23
|
+
if (enabled && !this.#autoStub) {
|
|
24
|
+
this.#enableAutoStub();
|
|
25
|
+
} else if (!enabled && this.#autoStub) {
|
|
26
|
+
this.#disableAutoStub();
|
|
27
|
+
}
|
|
28
|
+
return this;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
#enableAutoStub(): void {
|
|
32
|
+
this.#autoStub = true;
|
|
33
|
+
this.#originalResolve = container.resolve.bind(container);
|
|
34
|
+
container.resolve = <T>(token: Constructor<T>) => {
|
|
35
|
+
if (!this.#providers.has(token)) {
|
|
36
|
+
this.stub(token);
|
|
37
|
+
}
|
|
38
|
+
return this.#originalResolve!(token);
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
#disableAutoStub(): void {
|
|
43
|
+
this.#autoStub = false;
|
|
44
|
+
if (this.#originalResolve) {
|
|
45
|
+
container.resolve = this.#originalResolve;
|
|
46
|
+
this.#originalResolve = null;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
/** Create and register a deep stub for a service. */
|
|
51
|
+
stub<T>(token: Constructor<T>, overrides: DeepPartial<T> = {} as DeepPartial<T>): T {
|
|
52
|
+
const stub = createDeepStub<T>(overrides as Partial<T>);
|
|
53
|
+
this.provide(token, stub);
|
|
54
|
+
return stub;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
/** Stub multiple services at once. */
|
|
58
|
+
stubAll(...tokens: Constructor[]): this {
|
|
59
|
+
tokens.forEach((token) => this.stub(token));
|
|
60
|
+
return this;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
/** Register a mock value for a service. */
|
|
64
|
+
provide<T>(token: Constructor<T>, value: T | Partial<T>): this {
|
|
65
|
+
if (this.#providers.size === 0) {
|
|
66
|
+
container.reset();
|
|
67
|
+
}
|
|
68
|
+
this.#providers.set(token, value);
|
|
69
|
+
container.registerInstance(token, value);
|
|
70
|
+
return this;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
/** Resolve a service from the container. */
|
|
74
|
+
get<T>(token: Constructor<T>): T {
|
|
75
|
+
return container.resolve(token);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
/**
|
|
79
|
+
* Track a spy for automatic cleanup on reset.
|
|
80
|
+
* @example trackSpy(spyOn(Bun, 'file').mockImplementation(...));
|
|
81
|
+
*/
|
|
82
|
+
trackSpy<T extends Restorable>(spy: T): T {
|
|
83
|
+
this.#spies.push(spy);
|
|
84
|
+
return spy;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
/** Reset the container and restore all spies. */
|
|
88
|
+
reset(): void {
|
|
89
|
+
// Restore all tracked spies
|
|
90
|
+
for (const spy of this.#spies) {
|
|
91
|
+
spy.mockRestore();
|
|
92
|
+
}
|
|
93
|
+
this.#spies.length = 0;
|
|
94
|
+
|
|
95
|
+
// Reset DI container
|
|
96
|
+
this.#disableAutoStub();
|
|
97
|
+
container.reset();
|
|
98
|
+
this.#providers.clear();
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
/** Global TestBed singleton used by useTestBed() and helpers. */
|
|
103
|
+
export const TestBed = new TestBedImpl();
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Testing Types
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
// biome-ignore lint/suspicious/noExplicitAny: Required for generic constructors
|
|
6
|
+
export type Constructor<T = unknown> = new (...args: any[]) => T;
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Deep partial type - allows nested partial objects.
|
|
10
|
+
* Used for stub overrides where you only need to specify some properties.
|
|
11
|
+
* Note: Functions are kept as-is to avoid excessive type instantiation depth.
|
|
12
|
+
*/
|
|
13
|
+
export type DeepPartial<T> = T extends object
|
|
14
|
+
? T extends (...args: unknown[]) => unknown
|
|
15
|
+
? T
|
|
16
|
+
: { [P in keyof T]?: DeepPartial<T[P]> }
|
|
17
|
+
: T;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Hook-style TestBed helper with auto lifecycle management.
|
|
3
|
+
* Auto-stubbing enabled by default.
|
|
4
|
+
*
|
|
5
|
+
* @example
|
|
6
|
+
* useTestBed(() => {
|
|
7
|
+
* stub(ConfigLoader, { rootDir: '/test' });
|
|
8
|
+
* });
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
import { afterEach, beforeEach } from 'bun:test';
|
|
12
|
+
import { TestBed } from './test-bed';
|
|
13
|
+
|
|
14
|
+
interface UseTestBedOptions {
|
|
15
|
+
/** Enable auto-stubbing (default: true) */
|
|
16
|
+
autoStub?: boolean;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export function useTestBed(): void;
|
|
20
|
+
export function useTestBed(setup: () => void): void;
|
|
21
|
+
export function useTestBed(options: UseTestBedOptions): void;
|
|
22
|
+
export function useTestBed(options: UseTestBedOptions, setup: () => void): void;
|
|
23
|
+
export function useTestBed(
|
|
24
|
+
optionsOrSetup?: UseTestBedOptions | (() => void),
|
|
25
|
+
setup?: () => void
|
|
26
|
+
): void {
|
|
27
|
+
const isFunction = typeof optionsOrSetup === 'function';
|
|
28
|
+
const options = isFunction ? {} : (optionsOrSetup ?? {});
|
|
29
|
+
const setupFn = isFunction ? optionsOrSetup : setup;
|
|
30
|
+
const autoStub = options.autoStub !== false;
|
|
31
|
+
|
|
32
|
+
beforeEach(() => {
|
|
33
|
+
if (autoStub) TestBed.autoStub(true);
|
|
34
|
+
setupFn?.();
|
|
35
|
+
});
|
|
36
|
+
|
|
37
|
+
afterEach(() => {
|
|
38
|
+
TestBed.reset();
|
|
39
|
+
});
|
|
40
|
+
}
|