@elizaos/plugin-starter 1.0.0-alpha.7 → 1.5.5-alpha.6

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/.gitignore ADDED
@@ -0,0 +1,66 @@
1
+ # Build outputs
2
+ dist/
3
+ node_modules/
4
+
5
+ # Environment files
6
+ .env
7
+ .env.local
8
+ .env.production
9
+ .env.staging
10
+ .env.development
11
+ .env.bak
12
+ *.env
13
+
14
+ # OS files
15
+ .DS_Store
16
+ Thumbs.db
17
+
18
+ # IDE files
19
+ .vscode/
20
+ .idea/
21
+ *.swp
22
+ *.swo
23
+
24
+ # Logs
25
+ *.log
26
+ npm-debug.log*
27
+ yarn-debug.log*
28
+ yarn-error.log*
29
+
30
+ # Runtime data
31
+ pids/
32
+ *.pid
33
+ *.seed
34
+ *.pid.lock
35
+
36
+ # Coverage directory used by tools like istanbul
37
+ coverage/
38
+
39
+ # Cache directories
40
+ .cache/
41
+ .npm/
42
+ .eslintcache
43
+
44
+ # Temporary folders
45
+ tmp/
46
+ temp/
47
+
48
+ # Database files
49
+ *.db
50
+ *.pglite
51
+ *.pglite3
52
+
53
+ # ElizaOS specific
54
+ .eliza/
55
+ .elizadb/
56
+ pglite/
57
+ cache/
58
+
59
+ generatedImages/
60
+ images/
61
+ data/
62
+ .eliza
63
+ .elizadb-test
64
+
65
+ dist/
66
+ coverage/
package/.npmignore ADDED
@@ -0,0 +1,5 @@
1
+ .turbo
2
+ node_modules
3
+ .env
4
+ *.env
5
+ .env.local
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2025 Shaw Walters, aka Moon aka @lalalune
3
+ Copyright (c) 2025 Shaw Walters and elizaOS Contributors
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -1,2 +1,330 @@
1
- # Plugin Starter
1
+ # ElizaOS Plugin
2
2
 
3
+ This is an ElizaOS plugin built with the official plugin starter template.
4
+
5
+ ## Getting Started
6
+
7
+ ```bash
8
+ # Create a new plugin (automatically adds "plugin-" prefix)
9
+ elizaos create -t plugin solana
10
+ # This creates: plugin-solana
11
+ # Dependencies are automatically installed and built
12
+
13
+ # Navigate to the plugin directory
14
+ cd plugin-solana
15
+
16
+ # Start development immediately
17
+ elizaos dev
18
+ ```
19
+
20
+ ## Development
21
+
22
+ ```bash
23
+ # Start development with hot-reloading (recommended)
24
+ elizaos dev
25
+
26
+ # OR start without hot-reloading
27
+ elizaos start
28
+ # Note: When using 'start', you need to rebuild after changes:
29
+ # bun run build
30
+
31
+ # Test the plugin
32
+ elizaos test
33
+ ```
34
+
35
+ ## Testing
36
+
37
+ ElizaOS uses a dual testing approach that combines Bun's native test runner for component tests with a custom E2E test runner for integration testing within a live ElizaOS runtime.
38
+
39
+ ### Test Structure
40
+
41
+ ```
42
+ src/
43
+ __tests__/ # All tests live inside src
44
+ *.test.ts # Component tests (use Bun test runner)
45
+ e2e/ # E2E tests (use ElizaOS test runner)
46
+ *.ts # E2E test files
47
+ README.md # E2E testing documentation
48
+ ```
49
+
50
+ ### Two Types of Tests
51
+
52
+ #### 1. Component Tests (Bun Test Runner)
53
+
54
+ - **Purpose**: Test individual functions/classes in isolation
55
+ - **Location**: `src/__tests__/*.test.ts`
56
+ - **Runner**: Bun's built-in test runner
57
+ - **Command**: `bun test`
58
+ - **Features**: Fast, isolated, uses mocks
59
+
60
+ ```typescript
61
+ // Example: src/__tests__/plugin.test.ts
62
+ import { describe, it, expect } from 'bun:test';
63
+ import { starterPlugin } from '../plugin';
64
+
65
+ describe('Plugin Configuration', () => {
66
+ it('should have correct plugin metadata', () => {
67
+ expect(starterPlugin.name).toBe('plugin-starter');
68
+ });
69
+ });
70
+ ```
71
+
72
+ #### 2. E2E Tests (ElizaOS Test Runner)
73
+
74
+ - **Purpose**: Test plugin behavior within a real ElizaOS runtime
75
+ - **Location**: `src/__tests__/e2e/*.ts`
76
+ - **Runner**: ElizaOS custom test runner
77
+ - **Command**: `elizaos test --type e2e`
78
+ - **Features**: Real runtime, real database, full integration
79
+
80
+ ```typescript
81
+ // Example: src/__tests__/e2e/starter-plugin.ts
82
+ import { type TestSuite } from '@elizaos/core';
83
+
84
+ export const StarterPluginTestSuite: TestSuite = {
85
+ name: 'plugin_starter_test_suite',
86
+ tests: [
87
+ {
88
+ name: 'hello_world_action_test',
89
+ fn: async (runtime) => {
90
+ // Test with real runtime - no mocks needed!
91
+ const action = runtime.actions.find((a) => a.name === 'HELLO_WORLD');
92
+ if (!action) {
93
+ throw new Error('Action not found');
94
+ }
95
+ // Test real behavior...
96
+ },
97
+ },
98
+ ],
99
+ };
100
+ ```
101
+
102
+ ### Running Tests
103
+
104
+ ```bash
105
+ # Run all tests (both component and E2E)
106
+ elizaos test
107
+
108
+ # Run only component tests (fast, for TDD)
109
+ bun test
110
+ # or
111
+ elizaos test --type component
112
+
113
+ # Run only E2E tests (slower, full integration)
114
+ elizaos test --type e2e
115
+ ```
116
+
117
+ ### Key Differences
118
+
119
+ | Aspect | Component Tests | E2E Tests |
120
+ | --------------- | -------------------- | ----------------------- |
121
+ | **Runner** | Bun test | ElizaOS TestRunner |
122
+ | **Environment** | Mocked | Real runtime |
123
+ | **Database** | Mocked | Real (PGLite) |
124
+ | **Speed** | Fast (ms) | Slower (seconds) |
125
+ | **Use Case** | TDD, component logic | Integration, user flows |
126
+
127
+ ### E2E Test Integration
128
+
129
+ E2E tests are integrated into your plugin by:
130
+
131
+ 1. **Creating the test suite** in `src/__tests__/e2e/`
132
+ 2. **Importing directly** in your plugin definition:
133
+
134
+ ```typescript
135
+ // src/plugin.ts
136
+ import { StarterPluginTestSuite } from './__tests__/e2e/starter-plugin';
137
+
138
+ export const starterPlugin: Plugin = {
139
+ name: 'plugin-starter',
140
+ // ... other properties
141
+ tests: [StarterPluginTestSuite], // Direct import, no tests.ts needed
142
+ };
143
+ ```
144
+
145
+ ### Writing Effective E2E Tests
146
+
147
+ E2E tests receive a real `IAgentRuntime` instance, allowing you to:
148
+
149
+ - Access real actions, providers, and services
150
+ - Interact with the actual database
151
+ - Test complete user scenarios
152
+ - Validate plugin behavior in production-like conditions
153
+
154
+ ```typescript
155
+ {
156
+ name: 'service_lifecycle_test',
157
+ fn: async (runtime) => {
158
+ // Get the real service
159
+ const service = runtime.getService('starter');
160
+ if (!service) {
161
+ throw new Error('Service not initialized');
162
+ }
163
+
164
+ // Test real behavior
165
+ await service.stop();
166
+ // Verify cleanup happened...
167
+ },
168
+ }
169
+ ```
170
+
171
+ ### Best Practices
172
+
173
+ 1. **Use Component Tests for**:
174
+
175
+ - Algorithm logic
176
+ - Data transformations
177
+ - Input validation
178
+ - Error handling
179
+
180
+ 2. **Use E2E Tests for**:
181
+
182
+ - User scenarios
183
+ - Action execution flows
184
+ - Provider data integration
185
+ - Service lifecycle
186
+ - Plugin interactions
187
+
188
+ 3. **Test Organization**:
189
+ - Keep related tests together
190
+ - Use descriptive test names
191
+ - Include failure scenarios
192
+ - Document complex test setups
193
+
194
+ The comprehensive E2E test documentation in `src/__tests__/e2e/README.md` provides detailed examples and patterns for writing effective tests.
195
+
196
+ ## Publishing & Continuous Development
197
+
198
+ ### Initial Setup
199
+
200
+ Before publishing your plugin, ensure you meet these requirements:
201
+
202
+ 1. **npm Authentication**
203
+
204
+ ```bash
205
+ npm login
206
+ ```
207
+
208
+ 2. **GitHub Repository**
209
+
210
+ - Create a public GitHub repository for this plugin
211
+ - Add the 'elizaos-plugins' topic to the repository
212
+ - Use 'main' as the default branch
213
+
214
+ 3. **Required Assets**
215
+ - Add images to the `images/` directory:
216
+ - `logo.jpg` (400x400px square, <500KB)
217
+ - `banner.jpg` (1280x640px, <1MB)
218
+
219
+ ### Initial Publishing
220
+
221
+ ```bash
222
+ # Test your plugin meets all requirements
223
+ elizaos publish --test
224
+
225
+ # Publish to npm + GitHub + registry (recommended)
226
+ elizaos publish
227
+ ```
228
+
229
+ This command will:
230
+
231
+ - Publish your plugin to npm for easy installation
232
+ - Create/update your GitHub repository
233
+ - Submit your plugin to the ElizaOS registry for discoverability
234
+
235
+ ### Continuous Development & Updates
236
+
237
+ **Important**: After your initial publish with `elizaos publish`, all future updates should be done using standard npm and git workflows, not the ElizaOS CLI.
238
+
239
+ #### Standard Update Workflow
240
+
241
+ 1. **Make Changes**
242
+
243
+ ```bash
244
+ # Edit your plugin code
245
+ elizaos dev # Test locally with hot-reload
246
+ ```
247
+
248
+ 2. **Test Your Changes**
249
+
250
+ ```bash
251
+ # Run all tests
252
+ elizaos test
253
+
254
+ # Run specific test types if needed
255
+ elizaos test component # Component tests only
256
+ elizaos test e2e # E2E tests only
257
+ ```
258
+
259
+ 3. **Update Version**
260
+
261
+ ```bash
262
+ # Patch version (bug fixes): 1.0.0 → 1.0.1
263
+ npm version patch
264
+
265
+ # Minor version (new features): 1.0.1 → 1.1.0
266
+ npm version minor
267
+
268
+ # Major version (breaking changes): 1.1.0 → 2.0.0
269
+ npm version major
270
+ ```
271
+
272
+ 4. **Publish to npm**
273
+
274
+ ```bash
275
+ npm publish
276
+ ```
277
+
278
+ 5. **Push to GitHub**
279
+ ```bash
280
+ git push origin main
281
+ git push --tags # Push version tags
282
+ ```
283
+
284
+ #### Why Use Standard Workflows?
285
+
286
+ - **npm publish**: Directly updates your package on npm registry
287
+ - **git push**: Updates your GitHub repository with latest code
288
+ - **Automatic registry updates**: The ElizaOS registry automatically syncs with npm, so no manual registry updates needed
289
+ - **Standard tooling**: Uses familiar npm/git commands that work with all development tools
290
+
291
+ ### Alternative Publishing Options (Initial Only)
292
+
293
+ ```bash
294
+ # Publish to npm only (skip GitHub and registry)
295
+ elizaos publish --npm
296
+
297
+ # Publish but skip registry submission
298
+ elizaos publish --skip-registry
299
+
300
+ # Generate registry files locally without publishing
301
+ elizaos publish --dry-run
302
+ ```
303
+
304
+ ## Configuration
305
+
306
+ The `agentConfig` section in `package.json` defines the parameters your plugin requires:
307
+
308
+ ```json
309
+ "agentConfig": {
310
+ "pluginType": "elizaos:plugin:1.0.0",
311
+ "pluginParameters": {
312
+ "API_KEY": {
313
+ "type": "string",
314
+ "description": "API key for the service"
315
+ }
316
+ }
317
+ }
318
+ ```
319
+
320
+ Customize this section to match your plugin's requirements.
321
+
322
+ ## Documentation
323
+
324
+ Provide clear documentation about:
325
+
326
+ - What your plugin does
327
+ - How to use it
328
+ - Required API keys or credentials
329
+ - Example usage
330
+ - Version history and changelog
package/dist/index.js CHANGED
@@ -1,14 +1,10 @@
1
- // src/index.ts
2
- import {
3
- ModelTypes,
4
- Service,
5
- logger
6
- } from "@elizaos/core";
1
+ // src/plugin.ts
2
+ import { ModelType, Service, logger } from "@elizaos/core";
7
3
  import { z } from "zod";
8
4
  var configSchema = z.object({
9
- PLUGIN_NAME: z.string().min(1, "Plugin name is not provided").optional().transform((val) => {
5
+ EXAMPLE_PLUGIN_VARIABLE: z.string().min(1, "Example plugin variable is not provided").optional().transform((val) => {
10
6
  if (!val) {
11
- console.warn("Warning: Plugin name not provided");
7
+ logger.warn("Example plugin variable is not provided (this is expected)");
12
8
  }
13
9
  return val;
14
10
  })
@@ -22,31 +18,43 @@ var helloWorldAction = {
22
18
  },
23
19
  handler: async (_runtime, message, _state, _options, callback, _responses) => {
24
20
  try {
25
- logger.info("Handling HELLO_WORLD action");
26
- const responseContent = {
27
- text: "hello world!",
28
- actions: ["HELLO_WORLD"],
29
- source: message.content.source
21
+ const response = "Hello world!";
22
+ if (callback) {
23
+ await callback({
24
+ text: response,
25
+ actions: ["HELLO_WORLD"],
26
+ source: message.content.source
27
+ });
28
+ }
29
+ return {
30
+ text: response,
31
+ success: true,
32
+ data: {
33
+ actions: ["HELLO_WORLD"],
34
+ source: message.content.source
35
+ }
30
36
  };
31
- await callback(responseContent);
32
- return responseContent;
33
37
  } catch (error) {
34
- logger.error("Error in HELLO_WORLD action:", error);
35
- throw error;
38
+ logger.error({ error }, "Error in HelloWorld action:");
39
+ return {
40
+ success: false,
41
+ error: error instanceof Error ? error : new Error(String(error))
42
+ };
36
43
  }
37
44
  },
38
45
  examples: [
39
46
  [
40
47
  {
41
- name: "{{name1}}",
48
+ name: "{{userName}}",
42
49
  content: {
43
- text: "Can you say hello?"
50
+ text: "hello",
51
+ actions: []
44
52
  }
45
53
  },
46
54
  {
47
- name: "{{name2}}",
55
+ name: "{{agentName}}",
48
56
  content: {
49
- text: "hello world!",
57
+ text: "Hello world!",
50
58
  actions: ["HELLO_WORLD"]
51
59
  }
52
60
  }
@@ -64,57 +72,58 @@ var helloWorldProvider = {
64
72
  };
65
73
  }
66
74
  };
67
- var StarterService = class _StarterService extends Service {
75
+
76
+ class StarterService extends Service {
77
+ runtime;
78
+ static serviceType = "starter";
79
+ capabilityDescription = "This is a starter service which is attached to the agent through the starter plugin.";
68
80
  constructor(runtime) {
69
81
  super(runtime);
70
82
  this.runtime = runtime;
71
83
  }
72
- static serviceType = "starter";
73
- capabilityDescription = "This is a starter service which is attached to the agent through the starter plugin.";
74
84
  static async start(runtime) {
75
- logger.info("*** Starting starter service ***");
76
- const service = new _StarterService(runtime);
85
+ logger.info("Starting starter service");
86
+ const service = new StarterService(runtime);
77
87
  return service;
78
88
  }
79
89
  static async stop(runtime) {
80
- logger.info("*** Stopping starter service ***");
81
- const service = runtime.getService(_StarterService.serviceType);
90
+ logger.info("Stopping starter service");
91
+ const service = runtime.getService(StarterService.serviceType);
82
92
  if (!service) {
83
93
  throw new Error("Starter service not found");
84
94
  }
85
95
  service.stop();
86
96
  }
87
97
  async stop() {
88
- logger.info("*** Stopping starter service instance ***");
98
+ logger.info("Stopping StarterService");
89
99
  }
90
- };
100
+ }
91
101
  var starterPlugin = {
92
102
  name: "plugin-starter",
93
103
  description: "Plugin starter for elizaOS",
94
104
  config: {
95
- PLUGIN_NAME: process.env.PLUGIN_NAME
105
+ EXAMPLE_PLUGIN_VARIABLE: process.env.EXAMPLE_PLUGIN_VARIABLE
96
106
  },
97
107
  async init(config) {
98
- logger.info("*** Initializing starter plugin ***");
108
+ logger.debug("Plugin initialized");
99
109
  try {
100
110
  const validatedConfig = await configSchema.parseAsync(config);
101
111
  for (const [key, value] of Object.entries(validatedConfig)) {
102
- if (value) process.env[key] = value;
112
+ if (value)
113
+ process.env[key] = value;
103
114
  }
104
115
  } catch (error) {
105
116
  if (error instanceof z.ZodError) {
106
- throw new Error(
107
- `Invalid plugin configuration: ${error.errors.map((e) => e.message).join(", ")}`
108
- );
117
+ throw new Error(`Invalid plugin configuration: ${error.errors.map((e) => e.message).join(", ")}`);
109
118
  }
110
119
  throw error;
111
120
  }
112
121
  },
113
122
  models: {
114
- [ModelTypes.TEXT_SMALL]: async (_runtime, { prompt, stopSequences = [] }) => {
123
+ [ModelType.TEXT_SMALL]: async (_runtime, { prompt, stopSequences = [] }) => {
115
124
  return "Never gonna give you up, never gonna let you down, never gonna run around and desert you...";
116
125
  },
117
- [ModelTypes.TEXT_LARGE]: async (_runtime, {
126
+ [ModelType.TEXT_LARGE]: async (_runtime, {
118
127
  prompt,
119
128
  stopSequences = [],
120
129
  maxTokens = 8192,
@@ -125,21 +134,9 @@ var starterPlugin = {
125
134
  return "Never gonna make you cry, never gonna say goodbye, never gonna tell a lie and hurt you...";
126
135
  }
127
136
  },
128
- tests: [
129
- {
130
- name: "plugin_starter_test_suite",
131
- tests: [
132
- {
133
- name: "example_test",
134
- fn: async (runtime) => {
135
- console.log("example_test run by ", runtime.character.name);
136
- }
137
- }
138
- ]
139
- }
140
- ],
141
137
  routes: [
142
138
  {
139
+ name: "hello-world-route",
143
140
  path: "/helloworld",
144
141
  type: "GET",
145
142
  handler: async (_req, res) => {
@@ -147,31 +144,45 @@ var starterPlugin = {
147
144
  message: "Hello World!"
148
145
  });
149
146
  }
147
+ },
148
+ {
149
+ name: "current-time-route",
150
+ path: "/api/time",
151
+ type: "GET",
152
+ handler: async (_req, res) => {
153
+ const now = new Date;
154
+ res.json({
155
+ timestamp: now.toISOString(),
156
+ unix: Math.floor(now.getTime() / 1000),
157
+ formatted: now.toLocaleString(),
158
+ timezone: Intl.DateTimeFormat().resolvedOptions().timeZone
159
+ });
160
+ }
150
161
  }
151
162
  ],
152
163
  events: {
153
164
  MESSAGE_RECEIVED: [
154
165
  async (params) => {
155
- console.log("MESSAGE_RECEIVED event received");
156
- console.log(Object.keys(params));
166
+ logger.debug("MESSAGE_RECEIVED event received");
167
+ logger.debug({ keys: Object.keys(params) }, "MESSAGE_RECEIVED param keys");
157
168
  }
158
169
  ],
159
170
  VOICE_MESSAGE_RECEIVED: [
160
171
  async (params) => {
161
- console.log("VOICE_MESSAGE_RECEIVED event received");
162
- console.log(Object.keys(params));
172
+ logger.debug("VOICE_MESSAGE_RECEIVED event received");
173
+ logger.debug({ keys: Object.keys(params) }, "VOICE_MESSAGE_RECEIVED param keys");
163
174
  }
164
175
  ],
165
- SERVER_CONNECTED: [
176
+ WORLD_CONNECTED: [
166
177
  async (params) => {
167
- console.log("SERVER_CONNECTED event received");
168
- console.log(Object.keys(params));
178
+ logger.debug("WORLD_CONNECTED event received");
179
+ logger.debug({ keys: Object.keys(params) }, "WORLD_CONNECTED param keys");
169
180
  }
170
181
  ],
171
- SERVER_JOINED: [
182
+ WORLD_JOINED: [
172
183
  async (params) => {
173
- console.log("SERVER_JOINED event received");
174
- console.log(Object.keys(params));
184
+ logger.debug("WORLD_JOINED event received");
185
+ logger.debug({ keys: Object.keys(params) }, "WORLD_JOINED param keys");
175
186
  }
176
187
  ]
177
188
  },
@@ -179,10 +190,14 @@ var starterPlugin = {
179
190
  actions: [helloWorldAction],
180
191
  providers: [helloWorldProvider]
181
192
  };
182
- var index_default = starterPlugin;
193
+
194
+ // src/index.ts
195
+ var src_default = starterPlugin;
183
196
  export {
184
- StarterService,
185
- index_default as default,
186
- starterPlugin
197
+ starterPlugin,
198
+ src_default as default,
199
+ StarterService
187
200
  };
188
- //# sourceMappingURL=index.js.map
201
+
202
+ //# debugId=0469B4CEA161613D64756E2164756E21
203
+ //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1,11 @@
1
- {"version":3,"sources":["../src/index.ts"],"sourcesContent":["import type { Plugin } from \"@elizaos/core\";\nimport {\n\ttype Action,\n\ttype Content,\n\ttype GenerateTextParams,\n\ttype HandlerCallback,\n\ttype IAgentRuntime,\n\ttype Memory,\n\tModelTypes,\n\ttype Provider,\n\ttype ProviderResult,\n\tService,\n\ttype State,\n\tlogger,\n} from \"@elizaos/core\";\nimport { z } from \"zod\";\n\n/**\n * Defines the configuration schema for a plugin, including the validation rules for the plugin name.\n *\n * @type {import('zod').ZodObject<{ PLUGIN_NAME: import('zod').ZodString }>}\n */\nconst configSchema = z.object({\n\tPLUGIN_NAME: z\n\t\t.string()\n\t\t.min(1, \"Plugin name is not provided\")\n\t\t.optional()\n\t\t.transform((val) => {\n\t\t\tif (!val) {\n\t\t\t\tconsole.warn(\"Warning: Plugin name not provided\");\n\t\t\t}\n\t\t\treturn val;\n\t\t}),\n});\n\n/**\n * Example HelloWorld action\n * This demonstrates the simplest possible action structure\n */\n/**\n * Action representing a hello world message.\n * @typedef {Object} Action\n * @property {string} name - The name of the action.\n * @property {string[]} similes - An array of related actions.\n * @property {string} description - A brief description of the action.\n * @property {Function} validate - Asynchronous function to validate the action.\n * @property {Function} handler - Asynchronous function to handle the action and generate a response.\n * @property {Object[]} examples - An array of example inputs and expected outputs for the action.\n */\nconst helloWorldAction: Action = {\n\tname: \"HELLO_WORLD\",\n\tsimiles: [\"GREET\", \"SAY_HELLO\"],\n\tdescription: \"Responds with a simple hello world message\",\n\n\tvalidate: async (\n\t\t_runtime: IAgentRuntime,\n\t\t_message: Memory,\n\t\t_state: State,\n\t): Promise<boolean> => {\n\t\t// Always valid\n\t\treturn true;\n\t},\n\n\thandler: async (\n\t\t_runtime: IAgentRuntime,\n\t\tmessage: Memory,\n\t\t_state: State,\n\t\t_options: any,\n\t\tcallback: HandlerCallback,\n\t\t_responses: Memory[],\n\t) => {\n\t\ttry {\n\t\t\tlogger.info(\"Handling HELLO_WORLD action\");\n\n\t\t\t// Simple response content\n\t\t\tconst responseContent: Content = {\n\t\t\t\ttext: \"hello world!\",\n\t\t\t\tactions: [\"HELLO_WORLD\"],\n\t\t\t\tsource: message.content.source,\n\t\t\t};\n\n\t\t\t// Call back with the hello world message\n\t\t\tawait callback(responseContent);\n\n\t\t\treturn responseContent;\n\t\t} catch (error) {\n\t\t\tlogger.error(\"Error in HELLO_WORLD action:\", error);\n\t\t\tthrow error;\n\t\t}\n\t},\n\n\texamples: [\n\t\t[\n\t\t\t{\n\t\t\t\tname: \"{{name1}}\",\n\t\t\t\tcontent: {\n\t\t\t\t\ttext: \"Can you say hello?\",\n\t\t\t\t},\n\t\t\t},\n\t\t\t{\n\t\t\t\tname: \"{{name2}}\",\n\t\t\t\tcontent: {\n\t\t\t\t\ttext: \"hello world!\",\n\t\t\t\t\tactions: [\"HELLO_WORLD\"],\n\t\t\t\t},\n\t\t\t},\n\t\t],\n\t],\n};\n\n/**\n * Example Hello World Provider\n * This demonstrates the simplest possible provider implementation\n */\nconst helloWorldProvider: Provider = {\n\tname: \"HELLO_WORLD_PROVIDER\",\n\tdescription: \"A simple example provider\",\n\n\tget: async (\n\t\t_runtime: IAgentRuntime,\n\t\t_message: Memory,\n\t\t_state: State,\n\t): Promise<ProviderResult> => {\n\t\treturn {\n\t\t\ttext: \"I am a provider\",\n\t\t\tvalues: {},\n\t\t\tdata: {},\n\t\t};\n\t},\n};\n\nexport class StarterService extends Service {\n\tstatic serviceType = \"starter\";\n\tcapabilityDescription =\n\t\t\"This is a starter service which is attached to the agent through the starter plugin.\";\n\tconstructor(protected runtime: IAgentRuntime) {\n\t\tsuper(runtime);\n\t}\n\n\tstatic async start(runtime: IAgentRuntime) {\n\t\tlogger.info(\"*** Starting starter service ***\");\n\t\tconst service = new StarterService(runtime);\n\t\treturn service;\n\t}\n\n\tstatic async stop(runtime: IAgentRuntime) {\n\t\tlogger.info(\"*** Stopping starter service ***\");\n\t\t// get the service from the runtime\n\t\tconst service = runtime.getService(StarterService.serviceType);\n\t\tif (!service) {\n\t\t\tthrow new Error(\"Starter service not found\");\n\t\t}\n\t\tservice.stop();\n\t}\n\n\tasync stop() {\n\t\tlogger.info(\"*** Stopping starter service instance ***\");\n\t}\n}\n\nexport const starterPlugin: Plugin = {\n\tname: \"plugin-starter\",\n\tdescription: \"Plugin starter for elizaOS\",\n\tconfig: {\n\t\tPLUGIN_NAME: process.env.PLUGIN_NAME,\n\t},\n\tasync init(config: Record<string, string>) {\n\t\tlogger.info(\"*** Initializing starter plugin ***\");\n\t\ttry {\n\t\t\tconst validatedConfig = await configSchema.parseAsync(config);\n\n\t\t\t// Set all environment variables at once\n\t\t\tfor (const [key, value] of Object.entries(validatedConfig)) {\n\t\t\t\tif (value) process.env[key] = value;\n\t\t\t}\n\t\t} catch (error) {\n\t\t\tif (error instanceof z.ZodError) {\n\t\t\t\tthrow new Error(\n\t\t\t\t\t`Invalid plugin configuration: ${error.errors\n\t\t\t\t\t\t.map((e) => e.message)\n\t\t\t\t\t\t.join(\", \")}`,\n\t\t\t\t);\n\t\t\t}\n\t\t\tthrow error;\n\t\t}\n\t},\n\tmodels: {\n\t\t[ModelTypes.TEXT_SMALL]: async (\n\t\t\t_runtime,\n\t\t\t{ prompt, stopSequences = [] }: GenerateTextParams,\n\t\t) => {\n\t\t\treturn \"Never gonna give you up, never gonna let you down, never gonna run around and desert you...\";\n\t\t},\n\t\t[ModelTypes.TEXT_LARGE]: async (\n\t\t\t_runtime,\n\t\t\t{\n\t\t\t\tprompt,\n\t\t\t\tstopSequences = [],\n\t\t\t\tmaxTokens = 8192,\n\t\t\t\ttemperature = 0.7,\n\t\t\t\tfrequencyPenalty = 0.7,\n\t\t\t\tpresencePenalty = 0.7,\n\t\t\t}: GenerateTextParams,\n\t\t) => {\n\t\t\treturn \"Never gonna make you cry, never gonna say goodbye, never gonna tell a lie and hurt you...\";\n\t\t},\n\t},\n\ttests: [\n\t\t{\n\t\t\tname: \"plugin_starter_test_suite\",\n\t\t\ttests: [\n\t\t\t\t{\n\t\t\t\t\tname: \"example_test\",\n\t\t\t\t\tfn: async (runtime) => {\n\t\t\t\t\t\tconsole.log(\"example_test run by \", runtime.character.name);\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t],\n\t\t},\n\t],\n\troutes: [\n\t\t{\n\t\t\tpath: \"/helloworld\",\n\t\t\ttype: \"GET\",\n\t\t\thandler: async (_req: any, res: any) => {\n\t\t\t\t// send a response\n\t\t\t\tres.json({\n\t\t\t\t\tmessage: \"Hello World!\",\n\t\t\t\t});\n\t\t\t},\n\t\t},\n\t],\n\tevents: {\n\t\tMESSAGE_RECEIVED: [\n\t\t\tasync (params) => {\n\t\t\t\tconsole.log(\"MESSAGE_RECEIVED event received\");\n\t\t\t\t// print the keys\n\t\t\t\tconsole.log(Object.keys(params));\n\t\t\t},\n\t\t],\n\t\tVOICE_MESSAGE_RECEIVED: [\n\t\t\tasync (params) => {\n\t\t\t\tconsole.log(\"VOICE_MESSAGE_RECEIVED event received\");\n\t\t\t\t// print the keys\n\t\t\t\tconsole.log(Object.keys(params));\n\t\t\t},\n\t\t],\n\t\tSERVER_CONNECTED: [\n\t\t\tasync (params) => {\n\t\t\t\tconsole.log(\"SERVER_CONNECTED event received\");\n\t\t\t\t// print the keys\n\t\t\t\tconsole.log(Object.keys(params));\n\t\t\t},\n\t\t],\n\t\tSERVER_JOINED: [\n\t\t\tasync (params) => {\n\t\t\t\tconsole.log(\"SERVER_JOINED event received\");\n\t\t\t\t// print the keys\n\t\t\t\tconsole.log(Object.keys(params));\n\t\t\t},\n\t\t],\n\t},\n\tservices: [StarterService],\n\tactions: [helloWorldAction],\n\tproviders: [helloWorldProvider],\n};\nexport default starterPlugin;\n"],"mappings":"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","names":[]}
1
+ {
2
+ "version": 3,
3
+ "sources": ["../src/plugin.ts", "../src/index.ts"],
4
+ "sourcesContent": [
5
+ "import type {\n Action,\n ActionResult,\n Content,\n GenerateTextParams,\n HandlerCallback,\n IAgentRuntime,\n Memory,\n Plugin,\n Provider,\n ProviderResult,\n State,\n} from '@elizaos/core';\nimport { ModelType, Service, logger } from '@elizaos/core';\nimport { z } from 'zod';\n\n/**\n * Defines the configuration schema for a plugin, including the validation rules for the plugin name.\n *\n * @type {import('zod').ZodObject<{ EXAMPLE_PLUGIN_VARIABLE: import('zod').ZodString }>}\n */\nconst configSchema = z.object({\n EXAMPLE_PLUGIN_VARIABLE: z\n .string()\n .min(1, 'Example plugin variable is not provided')\n .optional()\n .transform((val) => {\n if (!val) {\n logger.warn('Example plugin variable is not provided (this is expected)');\n }\n return val;\n }),\n});\n\n/**\n * Example HelloWorld action\n * This demonstrates the simplest possible action structure\n */\n/**\n * Action representing a hello world message.\n * @typedef {Object} Action\n * @property {string} name - The name of the action.\n * @property {string[]} similes - An array of related actions.\n * @property {string} description - A brief description of the action.\n * @property {Function} validate - Asynchronous function to validate the action.\n * @property {Function} handler - Asynchronous function to handle the action and generate a response.\n * @property {Object[]} examples - An array of example inputs and expected outputs for the action.\n */\nconst helloWorldAction: Action = {\n name: 'HELLO_WORLD',\n similes: ['GREET', 'SAY_HELLO'],\n description: 'Responds with a simple hello world message',\n\n validate: async (\n _runtime: IAgentRuntime,\n _message: Memory,\n _state: State | undefined\n ): Promise<boolean> => {\n // Always valid\n return true;\n },\n\n handler: async (\n _runtime: IAgentRuntime,\n message: Memory,\n _state: State | undefined,\n _options: any,\n callback?: HandlerCallback,\n _responses?: Memory[]\n ): Promise<ActionResult> => {\n try {\n const response = 'Hello world!';\n\n if (callback) {\n await callback({\n text: response,\n actions: ['HELLO_WORLD'],\n source: message.content.source,\n });\n }\n\n return {\n text: response,\n success: true,\n data: {\n actions: ['HELLO_WORLD'],\n source: message.content.source,\n },\n };\n } catch (error) {\n logger.error({ error }, 'Error in HelloWorld action:');\n return {\n success: false,\n error: error instanceof Error ? error : new Error(String(error)),\n };\n }\n },\n\n examples: [\n [\n {\n name: '{{userName}}',\n content: {\n text: 'hello',\n actions: [],\n },\n },\n {\n name: '{{agentName}}',\n content: {\n text: 'Hello world!',\n actions: ['HELLO_WORLD'],\n },\n },\n ],\n ],\n};\n\n/**\n * Example Hello World Provider\n * This demonstrates the simplest possible provider implementation\n */\nconst helloWorldProvider: Provider = {\n name: 'HELLO_WORLD_PROVIDER',\n description: 'A simple example provider',\n\n get: async (\n _runtime: IAgentRuntime,\n _message: Memory,\n _state: State | undefined\n ): Promise<ProviderResult> => {\n return {\n text: 'I am a provider',\n values: {},\n data: {},\n };\n },\n};\n\nexport class StarterService extends Service {\n static serviceType = 'starter';\n capabilityDescription =\n 'This is a starter service which is attached to the agent through the starter plugin.';\n constructor(protected runtime: IAgentRuntime) {\n super(runtime);\n }\n\n static async start(runtime: IAgentRuntime) {\n logger.info('Starting starter service');\n const service = new StarterService(runtime);\n return service;\n }\n\n static async stop(runtime: IAgentRuntime) {\n logger.info('Stopping starter service');\n // get the service from the runtime\n const service = runtime.getService(StarterService.serviceType);\n if (!service) {\n throw new Error('Starter service not found');\n }\n service.stop();\n }\n\n async stop() {\n logger.info('Stopping StarterService');\n }\n}\n\nexport const starterPlugin: Plugin = {\n name: 'plugin-starter',\n description: 'Plugin starter for elizaOS',\n config: {\n EXAMPLE_PLUGIN_VARIABLE: process.env.EXAMPLE_PLUGIN_VARIABLE,\n },\n async init(config: Record<string, string>) {\n logger.debug('Plugin initialized');\n try {\n const validatedConfig = await configSchema.parseAsync(config);\n\n // Set all environment variables at once\n for (const [key, value] of Object.entries(validatedConfig)) {\n if (value) process.env[key] = value;\n }\n } catch (error) {\n if (error instanceof z.ZodError) {\n throw new Error(\n `Invalid plugin configuration: ${error.errors.map((e) => e.message).join(', ')}`\n );\n }\n throw error;\n }\n },\n models: {\n [ModelType.TEXT_SMALL]: async (\n _runtime,\n { prompt, stopSequences = [] }: GenerateTextParams\n ) => {\n return 'Never gonna give you up, never gonna let you down, never gonna run around and desert you...';\n },\n [ModelType.TEXT_LARGE]: async (\n _runtime,\n {\n prompt,\n stopSequences = [],\n maxTokens = 8192,\n temperature = 0.7,\n frequencyPenalty = 0.7,\n presencePenalty = 0.7,\n }: GenerateTextParams\n ) => {\n return 'Never gonna make you cry, never gonna say goodbye, never gonna tell a lie and hurt you...';\n },\n },\n routes: [\n {\n name: 'hello-world-route',\n path: '/helloworld',\n type: 'GET',\n handler: async (_req: any, res: any) => {\n // send a response\n res.json({\n message: 'Hello World!',\n });\n },\n },\n {\n name: 'current-time-route',\n path: '/api/time',\n type: 'GET',\n handler: async (_req: any, res: any) => {\n // Return current time in various formats\n const now = new Date();\n res.json({\n timestamp: now.toISOString(),\n unix: Math.floor(now.getTime() / 1000),\n formatted: now.toLocaleString(),\n timezone: Intl.DateTimeFormat().resolvedOptions().timeZone,\n });\n },\n },\n ],\n events: {\n MESSAGE_RECEIVED: [\n async (params) => {\n logger.debug('MESSAGE_RECEIVED event received');\n // print the keys\n logger.debug({ keys: Object.keys(params) }, 'MESSAGE_RECEIVED param keys');\n },\n ],\n VOICE_MESSAGE_RECEIVED: [\n async (params) => {\n logger.debug('VOICE_MESSAGE_RECEIVED event received');\n // print the keys\n logger.debug({ keys: Object.keys(params) }, 'VOICE_MESSAGE_RECEIVED param keys');\n },\n ],\n WORLD_CONNECTED: [\n async (params) => {\n logger.debug('WORLD_CONNECTED event received');\n // print the keys\n logger.debug({ keys: Object.keys(params) }, 'WORLD_CONNECTED param keys');\n },\n ],\n WORLD_JOINED: [\n async (params) => {\n logger.debug('WORLD_JOINED event received');\n // print the keys\n logger.debug({ keys: Object.keys(params) }, 'WORLD_JOINED param keys');\n },\n ],\n },\n services: [StarterService],\n actions: [helloWorldAction],\n providers: [helloWorldProvider],\n // dependencies: ['@elizaos/plugin-knowledge'], <--- plugin dependencies go here (if requires another plugin)\n};\n\nexport default starterPlugin;\n",
6
+ "import { starterPlugin } from './plugin.ts';\n\nexport { starterPlugin, StarterService } from './plugin.ts';\nexport default starterPlugin;\n"
7
+ ],
8
+ "mappings": "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",
9
+ "debugId": "0469B4CEA161613D64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import { type ClassValue } from 'clsx';
2
+ export declare function cn(...inputs: ClassValue[]): string;
3
+ //# sourceMappingURL=utils.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../src/frontend/utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,UAAU,EAAQ,MAAM,MAAM,CAAC;AAG7C,wBAAgB,EAAE,CAAC,GAAG,MAAM,EAAE,UAAU,EAAE,UAEzC"}
@@ -0,0 +1,4 @@
1
+ import { starterPlugin } from './plugin.ts';
2
+ export { starterPlugin, StarterService } from './plugin.ts';
3
+ export default starterPlugin;
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAE5C,OAAO,EAAE,aAAa,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAC5D,eAAe,aAAa,CAAC"}
@@ -0,0 +1,14 @@
1
+ import type { IAgentRuntime, Plugin } from '@elizaos/core';
2
+ import { Service } from '@elizaos/core';
3
+ export declare class StarterService extends Service {
4
+ protected runtime: IAgentRuntime;
5
+ static serviceType: string;
6
+ capabilityDescription: string;
7
+ constructor(runtime: IAgentRuntime);
8
+ static start(runtime: IAgentRuntime): Promise<StarterService>;
9
+ static stop(runtime: IAgentRuntime): Promise<void>;
10
+ stop(): Promise<void>;
11
+ }
12
+ export declare const starterPlugin: Plugin;
13
+ export default starterPlugin;
14
+ //# sourceMappingURL=plugin.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"plugin.d.ts","sourceRoot":"","sources":["../../src/plugin.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAMV,aAAa,EAEb,MAAM,EAIP,MAAM,eAAe,CAAC;AACvB,OAAO,EAAa,OAAO,EAAU,MAAM,eAAe,CAAC;AA8H3D,qBAAa,cAAe,SAAQ,OAAO;IAI7B,SAAS,CAAC,OAAO,EAAE,aAAa;IAH5C,MAAM,CAAC,WAAW,SAAa;IAC/B,qBAAqB,SACoE;gBACnE,OAAO,EAAE,aAAa;WAI/B,KAAK,CAAC,OAAO,EAAE,aAAa;WAM5B,IAAI,CAAC,OAAO,EAAE,aAAa;IAUlC,IAAI;CAGX;AAED,eAAO,MAAM,aAAa,EAAE,MA2G3B,CAAC;AAEF,eAAe,aAAa,CAAC"}
@@ -0,0 +1 @@
1
+ {"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.es2023.d.ts","../../../node_modules/typescript/lib/lib.es2024.d.ts","../../../node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2024.collection.d.ts","../../../node_modules/typescript/lib/lib.es2024.object.d.ts","../../../node_modules/typescript/lib/lib.es2024.promise.d.ts","../../../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2024.string.d.ts","../../../node_modules/typescript/lib/lib.esnext.array.d.ts","../../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/typescript/lib/lib.esnext.promise.d.ts","../../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../../node_modules/typescript/lib/lib.esnext.float16.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../core/dist/types/primitives.d.ts","../../core/dist/types/state.d.ts","../../core/dist/types/memory.d.ts","../../core/dist/types/knowledge.d.ts","../../core/dist/types/environment.d.ts","../../core/dist/types/agent.d.ts","../../core/dist/types/task.d.ts","../../core/dist/types/database.d.ts","../../core/dist/types/messaging.d.ts","../../core/dist/types/model.d.ts","../../core/dist/types/events.d.ts","../../core/dist/types/service.d.ts","../../core/dist/types/testing.d.ts","../../core/dist/types/plugin.d.ts","../../core/dist/types/runtime.d.ts","../../core/dist/types/components.d.ts","../../core/dist/types/tee.d.ts","../../core/dist/types/token.d.ts","../../core/dist/types/settings.d.ts","../../core/dist/types/wallet.d.ts","../../core/dist/types/lp.d.ts","../../core/dist/types/pdf.d.ts","../../core/dist/types/video.d.ts","../../core/dist/types/browser.d.ts","../../core/dist/types/transcription.d.ts","../../core/dist/types/web-search.d.ts","../../core/dist/types/email.d.ts","../../core/dist/types/message.d.ts","../../core/dist/types/post.d.ts","../../core/dist/types/index.d.ts","../../core/dist/utils.d.ts","../../core/node_modules/zod/v3/helpers/typeAliases.d.cts","../../core/node_modules/zod/v3/helpers/util.d.cts","../../core/node_modules/zod/v3/index.d.cts","../../core/node_modules/zod/v3/ZodError.d.cts","../../core/node_modules/zod/v3/locales/en.d.cts","../../core/node_modules/zod/v3/errors.d.cts","../../core/node_modules/zod/v3/helpers/parseUtil.d.cts","../../core/node_modules/zod/v3/helpers/enumUtil.d.cts","../../core/node_modules/zod/v3/helpers/errorUtil.d.cts","../../core/node_modules/zod/v3/helpers/partialUtil.d.cts","../../core/node_modules/zod/v3/standard-schema.d.cts","../../core/node_modules/zod/v3/types.d.cts","../../core/node_modules/zod/v3/external.d.cts","../../core/node_modules/zod/index.d.cts","../../core/dist/schemas/character.d.ts","../../core/dist/utils/environment.d.ts","../../core/dist/utils/buffer.d.ts","../../core/dist/actions.d.ts","../../core/dist/database.d.ts","../../core/dist/entities.d.ts","../../core/dist/logger.d.ts","../../core/dist/prompts.d.ts","../../core/dist/roles.d.ts","../../core/dist/runtime.d.ts","../../core/dist/settings.d.ts","../../core/dist/services.d.ts","../../core/dist/search.d.ts","../../core/dist/sentry/instrument.d.ts","../../core/dist/utils/server-health.d.ts","../../core/dist/index.d.ts","../../../node_modules/zod/lib/helpers/typeAliases.d.ts","../../../node_modules/zod/lib/helpers/util.d.ts","../../../node_modules/zod/lib/ZodError.d.ts","../../../node_modules/zod/lib/locales/en.d.ts","../../../node_modules/zod/lib/errors.d.ts","../../../node_modules/zod/lib/helpers/parseUtil.d.ts","../../../node_modules/zod/lib/helpers/enumUtil.d.ts","../../../node_modules/zod/lib/helpers/errorUtil.d.ts","../../../node_modules/zod/lib/helpers/partialUtil.d.ts","../../../node_modules/zod/lib/standard-schema.d.ts","../../../node_modules/zod/lib/types.d.ts","../../../node_modules/zod/lib/external.d.ts","../../../node_modules/zod/lib/index.d.ts","../../../node_modules/zod/index.d.ts","../src/plugin.ts","../src/index.ts","../../../node_modules/clsx/clsx.d.mts","../node_modules/tailwind-merge/dist/types.d.ts","../src/frontend/utils.ts","../../../node_modules/@types/aria-query/index.d.ts","../../../node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__generator/index.d.ts","../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/@types/babel__template/index.d.ts","../../../node_modules/@types/babel__traverse/index.d.ts","../../../node_modules/@types/babel__core/index.d.ts","../../../node_modules/@types/node/compatibility/disposable.d.ts","../../../node_modules/@types/node/compatibility/indexable.d.ts","../../../node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/@types/node/compatibility/index.d.ts","../../../node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/file.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/undici-types/retry-handler.d.ts","../../../node_modules/undici-types/retry-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/util.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/eventsource.d.ts","../../../node_modules/undici-types/filereader.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/dom-events.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/sqlite.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/bun-types/globals.d.ts","../../../node_modules/bun-types/s3.d.ts","../../../node_modules/bun-types/fetch.d.ts","../../../node_modules/bun-types/bun.d.ts","../../../node_modules/bun-types/extensions.d.ts","../../../node_modules/bun-types/devserver.d.ts","../../../node_modules/bun-types/ffi.d.ts","../../../node_modules/bun-types/html-rewriter.d.ts","../../../node_modules/bun-types/jsc.d.ts","../../../node_modules/bun-types/sqlite.d.ts","../../../node_modules/bun-types/vendor/expect-type/utils.d.ts","../../../node_modules/bun-types/vendor/expect-type/overloads.d.ts","../../../node_modules/bun-types/vendor/expect-type/branding.d.ts","../../../node_modules/bun-types/vendor/expect-type/messages.d.ts","../../../node_modules/bun-types/vendor/expect-type/index.d.ts","../../../node_modules/bun-types/test.d.ts","../../../node_modules/bun-types/wasm.d.ts","../../../node_modules/bun-types/overrides.d.ts","../../../node_modules/bun-types/deprecated.d.ts","../../../node_modules/bun-types/redis.d.ts","../../../node_modules/bun-types/shell.d.ts","../../../node_modules/bun-types/experimental.d.ts","../../../node_modules/bun-types/sql.d.ts","../../../node_modules/bun-types/security.d.ts","../../../node_modules/bun-types/bun.ns.d.ts","../../../node_modules/bun-types/index.d.ts","../../../node_modules/@types/bun/index.d.ts","../../../node_modules/@types/deep-eql/index.d.ts","../../../node_modules/@types/chai/index.d.ts","../../../node_modules/@types/cors/index.d.ts","../../../node_modules/blob-util/dist/blob-util.d.ts","../../../node_modules/cypress/types/cy-blob-util.d.ts","../../../node_modules/cypress/types/bluebird/index.d.ts","../../../node_modules/cypress/types/cy-bluebird.d.ts","../../../node_modules/cypress/types/cy-minimatch.d.ts","../../../node_modules/cypress/types/chai/index.d.ts","../../../node_modules/cypress/types/cy-chai.d.ts","../../../node_modules/cypress/types/lodash/common/common.d.ts","../../../node_modules/cypress/types/lodash/common/array.d.ts","../../../node_modules/cypress/types/lodash/common/collection.d.ts","../../../node_modules/cypress/types/lodash/common/date.d.ts","../../../node_modules/cypress/types/lodash/common/function.d.ts","../../../node_modules/cypress/types/lodash/common/lang.d.ts","../../../node_modules/cypress/types/lodash/common/math.d.ts","../../../node_modules/cypress/types/lodash/common/number.d.ts","../../../node_modules/cypress/types/lodash/common/object.d.ts","../../../node_modules/cypress/types/lodash/common/seq.d.ts","../../../node_modules/cypress/types/lodash/common/string.d.ts","../../../node_modules/cypress/types/lodash/common/util.d.ts","../../../node_modules/cypress/types/lodash/index.d.ts","../../../node_modules/@types/sinonjs__fake-timers/index.d.ts","../../../node_modules/cypress/types/sinon/index.d.ts","../../../node_modules/cypress/types/sinon-chai/index.d.ts","../../../node_modules/cypress/types/mocha/index.d.ts","../../../node_modules/cypress/types/jquery/JQueryStatic.d.ts","../../../node_modules/cypress/types/jquery/JQuery.d.ts","../../../node_modules/cypress/types/jquery/misc.d.ts","../../../node_modules/cypress/types/jquery/legacy.d.ts","../../../node_modules/@types/sizzle/index.d.ts","../../../node_modules/cypress/types/jquery/index.d.ts","../../../node_modules/cypress/types/chai-jquery/index.d.ts","../../../node_modules/cypress/types/cypress-npm-api.d.ts","../../../node_modules/cypress/types/net-stubbing.d.ts","../../../node_modules/eventemitter2/eventemitter2.d.ts","../../../node_modules/cypress/node_modules/buffer/index.d.ts","../../../node_modules/cypress/types/cypress-eventemitter.d.ts","../../../node_modules/cypress/types/cypress-type-helpers.d.ts","../../../node_modules/cypress/types/cypress.d.ts","../../../node_modules/cypress/types/cypress-global-vars.d.ts","../../../node_modules/cypress/types/cypress-expect.d.ts","../../../node_modules/cypress/types/index.d.ts","../../../node_modules/@types/ms/index.d.ts","../../../node_modules/@types/debug/index.d.ts","../../../node_modules/@types/diff-match-patch/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/estree-jsx/index.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/send/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/http-errors/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/jsonfile/index.d.ts","../../../node_modules/@types/jsonfile/utils.d.ts","../../../node_modules/@types/fs-extra/index.d.ts","../../../node_modules/@types/unist/index.d.ts","../../../node_modules/@types/hast/index.d.ts","../../../node_modules/@types/js-yaml/index.d.ts","../../../node_modules/parse5/dist/common/html.d.ts","../../../node_modules/parse5/dist/common/token.d.ts","../../../node_modules/parse5/dist/common/error-codes.d.ts","../../../node_modules/parse5/dist/tokenizer/preprocessor.d.ts","../../../node_modules/entities/dist/esm/generated/decode-data-html.d.ts","../../../node_modules/entities/dist/esm/generated/decode-data-xml.d.ts","../../../node_modules/entities/dist/esm/decode-codepoint.d.ts","../../../node_modules/entities/dist/esm/decode.d.ts","../../../node_modules/parse5/dist/tokenizer/index.d.ts","../../../node_modules/parse5/dist/tree-adapters/interface.d.ts","../../../node_modules/parse5/dist/parser/open-element-stack.d.ts","../../../node_modules/parse5/dist/parser/formatting-element-list.d.ts","../../../node_modules/parse5/dist/parser/index.d.ts","../../../node_modules/parse5/dist/tree-adapters/default.d.ts","../../../node_modules/parse5/dist/serializer/index.d.ts","../../../node_modules/parse5/dist/common/foreign-content.d.ts","../../../node_modules/parse5/dist/index.d.ts","../../../node_modules/tough-cookie/dist/cookie/constants.d.ts","../../../node_modules/tough-cookie/dist/cookie/cookie.d.ts","../../../node_modules/tough-cookie/dist/utils.d.ts","../../../node_modules/tough-cookie/dist/store.d.ts","../../../node_modules/tough-cookie/dist/memstore.d.ts","../../../node_modules/tough-cookie/dist/pathMatch.d.ts","../../../node_modules/tough-cookie/dist/permuteDomain.d.ts","../../../node_modules/tough-cookie/dist/getPublicSuffix.d.ts","../../../node_modules/tough-cookie/dist/validators.d.ts","../../../node_modules/tough-cookie/dist/version.d.ts","../../../node_modules/tough-cookie/dist/cookie/canonicalDomain.d.ts","../../../node_modules/tough-cookie/dist/cookie/cookieCompare.d.ts","../../../node_modules/tough-cookie/dist/cookie/cookieJar.d.ts","../../../node_modules/tough-cookie/dist/cookie/defaultPath.d.ts","../../../node_modules/tough-cookie/dist/cookie/domainMatch.d.ts","../../../node_modules/tough-cookie/dist/cookie/formatDate.d.ts","../../../node_modules/tough-cookie/dist/cookie/parseDate.d.ts","../../../node_modules/tough-cookie/dist/cookie/permutePath.d.ts","../../../node_modules/tough-cookie/dist/cookie/index.d.ts","../../../node_modules/@types/jsdom/base.d.ts","../../../node_modules/@types/jsdom/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/json5/index.d.ts","../../../node_modules/@types/jsonwebtoken/index.d.ts","../../../node_modules/@types/mdast/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/multer/index.d.ts","../../../node_modules/@types/mysql/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/pg-types/index.d.ts","../../../node_modules/pg-protocol/dist/messages.d.ts","../../../node_modules/pg-protocol/dist/serializer.d.ts","../../../node_modules/pg-protocol/dist/parser.d.ts","../../../node_modules/pg-protocol/dist/index.d.ts","../../../node_modules/@types/pg/lib/type-overrides.d.ts","../../../node_modules/@types/pg/index.d.ts","../../../node_modules/@types/pg/index.d.mts","../../../node_modules/@types/pg-pool/index.d.ts","../../../node_modules/kleur/kleur.d.ts","../../../node_modules/@types/prompts/index.d.ts","../../../node_modules/@types/react/global.d.ts","../../../node_modules/csstype/index.d.ts","../../../node_modules/@types/react/index.d.ts","../../../node_modules/@types/react-dom/index.d.ts","../../../node_modules/@types/retry/index.d.ts","../../../node_modules/@types/semver/classes/semver.d.ts","../../../node_modules/@types/semver/functions/parse.d.ts","../../../node_modules/@types/semver/functions/valid.d.ts","../../../node_modules/@types/semver/functions/clean.d.ts","../../../node_modules/@types/semver/functions/inc.d.ts","../../../node_modules/@types/semver/functions/diff.d.ts","../../../node_modules/@types/semver/functions/major.d.ts","../../../node_modules/@types/semver/functions/minor.d.ts","../../../node_modules/@types/semver/functions/patch.d.ts","../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../node_modules/@types/semver/functions/compare.d.ts","../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../node_modules/@types/semver/functions/sort.d.ts","../../../node_modules/@types/semver/functions/rsort.d.ts","../../../node_modules/@types/semver/functions/gt.d.ts","../../../node_modules/@types/semver/functions/lt.d.ts","../../../node_modules/@types/semver/functions/eq.d.ts","../../../node_modules/@types/semver/functions/neq.d.ts","../../../node_modules/@types/semver/functions/gte.d.ts","../../../node_modules/@types/semver/functions/lte.d.ts","../../../node_modules/@types/semver/functions/cmp.d.ts","../../../node_modules/@types/semver/functions/coerce.d.ts","../../../node_modules/@types/semver/classes/comparator.d.ts","../../../node_modules/@types/semver/classes/range.d.ts","../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../node_modules/@types/semver/ranges/valid.d.ts","../../../node_modules/@types/semver/ranges/outside.d.ts","../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../node_modules/@types/semver/ranges/subset.d.ts","../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../node_modules/@types/semver/index.d.ts","../../../node_modules/@types/shimmer/index.d.ts","../../../node_modules/@types/tedious/index.d.ts","../../../node_modules/@types/tough-cookie/index.d.ts","../../../node_modules/@types/uuid/index.d.ts","../../../node_modules/@types/whatwg-mimetype/index.d.ts","../../../node_modules/@types/ws/index.d.ts","../../../node_modules/@types/yauzl/index.d.ts"],"fileIdsList":[[162,173,216,269,270,271,272,274,285,287,288,289,290,291,292],[173,216,269,270,271,272,274,285,287,288,289,290,291,292],[162,163,164,165,166,173,216,269,270,271,272,274,285,287,288,289,290,291,292],[162,164,173,216,269,270,271,272,274,285,287,288,289,290,291,292],[173,216,231,266,267,269,270,271,272,274,285,287,288,289,290,291,292],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,294],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,296],[173,216,231,266,269,270,271,272,274,285,287,288,289,290,291,292],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,340],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,343,344],[173,216,228,231,266,269,270,271,272,274,285,287,288,289,290,291,292,346,347,348],[173,216,268,269,270,271,272,274,285,287,288,289,290,291,292,349,351],[173,216,229,266,269,270,271,272,274,285,287,288,289,290,291,292,353,354],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,356],[173,216,228,262,266,269,270,271,272,274,285,287,288,289,290,291,292,375,394,396],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,395],[173,216,229,259,266,269,270,271,272,274,285,286,287,288,289,290,291,292],[173,216,221,266,269,270,271,272,274,285,287,288,289,290,291,292,340],[173,216,248,269,270,271,272,274,285,287,288,289,290,291,292,352],[173,216,228,248,256,266,269,270,271,272,274,285,286,287,288,289,290,291,292],[173,213,216,269,270,271,272,274,285,287,288,289,290,291,292],[173,215,216,269,270,271,272,274,285,287,288,289,290,291,292],[216,269,270,271,272,274,285,287,288,289,290,291,292],[173,216,221,251,269,270,271,272,274,285,287,288,289,290,291,292],[173,216,217,222,228,236,248,259,269,270,271,272,274,285,287,288,289,290,291,292],[173,216,217,218,228,236,269,270,271,272,274,285,287,288,289,290,291,292],[168,169,170,173,216,269,270,271,272,274,285,287,288,289,290,291,292],[173,216,219,260,269,270,271,272,274,285,287,288,289,290,291,292],[173,216,220,221,229,237,269,270,271,272,274,285,287,288,289,290,291,292],[173,216,221,248,256,269,270,271,272,274,285,287,288,289,290,291,292],[173,216,222,224,228,236,269,270,271,272,274,285,287,288,289,290,291,292],[173,215,216,223,269,270,271,272,274,285,287,288,289,290,291,292],[173,216,224,225,269,270,271,272,274,285,287,288,289,290,291,292],[173,216,226,228,269,270,271,272,274,285,287,288,289,290,291,292],[173,215,216,228,269,270,271,272,274,285,287,288,289,290,291,292],[173,216,228,229,230,248,259,269,270,271,272,274,285,287,288,289,290,291,292],[173,216,228,229,230,243,248,251,269,270,271,272,274,285,286,287,288,289,290,291,292],[173,211,216,269,270,271,272,274,285,287,288,289,290,291,292],[173,211,216,224,228,231,236,248,259,269,270,271,272,274,285,287,288,289,290,291,292],[173,216,228,229,231,232,236,248,256,259,269,270,271,272,274,285,287,288,289,290,291,292],[173,216,231,233,248,256,259,269,270,271,272,274,285,287,288,289,290,291,292],[171,172,173,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,269,270,271,272,274,285,287,288,289,290,291,292],[173,216,228,234,269,270,271,272,274,285,287,288,289,290,291,292],[173,216,235,259,269,270,271,272,274,285,287,288,289,290,291,292],[173,216,224,228,236,248,269,270,271,272,274,285,287,288,289,290,291,292],[173,216,237,269,270,271,272,274,285,287,288,289,290,291,292],[173,216,238,269,270,271,272,274,285,287,288,289,290,291,292],[173,215,216,239,269,270,271,272,274,285,287,288,289,290,291,292],[173,213,214,215,216,217,218,219,220,221,222,223,224,225,226,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,269,270,271,272,274,285,286,287,288,289,290,291,292],[173,216,241,269,270,271,272,274,285,287,288,289,290,291,292],[173,216,242,269,270,271,272,274,285,287,288,289,290,291,292],[173,216,228,243,244,269,270,271,272,274,285,287,288,289,290,291,292],[173,216,243,245,260,262,269,270,271,272,274,285,287,288,289,290,291,292],[173,216,228,248,249,251,269,270,271,272,274,285,287,288,289,290,291,292],[173,216,250,251,269,270,271,272,274,285,287,288,289,290,291,292],[173,216,248,249,269,270,271,272,274,285,287,288,289,290,291,292],[173,216,251,269,270,271,272,274,285,286,287,288,289,290,291,292],[173,216,252,269,270,271,272,274,285,287,288,289,290,291,292],[173,213,216,248,253,269,270,271,272,274,285,287,288,289,290,291,292],[173,216,228,254,255,269,270,271,272,274,285,287,288,289,290,291,292],[173,216,254,255,269,270,271,272,274,285,287,288,289,290,291,292],[173,216,221,236,248,256,269,270,271,272,274,285,286,287,288,289,290,291,292],[173,216,257,269,270,271,272,274,285,287,288,289,290,291,292],[173,216,236,258,269,270,271,272,274,285,287,288,289,290,291,292],[173,216,231,242,259,269,270,271,272,274,285,286,287,288,289,290,291,292],[173,216,221,260,269,270,271,272,274,285,287,288,289,290,291,292],[173,216,248,261,269,270,271,272,274,285,287,288,289,290,291,292],[173,216,235,262,269,270,271,272,274,285,287,288,289,290,291,292],[173,216,263,269,270,271,272,274,285,287,288,289,290,291,292],[173,216,228,230,239,248,251,259,261,262,264,269,270,271,272,274,285,287,288,289,290,291,292],[173,216,248,265,269,270,271,272,274,285,287,288,289,290,291,292],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,413],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,412],[173,216,228,248,256,266,269,270,271,272,274,285,286,287,288,289,290,291,292,406,407,410,411,412],[173,216,248,266,269,270,271,272,274,285,287,288,289,290,291,292,415],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,419],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,417,418],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,422,461],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,422,446,461],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,461],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,422],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,422,447,461],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,447,461],[173,216,229,248,266,269,270,271,272,274,285,287,288,289,290,291,292,345],[173,216,231,266,269,270,271,272,274,285,287,288,289,290,291,292,346,350],[173,216,228,256,266,269,270,271,272,274,285,286,287,288,289,290,291,292],[173,216,228,231,233,236,248,256,259,265,266,269,270,271,272,274,285,286,287,288,289,290,291,292],[173,216,228,248,266,269,270,271,272,274,285,287,288,289,290,291,292],[173,211,216,221,229,231,256,260,264,269,270,271,274,275,285,286,287,288,289,290,291,292],[173,216,269,270,271,272,274,285,288,289,290,291,292],[173,216,269,270,271,272,285,287,288,289,290,291,292],[173,216,269,270,271,272,274,285,287,288,289,291,292],[173,211,216,269,270,272,274,285,287,288,289,290,291,292],[173,211,216,221,239,248,251,256,260,264,270,271,272,274,285,287,288,289,290,291,292],[173,216,266,269,270,271,272,273,274,275,276,277,278,284,285,286,287,288,289,290,291,292,293],[173,216,221,229,230,237,251,256,259,265,269,270,271,272,274,285,287,288,289,290,291,292],[173,216,269,270,271,272,274,285,287,289,290,291,292],[173,216,229,269,271,272,274,285,287,288,289,290,291,292],[173,216,269,270,271,272,274,285,287,288,289,290,291],[173,216,269,270,271,272,274,285,287,288,290,291,292],[173,216,269,270,271,272,274,278,285,287,288,289,290,292],[173,216,269,270,271,272,274,283,285,287,288,289,290,291,292],[173,216,269,270,271,272,274,279,280,285,287,288,289,290,291,292],[173,216,269,270,271,272,274,279,280,281,282,285,287,288,289,290,291,292],[173,216,269,270,271,272,274,279,281,285,287,288,289,290,291,292],[173,216,269,270,271,272,274,279,285,287,288,289,290,291,292],[173,216,269,270,271,272,274,287,288,289,290,291,292],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,304,328],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,299],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,301],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,304],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,332,333],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,330,334,335],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,300,302,303,305,318,320,321,322,328,329,330,331,335,336,337,338],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,323,324,325,326,327],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,306,308,309,310,311,312,313,314,315,316,317,318],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,306,307,309,310,311,312,313,314,315,316,317,318],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,307,308,309,310,311,312,313,314,315,316,317,318],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,306,307,308,310,311,312,313,314,315,316,317,318],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,306,307,308,309,311,312,313,314,315,316,317,318],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,306,307,308,309,310,312,313,314,315,316,317,318],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,306,307,308,309,310,311,313,314,315,316,317,318],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,306,307,308,309,310,311,312,314,315,316,317,318],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,306,307,308,309,310,311,312,313,315,316,317,318],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,306,307,308,309,310,311,312,313,314,316,317,318],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,306,307,308,309,310,311,312,313,314,315,317,318],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,306,307,308,309,310,311,312,313,314,315,316,318],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,306,307,308,309,310,311,312,313,314,315,316,317],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,304,320],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,319],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,363,364,365],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,360],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,359,360],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,359],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,359,360,361,367,368,371,372,373,374],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,360,368],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,359,360,361,367,368,369,370],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,359,368],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,368,372],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,360,361,362,366],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,361],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,359,360,368],[173,216,266,269,270,271,272,274,285,287,288,289,290,291,292,407,408,409],[173,216,266,269,270,271,272,274,285,287,288,289,290,291,292],[173,216,248,266,269,270,271,272,274,285,287,288,289,290,291,292,407],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,378],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,376],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,377],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,376,377,378,379],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,377,378,379],[173,216,269,270,271,272,274,285,287,288,289,290,291,292,378,394],[173,183,187,216,259,269,270,271,272,274,285,286,287,288,289,290,291,292],[173,183,216,248,259,269,270,271,272,274,285,286,287,288,289,290,291,292],[173,178,216,269,270,271,272,274,285,287,288,289,290,291,292],[173,180,183,216,256,259,269,270,271,272,274,285,286,287,288,289,290,291,292],[173,216,236,256,269,270,271,272,274,285,286,287,288,289,290,291,292],[173,178,216,266,269,270,271,272,274,285,287,288,289,290,291,292],[173,180,183,216,236,259,269,270,271,272,274,285,286,287,288,289,290,291,292],[173,175,176,179,182,216,228,248,259,269,270,271,272,274,285,286,287,288,289,290,291,292],[173,183,190,216,269,270,271,272,274,285,287,288,289,290,291,292],[173,175,181,216,269,270,271,272,274,285,287,288,289,290,291,292],[173,183,204,205,216,269,270,271,272,274,285,287,288,289,290,291,292],[173,179,183,216,251,259,266,269,270,271,272,274,285,286,287,288,289,290,291,292],[173,204,216,266,269,270,271,272,274,285,287,288,289,290,291,292],[173,177,178,216,266,269,270,271,272,274,285,287,288,289,290,291,292],[173,183,216,269,270,271,272,274,285,287,288,289,290,291,292],[173,177,178,179,180,181,182,183,184,185,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,205,206,207,208,209,210,216,269,270,271,272,274,285,287,288,289,290,291,292],[173,183,198,216,269,270,271,272,274,285,287,288,289,290,291,292],[173,183,190,191,216,269,270,271,272,274,285,287,288,289,290,291,292],[173,181,183,191,192,216,269,270,271,272,274,285,287,288,289,290,291,292],[173,182,216,269,270,271,272,274,285,287,288,289,290,291,292],[173,175,178,183,216,269,270,271,272,274,285,287,288,289,290,291,292],[173,183,187,191,192,216,269,270,271,272,274,285,287,288,289,290,291,292],[173,187,216,269,270,271,272,274,285,287,288,289,290,291,292],[173,181,183,186,216,259,269,270,271,272,274,285,286,287,288,289,290,291,292],[173,175,180,183,190,216,269,270,271,272,274,285,287,288,289,290,291,292],[173,216,248,269,270,271,272,274,285,287,288,289,290,291,292],[173,178,183,204,216,264,266,269,270,271,272,274,285,287,288,289,290,291,292],[154,173,216,269,270,271,272,274,285,287,288,289,290,291,292],[142,143,154,173,216,269,270,271,272,274,285,287,288,289,290,291,292],[144,145,173,216,269,270,271,272,274,285,287,288,289,290,291,292],[142,143,144,146,147,152,173,216,269,270,271,272,274,285,287,288,289,290,291,292],[143,144,173,216,269,270,271,272,274,285,287,288,289,290,291,292],[153,173,216,269,270,271,272,274,285,287,288,289,290,291,292],[144,173,216,269,270,271,272,274,285,287,288,289,290,291,292],[142,143,144,147,148,149,150,151,173,216,269,270,271,272,274,285,287,288,289,290,291,292],[110,173,216,269,270,271,272,274,285,287,288,289,290,291,292],[110,111,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,173,216,269,270,271,272,274,285,287,288,289,290,291,292],[110,132,173,216,269,270,271,272,274,285,287,288,289,290,291,292],[86,125,173,216,269,270,271,272,274,285,287,288,289,290,291,292],[81,82,84,173,216,269,270,271,272,274,285,287,288,289,290,291,292],[92,173,216,269,270,271,272,274,285,287,288,289,290,291,292],[81,82,83,95,173,216,269,270,271,272,274,285,287,288,289,290,291,292],[81,83,85,86,87,173,216,269,270,271,272,274,285,287,288,289,290,291,292],[81,173,216,269,270,271,272,274,285,287,288,289,290,291,292],[81,83,85,90,95,96,173,216,269,270,271,272,274,285,287,288,289,290,291,292],[81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,173,216,269,270,271,272,274,285,287,288,289,290,291,292],[81,83,173,216,269,270,271,272,274,285,287,288,289,290,291,292],[81,92,98,173,216,269,270,271,272,274,285,287,288,289,290,291,292],[81,92,173,216,269,270,271,272,274,285,287,288,289,290,291,292],[81,95,173,216,269,270,271,272,274,285,287,288,289,290,291,292],[95,173,216,269,270,271,272,274,285,287,288,289,290,291,292],[86,88,91,92,93,95,96,173,216,269,270,271,272,274,285,287,288,289,290,291,292],[81,82,83,85,86,87,88,89,90,92,94,96,173,216,269,270,271,272,274,285,287,288,289,290,291,292],[92,98,173,216,269,270,271,272,274,285,287,288,289,290,291,292],[124,173,216,269,270,271,272,274,285,287,288,289,290,291,292],[112,113,114,173,216,269,270,271,272,274,285,287,288,289,290,291,292],[115,116,173,216,269,270,271,272,274,285,287,288,289,290,291,292],[112,113,115,117,118,123,173,216,269,270,271,272,274,285,287,288,289,290,291,292],[113,115,173,216,269,270,271,272,274,285,287,288,289,290,291,292],[123,173,216,269,270,271,272,274,285,287,288,289,290,291,292],[115,173,216,269,270,271,272,274,285,287,288,289,290,291,292],[112,113,115,118,119,120,121,122,173,216,269,270,271,272,274,285,287,288,289,290,291,292],[158,159,173,216,269,270,271,272,274,285,287,288,289,290,291,292],[156,173,216,269,270,271,272,274,285,287,288,289,290,291,292],[141,155,173,216,269,270,271,272,274,285,287,288,289,290,291,292]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","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":"8bf8b5e44e3c9c36f98e1007e8b7018c0f38d8adc07aecef42f5200114547c70","impliedFormat":1},{"version":"092c2bfe125ce69dbb1223c85d68d4d2397d7d8411867b5cc03cec902c233763","affectsGlobalScope":true,"impliedFormat":1},{"version":"07f073f19d67f74d732b1adea08e1dc66b1b58d77cb5b43931dee3d798a2fd53","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":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","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":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","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":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","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":"4245fee526a7d1754529d19227ecbf3be066ff79ebb6a380d78e41648f2f224d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},"def785e216fb514c22ef4a279bdefcc11490cf39a44fad7adb66c4eda9e00e2d","6cbb7b9ffb245c8f4fc61c676619719394dd2f20058282ae234ed56ebbe1d8dd","db8df29cf37edb0ba8ced3694ff318e795808caf5c62e322885c53e074d46f52","27fd7369762fd622624cbb0802548fd05eef6177820d2de33efa7f49571b5a2b","89590e0047699615390d9edd9c6c36d1f17dda36917a134f3d67954f55929e7f","60bc9d7a0e2e30ebb8334bc0a4a7ee2f189016d04f44ac5bd373a019335ba32e","66f85f6d1e81d4044ae2e6cfbf80e54978f2ba681e530004dfb8e7a735c71480","36013bd09b987e34555aa864fbc02d2d76a53ff3b3f27c1b9042333f2b5aaa72","61ba03ff9bbe78767c9134f6d39051c699cd20c26c627d38e4ac3fc56cc07deb","6a81e702f7ab81f5dc1ecd052d38e939ba8afca3282eea08cb0f4e6c186ddc03","451f9d21e61fe2981dd3fa49028f524f357965934ecccea3a8f83f4b475043da","5b6a18275bf136b9c0e3128b4f9ab5b3864902ec7e00c7b033b8a5f18680edde","3f1ea54100f7e33396a04a8dc8c79625d354911a7e811f7e746606b8c3b4cb31","52d1cc503fd8aeda49935d88b94a21be740c5f00900574d34fbdc9216b7f813b","48200ee6985d0c664e65a5a67935a6bd952c7a604542eeba2be0197a8818405d","dde0b27ecd50002fced1210e756cd219a6909722bb23ec6951b6bd1b53ef937b","b614838d0de94fb9af1d490fa5471f61817b486fd09cd2775a9e72d440135c42","7616aa70bdaf13c95ea2355c71693417fa279e8102d9aa1a5748627c3b40666e","73fa9a197ee8b4b8591b47f89867ca6a1bbeaca164bda7886e2988bc6a3d4c64","06419e50194a3b31215de55c8815f7dc6bf4498e235195530841c405f029c4cd","13f85f7ece32db8206e16452657cbbe9b2ce80a19961f84b2af53c6aca2c82c3","994ccc1465e0449097962935c7cae69165763c1f04508b0f77679cbf2e2fecd0","2f5aeb3a345f35ab74c762a27bd2e407a5b0485ee55379c23a11dffe4ac7a656","0c9f8884fc8a580f2b20de13813486ecad481a6c1d40ee3e58876ab966dd12c9","a1eb9af0cf8c655453147b860adecd22937fc0b385c87430a44f392ef4160f7f","7b256b9f0a30ab72f61cadb289d0bafceccf13914d6c14a6036e3b3020d5d1b9","2541f53cf1f7222c3f45994a957a52287cd25766231d26bcf443757f55bc4c6d","a98d945f1d24abbd58388ee54b234a3e67e876becdcf34de693a0e8e2c048fab","d037a4a08132751ba4b4f4dff1ac1a6a82e88079b8010cb37d4f1bfc3e3d3011","dc1b462271cc0f2603098dedf289a91d1d122cdf9fd3dba9118e583ae0f0c268","e025495f6311dc0b0626bd318b12c6602c77d4dd336d9d3675bf8f09c20e8aa9",{"version":"d3cfde44f8089768ebb08098c96d01ca260b88bccf238d55eee93f1c620ff5a5","impliedFormat":1},{"version":"293eadad9dead44c6fd1db6de552663c33f215c55a1bfa2802a1bceed88ff0ec","impliedFormat":1},{"version":"833e92c058d033cde3f29a6c7603f517001d1ddd8020bc94d2067a3bc69b2a8e","impliedFormat":1},{"version":"08b2fae7b0f553ad9f79faec864b179fc58bc172e295a70943e8585dd85f600c","impliedFormat":1},{"version":"f12edf1672a94c578eca32216839604f1e1c16b40a1896198deabf99c882b340","impliedFormat":1},{"version":"e3498cf5e428e6c6b9e97bd88736f26d6cf147dedbfa5a8ad3ed8e05e059af8a","impliedFormat":1},{"version":"dba3f34531fd9b1b6e072928b6f885aa4d28dd6789cbd0e93563d43f4b62da53","impliedFormat":1},{"version":"f672c876c1a04a223cf2023b3d91e8a52bb1544c576b81bf64a8fec82be9969c","impliedFormat":1},{"version":"e4b03ddcf8563b1c0aee782a185286ed85a255ce8a30df8453aade2188bbc904","impliedFormat":1},{"version":"2329d90062487e1eaca87b5e06abcbbeeecf80a82f65f949fd332cfcf824b87b","impliedFormat":1},{"version":"25b3f581e12ede11e5739f57a86e8668fbc0124f6649506def306cad2c59d262","impliedFormat":1},{"version":"4fdb529707247a1a917a4626bfb6a293d52cd8ee57ccf03830ec91d39d606d6d","impliedFormat":1},{"version":"a9ebb67d6bbead6044b43714b50dcb77b8f7541ffe803046fdec1714c1eba206","impliedFormat":1},{"version":"5780b706cece027f0d4444fbb4e1af62dc51e19da7c3d3719f67b22b033859b9","impliedFormat":1},"e491cff1beb7bc1110f5241ba70ed62572f436611029369c4c619196d1db5e8b","7ad3c50f4ece9d3fa20f1439803bb1dd4908b13826fecb385f56ea9b53543a5e","5ab60d4e00ae7f1b324604ff592a18afb840c35af46e342c51c05921d00705c0","82b7a5d59e9e9b2221c7fc53accd7e8471426498c806498ac21057ed3f22209a","0922d6ab230e472365e8a4fd57f5e12bd5cee25f9942a743c9fe6754bb9bade2","5d75e1f02c30c3e463eadbfc1308cfd7158f611c964d593b8d8c8ff343837804","c4b0d17981aa827ed3b0326bb595fc8cabc2a7cdc797d3790f579809200f9bea","bd88793307564ee3bff476f7846f92d50d0272b95b876d247ee55c55870f535b","e014c660dafcaeebdafed0c88e99b8f01b83971c8b729d0e32f24b8dfe8d211d","ae97988b60077b8cd663f91f395e451b3bf4cfb82499752c9ebac154c1b0fec3","c190a047ef63204b26abddacb46e5f5c42f982aed1722f8c219ffdcbcc0de009","15e41d341538e83b93e60fd698d82618c71c290609088a72e633774f0f64a35d","a0cb3de46e1e0db07dd6f2a07396d9b05ca7d6de9fb74db68b187a67e27418ea","ba2db7106f6d38c4c135347a5dda6c122cf671af9d72609bb19fecb47d3b3686","0c3ab9bed566bd4dd0e098a82aea3e4729f0aba272293e38dcffb86d43bdf21d","b979d6058331d46249a4562e6af4184a1858cc667e32ec998141ca9c75497ab8",{"version":"d3cfde44f8089768ebb08098c96d01ca260b88bccf238d55eee93f1c620ff5a5","impliedFormat":1},{"version":"b542939a35357458e62f8229c2d7578ae888d63d3ab837395d7bb8a3064c205e","impliedFormat":1},{"version":"3a5af4fba7b27b815bb40f52715aedebaa4b371da3e5a664e7e0798c9b638825","impliedFormat":1},{"version":"8485b6da53ec35637d072e516631d25dae53984500de70a6989058f24354666f","impliedFormat":1},{"version":"ebe80346928736532e4a822154eb77f57ef3389dbe2b3ba4e571366a15448ef2","impliedFormat":1},{"version":"49c632082dc8a916353288d3d8b2dc82b3471794249a381d090d960c8ceac908","impliedFormat":1},{"version":"f672c876c1a04a223cf2023b3d91e8a52bb1544c576b81bf64a8fec82be9969c","impliedFormat":1},{"version":"71addb585c2db7b8e53dc1b0bcfa58c6c67c6e4fa2b968942046749d66f82e7e","impliedFormat":1},{"version":"c76b0c5727302341d0bdfa2cc2cee4b19ff185b554edb6e8543f0661d8487116","impliedFormat":1},{"version":"25b3f581e12ede11e5739f57a86e8668fbc0124f6649506def306cad2c59d262","impliedFormat":1},{"version":"e703cfacb9965c4d4155346c65a0091ecded90ea98874ed6b3f36286577c4dde","impliedFormat":1},{"version":"f5ef066942e4f0bd98200aa6a6694b831e73200c9b3ade77ad0aa2409e8fe1b1","impliedFormat":1},{"version":"b9e99cd94f4166a245f5158f7286c05406e2a4c694619bceb7a4f3519d1d768e","impliedFormat":1},{"version":"5568d7c32e5cf5f35e092649f4e5e168c3114c800b1d7545b7ae5e0415704802","impliedFormat":1},{"version":"d28c299d9cded75cde5a9788ec911aae8dd9f1e95051e91dd6a1a145fd5bc020","signature":"b7c2e387e6e4a59a177b5943fdf49df4a8971ad547d95c6aec98c0494742c332"},{"version":"1d0f1118a866cd04ccd804769e6cc0fd2ea1b97ed9a27e5133bed15e89029caf","signature":"30a9e632fb5591ce8bb58eae39e1517942d4693c44e4ff587c3c51c9390da922"},{"version":"c57b441e0c0a9cbdfa7d850dae1f8a387d6f81cbffbc3cd0465d530084c2417d","impliedFormat":99},{"version":"8b15d05f236e8537d3ecbe4422ce46bf0de4e4cd40b2f909c91c5818af4ff17a","impliedFormat":1},{"version":"74e8fe9d0d680c442ed6adb13e7d119d6c210c19ae6c114313b2a72552be0883","signature":"400b40fe5d5f4140993b0ac871686d2b7611ab791e8810b2e14f2d89701fc49e"},{"version":"ae77d81a5541a8abb938a0efedf9ac4bea36fb3a24cc28cfa11c598863aba571","impliedFormat":1},{"version":"a28ac3e717907284b3910b8e9b3f9844a4e0b0a861bea7b923e5adf90f620330","impliedFormat":1},{"version":"b6d03c9cfe2cf0ba4c673c209fcd7c46c815b2619fd2aad59fc4229aaef2ed43","impliedFormat":1},{"version":"82e5a50e17833a10eb091923b7e429dc846d42f1c6161eb6beeb964288d98a15","impliedFormat":1},{"version":"670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","impliedFormat":1},{"version":"13b77ab19ef7aadd86a1e54f2f08ea23a6d74e102909e3c00d31f231ed040f62","impliedFormat":1},{"version":"069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","impliedFormat":1},{"version":"6c7176368037af28cb72f2392010fa1cef295d6d6744bca8cfb54985f3a18c3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"437e20f2ba32abaeb7985e0afe0002de1917bc74e949ba585e49feba65da6ca1","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"d802f0e6b5188646d307f070d83512e8eb94651858de8a82d1e47f60fb6da4e2","affectsGlobalScope":true,"impliedFormat":1},{"version":"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"a12d953aa755b14ac1d28ecdc1e184f3285b01d6d1e58abc11bf1826bc9d80e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"a38efe83ff77c34e0f418a806a01ca3910c02ee7d64212a59d59bca6c2c38fa1","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"2b06b93fd01bcd49d1a6bd1f9b65ddcae6480b9a86e9061634d6f8e354c1468f","impliedFormat":1},{"version":"7b988bc259155186e6b09dd8b32856d9e45c8d261e63c19abaf590bb6550f922","affectsGlobalScope":true,"impliedFormat":1},{"version":"fe7b52f993f9336b595190f3c1fcc259bb2cf6dcb4ac8fdb1e0454cc5df7301e","impliedFormat":1},{"version":"e9b97d69510658d2f4199b7d384326b7c4053b9e6645f5c19e1c2a54ede427fc","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"81711af669f63d43ccb4c08e15beda796656dd46673d0def001c7055db53852d","affectsGlobalScope":true,"impliedFormat":1},{"version":"19d5f8d3930e9f99aa2c36258bf95abbe5adf7e889e6181872d1cdba7c9a7dd5","impliedFormat":1},{"version":"9855e02d837744303391e5623a531734443a5f8e6e8755e018c41d63ad797db2","impliedFormat":1},{"version":"bdba81959361810be44bcfdd283f4d601e406ab5ad1d2bdff0ed480cf983c9d7","impliedFormat":1},{"version":"836a356aae992ff3c28a0212e3eabcb76dd4b0cc06bcb9607aeef560661b860d","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"71450bbc2d82821d24ca05699a533e72758964e9852062c53b30f31c36978ab8","affectsGlobalScope":true,"impliedFormat":1},{"version":"b326f4813b90d230ec3950f66bd5b5ce3971aac5fac67cfafc54aa07b39fd07f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c8420c7c2b778b334587a4c0311833b5212ff2f684ea37b2f0e2b117f1d7210d","impliedFormat":1},{"version":"b6b08215821c9833b0e8e30ea1ed178009f2f3ff5d7fae3865ee42f97cc87784","impliedFormat":1},{"version":"b795c3e47a26be91ac33d8115acdc37bfa41ecc701fb237c64a23da4d2b7e1d8","impliedFormat":1},{"version":"73cf6cc19f16c0191e4e9d497ab0c11c7b38f1ca3f01ad0f09a3a5a971aac4b8","impliedFormat":1},{"version":"528b62e4272e3ddfb50e8eed9e359dedea0a4d171c3eb8f337f4892aac37b24b","impliedFormat":1},{"version":"ed58b9974bb3114f39806c9c2c6258c4ffa6a255921976a7c53dfa94bf178f42","impliedFormat":1},{"version":"e6fa9ad47c5f71ff733744a029d1dc472c618de53804eae08ffc243b936f87ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"f72bc8fe16da67e4e3268599295797b202b95e54bd215a03f97e925dd1502a36","impliedFormat":1},{"version":"b1b6ee0d012aeebe11d776a155d8979730440082797695fc8e2a5c326285678f","impliedFormat":1},{"version":"45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0","impliedFormat":1},{"version":"915e18c559321c0afaa8d34674d3eb77e1ded12c3e85bf2a9891ec48b07a1ca5","affectsGlobalScope":true,"impliedFormat":1},{"version":"e9727a118ce60808e62457c89762fe5a4e2be8e9fd0112d12432d1bafdba942f","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"933921f0bb0ec12ef45d1062a1fc0f27635318f4d294e4d99de9a5493e618ca2","impliedFormat":1},{"version":"71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25","impliedFormat":1},{"version":"70b57b5529051497e9f6482b76d91c0dcbb103d9ead8a0549f5bab8f65e5d031","impliedFormat":1},{"version":"4f9d8ca0c417b67b69eeb54c7ca1bedd7b56034bb9bfd27c5d4f3bc4692daca7","impliedFormat":1},{"version":"814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","impliedFormat":1},{"version":"3a90b9beac4c2bfdf6517faae0940a042b81652badf747df0a7c7593456f6ebe","impliedFormat":1},{"version":"8302157cd431b3943eed09ad439b4441826c673d9f870dcb0e1f48e891a4211e","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"dba28a419aec76ed864ef43e5f577a5c99a010c32e5949fe4e17a4d57c58dd11","affectsGlobalScope":true,"impliedFormat":1},{"version":"2754d8221d77c7b382096651925eb476f1066b3348da4b73fe71ced7801edada","impliedFormat":1},{"version":"a5890565ed564c7b29eb1b1038d4e10c03a3f5231b0a8d48fea4b41ab19f4f46","impliedFormat":1},{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","impliedFormat":1},{"version":"98ffdf93dfdd206516971d28e3e473f417a5cfd41172e46b4ce45008f640588e","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"cee74f5970ffc01041e5bffc3f324c20450534af4054d2c043cb49dbbd4ec8f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"1a654e0d950353614ba4637a8de4f9d367903a0692b748e11fccf8c880c99735","affectsGlobalScope":true,"impliedFormat":1},{"version":"42da246c46ca3fd421b6fd88bb4466cda7137cf33e87ba5ceeded30219c428bd","impliedFormat":1},{"version":"3a051941721a7f905544732b0eb819c8d88333a96576b13af08b82c4f17581e4","impliedFormat":1},{"version":"ac5ed35e649cdd8143131964336ab9076937fa91802ec760b3ea63b59175c10a","impliedFormat":1},{"version":"f2feb9696208311cdcf1936df2b7cbec96a3f0ab9d403952bf170546d4253a90","affectsGlobalScope":true,"impliedFormat":1},{"version":"db3d77167a7da6c5ba0c51c5b654820e3464093f21724ccd774c0b9bc3f81bc0","impliedFormat":1},{"version":"ad90122e1cb599b3bc06a11710eb5489101be678f2920f2322b0ac3e195af78d","impliedFormat":1},{"version":"104c67f0da1bdf0d94865419247e20eded83ce7f9911a1aa75fc675c077ca66e","impliedFormat":1},{"version":"cc0d0b339f31ce0ab3b7a5b714d8e578ce698f1e13d7f8c60bfb766baeb1d35c","impliedFormat":1},{"version":"6edb7a98f0d3483a88041013608fda8e02c9f2f5361c327ad090dc522fcdbeff","affectsGlobalScope":true,"impliedFormat":1},{"version":"53e074a281b50dc3bbdddac7a1c2946100c80a7f5c3161452ab98b31db2e31ba","impliedFormat":1},{"version":"f3d3e999a323c85c8a63ce90c6e4624ff89fe137a0e2508fddc08e0556d08abf","impliedFormat":1},{"version":"6a121c24083c9f164330b85ce7aa8ef97b64fedaf8694ec14cddc34d921ad209","impliedFormat":1},{"version":"49ae37a1b5de16f762c8a151eeaec6b558ce3c27251052ef7a361144af42cad4","impliedFormat":1},{"version":"fc9e630f9302d0414ccd6c8ed2706659cff5ae454a56560c6122fa4a3fac5bbd","affectsGlobalScope":true,"impliedFormat":1},{"version":"7115f1157a00937d712e042a011eb85e9d80b13eff78bac5f210ee852f96879d","impliedFormat":1},{"version":"0ac74c7586880e26b6a599c710b59284a284e084a2bbc82cd40fb3fbfdea71ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"2ce12357dadbb8efc4e4ec4dab709c8071bf992722fc9adfea2fe0bd5b50923f","impliedFormat":1},{"version":"31bd1a31f935276adf90384a35edbd4614018ff008f57d62ffb57ac538e94e51","impliedFormat":1},{"version":"ffd344731abee98a0a85a735b19052817afd2156d97d1410819cd9bcd1bd575e","impliedFormat":1},{"version":"475e07c959f4766f90678425b45cf58ac9b95e50de78367759c1e5118e85d5c3","impliedFormat":1},{"version":"a524ae401b30a1b0814f1bbcdae459da97fa30ae6e22476e506bb3f82e3d9456","impliedFormat":1},{"version":"7375e803c033425e27cb33bae21917c106cb37b508fd242cccd978ef2ee244c7","impliedFormat":1},{"version":"eeb890c7e9218afdad2f30ad8a76b0b0b5161d11ce13b6723879de408e6bc47a","impliedFormat":1},{"version":"8c61ed247159a025ccc4c3702862b97ef3dbac5460e87f57205f6c37c9e7edbd","impliedFormat":1},{"version":"b05b9ef20d18697e468c3ae9cecfff3f47e8976f9522d067047e3f236db06a41","affectsGlobalScope":true,"impliedFormat":1},{"version":"f434b00addaec462abb14aee113fefdb22ba5a60044b782b1b05f7ae489aa335","affectsGlobalScope":true,"impliedFormat":1},{"version":"3ba38f41c6344cc89270450751e89d0cb60279af2db0e20f0b6858994e6785a8","affectsGlobalScope":true,"impliedFormat":1},{"version":"e4b5520626a9a1333f2518839db11f9649ba853e7cc7e9a25eb6addb5d1307e9","impliedFormat":1},{"version":"06e0e96bcdc4bf6032b9e0b83451bcb1148880772b337842de991164e6f00b34","impliedFormat":1},{"version":"c61c37176b7a6c043df76f437e402ea9abc9f19e9652a0d37629dfc8b7e83497","impliedFormat":1},{"version":"5602c92b934a62d674506c40755f3ca46e3c4a6dfbf01674289714a51f238b40","impliedFormat":1},{"version":"fc803e6b01f4365f71f51f9ce13f71396766848204d4f7a1b2b6154434b84b15","impliedFormat":1},{"version":"067f76ab5254b1bdfc94154730b7a30c12e3aad8b9d04ec62c0d6b7a1f40ea0e","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b08cdb4a66b9fe95fa19b3133036c91fe9314ec4e2bff533dd1d60fd81e1bed","affectsGlobalScope":true,"impliedFormat":1},{"version":"37be812b06e518320ba82e2aff3ac2ca37370a9df917db708f081b9043fa3315","impliedFormat":1},{"version":"427fe2004642504828c1476d0af4270e6ad4db6de78c0b5da3e4c5ca95052a99","impliedFormat":1},{"version":"c8905dbea83f3220676a669366cd8c1acef56af4d9d72a8b2241b1d044bb4302","affectsGlobalScope":true,"impliedFormat":99},{"version":"25be1eb939c9c63242c7a45446edb20c40541da967f43f1aa6a00ed53c0552db","impliedFormat":1},{"version":"bc90fb5b7ac9532ac8bbe8181112e58b9df8daa3b85a44c5122323ee4ecbc2bd","impliedFormat":1},{"version":"9261ae542670cb581169afafa421aeeaf0f6ccd6c8f2d97b8a97ee4be9986c3e","impliedFormat":1},{"version":"6247a016129906c76ba4012d2d77773c919ea33a96830b0a8d522a9790fc7efe","impliedFormat":1},{"version":"01e24df7c7f6c1dabd80333bdd4e61f996b70edec78cc8c372cc1de13d67cfa5","impliedFormat":1},{"version":"f4742762590497b770af445215e3a7cf1965664b39257dba4ce2a4317fc949d8","impliedFormat":1},{"version":"ceeda631f23bd41ca5326b665a2f078199e5e190ab29a9a139e10c9564773042","affectsGlobalScope":true,"impliedFormat":1},{"version":"1b43d676651f4548af6a6ebd0e0d4a9d7583a3d478770ef5207a2931988fe4e4","affectsGlobalScope":true,"impliedFormat":1},{"version":"3594c022901a1c8993b0f78a3f534cfb81e7b619ed215348f7f6882f3db02abc","impliedFormat":1},{"version":"438284c7c455a29b9c0e2d1e72abc62ee93d9a163029ffe918a34c5db3b92da2","impliedFormat":1},{"version":"0c75b204aed9cf6ff1c7b4bed87a3ece0d9d6fc857a6350c0c95ed0c38c814e8","impliedFormat":1},{"version":"187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","impliedFormat":1},{"version":"c9f396e71966bd3a890d8a36a6a497dbf260e9b868158ea7824d4b5421210afe","impliedFormat":1},{"version":"509235563ea2b939e1bbe92aae17e71e6a82ceab8f568b45fb4fce7d72523a32","impliedFormat":1},{"version":"9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","impliedFormat":1},{"version":"00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","impliedFormat":1},{"version":"c311349ec71bb69399ffc4092853e7d8a86c1ca39ddb4cd129e775c19d985793","impliedFormat":1},{"version":"3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","impliedFormat":1},{"version":"4908e4c00832b26ce77a629de8501b0e23a903c094f9e79a7fec313a15da796a","impliedFormat":1},{"version":"2630a7cbb597e85d713b7ef47f2946d4280d3d4c02733282770741d40672b1a5","impliedFormat":1},{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true,"impliedFormat":1},{"version":"550650516d34048712520ffb1fce4a02f2d837761ee45c7d9868a7a35e7b0343","impliedFormat":1},{"version":"11aba3fa22da1d81bc86ab9e551c72267d217d0a480d3dda5cada8549597c5e4","impliedFormat":1},{"version":"c66593f9dd5b7e24da87f3bc76eacf9da83541e8dce5fec4c7bbe28b0a415ea0","affectsGlobalScope":true,"impliedFormat":1},{"version":"060f0636cb83057f9a758cafc817b7be1e8612c4387dfe3fbadda865958cf8c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"84c8e0dfd0d885abd37c1d213ef0b949dd8ef795291e7e7b1baadbbe4bc0f8a9","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d21da8939908dafa89d693c3e22aabeef28c075b68bb863257e631deef520f5","affectsGlobalScope":true,"impliedFormat":1},{"version":"5261e21f183c6c1c3b65784cdab8c2a912b6f4cd5f8044a1421466a8c894f832","affectsGlobalScope":true,"impliedFormat":1},{"version":"8c4a3355af2c490a8af67c4ec304e970424a15ef648a3c3fbb3ee6634461e2cc","affectsGlobalScope":true,"impliedFormat":1},{"version":"6537313aa6bd137e046dd52f48698d4075dd511886f17ee70bc1dda1b9fe1066","impliedFormat":1},{"version":"6739393f79c9a48ec82c6faa0d6b25d556daf3b6871fc4e5131f5445a13e7d15","impliedFormat":1},{"version":"66a11cff774f91be73e9c9890fe16bcc4bce171d5d7bd47b19a0d3e396c5f4ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"0b9ef3d2c7ea6e6b4c4f5634cfccd609b4c164067809c2da007bf56f52d98647","affectsGlobalScope":true,"impliedFormat":1},{"version":"1d0830a20a9030f638012fc67537c99dbfc14f9a0928a3c6e733195f03558bfc","affectsGlobalScope":true,"impliedFormat":1},{"version":"452234c0b8169349b658a4b5e2b271608879b3914fcc325735ed21b9cb88d58d","impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"eb0a79b91cda3b1bd685c17805cc7a734669b983826f18cc75eeb6266b1eb7cb","affectsGlobalScope":true,"impliedFormat":1},{"version":"326d76935bfa6ffe5b62a6807a59c123629032bd15a806e15103fd255ea0922b","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd8cf504e154da84855e69ef846e192d19c3b4c01c21f973f5ec65a6beeffefe","affectsGlobalScope":true,"impliedFormat":1},{"version":"d0f7e7733d00981d550d8d78722634f27d13b063e8fef6d66ee444efc06d687f","affectsGlobalScope":true,"impliedFormat":1},{"version":"6757e50adf5370607dcfbcc179327b12bdfdd7e1ff19ea14a2bffb1bbeadf900","affectsGlobalScope":true,"impliedFormat":1},{"version":"91353032510f8961e70e92a01f8b44f050cd67d22f6c87c9e5169c657c622aff","impliedFormat":1},{"version":"fb893a0dfc3c9fb0f9ca93d0648694dd95f33cbad2c0f2c629f842981dfd4e2e","impliedFormat":1},{"version":"3eb11dbf3489064a47a2e1cf9d261b1f100ef0b3b50ffca6c44dd99d6dd81ac1","impliedFormat":1},{"version":"460627dd2a599c2664d6f9e81ed4765ef520dc2786551d9dcab276df57b98c02","impliedFormat":1},{"version":"151ff381ef9ff8da2da9b9663ebf657eac35c4c9a19183420c05728f31a6761d","impliedFormat":1},{"version":"5d08a179b846f5ee674624b349ebebe2121c455e3a265dc93da4e8d9e89722b4","impliedFormat":1},{"version":"d3f2d715f57df3f04bf7b16dde01dec10366f64fce44503c92b8f78f614c1769","impliedFormat":1},{"version":"b78cd10245a90e27e62d0558564f5d9a16576294eee724a59ae21b91f9269e4a","impliedFormat":1},{"version":"baac9896d29bcc55391d769e408ff400d61273d832dd500f21de766205255acb","impliedFormat":1},{"version":"2f5747b1508ccf83fad0c251ba1e5da2f5a30b78b09ffa1cfaf633045160afed","impliedFormat":1},{"version":"a8932b7a5ef936687cc5b2492b525e2ad5e7ed321becfea4a17d5a6c80f49e92","affectsGlobalScope":true,"impliedFormat":1},{"version":"b71c603a539078a5e3a039b20f2b0a0d1708967530cf97dec8850a9ca45baa2b","impliedFormat":1},{"version":"0e13570a7e86c6d83dd92e81758a930f63747483e2cd34ef36fcdb47d1f9726a","impliedFormat":1},{"version":"d26a79f97f25eb1c5fc36a8552e4decc7ad11104a016d31b1307c3afaf48feb1","impliedFormat":1},{"version":"211440ce81e87b3491cdf07155881344b0a61566df6e749acff0be7e8b9d1a07","impliedFormat":1},{"version":"5d9a0b6e6be8dbb259f64037bce02f34692e8c1519f5cd5d467d7fa4490dced4","impliedFormat":1},{"version":"880da0e0f3ebca42f9bd1bc2d3e5e7df33f2619d85f18ee0ed4bd16d1800bc32","impliedFormat":1},{"version":"89121c1bf2990f5219bfd802a3e7fc557de447c62058d6af68d6b6348d64499a","impliedFormat":1},{"version":"79b4369233a12c6fa4a07301ecb7085802c98f3a77cf9ab97eee27e1656f82e6","impliedFormat":1},{"version":"7a1dd1e9c8bf5e23129495b10718b280340c7500570e0cfe5cffcdee51e13e48","impliedFormat":1},{"version":"19990350fca066265b2c190c9b6cde1229f35002ea2d4df8c9e397e9942f6c89","impliedFormat":99},{"version":"8fb8fdda477cd7382477ffda92c2bb7d9f7ef583b1aa531eb6b2dc2f0a206c10","impliedFormat":99},{"version":"66995b0c991b5c5d42eff1d950733f85482c7419f7296ab8952e03718169e379","impliedFormat":99},{"version":"9863f888da357e35e013ca3465b794a490a198226bd8232c2f81fb44e16ff323","impliedFormat":99},{"version":"84bc2d80326a83ee4a6e7cba2fd480b86502660770c0e24da96535af597c9f1e","impliedFormat":99},{"version":"ea27768379b866ee3f5da2419650acdb01125479f7af73580a4bceb25b79e372","impliedFormat":99},{"version":"598931eeb4362542cae5845f95c5f0e45ac668925a40ce201e244d7fe808e965","impliedFormat":99},{"version":"da9ef88cde9f715756da642ad80c4cd87a987f465d325462d6bc2a0b11d202c8","impliedFormat":99},{"version":"b4c6184d78303b0816e779a48bef779b15aea4a66028eb819aac0abee8407dea","impliedFormat":99},{"version":"db085d2171d48938a99e851dafe0e486dce9859e5dfa73c21de5ed3d4d6fb0c5","impliedFormat":99},{"version":"62a3ad1ddd1f5974b3bf105680b3e09420f2230711d6520a521fab2be1a32838","impliedFormat":99},{"version":"a77be6fc44c876bc10c897107f84eaba10790913ebdcad40fcda7e47469b2160","impliedFormat":99},{"version":"06cf55b6da5cef54eaaf51cdc3d4e5ebf16adfdd9ebd20cec7fe719be9ced017","impliedFormat":99},{"version":"91f5dbcdb25d145a56cffe957ec665256827892d779ef108eb2f3864faff523b","impliedFormat":99},{"version":"052ba354bab8fb943e0bc05a0769f7b81d7c3b3c6cd0f5cfa53c7b2da2a525c5","impliedFormat":99},{"version":"927955a3de5857e0a1c575ced5a4245e74e6821d720ed213141347dd1870197f","impliedFormat":99},{"version":"fec804d54cd97dd77e956232fc37dc13f53e160d4bbeeb5489e86eeaa91f7ebd","impliedFormat":99},{"version":"c1d53a14aad7cda2cb0b91f5daccd06c8e3f25cb26c09e008f46ad2896c80bf1","impliedFormat":1},{"version":"c789127b81f23a44e7cd20eaff043bb8ddd8b75aca955504b81217d6347709d8","impliedFormat":1},{"version":"1e13bda0589d714493973ae87a135aadb8bdadc2b8ba412a62d6a8f05f13ae76","impliedFormat":1},{"version":"9e9217786bc4dced2d11b82eaf62c77f172a2b4671f1a6353835dcbf7eef0843","impliedFormat":1},{"version":"8c18473f354a9648fd8798196f520b3c3868181c315ab6a726177e5b5d2ada1c","impliedFormat":1},{"version":"067fe0fe11f79aa3eef819ee2f1d7beecc7a6d9e95ee1b2b84553495fb61b2fe","impliedFormat":1},{"version":"65e7aa0d38b9513dad1d66fa622ca0897efd8f6e11cb3887231451eb1dde719a","impliedFormat":1},{"version":"cf8d966c5b46aa3b4e2bc55aeaf5932253a734d2c09fc9e05867d47f7fc3fe31","impliedFormat":1},{"version":"e11fb3c6b0788cddcda16e472a173c03d8729201dc325beb1251f54d2630ebbb","impliedFormat":1},{"version":"9034c961e85ef73bdd4e07e2c56d7adfa4c00ee6cf568dcfc13d059575aac8a8","impliedFormat":1},{"version":"48676769d0f4904e916425f778ae25c140370fb90b33ad85151c7ebab166a0cc","impliedFormat":1},{"version":"b70a8d1c0d9628260158c2e96982f5ffb415ca87f97388ea743e52bd6ef37a9c","impliedFormat":1},{"version":"709bae51a9b0263a888c6adf48fb1380634e37267abcea46a52eb02a14b76292","impliedFormat":1},{"version":"7a625afe5721361715736bc3f9548206e1f173dcdc43eecaf7f70557f5151361","impliedFormat":1},{"version":"4d114e382693704d3792d2d6da45adc1aa2d8a86c1b8ebe5fc225dccd30aaf36","impliedFormat":1},{"version":"329760175a249a5e13e16f281ede4d8da4a4a72d511bf631bf7e5bd363146a80","impliedFormat":1},{"version":"9fbdb40eb68109a83dcc5f19c450556b20699b4fa19783dabdfc06a9937c9c30","impliedFormat":1},{"version":"afb75becf7075fc3673a6f1f7b669b5bb909ae67609284ce6548ec44d8038a61","impliedFormat":1},{"version":"4018b7fb337b14d2a40dd091208fbd39b3400136dfda00e9995b51cf64783a9f","impliedFormat":1},{"version":"6f5a9b68ce8608014210f5a777f8dd82e6382285f6278c811b7b0214bbcac5bd","impliedFormat":1},{"version":"af11413ffc8c34a2a2475cb9d2982b4cc87a9317bf474474eedaacc4aaab4582","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","impliedFormat":1},{"version":"95da3c365e3d45709ad6e0b4daa5cdaf05e9076ba3c201e8f8081dd282c02f57","impliedFormat":1},{"version":"d4a22007b481fe2a2e6bfd3a42c00cd62d41edb36d30fc4697df2692e9891fc8","impliedFormat":1},{"version":"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","impliedFormat":1},{"version":"fbca5ffaebf282ec3cdac47b0d1d4a138a8b0bb32105251a38acb235087d3318","impliedFormat":1},{"version":"d57be402cf1a3f1bd1852fc71b31ff54da497f64dcdcf8af9ad32435e3f32c1f","affectsGlobalScope":true,"impliedFormat":1},{"version":"4113fcb657953db88a125082f517a4b51083526a18765e90f2401a5dbb864d7e","impliedFormat":1},{"version":"22293bd6fa12747929f8dfca3ec1684a3fe08638aa18023dd286ab337e88a592","impliedFormat":1},{"version":"f60e3e3060207ac982da13363181fd7ee4beecc19a7c569f0d6bb034331066c2","impliedFormat":1},{"version":"17230b34bb564a3a2e36f9d3985372ccab4ad1722df2c43f7c5c2b553f68e5db","impliedFormat":1},{"version":"6e5c9272f6b3783be7bdddaf207cccdb8e033be3d14c5beacc03ae9d27d50929","impliedFormat":1},{"version":"9b4f7ff9681448c72abe38ea8eefd7ffe0c3aefe495137f02012a08801373f71","impliedFormat":1},{"version":"0dfe35191a04e8f9dc7caeb9f52f2ee07402736563d12cbccd15fb5f31ac877f","impliedFormat":1},{"version":"798367363a3274220cbed839b883fe2f52ba7197b25e8cb2ac59c1e1fd8af6b7","impliedFormat":1},{"version":"fe62b82c98a4d5bca3f8de616b606d20211b18c14e881bb6856807d9ab58131b","impliedFormat":1},{"version":"f1e7b4d34de987c6912c0dd5710b6995abb587873edfb71ff9e549ca01972c5a","impliedFormat":99},{"version":"b3a24e1c22dd4fde2ce413fb8244e5fa8773ffca88e8173c780845c9856aef73","impliedFormat":1},{"version":"6ab263df6465e2ed8f1d02922bae18bb5b407020767de021449a4c509859b22e","impliedFormat":1},{"version":"6805621d9f970cda51ab1516e051febe5f3ec0e45b371c7ad98ac2700d13d57c","impliedFormat":1},{"version":"170d4db14678c68178ee8a3d5a990d5afb759ecb6ec44dbd885c50f6da6204f6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","impliedFormat":1},{"version":"63a3a080e64f95754b32cfbf6d1d06b2703ee53e3a46962739e88fdd98703261","impliedFormat":1},{"version":"a0acca63c9e39580f32a10945df231815f0fe554c074da96ba6564010ffbd2d8","impliedFormat":1},{"version":"199f9ead0daf25ae4c5632e3d1f42570af59685294a38123eef457407e13f365","impliedFormat":1},{"version":"cf3d384d082b933d987c4e2fe7bfb8710adfd9dc8155190056ed6695a25a559e","impliedFormat":1},{"version":"9871b7ee672bc16c78833bdab3052615834b08375cb144e4d2cba74473f4a589","impliedFormat":1},{"version":"c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","impliedFormat":1},{"version":"8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","impliedFormat":1},{"version":"86c73f2ee1752bac8eeeece234fd05dfcf0637a4fbd8032e4f5f43102faa8eec","impliedFormat":1},{"version":"42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","impliedFormat":1},{"version":"ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","impliedFormat":1},{"version":"83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","impliedFormat":1},{"version":"1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","impliedFormat":1},{"version":"0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","impliedFormat":1},{"version":"cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","impliedFormat":1},{"version":"c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","impliedFormat":1},{"version":"f4e9bf9103191ef3b3612d3ec0044ca4044ca5be27711fe648ada06fad4bcc85","impliedFormat":1},{"version":"0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","impliedFormat":1},{"version":"7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","impliedFormat":1},{"version":"bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","impliedFormat":1},{"version":"52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","impliedFormat":1},{"version":"770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","impliedFormat":1},{"version":"d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","impliedFormat":1},{"version":"799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","impliedFormat":1},{"version":"2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","impliedFormat":1},{"version":"9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","impliedFormat":1},{"version":"397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","impliedFormat":1},{"version":"a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","impliedFormat":1},{"version":"a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","impliedFormat":1},{"version":"c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","impliedFormat":1},{"version":"4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","impliedFormat":1},{"version":"f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","impliedFormat":1},{"version":"cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","impliedFormat":1},{"version":"b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","impliedFormat":1},{"version":"c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","impliedFormat":1},{"version":"14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","impliedFormat":1},{"version":"a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","impliedFormat":1},{"version":"f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","impliedFormat":1},{"version":"3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","impliedFormat":1},{"version":"662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","impliedFormat":1},{"version":"c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","impliedFormat":1},{"version":"2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","impliedFormat":1},{"version":"34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","impliedFormat":1},{"version":"844ab83672160ca57a2a2ea46da4c64200d8c18d4ebb2087819649cad099ff0e","impliedFormat":1},{"version":"837f5c12e3e94ee97aca37aa2a50ede521e5887fb7fa89330f5625b70597e116","impliedFormat":1},{"version":"c130f9616a960edc892aa0eb7a8a59f33e662c561474ed092c43a955cdb91dab","impliedFormat":1},{"version":"03c258e060b7da220973f84b89615e4e9850e9b5d30b3a8e4840b3e3268ae8eb","impliedFormat":1},{"version":"f874ea4d0091b0a44362a5f74d26caab2e66dec306c2bf7e8965f5106e784c3b","impliedFormat":1},{"version":"18942319aff2c9619e05c379641b571f0958506472a4b539f906be08fcccf806","impliedFormat":1},{"version":"bc81aff061c53a7140270555f4b22da4ecfe8601e8027cf5aa175fbdc7927c31","impliedFormat":1},{"version":"74d5a87c3616cd5d8691059d531504403aa857e09cbaecb1c64dfb9ace0db185","impliedFormat":1}],"root":[156,157,160],"options":{"allowImportingTsExtensions":true,"allowJs":true,"checkJs":false,"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"inlineSources":true,"jsx":2,"module":200,"noEmitOnError":false,"noImplicitAny":false,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":false,"target":99},"referencedMap":[[164,1],[162,2],[161,2],[167,3],[163,1],[165,4],[166,1],[268,5],[295,6],[297,7],[267,8],[298,8],[341,9],[296,2],[342,2],[344,10],[343,2],[349,11],[352,12],[355,13],[357,14],[350,2],[358,2],[395,15],[396,16],[397,2],[398,2],[353,17],[354,2],[399,18],[400,14],[345,2],[401,2],[402,2],[340,2],[403,19],[404,20],[213,21],[214,21],[215,22],[173,23],[216,24],[217,25],[218,26],[168,2],[171,27],[169,2],[170,2],[219,28],[220,29],[221,30],[222,31],[223,32],[224,33],[225,33],[227,2],[226,34],[228,35],[229,36],[230,37],[212,38],[172,2],[231,39],[232,40],[233,41],[266,42],[234,43],[235,44],[236,45],[237,46],[238,47],[239,48],[240,49],[241,50],[242,51],[243,52],[244,52],[245,53],[246,2],[247,2],[248,54],[250,55],[249,56],[251,57],[252,58],[253,59],[254,60],[255,61],[256,62],[257,63],[258,64],[259,65],[260,66],[261,67],[262,68],[263,69],[264,70],[265,71],[405,2],[414,72],[413,73],[412,74],[411,73],[416,75],[347,2],[348,2],[420,76],[417,2],[419,77],[421,2],[446,78],[447,79],[422,80],[425,80],[444,78],[445,78],[435,78],[434,81],[432,78],[427,78],[440,78],[438,78],[442,78],[426,78],[439,78],[443,78],[428,78],[429,78],[441,78],[423,78],[430,78],[431,78],[433,78],[437,78],[448,82],[436,78],[424,78],[461,83],[460,2],[455,82],[457,84],[456,82],[449,82],[450,82],[452,82],[454,82],[458,84],[459,84],[451,84],[453,84],[346,85],[351,86],[462,2],[319,2],[327,2],[463,87],[464,2],[356,2],[465,2],[466,2],[467,88],[468,89],[299,2],[174,2],[272,90],[293,2],[287,91],[274,92],[290,93],[273,2],[271,94],[275,2],[269,95],[276,2],[294,96],[277,2],[286,97],[288,98],[270,99],[292,100],[289,101],[291,102],[278,2],[284,103],[281,104],[283,105],[282,106],[280,107],[279,2],[285,108],[158,2],[418,2],[333,2],[301,2],[329,109],[304,2],[300,110],[302,111],[305,112],[303,2],[334,113],[338,2],[337,2],[330,2],[335,2],[336,114],[339,115],[324,2],[323,2],[328,116],[326,2],[325,2],[307,117],[308,118],[306,119],[309,120],[310,121],[311,122],[312,123],[313,124],[314,125],[315,126],[316,127],[317,128],[318,129],[322,2],[331,2],[321,130],[320,131],[365,2],[366,132],[363,2],[364,2],[332,2],[415,2],[361,133],[374,134],[359,2],[360,135],[375,136],[370,137],[371,138],[369,139],[373,140],[367,141],[362,142],[372,143],[368,134],[410,144],[407,145],[409,146],[408,2],[406,2],[386,147],[376,2],[377,148],[387,149],[388,150],[389,147],[390,147],[391,2],[394,151],[392,147],[393,2],[383,2],[380,152],[381,2],[382,2],[379,153],[378,2],[384,147],[385,2],[79,2],[80,2],[13,2],[14,2],[16,2],[15,2],[2,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[23,2],[24,2],[3,2],[25,2],[26,2],[4,2],[27,2],[31,2],[28,2],[29,2],[30,2],[32,2],[33,2],[34,2],[5,2],[35,2],[36,2],[37,2],[38,2],[6,2],[42,2],[39,2],[40,2],[41,2],[43,2],[7,2],[44,2],[49,2],[50,2],[45,2],[46,2],[47,2],[48,2],[8,2],[54,2],[51,2],[52,2],[53,2],[55,2],[9,2],[56,2],[57,2],[58,2],[60,2],[59,2],[61,2],[62,2],[10,2],[63,2],[64,2],[65,2],[11,2],[66,2],[67,2],[68,2],[69,2],[70,2],[1,2],[71,2],[72,2],[12,2],[76,2],[74,2],[78,2],[73,2],[77,2],[75,2],[190,154],[200,155],[189,154],[210,156],[181,157],[180,158],[209,145],[203,159],[208,160],[183,161],[197,162],[182,163],[206,164],[178,165],[177,145],[207,166],[179,167],[184,168],[185,2],[188,168],[175,2],[211,169],[201,170],[192,171],[193,172],[195,173],[191,174],[194,175],[204,145],[186,176],[187,177],[196,178],[176,179],[199,170],[198,168],[202,2],[205,180],[155,181],[144,182],[146,183],[153,184],[148,2],[149,2],[147,185],[150,181],[142,2],[143,2],[154,186],[145,187],[151,2],[152,188],[129,189],[130,189],[131,189],[141,190],[132,2],[133,2],[134,189],[135,191],[126,192],[138,2],[139,2],[137,189],[136,189],[86,193],[104,194],[96,195],[88,196],[107,194],[85,197],[91,198],[110,199],[84,200],[101,201],[83,197],[108,202],[89,203],[90,204],[102,194],[94,205],[109,202],[81,2],[95,206],[92,203],[99,2],[82,2],[87,195],[97,197],[93,204],[98,194],[105,194],[103,194],[100,207],[106,194],[111,189],[128,2],[127,2],[140,2],[125,208],[115,209],[117,210],[124,211],[119,2],[120,2],[118,212],[121,213],[112,2],[113,2],[114,208],[116,214],[122,2],[123,215],[159,2],[160,216],[157,217],[156,218]],"latestChangedDtsFile":"./src/frontend/utils.d.ts","version":"5.8.2"}
package/package.json CHANGED
@@ -1,41 +1,97 @@
1
1
  {
2
- "name": "@elizaos/plugin-starter",
3
- "description": "Plugin starter for elizaOS",
4
- "version": "1.0.0-alpha.7",
5
- "type": "module",
6
- "main": "dist/index.js",
7
- "module": "dist/index.js",
8
- "types": "dist/index.d.ts",
9
- "exports": {
10
- "./package.json": "./package.json",
11
- ".": {
12
- "import": {
13
- "types": "./dist/index.d.ts",
14
- "default": "./dist/index.js"
15
- }
16
- }
17
- },
18
- "files": [
19
- "dist"
20
- ],
21
- "dependencies": {
22
- "@elizaos/core": "^1.0.0-alpha.7",
23
- "zod": "3.21.4"
24
- },
25
- "devDependencies": {
26
- "tsup": "8.4.0"
27
- },
28
- "scripts": {
29
- "build": "tsup",
30
- "dev": "tsup --watch",
31
- "test": "vitest run",
32
- "lint": "biome check ./src --config-path=./ --apply-unsafe && biome format ./ --config-path=./ --write"
33
- },
34
- "publishConfig": {
35
- "access": "public"
36
- },
37
- "resolutions": {
38
- "zod": "3.24.1"
39
- },
40
- "gitHead": "45175c735affb7ea45b3d9efecde34223e782b79"
2
+ "name": "@elizaos/plugin-starter",
3
+ "description": "${PLUGINDESCRIPTION}",
4
+ "version": "1.5.5-alpha.6",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "module": "dist/index.js",
8
+ "types": "dist/index.d.ts",
9
+ "packageType": "plugin",
10
+ "platform": "node",
11
+ "license": "UNLICENSED",
12
+ "author": "${GITHUB_USERNAME}",
13
+ "keywords": [
14
+ "plugin",
15
+ "elizaos"
16
+ ],
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "${REPO_URL}"
20
+ },
21
+ "homepage": "https://elizaos.ai",
22
+ "bugs": {
23
+ "url": "https://github.com/${GITHUB_USERNAME}/${PLUGINNAME}/issues"
24
+ },
25
+ "exports": {
26
+ "./package.json": "./package.json",
27
+ ".": {
28
+ "import": {
29
+ "types": "./dist/index.d.ts",
30
+ "default": "./dist/index.js"
31
+ }
32
+ }
33
+ },
34
+ "files": [
35
+ "dist",
36
+ "README.md",
37
+ ".npmignore",
38
+ ".gitignore",
39
+ "package.json"
40
+ ],
41
+ "dependencies": {
42
+ "@elizaos/core": "1.5.5-alpha.6",
43
+ "@tanstack/react-query": "^5.80.7",
44
+ "clsx": "^2.1.1",
45
+ "tailwind-merge": "^3.3.1",
46
+ "tailwindcss": "^4.1.10",
47
+ "vite": "^6.3.5",
48
+ "zod": "3.24.2"
49
+ },
50
+ "devDependencies": {
51
+ "@elizaos/cli": "1.5.5-alpha.6",
52
+ "@tailwindcss/vite": "^4.1.10",
53
+ "@vitejs/plugin-react-swc": "^3.10.2",
54
+ "dotenv": "16.4.5",
55
+ "prettier": "3.5.3",
56
+ "tailwindcss-animate": "^1.0.7",
57
+ "typescript": "5.8.2"
58
+ },
59
+ "scripts": {
60
+ "start": "elizaos start",
61
+ "dev": "elizaos dev",
62
+ "build": "bun run build.ts",
63
+ "lint": "prettier --write ./src",
64
+ "postinstall": "node -e \"const fs=require('fs');const path=require('path');const zodPath=path.join('node_modules','zod');if(fs.existsSync(zodPath)){fs.writeFileSync(path.join(zodPath,'v3.js'),'module.exports=require(\\\"./lib/index.js\\\");');fs.writeFileSync(path.join(zodPath,'v3.d.ts'),'export * from \\\"./lib/index\\\";');}\" || true",
65
+ "test:component": "bun run test:install && bun test",
66
+ "test:e2e": "bun run test:install && bun test",
67
+ "test:e2e:manual": "bun run test:install && node scripts/test-e2e-manual.js",
68
+ "test:cypress": "bun run test:install && cypress run --component",
69
+ "test": "bun run test:install && bun run test:component && bun run test:e2e",
70
+ "test:install": "node scripts/install-test-deps.js",
71
+ "format": "prettier --write ./src",
72
+ "format:check": "prettier --check ./src",
73
+ "build:watch": "bun run build.ts --watch"
74
+ },
75
+ "publishConfig": {
76
+ "access": "public"
77
+ },
78
+ "resolutions": {
79
+ "// Note": "langchain 0.3.30 fixes @langchain/core zod/v3 import issues",
80
+ "zod": "3.24.2",
81
+ "langchain": "0.3.30",
82
+ "@langchain/core": "0.3.30"
83
+ },
84
+ "overrides": {
85
+ "@langchain/core": "0.3.30"
86
+ },
87
+ "agentConfig": {
88
+ "pluginType": "elizaos:plugin:1.0.0",
89
+ "pluginParameters": {
90
+ "API_KEY": {
91
+ "type": "string",
92
+ "description": "API key for the service"
93
+ }
94
+ }
95
+ },
96
+ "gitHead": "131bbdab3e095542011e7fc60e9c9e1b0ba32ec6"
41
97
  }